:root {
  --ink: #14201d;
  --forest: #153d34;
  --forest-deep: #10211d;
  --green: #2f7766;
  --gold: #c59a52;
  --gold-soft: #e5cfaa;
  --paper: #f7f7f3;
  --white: #ffffff;
  --mist: #e9efeb;
  --muted: #63706c;
  --line: #d9dfdb;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --shadow: 0 24px 70px rgba(16, 33, 29, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
}

h1 {
  max-width: 10.5ch;
  margin-bottom: 24px;
  font-size: clamp(3.2rem, 6.4vw, 6.2rem);
  line-height: 0.98;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.4rem, 4.8vw, 4.6rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.5rem;
  line-height: 1.15;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: var(--gold-soft);
}

.utility-bar {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 7px clamp(20px, 5vw, 72px);
  background: var(--forest-deep);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
}

.utility-bar p {
  margin: 0;
}

.utility-bar div {
  display: flex;
  gap: 22px;
}

.utility-bar a {
  color: var(--white);
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 78px;
  align-items: center;
  gap: 32px;
  padding: 12px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid rgba(217, 223, 219, 0.8);
  background: rgba(247, 247, 243, 0.94);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease;
}

.site-header.scrolled {
  box-shadow: 0 10px 35px rgba(16, 33, 29, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(197, 154, 82, 0.75);
  border-radius: 3px;
  background: var(--forest-deep);
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 500;
}

.site-nav {
  display: flex;
  justify-self: center;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
}

.site-nav a {
  position: relative;
  color: #4d5955;
  font-size: 0.86rem;
  font-weight: 600;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 1px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transition: transform 160ms ease;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.header-action,
.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.header-action,
.button-dark {
  background: var(--forest-deep);
  color: var(--white);
}

.header-action:hover,
.button:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(760px, calc(100svh - 145px));
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 24, 20, 0.93) 0%, rgba(10, 24, 20, 0.73) 42%, rgba(10, 24, 20, 0.18) 76%),
    linear-gradient(0deg, rgba(10, 24, 20, 0.48), transparent 55%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 40px));
  margin-left: clamp(20px, 6vw, 92px);
  padding: 44px 0 28px;
  color: var(--white);
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
}

.hero-actions,
.contact-actions,
.location-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button-primary,
.button-gold {
  background: var(--gold);
  color: #15221e;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-trust span {
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
}

.hero-trust span:first-child {
  padding-left: 0;
}

.hero-trust span:last-child {
  border-right: 0;
}

.service-index {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.service-index a {
  position: relative;
  min-height: 132px;
  padding: 26px clamp(18px, 3vw, 38px);
  border-right: 1px solid var(--line);
}

.service-index a:last-child {
  border-right: 0;
}

.service-index a::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.service-index a:hover::before {
  transform: scaleX(1);
}

.service-index span,
.service-index strong,
.service-index small {
  display: block;
}

.service-index span {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
}

.service-index strong {
  margin-bottom: 3px;
  font-family: var(--serif);
  font-size: 1.16rem;
}

.service-index small {
  color: var(--muted);
  font-size: 0.76rem;
}

.section-shell {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) 0;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.7fr);
  gap: clamp(44px, 9vw, 140px);
  align-items: end;
}

.intro h2 {
  margin: 0;
}

.intro-copy p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.08rem;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--forest);
  font-size: 0.88rem;
  font-weight: 700;
}

.arrow-link span {
  transition: transform 160ms ease;
}

.arrow-link:hover span {
  transform: translateX(4px);
}

.services-section {
  background: var(--mist);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.48fr);
  gap: clamp(36px, 8vw, 120px);
  align-items: end;
  margin-bottom: 50px;
}

.section-head h2 {
  max-width: 760px;
  margin-bottom: 0;
}

.section-head > p {
  margin-bottom: 5px;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.service-card {
  display: flex;
  min-height: 290px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 3vw, 40px);
  background: var(--white);
  transition: background 180ms ease, color 180ms ease;
}

.service-card.featured {
  grid-row: span 2;
  min-height: 581px;
  background: var(--forest);
  color: var(--white);
}

.service-number {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.service-card.featured p {
  color: rgba(255, 255, 255, 0.7);
}

.service-card .service-label {
  margin-bottom: 16px;
  color: var(--gold-soft);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card.featured h3 {
  max-width: 7ch;
  font-size: clamp(2.2rem, 4vw, 3.7rem);
}

.service-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--gold-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.standard-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  min-height: 760px;
  background: var(--forest-deep);
  color: var(--white);
}

.standard-visual {
  min-height: 620px;
  overflow: hidden;
}

.standard-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(0.78) contrast(1.04);
}

.standard-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 120px) clamp(30px, 7vw, 100px);
}

.standard-lead {
  max-width: 560px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.68);
}

.standard-list {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.standard-list div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.standard-list span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
}

.standard-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.standard-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.12rem;
}

