:root {
  --ink: #1d241f;
  --forest: #1f3026;
  --forest-soft: #2e4637;
  --moss: #64745e;
  --gold: #d4a047;
  --gold-bright: #efbb59;
  --cream: #f3eee4;
  --sand: #ded2bc;
  --white: #fffdf8;
  --line: rgba(29, 36, 31, .16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --shadow: 0 24px 60px rgba(21, 30, 24, .15);
  --radius: 2px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
body.menu-open, body.lightbox-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.wrap { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 120px 0; }
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .22);
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}
.site-header.is-scrolled,
.site-header.menu-active {
  color: var(--ink);
  background: rgba(243, 238, 228, .97);
  box-shadow: 0 7px 30px rgba(25, 33, 27, .1);
  border-bottom-color: transparent;
}
.header-inner { min-height: 82px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.brand span { display: grid; line-height: 1.05; }
.brand strong { font-family: var(--serif); font-size: 21px; letter-spacing: .01em; }
.brand small { margin-top: 5px; font-size: 9px; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; opacity: .72; }

.main-nav { display: flex; align-items: center; gap: 33px; }
.main-nav a { position: relative; font-size: 13px; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.main-nav > a:not(.nav-phone)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .2s ease;
}
.main-nav > a:hover::after,
.main-nav > a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.nav-phone { padding: 13px 20px; color: var(--ink); background: var(--gold-bright); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; color: inherit; }
.menu-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero { position: relative; min-height: 760px; height: 100svh; display: grid; align-items: center; overflow: hidden; color: var(--white); background: var(--forest); }
.hero-media, .hero-shade { position: absolute; height: 100%; }
.hero-media { top: 50%; right: 0; width: min(56vw, 980px); height: min(72vh, 680px); display: grid; grid-template-columns: .9fr 1.1fr; gap: 12px; padding-right: 28px; transform: translateY(-50%); }
.hero-media img { width: 100%; height: 100%; min-width: 0; object-fit: cover; box-shadow: 0 22px 55px rgba(8, 15, 10, .24); }
.hero-panel-primary { grid-column: 2; grid-row: 1; object-position: 50% 44%; }
.hero-panel-secondary { grid-column: 1; grid-row: 1; object-position: 52% 50%; }
.hero-shade { inset: 0; width: 100%; background: linear-gradient(90deg, rgba(13, 22, 17, .98) 0%, rgba(20, 31, 24, .96) 34%, rgba(20, 31, 24, .6) 56%, rgba(20, 31, 24, .08) 92%), linear-gradient(0deg, rgba(15, 24, 18, .38), transparent 45%); }
.hero-content { position: relative; z-index: 2; padding-top: 74px; }
.eyebrow { margin: 0 0 20px; color: var(--gold-bright); font-size: 12px; font-weight: 800; letter-spacing: .25em; text-transform: uppercase; }
.eyebrow-dark { color: #97702d; }
.hero h1, .section h2, .contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: .96;
}
.hero h1 { max-width: 780px; font-size: clamp(66px, 8vw, 116px); }
.hero-lead { max-width: 610px; margin: 30px 0 34px; color: rgba(255, 255, 255, .88); font-size: clamp(18px, 2vw, 22px); line-height: 1.55; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; padding: 15px 25px; border: 1px solid transparent; font-size: 13px; font-weight: 800; letter-spacing: .05em; line-height: 1.2; text-decoration: none; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--gold-bright); }
.button-primary:hover { background: #f7c972; }
.button-ghost { color: var(--white); border-color: rgba(255, 255, 255, .55); background: rgba(255, 255, 255, .05); }
.button-ghost:hover { color: var(--ink); background: var(--white); }
.hero-scroll { position: absolute; right: 4vw; bottom: 42px; z-index: 2; display: flex; align-items: center; gap: 12px; color: rgba(255, 255, 255, .8); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-decoration: none; text-transform: uppercase; }
.hero-scroll span { display: block; width: 55px; height: 1px; background: var(--gold-bright); }

.intro-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(0, 1fr); align-items: center; gap: clamp(60px, 9vw, 130px); }
.intro-photo { position: relative; aspect-ratio: 4 / 3; overflow: visible; }
.intro-photo::before { content: ""; position: absolute; top: -24px; right: -24px; width: 48%; height: 68%; border: 1px solid #b69762; }
.intro-photo img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: 50% 48%; box-shadow: var(--shadow); }
.photo-note { position: absolute; right: -25px; bottom: 38px; z-index: 2; min-width: 165px; padding: 18px 22px; color: var(--white); background: var(--forest); box-shadow: var(--shadow); }
.photo-note strong, .photo-note span { display: block; }
.photo-note strong { font-family: var(--serif); font-size: 21px; }
.photo-note span { color: rgba(255, 255, 255, .7); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.section h2, .contact h2 { font-size: clamp(48px, 6vw, 78px); }
.intro-copy .lead { margin: 34px 0 20px; font-family: var(--serif); font-size: 23px; line-height: 1.55; }
.intro-copy > p:not(.eyebrow):not(.lead) { max-width: 620px; color: #596158; }
.text-link { display: inline-flex; align-items: center; gap: 14px; margin-top: 18px; padding-bottom: 5px; border-bottom: 1px solid currentColor; font-size: 13px; font-weight: 800; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.text-link span { color: #9b722f; font-size: 19px; transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.services { background: #e9e1d2; }
.section-heading { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, .65fr); align-items: end; gap: 60px; margin-bottom: 58px; }
.section-heading > p { max-width: 430px; margin: 0 0 5px; color: #5f665e; }
.service-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.service-card { min-width: 0; background: var(--white); box-shadow: 0 18px 44px rgba(39, 43, 37, .09); }
.service-image { position: relative; height: auto; aspect-ratio: 3 / 2; overflow: hidden; }
.service-image::after { content: ""; position: absolute; inset: auto 0 0; height: 35%; background: linear-gradient(0deg, rgba(20, 26, 22, .35), transparent); }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.service-card:hover .service-image img { transform: scale(1.025); }
.service-number { position: absolute; right: 20px; bottom: 12px; z-index: 2; color: var(--white); font-family: var(--serif); font-size: 44px; }
.service-content { padding: 38px 42px 42px; }
.service-kicker { margin: 0 0 7px; color: #9b722f; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.service-content h3 { margin: 0 0 24px; font-family: var(--serif); font-size: clamp(34px, 4vw, 49px); font-weight: 400; line-height: 1.1; }
.service-content ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 22px; margin: 0 0 18px; padding: 0; list-style: none; color: #586058; }
.service-content li { position: relative; padding-left: 18px; }
.service-content li::before { content: ""; position: absolute; top: .7em; left: 0; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

.callout { color: var(--white); background: var(--forest); }
.callout-inner { min-height: 210px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.callout p { margin: 0; color: rgba(255, 255, 255, .7); font-size: 18px; }
.callout a { font-family: var(--serif); font-size: clamp(38px, 6vw, 70px); line-height: 1; text-decoration: none; }
.callout a span { color: var(--gold-bright); }

.gallery { background: var(--cream); }
.gallery-heading { margin-bottom: 46px; }
.gallery-grid { display: grid; grid-auto-flow: dense; grid-auto-rows: 255px; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery-grid .gallery-item { position: relative; min-width: 0; margin: 0; padding: 0; overflow: hidden; border: 0; background: var(--sand); cursor: zoom-in; }
.gallery-grid .gallery-wide { grid-column: span 2; }
.gallery-grid .gallery-tall { grid-row: span 2; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease, filter .65s ease; }
.gallery-grid .gallery-item::after { content: "+"; position: absolute; right: 14px; bottom: 14px; display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid rgba(255, 255, 255, .65); color: var(--white); background: rgba(17, 29, 22, .68); font-family: var(--serif); font-size: 28px; line-height: 1; opacity: 0; transform: translateY(7px); transition: opacity .25s ease, transform .25s ease; }
.gallery-grid .gallery-item:hover img,
.gallery-grid .gallery-item:focus-visible img { transform: scale(1.035); filter: saturate(1.07); }
.gallery-grid .gallery-item:hover::after,
.gallery-grid .gallery-item:focus-visible::after { opacity: 1; transform: none; }

.lightbox { position: fixed; inset: 0; z-index: 300; display: none; grid-template-columns: minmax(58px, 1fr) minmax(0, 1180px) minmax(58px, 1fr); align-items: center; gap: 22px; padding: 34px; color: var(--white); background: rgba(8, 14, 10, .96); }
.lightbox.is-open { display: grid; }
.lightbox-figure { display: grid; max-width: 100%; max-height: calc(100svh - 68px); margin: 0; justify-items: center; }
.lightbox-figure img { width: auto; max-width: 100%; height: auto; max-height: calc(100svh - 128px); object-fit: contain; box-shadow: 0 24px 70px rgba(0, 0, 0, .38); }
.lightbox-figure figcaption { width: 100%; display: flex; justify-content: space-between; gap: 24px; padding-top: 12px; color: rgba(255, 255, 255, .74); font-size: 13px; line-height: 1.45; }
.lightbox-figure figcaption [data-lightbox-counter] { flex: none; color: var(--gold-bright); font-weight: 800; letter-spacing: .08em; }
.lightbox button { border: 0; color: var(--white); background: transparent; cursor: pointer; }
.lightbox-close { position: absolute; top: 18px; right: 22px; z-index: 2; width: 52px; height: 52px; font-family: var(--sans); font-size: 42px; font-weight: 200; line-height: 1; }
.lightbox-arrow { display: grid; width: 58px; height: 58px; place-items: center; border: 1px solid rgba(255, 255, 255, .35) !important; border-radius: 50% !important; font-size: 27px; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.lightbox-arrow:hover { border-color: var(--gold-bright) !important; color: var(--ink); background: var(--gold-bright); }
.lightbox-prev { justify-self: end; }
.lightbox-next { justify-self: start; }

.contact { color: var(--white); background: #17251d; }
.contact-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); align-items: stretch; gap: clamp(50px, 8vw, 110px); }
.contact-copy > p:not(.eyebrow) { max-width: 540px; margin: 30px 0; color: rgba(255, 255, 255, .68); font-size: 18px; }
.contact-list { margin: 42px 0; }
.contact-list > div { display: grid; grid-template-columns: 92px 1fr; padding: 15px 0; border-top: 1px solid rgba(255, 255, 255, .15); }
.contact-list > div:last-child { border-bottom: 1px solid rgba(255, 255, 255, .15); }
.contact-list dt { color: rgba(255, 255, 255, .5); font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.contact-list dd { margin: 0; font-size: 17px; }
.contact-list a { color: var(--white); text-decoration-color: var(--gold); text-underline-offset: 4px; }
.map-card { position: relative; min-height: 600px; background: #dde2d9; box-shadow: var(--shadow); }
.map-card iframe { width: 100%; height: 100%; min-height: 600px; border: 0; filter: saturate(.7) contrast(.95); }
.map-label { position: absolute; right: 20px; bottom: 20px; left: 20px; padding: 18px 22px; color: var(--ink); background: rgba(255, 253, 248, .94); box-shadow: 0 10px 30px rgba(20, 29, 23, .16); }
.map-label span, .map-label strong { display: block; }
.map-label span { color: #8c672b; font-size: 10px; font-weight: 800; letter-spacing: .15em; text-transform: uppercase; }
.map-label strong { margin-top: 3px; font-family: var(--serif); font-size: 20px; }

.site-footer { padding: 34px 0; color: rgba(255, 255, 255, .7); background: #101a14; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.footer-brand { color: var(--white); }
.site-footer p, .site-footer > a { margin: 0; font-size: 12px; }
.site-footer a { text-decoration: none; }
.mobile-call { display: none; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
:focus-visible { outline: 3px solid var(--gold-bright); outline-offset: 4px; }

@media (max-width: 980px) {
  .section { padding: 90px 0; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 82px 0 auto;
    display: grid;
    gap: 0;
    padding: 18px 24px 30px;
    color: var(--ink);
    background: var(--cream);
    box-shadow: 0 20px 30px rgba(23, 32, 26, .16);
    transform: translateY(-140%);
    visibility: hidden;
    transition: transform .25s ease, visibility .25s ease;
  }
  .main-nav.is-open { transform: none; visibility: visible; }
  .main-nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .main-nav .nav-phone { margin-top: 16px; padding: 15px 20px; border: 0; text-align: center; }
  .hero-media { width: min(62vw, 700px); height: min(68vh, 610px); }
  .intro-grid { gap: 60px; }
  .service-content { padding: 32px; }
  .service-content ul { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .map-card, .map-card iframe { min-height: 470px; }
}

@media (max-width: 720px) {
  .wrap { width: min(100% - 32px, 580px); }
  .section { padding: 76px 0; }
  .header-inner { min-height: 72px; }
  .main-nav { top: 72px; }
  .brand img { width: 48px; height: 48px; }
  .brand strong { font-size: 18px; }
  .hero { min-height: 700px; }
  .hero-media { inset: 0; width: 100%; height: 100%; display: block; padding: 0; transform: none; }
  .hero-media img { width: 100%; height: 100%; box-shadow: none; object-position: 50% 46%; }
  .hero-panel-secondary { display: none; }
  .hero-shade { background: linear-gradient(90deg, rgba(13, 22, 17, .93), rgba(20, 31, 24, .43)), linear-gradient(0deg, rgba(15, 24, 18, .5), transparent 55%); }
  .hero-content { padding-top: 54px; }
  .hero h1 { font-size: clamp(54px, 16vw, 76px); }
  .hero-lead { margin: 24px 0 28px; font-size: 18px; }
  .hero-actions { display: grid; width: 100%; max-width: 380px; }
  .button { width: 100%; }
  .hero-scroll { display: none; }
  .intro-grid, .service-grid, .section-heading { grid-template-columns: 1fr; }
  .intro-photo { width: calc(100% - 18px); aspect-ratio: 1 / 1; }
  .intro-photo img { object-position: 50% 48%; }
  .intro-photo::before { top: -14px; right: -18px; }
  .photo-note { right: -18px; bottom: 24px; }
  .intro-grid { gap: 62px; }
  .section-heading { gap: 24px; margin-bottom: 38px; }
  .section h2, .contact h2 { font-size: clamp(43px, 13vw, 60px); }
  .intro-copy .lead { margin-top: 25px; font-size: 21px; }
  .service-grid { gap: 22px; }
  .service-image { aspect-ratio: 4 / 3; }
  .service-content { padding: 28px 24px 32px; }
  .service-content h3 { font-size: 38px; }
  .callout-inner { min-height: 190px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 12px; }
  .callout a { font-size: 38px; }
  .gallery-grid { grid-auto-rows: 190px; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .gallery-grid .gallery-wide { grid-column: span 2; }
  .gallery-grid .gallery-tall { grid-row: span 2; }
  .gallery-grid .gallery-item::after { right: 9px; bottom: 9px; width: 36px; height: 36px; opacity: 1; transform: none; font-size: 24px; }
  .lightbox { grid-template-columns: 1fr 1fr; grid-template-rows: minmax(0, 1fr) 52px; gap: 12px; padding: 62px 16px 18px; }
  .lightbox-figure { grid-column: 1 / -1; grid-row: 1; max-height: calc(100svh - 144px); }
  .lightbox-figure img { max-height: calc(100svh - 204px); }
  .lightbox-figure figcaption { font-size: 11px; }
  .lightbox-arrow { grid-row: 2; width: 52px; height: 52px; }
  .lightbox-prev { grid-column: 1; justify-self: end; }
  .lightbox-next { grid-column: 2; justify-self: start; }
  .contact-grid { gap: 48px; }
  .contact-copy > p:not(.eyebrow) { font-size: 16px; }
  .map-card, .map-card iframe { min-height: 430px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 18px; padding-bottom: 58px; }
  .mobile-call { position: fixed; right: 12px; bottom: 12px; left: 12px; z-index: 90; display: flex; min-height: 54px; align-items: center; justify-content: center; gap: 8px; color: var(--ink); background: var(--gold-bright); box-shadow: 0 12px 34px rgba(20, 29, 23, .28); font-size: 14px; font-weight: 800; text-decoration: none; }
}

@media (max-width: 430px) {
  .gallery-grid { grid-auto-rows: 165px; }
  .contact-list > div { grid-template-columns: 76px 1fr; }
  .contact-list dd { font-size: 15px; word-break: break-word; }
}

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