:root {
  --emerald: #003f3a;
  --emerald-2: #062b28;
  --gold: #d7b25e;
  --gold-soft: #f1d88f;
  --paper: #f6f0e6;
  --ink: #10201d;
  --muted: #6d6257;
  --line: rgba(215, 178, 94, .42);
  --radius: 8px;
  font-family: "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(215,178,94,.08) 1px, transparent 1px),
    linear-gradient(rgba(215,178,94,.07) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black, transparent 76%);
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, p { margin: 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(246, 240, 230, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  color: var(--emerald);
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

nav {
  display: flex;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 700;
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-weight: 800;
}

.header-cta,
.button.primary {
  background: var(--emerald);
  color: var(--gold-soft);
  box-shadow: 0 14px 30px rgba(0, 63, 58, .18);
}

.button.secondary {
  color: var(--emerald);
  background: rgba(255,255,255,.42);
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: start;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(24px, 4.5vw, 48px) clamp(18px, 4vw, 54px) 28px;
}

.hero-copy {
  display: grid;
  gap: 22px;
  max-width: 720px;
}

.eyebrow {
  color: var(--gold);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--emerald-2);
  line-height: .94;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(3rem, 7vw, 6.6rem);
}

h2 {
  font-size: clamp(2.2rem, 4.8vw, 5.2rem);
}

.hero-lede,
.section-lede {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.32rem);
  line-height: 1.55;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 610px;
  border: 1px solid var(--line);
  border-radius: 0 0 140px 0;
  overflow: hidden;
  background: var(--emerald);
  box-shadow: 0 30px 80px rgba(0, 43, 40, .24);
}

.reference {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.seal {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(241, 216, 143, .66);
  border-radius: 999px;
  background: rgba(0, 48, 44, .88);
  color: var(--gold-soft);
  font-size: .84rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.seal img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 4vw, 54px);
  background: var(--line);
  border: 1px solid var(--line);
}

.proof-strip div {
  display: grid;
  gap: 5px;
  padding: 22px;
  background: var(--emerald);
  color: #fff;
}

.proof-strip strong {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.proof-strip span { color: rgba(255,255,255,.76); }

.section {
  padding: clamp(58px, 8vw, 110px) clamp(18px, 4vw, 54px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .82fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-grid article {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.5);
}

.service-grid span {
  color: var(--gold);
  font-weight: 900;
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--emerald);
  font-size: 1.55rem;
}

.service-grid p,
.steps span,
.contact-card p,
.contact-card span {
  color: var(--muted);
  line-height: 1.5;
}

.process {
  background: var(--emerald-2);
  color: #fff;
}

.process h2 { color: var(--paper); }

.process-copy {
  max-width: 820px;
  margin-bottom: 34px;
}

.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.steps li {
  position: relative;
  display: grid;
  gap: 12px;
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(215,178,94,.46);
  background: rgba(255,255,255,.05);
}

.steps li::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  color: var(--gold);
  font-weight: 900;
}

.steps strong {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold-soft);
  font-size: 1.45rem;
}

.contact {
  display: grid;
  grid-template-columns: minmax(420px, .95fr) minmax(380px, .72fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.contact > div:first-child {
  max-width: 620px;
}

.contact h2 {
  max-width: 10.5ch;
  font-size: clamp(2.7rem, 5.6vw, 5.8rem);
}

.contact .section-lede {
  max-width: 35rem;
}
.contact-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}


.services-split {
  align-items: center;
}

.services-copy {
  display: grid;
  gap: 18px;
  border-left: 1px solid var(--line);
  padding-left: clamp(22px, 4vw, 48px);
}

.social-panel {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.46);
}

.social-panel span {
  color: var(--emerald);
  font-weight: 900;
}

.social-button {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--emerald);
  color: var(--gold-soft);
  font-weight: 900;
}

.office {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(360px, 1fr);
  gap: clamp(26px, 5vw, 62px);
  align-items: stretch;
  padding-top: 28px;
}

.office-copy {
  display: grid;
  align-content: center;
  gap: 18px;
}

.map-frame {
  min-height: 420px;
  border: 1px solid var(--line);
  background: var(--emerald);
  box-shadow: 0 24px 70px rgba(0, 63, 58, .13);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  display: block;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  padding: 28px clamp(18px, 4vw, 54px);
  background: var(--emerald-2);
  color: var(--paper);
  border-top: 1px solid rgba(215,178,94,.45);
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.site-footer strong {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.site-footer span,
.site-footer a {
  color: rgba(246,240,230,.78);
  font-weight: 800;
}
.contact-card {
  justify-self: end;
  width: min(100%, 560px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 32px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 24px 70px rgba(0, 63, 58, .14);
}

.contact-card > div {
  text-align: center;
}

.contact-card img {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-card p {
  grid-column: 1 / -1;
  text-align: center;
}

.contact-card strong {
  display: block;
  color: var(--emerald);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

@media (max-width: 900px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  nav { display: none; }

  .hero,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
    border-radius: var(--radius);
  }

  .proof-strip,
  .service-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .office {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 36px;
    padding-bottom: 58px;
  }

  .office-copy {
    align-content: start;
  }

  .map-frame {
    min-height: 0;
    height: clamp(300px, 58vh, 420px);
    overflow: hidden;
  }

  .map-frame iframe {
    min-height: 0;
    height: 100%;
  }

  .site-footer {
    align-items: flex-start;
  }
}

@media (max-width: 560px) {
  .map-frame {
    height: 320px;
  }

  .office {
    padding-bottom: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
