:root {
  --forest: #203b32;
  --forest-deep: #172d26;
  --olive: #66836b;
  --cream: #f7f4ee;
  --ivory: #fffdfa;
  --sand: #eee4d4;
  --apricot: #e4b78e;
  --ink: #25332e;
  --muted: #69756d;
  --line: rgba(32, 59, 50, .17);
  --page: min(1280px, calc(100% - 80px));
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font: 400 16px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
button { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p, figure { margin-top: 0; }
::selection { color: var(--ivory); background: var(--forest); }
:focus-visible { outline: 3px solid var(--apricot); outline-offset: 4px; }
.container { width: var(--page); margin-inline: auto; }
.sr-only {
  width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; position: absolute;
}
.skip-link {
  position: fixed; z-index: 100; top: -60px; left: 18px;
  padding: 10px 16px; background: var(--ivory); color: var(--forest);
}
.skip-link:focus { top: 18px; }

/* Header */
.site-header { position: relative; z-index: 20; background: var(--cream); }
.header-inner {
  min-height: 92px; display: flex; align-items: center; justify-content: space-between;
  gap: 32px; border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.brand-symbol {
  display: grid; place-items: center; width: 45px; height: 45px;
  border-radius: 50%; background: var(--forest); color: var(--cream);
  font: 400 2rem/.8 var(--serif); transform: rotate(-12deg);
}
.brand-name { display: block; color: var(--forest); font-size: 1.16rem; font-weight: 700; line-height: 1; letter-spacing: .13em; }
.brand-name small { display: block; margin-top: 8px; font-size: .55rem; font-weight: 700; letter-spacing: .25em; }
.nav-wrap { display: flex; align-items: center; gap: clamp(22px, 3vw, 48px); }
.main-nav { display: flex; align-items: center; gap: clamp(20px, 2.5vw, 38px); }
.main-nav a { font-size: .83rem; font-weight: 600; transition: color .2s; }
.main-nav a:hover { color: var(--olive); }
.header-cta, .button-primary, .button-outline, .button-light {
  display: inline-flex; align-items: center; justify-content: center; gap: 20px;
  min-height: 51px; padding: 0 23px; border-radius: 999px;
  font-size: .82rem; font-weight: 700; line-height: 1.2;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}
.header-cta { border: 1px solid var(--forest); white-space: nowrap; }
.header-cta:hover, .button-outline:hover { background: var(--forest); color: var(--ivory); transform: translateY(-2px); }
.arrow { font-size: 1.3rem; font-weight: 400; line-height: 1; }
.menu-button { display: none; }

/* Hero */
.hero { background: var(--cream); }
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
  min-height: 690px;
}
.hero-copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: 70px clamp(40px, 5vw, 90px) 57px max(40px, calc((100vw - 1280px) / 2));
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 25px; color: var(--olive);
  font-size: .68rem; font-weight: 700; letter-spacing: .19em; line-height: 1.3; text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 25px; height: 1px; background: currentColor; }
.hero h1, .section-title, .contact-title { font-family: var(--serif); font-weight: 400; letter-spacing: -.055em; }
.hero h1 {
  max-width: 740px; margin-bottom: 25px;
  font-size: clamp(4.2rem, 6.5vw, 7.7rem); line-height: .98;
}
.hero h1 em, .section-title em, .contact-title em { font-weight: 400; font-style: italic; }
.hero h1 em { color: var(--olive); }
.hero-lead { max-width: 540px; margin-bottom: 32px; color: var(--muted); font-size: 1.04rem; line-height: 1.75; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; }
.button-primary { background: var(--forest); color: var(--ivory); }
.button-primary:hover { background: var(--olive); transform: translateY(-2px); }
.hero-text-link, .text-link { display: inline-flex; align-items: center; gap: 10px; font-size: .83rem; font-weight: 700; }
.hero-text-link:hover, .text-link:hover { color: var(--olive); }
.hero-quiet-note { margin: auto 0 0; padding-top: 54px; color: var(--muted); font-size: .69rem; letter-spacing: .12em; text-transform: uppercase; }
.hero-quiet-note span { color: var(--olive); margin-inline: 9px; }
.hero-media { min-height: 690px; position: relative; overflow: hidden; background: var(--sand); }
.hero-media img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: 54% 48%; }
.hero-media::after { content: ""; position: absolute; inset: 56% 0 0; background: linear-gradient(transparent, rgba(17, 34, 28, .36)); }
.hero-caption {
  position: absolute; z-index: 1; right: clamp(26px, 4vw, 66px); bottom: 30px;
  color: #fff; font-size: .65rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase;
}
.hero-caption::before { content: ""; display: inline-block; width: 24px; height: 1px; margin: 0 10px 4px 0; background: currentColor; }
.values-rail { background: var(--forest); color: var(--ivory); }
.values-inner { min-height: 69px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.values-inner span { font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; white-space: nowrap; }
.values-inner i { width: 4px; height: 4px; flex: 0 0 auto; border-radius: 50%; background: var(--apricot); }

/* Shared sections */
.section { padding-block: 118px; }
.section-number { display: inline-block; margin-bottom: 25px; color: var(--olive); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.section-title { margin-bottom: 25px; font-size: clamp(3.4rem, 5.2vw, 6.1rem); line-height: 1.04; }
.section-title em { color: var(--olive); }
.section-lead { color: var(--muted); font-size: 1.02rem; line-height: 1.8; }
.photo-note { margin: 17px 0 0; color: var(--muted); font-size: .72rem; }

/* Company */
.about { background: var(--ivory); }
.about-grid { display: grid; grid-template-columns: minmax(0, .98fr) minmax(0, 1.02fr); gap: clamp(55px, 8vw, 120px); align-items: center; }
.about-media { position: relative; margin: 0; }
.about-media img { width: 100%; height: 600px; object-fit: cover; object-position: center; border-radius: 220px 220px 8px 8px; }
.about-media figcaption { position: absolute; right: -26px; bottom: 27px; padding: 14px 18px; background: var(--sand); color: var(--forest); font-size: .63rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.about-copy { max-width: 580px; }
.about-copy .section-title { max-width: 610px; }
.about-copy .section-lead { max-width: 520px; }
.about-signature { display: flex; align-items: center; gap: 19px; margin-top: 38px; padding-top: 28px; border-top: 1px solid var(--line); }
.about-signature span { color: var(--olive); font: italic 2.2rem/1 var(--serif); }
.about-signature p { max-width: 310px; margin: 0; color: var(--muted); font-size: .79rem; line-height: 1.6; }

/* Services */
.services { background: var(--cream); }
.services-heading { display: flex; justify-content: space-between; align-items: end; gap: 36px; margin-bottom: 46px; }
.services-heading .section-title { max-width: 790px; margin-bottom: 0; }
.services-heading .section-lead { max-width: 290px; margin-bottom: 6px; }
.service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.service-card { min-width: 0; background: var(--ivory); border: 1px solid var(--line); }
.service-image { height: 235px; overflow: hidden; background: var(--sand); }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.service-card:hover img { transform: scale(1.045); }
.service-card:nth-child(1) img { object-position: 58% center; }
.service-card:nth-child(3) img { object-position: 50% 38%; }
.service-card:nth-child(4) img { object-position: 55% 58%; }
.service-content { min-height: 215px; display: flex; flex-direction: column; padding: 25px 23px 27px; }
.service-index { margin-bottom: 16px; color: var(--olive); font-size: .7rem; font-weight: 700; letter-spacing: .1em; }
.service-content h3 { margin-bottom: 10px; font: 400 clamp(1.7rem, 2.1vw, 2.3rem)/1.05 var(--serif); letter-spacing: -.04em; }
.service-content p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.65; }
.services-end { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 33px; padding-top: 28px; border-top: 1px solid var(--line); }
.services-end p { margin: 0; max-width: 470px; font-size: .92rem; }
.button-outline { border: 1px solid var(--forest); color: var(--forest); }

/* Differentials */
.differentials { background: var(--forest-deep); color: var(--ivory); }
.difference-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr); gap: clamp(55px, 8vw, 120px); align-items: start; }
.differentials .section-number, .differentials .section-title em { color: var(--apricot); }
.differentials .section-lead { max-width: 465px; color: rgba(255, 253, 250, .7); }
.difference-photo { margin: 38px 0 0; width: 100%; height: 290px; object-fit: cover; object-position: center 52%; }
.difference-list { border-top: 1px solid rgba(255,255,255,.24); }
.difference-item { display: grid; grid-template-columns: 52px 1fr; gap: 20px; padding: 33px 0; border-bottom: 1px solid rgba(255,255,255,.24); }
.difference-item > span { padding-top: 2px; color: var(--apricot); font: italic 1.1rem/1 var(--serif); }
.difference-item h3 { margin-bottom: 8px; font: 400 clamp(1.6rem, 2.6vw, 2.35rem)/1.1 var(--serif); }
.difference-item p { margin: 0; color: rgba(255, 253, 250, .66); font-size: .87rem; line-height: 1.7; }
.difference-contact { display: inline-flex; align-items: center; gap: 12px; margin-top: 30px; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.55); font-size: .85rem; font-weight: 700; }
.difference-contact:hover { color: var(--apricot); border-color: var(--apricot); }