.process-head .arrow-link {
  justify-self: end;
  margin-bottom: 10px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.process-grid article {
  min-height: 260px;
  padding: 32px clamp(20px, 3vw, 42px) 20px 0;
  border-right: 1px solid var(--line);
}

.process-grid article + article {
  padding-left: clamp(20px, 3vw, 42px);
}

.process-grid article:last-child {
  border-right: 0;
}

.process-grid span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  margin-bottom: 56px;
  border: 1px solid var(--gold);
  color: #88672f;
  font-size: 0.74rem;
  font-weight: 700;
}

.process-grid p {
  max-width: 330px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  padding: clamp(58px, 8vw, 96px) clamp(20px, 6vw, 92px);
  background: var(--forest);
  color: var(--white);
}

.contact-banner h2 {
  max-width: 720px;
  margin: 0;
}

.contact-actions {
  justify-content: flex-end;
}

.contact-phone {
  display: flex;
  flex-direction: column;
  padding: 7px 0 7px 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.24);
  font-family: var(--serif);
  font-size: 1.28rem;
}

.contact-phone small {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
}

.location-section {
  display: grid;
  grid-template-columns: minmax(360px, 0.75fr) minmax(480px, 1.25fr);
  min-height: 630px;
  background: var(--white);
}

.location-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 120px) clamp(24px, 7vw, 92px);
}

.location-copy p:not(.eyebrow) {
  max-width: 480px;
  color: var(--muted);
}

.location-links {
  margin-top: 24px;
}

.map-wrap {
  min-height: 540px;
  overflow: hidden;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 540px;
  border: 0;
  filter: saturate(0.75) contrast(1.03);
}

.site-footer {
  padding: 58px clamp(20px, 6vw, 92px) 26px;
  background: var(--forest-deep);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: auto minmax(260px, 0.7fr) auto;
  align-items: center;
  gap: clamp(32px, 7vw, 100px);
  padding-bottom: 46px;
}

.footer-brand .brand-mark {
  background: transparent;
}

.footer-brand .brand-copy small {
  color: rgba(255, 255, 255, 0.5);
}

.footer-main > p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 7px;
  font-size: 0.86rem;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.72rem;
}

.mobile-contact {
  display: none;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 112px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after,
  .header-action {
    display: none;
  }

  .service-index {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-index a:nth-child(2) {
    border-right: 0;
  }

  .service-index a:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .service-card.featured {
    grid-row: auto;
    min-height: 360px;
  }

  .standard-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .standard-visual {
    min-height: 500px;
  }

  .contact-banner {
    grid-template-columns: 1fr;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
  }

  .footer-main > p {
    grid-column: span 2;
    grid-row: 2;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 62px;
  }

  .utility-bar {
    display: none;
  }

  .site-header {
    min-height: 70px;
    padding: 10px 16px;
  }

  .site-nav {
    top: 78px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .hero {
    min-height: calc(100svh - 105px);
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 24, 20, 0.91), rgba(10, 24, 20, 0.55)),
      linear-gradient(0deg, rgba(10, 24, 20, 0.7), transparent 62%);
  }

  .hero-inner {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding: 42px 0 24px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3rem, 14.4vw, 4.5rem);
  }

  h2 {
    font-size: clamp(2.25rem, 12vw, 3.5rem);
  }

  .hero-copy {
    font-size: 0.98rem;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    margin-top: 24px;
  }

  .hero-trust span {
    padding: 0;
    border: 0;
  }

  .service-index {
    grid-template-columns: 1fr;
  }

  .service-index a,
  .service-index a:nth-child(2) {
    min-height: 105px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-index a:last-child {
    border-bottom: 0;
  }

  .intro,
  .section-head,
  .service-grid,
  .process-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .section-shell {
    width: calc(100% - 32px);
    padding: 76px 0;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .service-card,
  .service-card.featured {
    min-height: 270px;
  }

  .service-card.featured h3 {
    font-size: 2.5rem;
  }

  .standard-section {
    min-height: 0;
  }

  .standard-visual {
    min-height: 360px;
  }

  .standard-copy {
    padding: 72px 20px;
  }

  .process-head .arrow-link {
    justify-self: start;
  }

  .process-grid article,
  .process-grid article + article {
    min-height: 230px;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-grid article:last-child {
    border-bottom: 0;
  }

  .process-grid span {
    margin-bottom: 32px;
  }

  .contact-banner {
    padding: 68px 20px;
  }

  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .contact-phone {
    padding: 12px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
    border-left: 0;
  }

  .location-section {
    min-height: 0;
  }

  .location-copy {
    padding: 72px 20px;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 420px;
  }

  .site-footer {
    padding: 52px 20px 26px;
  }

  .footer-main > p {
    grid-column: auto;
    grid-row: auto;
  }

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

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-contact {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 60;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 62px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: var(--forest-deep);
    color: var(--white);
  }

  .mobile-contact a {
    display: grid;
    place-items: center;
    font-size: 0.9rem;
    font-weight: 700;
  }

  .mobile-contact a + a {
    background: var(--gold);
    color: var(--forest-deep);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
