*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --emerald:   #0d4f3c;
  --emerald-d: #082e23;
  --emerald-m: #165c46;
  --teal:      #1a7a5e;
  --gold:      #c9973e;
  --gold-lt:   #e0b05a;
  --white:     #ffffff;
  --snow:      #f8f9f7;
  --stone:     #f0f1ed;
  --text:      #1a2118;
  --muted:     #6b7566;
  --border:    rgba(13,79,60,0.1);
  --border-em: rgba(13,79,60,0.2);
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5rem;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav-emblem {
  width: 38px;
  height: 38px;
  background: var(--emerald);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.nav-emblem span {
  color: var(--gold);
  font-family: 'Spectral', serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
}

.nav-wordmark {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav-wordmark-top {
  font-family: 'Spectral', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--emerald-d);
  letter-spacing: 0.03em;
  line-height: 1;
}

.nav-wordmark-sub {
  font-size: 0.58rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--emerald); }

.nav-links .n-cta a {
  color: var(--white);
  background: var(--emerald);
  padding: 0.5rem 1.5rem;
  transition: background 0.2s;
}

.nav-links .n-cta a:hover { background: var(--teal); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 74px;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--snow);
  position: relative;
  overflow: hidden;
}

/* Decorative geometric pattern */
.hero-pattern {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  opacity: 0.035;
  background-image:
    repeating-linear-gradient(
      45deg,
      var(--emerald) 0px, var(--emerald) 1px,
      transparent 1px, transparent 40px
    ),
    repeating-linear-gradient(
      -45deg,
      var(--emerald) 0px, var(--emerald) 1px,
      transparent 1px, transparent 40px
    );
}

.hero-photo-panel {
  position: absolute;
  top: 0; right: 0;
  width: 42%;
  height: 100%;
  overflow: hidden;
}

.hero-photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.5) brightness(0.55);
}

.hero-photo-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--snow) 0%, transparent 40%);
  z-index: 1;
}

.hero-photo-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--snow) 100%);
  z-index: 1;
}

/* Gold vertical line accent */
.hero-line {
  position: absolute;
  left: 5rem;
  top: 74px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  opacity: 0.5;
}

.hero-main {
  display: flex;
  align-items: center;
  padding: 5rem 5rem 4rem 7rem;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 580px;
  animation: hIn 1s ease both;
}

@keyframes hIn {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}

.hero-tag {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.8rem;
}

.hero-tag::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.hero h1 {
  font-family: 'Spectral', serif;
  font-size: clamp(2.8rem, 4.8vw, 4.6rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--emerald-d);
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--teal);
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.btn-em {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  background: var(--emerald);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.25s;
}

.btn-em:hover { background: var(--teal); }

.btn-line {
  display: inline-block;
  padding: 0.9rem 2.4rem;
  border: 1.5px solid var(--border-em);
  color: var(--emerald);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
}

.btn-line:hover { border-color: var(--emerald); background: var(--stone); }

/* Ticker strip */
.hero-strip {
  position: relative;
  z-index: 2;
  background: var(--emerald-d);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 3px solid var(--gold);
}

.strip-item {
  padding: 1.8rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.strip-item:last-child { border-right: none; }

.strip-icon {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,151,62,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.strip-icon svg {
  width: 16px; height: 16px;
  stroke: var(--gold-lt);
  fill: none; stroke-width: 1.5;
}

.strip-text-top {
  font-family: 'Spectral', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.strip-text-bot {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── ABOUT ── */
#about {
  padding: 9rem 5rem;
  background: var(--white);
}

.about-wrap {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 7rem;
  align-items: start;
}

.overtitle {
  font-size: 0.68rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.9rem;
}

.sec-h {
  font-family: 'Spectral', serif;
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  font-weight: 700;
  line-height: 1.18;
  color: var(--emerald-d);
  letter-spacing: -0.01em;
}

.sec-h em { font-style: italic; font-weight: 400; color: var(--teal); }

.rule {
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin: 1.4rem 0 2rem;
}

.about-body p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-size: 1rem;
}

.about-body p strong { color: var(--text); font-weight: 600; }

.about-quote {
  margin-top: 2.2rem;
  padding: 1.6rem 2rem;
  background: var(--snow);
  border-top: 2px solid var(--emerald);
  border-bottom: 2px solid var(--emerald);
}

.about-quote p {
  font-family: 'Spectral', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--emerald-d);
  line-height: 1.6;
  margin: 0;
}

.about-aside {
  position: sticky;
  top: 96px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.aside-card {
  background: var(--stone);
  padding: 1.6rem 1.8rem;
  border-left: 3px solid transparent;
  transition: border-color 0.25s, background 0.25s;
  margin-bottom: 1px;
}

.aside-card:hover {
  border-left-color: var(--gold);
  background: var(--snow);
}

.aside-card-num {
  font-family: 'Spectral', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--emerald);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.aside-card-label {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 400;
  line-height: 1.4;
}

/* ── SERVICES ── */
#services {
  padding: 9rem 5rem;
  background: var(--snow);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-wrap {
  max-width: 1160px;
  margin: 0 auto;
}

.services-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: end;
  margin-bottom: 4.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}

.services-intro-text {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.8;
  align-self: end;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
}

.svc-tile {
  background: var(--white);
  padding: 2.8rem 2.6rem;
  position: relative;
  transition: background 0.3s;
  overflow: hidden;
}

.svc-tile::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 0;
  background: var(--emerald);
  transition: height 0.4s ease;
  z-index: 0;
}

