/*
Theme Name: JosMor Holdings
Theme URI: https://josmorholdings.com
Author: JosMor Holdings
Description: A minimal one-page corporate presence for JosMor Holdings.
Version: 1.1.2
Text Domain: josmor-holdings
*/

:root {
  --green: #0b6b3a;
  --green-dark: #074627;
  --charcoal: #242622;
  --ivory: #fbfaf6;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: Arial, Helvetica, sans-serif;
}
a { color: inherit; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 4rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.hero::before,.hero::after {
  content: "";
  position: absolute;
  width: min(15vw,10rem);
  height: 1px;
  background: rgba(168,168,168,.65);
  top: 2rem;
}
.hero::before { left: 2rem; }
.hero::after { right: 2rem; }
.hero-inner {
  width: min(46rem,92vw);
  text-align: center;
  animation: arrive .9s ease-out both;
}
.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}
.tagline {
  margin: 1.75rem 0 0;
  color: var(--green-dark);
  font-family: Georgia,"Times New Roman",serif;
  font-size: clamp(1rem,2vw,1.22rem);
  font-style: italic;
  letter-spacing: .03em;
}
.about {
  padding: clamp(5rem,10vw,9rem) 1.5rem;
  text-align: center;
  background: var(--green-dark);
  color: #f7f4eb;
}
.eyebrow {
  margin: 0 0 1.4rem;
  color: #d0d2d0;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .34em;
  text-transform: uppercase;
}
.about h2 {
  margin: 0;
  font-family: Georgia,"Times New Roman",serif;
  font-size: clamp(2rem,4.5vw,3.7rem);
  font-weight: 400;
  letter-spacing: -.02em;
}
.about-copy {
  max-width: 44rem;
  margin: 2rem auto 0;
  color: rgba(247,244,235,.78);
  font-family: Georgia, Arial, Helvetica, sans-serif;
  font-size: clamp(1rem,1.8vw,1.12rem);
  line-height: 1.9;
}
.about-copy-secondary { margin-top: .85rem; }
.principles {
  margin: 3.25rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: .75rem 1rem;
  color: #d0d2d0;
  font-family: Georgia,"Times New Roman",serif;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.principles i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(208,210,208,.7);
}
.site-footer {
  padding: 1.6rem 2rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  background: #052f1c;
  color: rgba(247,244,235,.62);
  font-size: .68rem;
  letter-spacing: .08em;
}
.site-footer p { margin: 0; }
.site-footer a { text-decoration: none; }
.site-footer a:hover,.site-footer a:focus-visible { color: #fff; }
.footer-left { justify-self: start; }
.footer-center { justify-self: center; text-align: center; }
.footer-right { justify-self: end; }
@keyframes arrive {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) { .hero-inner { animation: none; } }
@media (max-width: 520px) {
  .hero::before,.hero::after { width: 3.5rem; }
  .hero::before { left: 1rem; }
  .hero::after { right: 1rem; }
  .hero { min-height: 82svh; }
  .principles { gap: .75rem; letter-spacing: .1em; }
  .site-footer { grid-template-columns: 1fr; padding: 1.75rem 1rem; text-align: center; }
  .footer-left,.footer-center,.footer-right { justify-self: center; }
}