/* Contact */
.contact { background: var(--sand); padding-bottom: 0; }
.contact-panel { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(310px, .88fr); gap: clamp(45px, 7vw, 95px); align-items: end; padding-bottom: 95px; }
.contact-title { max-width: 760px; margin-bottom: 0; font-size: clamp(3.8rem, 6.2vw, 7.2rem); line-height: 1.02; }
.contact-title em { color: var(--olive); }
.contact-info { padding-bottom: 7px; }
.contact-info > p { max-width: 420px; margin-bottom: 27px; color: #4e6054; font-size: .98rem; }
.button-light { background: var(--forest); color: var(--ivory); }
.button-light:hover { background: var(--olive); transform: translateY(-2px); }
.contact-links { display: grid; gap: 13px; margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(32,59,50,.24); }
.contact-links a, .contact-links span { display: flex; align-items: center; gap: 13px; color: #4e6054; font-size: .83rem; }
.contact-links a:hover { color: var(--forest); text-decoration: underline; }
.contact-links b { width: 64px; color: var(--forest); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.footer { border-top: 1px solid rgba(32,59,50,.24); }
.footer-inner { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.footer-brand { font-size: 1rem; font-weight: 800; letter-spacing: .16em; }
.footer-meta { color: #637467; font-size: .68rem; }
.footer-nav { display: flex; gap: 23px; }
.footer-nav a { font-size: .75rem; font-weight: 600; }
.footer-nav a:hover { text-decoration: underline; }

@media (max-width: 1100px) {
  :root { --page: min(100% - 56px, 1280px); }
  .hero h1 { font-size: clamp(3.7rem, 6.1vw, 6.5rem); }
  .hero-copy { padding-left: 28px; padding-right: 35px; }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-image { height: 260px; }
  .service-content { min-height: 180px; }
  .difference-grid { gap: 55px; }
}

@media (max-width: 800px) {
  :root { --page: min(100% - 40px, 1280px); }
  .header-inner { min-height: 76px; }
  .menu-button { display: grid; place-items: center; width: 44px; height: 44px; position: relative; z-index: 22; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; }
  .menu-button span, .menu-button::before, .menu-button::after { content: ""; display: block; position: absolute; width: 18px; height: 2px; background: var(--forest); transition: transform .2s, opacity .2s; }
  .menu-button::before { transform: translateY(-6px); }
  .menu-button::after { transform: translateY(6px); }
  .menu-button[aria-expanded="true"] span { opacity: 0; }
  .menu-button[aria-expanded="true"]::before { transform: rotate(45deg); }
  .menu-button[aria-expanded="true"]::after { transform: rotate(-45deg); }
  .nav-wrap { display: none; position: fixed; z-index: 21; inset: 0; padding: 115px 30px 40px; flex-direction: column; align-items: stretch; justify-content: center; gap: 40px; background: var(--cream); }
  .nav-wrap.open { display: flex; }
  .main-nav { align-items: flex-start; flex-direction: column; gap: 20px; }
  .main-nav a { font: 400 2.8rem/1 var(--serif); }
  .header-cta { justify-content: space-between; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { min-height: 580px; padding: 74px 32px 40px; }
  .hero h1 { max-width: 680px; font-size: clamp(4.3rem, 11vw, 7rem); }
  .hero-media { min-height: 570px; }
  .values-inner { gap: 15px; justify-content: center; flex-wrap: wrap; padding-block: 21px; }
  .about-grid, .difference-grid { grid-template-columns: 1fr; }
  .about-copy { max-width: 690px; }
  .about-media { max-width: 640px; }
  .about-media img { height: 540px; }
  .services-heading { align-items: start; flex-direction: column; gap: 10px; }
  .services-heading .section-lead { max-width: 580px; }
  .difference-photo { max-width: 680px; height: 360px; }
  .contact-panel { grid-template-columns: 1fr; align-items: start; }
  .contact-info { max-width: 580px; }
}

@media (max-width: 550px) {
  :root { --page: min(100% - 28px, 1280px); }
  .brand-symbol { width: 39px; height: 39px; font-size: 1.8rem; }
  .brand-name { font-size: 1.04rem; }
  .brand-name small { font-size: .48rem; }
  .hero-copy { min-height: 560px; padding: 64px 22px 34px; }
  .hero h1 { font-size: clamp(3.7rem, 14.5vw, 5.5rem); line-height: .98; }
  .hero-lead { font-size: .96rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 16px; }
  .button-primary { justify-content: space-between; }
  .hero-text-link { padding: 7px 0; }
  .hero-quiet-note { padding-top: 35px; font-size: .58rem; }
  .hero-media { min-height: 440px; }
  .hero-media img { object-position: 50% 48%; }
  .hero-caption { right: 16px; bottom: 18px; font-size: .54rem; }
  .values-inner span { font-size: .59rem; letter-spacing: .09em; }
  .values-inner i:last-of-type, .values-inner span:last-child { display: none; }
  .section { padding-block: 83px; }
  .section-title { font-size: clamp(3rem, 12vw, 4.6rem); }
  .about-grid { gap: 48px; }
  .about-media { width: calc(100% - 14px); }
  .about-media img { height: 440px; border-radius: 150px 150px 7px 7px; }
  .about-media figcaption { right: -14px; bottom: 20px; }
  .service-grid { grid-template-columns: 1fr; gap: 17px; }
  .service-image { height: 235px; }
  .service-content { min-height: 165px; }
  .services-end { align-items: start; flex-direction: column; }
  .button-outline { width: 100%; justify-content: space-between; }
  .difference-grid { gap: 45px; }
  .difference-photo { height: 260px; }
  .difference-item { grid-template-columns: 38px 1fr; gap: 10px; }
  .contact { padding-bottom: 0; }
  .contact-panel { gap: 38px; padding-bottom: 70px; }
  .contact-title { font-size: clamp(3.5rem, 13vw, 5.2rem); }
  .button-light { width: 100%; justify-content: space-between; }
  .contact-links a, .contact-links span { font-size: .77rem; }
  .footer-inner { align-items: flex-start; flex-direction: column; padding-block: 27px; gap: 14px; }
}

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