.svc-tile:hover { background: var(--white); }
.svc-tile:hover::before { height: 3px; }

.svc-tile > * { position: relative; z-index: 1; }

.svc-tile-icon {
  width: 48px; height: 48px;
  border: 1.5px solid var(--border-em);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  transition: border-color 0.25s, background 0.25s;
}

.svc-tile:hover .svc-tile-icon {
  border-color: var(--emerald);
  background: var(--emerald);
}

.svc-tile-icon svg {
  width: 20px; height: 20px;
  stroke: var(--emerald); fill: none;
  stroke-width: 1.5; stroke-linecap: round;
  transition: stroke 0.25s;
}

.svc-tile:hover .svc-tile-icon svg { stroke: var(--white); }

.svc-tile h3 {
  font-family: 'Spectral', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--emerald-d);
  margin-bottom: 0.7rem;
}

.svc-tile p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── WHY ── */
#why {
  padding: 9rem 5rem;
  background: var(--emerald-d);
}

.why-wrap {
  max-width: 1160px;
  margin: 0 auto;
}

.why-wrap .overtitle { color: var(--gold-lt); }
.why-wrap .sec-h { color: var(--white); }
.why-wrap .rule { background: var(--gold); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  margin-top: 4rem;
  align-items: start;
}

.why-img-col {
  position: relative;
}

.why-img-col img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  filter: saturate(0.5) brightness(0.65);
  display: block;
}

.why-img-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--gold);
  padding: 1.6rem 2rem;
  text-align: center;
}

.why-img-badge strong {
  display: block;
  font-family: 'Spectral', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--emerald-d);
  line-height: 1;
}

.why-img-badge span {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(8,46,35,0.7);
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.why-pt {
  display: flex;
  gap: 1.4rem;
  align-items: flex-start;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.why-pt:first-child { border-top: 1px solid rgba(255,255,255,0.07); }

.why-pt-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

.why-pt h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 0.3rem;
}

.why-pt p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
}

/* ── CONTACT ── */
#contact {
  padding: 9rem 5rem;
  background: var(--white);
}

.contact-wrap {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: start;
}

.contact-left > p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.c-items {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.c-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  background: var(--snow);
  border: 1px solid var(--border);
  margin-bottom: 2px;
  transition: border-color 0.2s;
}

.c-item:hover { border-color: var(--emerald); }

.c-item-icon {
  background: var(--emerald);
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-item-icon svg {
  width: 17px; height: 17px;
  stroke: var(--gold-lt); fill: none;
  stroke-width: 1.5; stroke-linecap: round;
}

.c-item-body {
  padding: 1.1rem 1.4rem;
}

.c-label {
  font-size: 0.63rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.c-value {
  font-size: 0.93rem;
  color: var(--text);
  line-height: 1.5;
}

.c-value a {
  color: inherit; text-decoration: none;
  transition: color 0.2s;
}

.c-value a:hover { color: var(--teal); }

.map-panel {
  height: 100%;
  min-height: 440px;
  border: 1px solid var(--border);
  overflow: hidden;
  position: relative;
}

.map-panel iframe {
  width: 100%; height: 100%;
  min-height: 440px; border: 0;
  filter: saturate(0.2) contrast(1.1) brightness(1.05);
}

/* ── FOOTER ── */
footer {
  background: var(--emerald-d);
  border-top: 3px solid var(--gold);
  padding: 2rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-emblem {
  width: 28px; height: 28px;
  background: var(--gold);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex; align-items: center; justify-content: center;
}

.footer-emblem span {
  font-family: 'Spectral', serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--emerald-d);
}

.footer-name {
  font-family: 'Spectral', serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
}

footer p {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.22);
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero-photo-panel { display: none; }
  .hero-pattern { display: none; }
  .hero-line { display: none; }
  .hero-main { padding: 4rem 1.5rem 3rem; }
  .hero-strip { grid-template-columns: 1fr 1fr; }
  .strip-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
  #about, #services, #why, #contact { padding: 5rem 1.5rem; }
  .about-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .about-aside { position: static; flex-direction: row; flex-wrap: wrap; }
  .aside-card { flex: 1 1 140px; }
  .services-head { grid-template-columns: 1fr; gap: 2rem; }
  .svc-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .why-img-col { display: none; }
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .map-panel { min-height: 280px; }
  .map-panel iframe { min-height: 280px; }
  footer { flex-direction: column; gap: 0.6rem; text-align: center; padding: 1.5rem; }
}
