:root {
  --ivory: #f7f4ee;
  --paper: #fffdf9;
  --ink: #243431;
  --muted: #66726f;
  --sage: #9eb5aa;
  --sea: #5d8583;
  --sea-dark: #315f60;
  --sand: #d8cbb8;
  --line: rgba(36, 52, 49, .16);
  --shadow: 0 26px 70px rgba(36, 52, 49, .12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-height: 86px;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: -60px;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
  text-decoration: none;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  min-height: var(--header-height);
  padding: 0 clamp(22px, 4vw, 72px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: rgba(247, 244, 238, .9);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: min-height .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { min-height: 70px; border-color: var(--line); box-shadow: 0 10px 30px rgba(36,52,49,.05); }
.brand { display: inline-flex; width: fit-content; flex-direction: column; line-height: 1; text-decoration: none; }
.brand-main { font-family: var(--serif); font-size: 1.42rem; letter-spacing: .03em; }
.brand-sub { margin-top: 5px; color: var(--sea-dark); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; }
.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 40px); }
.main-nav a { position: relative; color: var(--muted); font-size: .78rem; font-weight: 650; letter-spacing: .1em; text-decoration: none; text-transform: uppercase; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--sea-dark); transition: right .25s ease; }
.main-nav a:hover::after, .main-nav a:focus-visible::after { right: 0; }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 12px; }
.header-cta { padding: 10px 20px; border: 1px solid var(--ink); text-decoration: none; font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; transition: background .2s ease, color .2s ease; }
.header-cta:hover, .header-cta:focus-visible { background: var(--ink); color: white; }
.language-toggle { width: 42px; height: 42px; padding: 0; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--ink); cursor: pointer; font-size: .72rem; font-weight: 750; letter-spacing: .08em; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
.language-toggle:hover, .language-toggle:focus-visible { background: var(--ink); border-color: var(--ink); color: white; transform: translateY(-1px); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 50px) clamp(22px, 4vw, 72px) 54px;
  display: grid;
  grid-template-columns: minmax(320px, .82fr) minmax(420px, 1.18fr);
  gap: clamp(36px, 6vw, 100px);
  align-items: center;
  overflow: hidden;
}
.hero-copy { max-width: 620px; }
.eyebrow { margin: 0 0 20px; color: var(--sea-dark); font-size: .73rem; font-weight: 750; letter-spacing: .22em; text-transform: uppercase; }
h1, h2 { margin: 0; font-family: var(--serif); font-weight: 400; line-height: 1.02; letter-spacing: -.035em; }
h1 { max-width: 760px; font-size: clamp(3.5rem, 6.2vw, 7.2rem); }
h2 { max-width: 850px; font-size: clamp(2.8rem, 4.8vw, 5.8rem); }
.hero-intro { max-width: 600px; margin: 34px 0 0; color: var(--muted); font-size: clamp(1.05rem, 1.35vw, 1.25rem); }
.hero-actions { margin-top: 38px; display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 52px; padding: 0 26px; border: 1px solid transparent; text-decoration: none; font-size: .78rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button-primary { background: var(--ink); color: white; }
.button-primary:hover, .button-primary:focus-visible { background: var(--sea-dark); }
.button-light { background: var(--paper); color: var(--ink); }
.button-light:hover, .button-light:focus-visible { background: transparent; color: white; border-color: white; }
.button-outline-light { background: transparent; color: white; border-color: rgba(255,255,255,.68); }
.button-outline-light:hover, .button-outline-light:focus-visible { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.text-link { display: inline-flex; align-items: center; gap: 9px; color: var(--ink); font-weight: 700; text-decoration: none; border-bottom: 1px solid currentColor; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translate(3px, -2px); }
.hero-media { position: relative; margin: 0; height: min(76vh, 820px); min-height: 560px; overflow: hidden; box-shadow: var(--shadow); }
.hero-media::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.25); pointer-events: none; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 53%; transition: transform 1.1s cubic-bezier(.2,.7,.2,1); }
.hero-media:hover img { transform: scale(1.025); }
.hero-media figcaption { position: absolute; right: 20px; bottom: 18px; padding: 8px 12px; background: rgba(255,253,249,.85); backdrop-filter: blur(10px); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; }
.scroll-hint { position: absolute; left: clamp(22px, 4vw, 72px); bottom: 22px; display: flex; align-items: center; gap: 12px; color: var(--muted); font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; }
.scroll-hint span { display: block; width: 44px; height: 1px; background: var(--muted); }

.facts { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); }
.facts div { min-height: 150px; display: flex; flex-direction: column; align-items: center; justify-content: center; border-right: 1px solid var(--line); }
.facts div:last-child { border-right: 0; }
.facts strong { font-family: var(--serif); font-size: 2.8rem; font-weight: 400; line-height: 1; }
.facts span { margin-top: 10px; color: var(--muted); font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }

.section { padding: clamp(92px, 11vw, 170px) clamp(22px, 7vw, 130px); }
.section-heading { margin-bottom: clamp(46px, 6vw, 84px); }
.section-heading-row { display: flex; align-items: end; justify-content: space-between; gap: 60px; }
.section-heading-row > p { max-width: 310px; margin: 0 0 10px; color: var(--muted); }
.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: minmax(340px, 1fr) minmax(320px, .8fr); gap: clamp(50px, 9vw, 150px); align-items: center; }
.about-image { position: relative; max-width: 760px; }
.about-image::before { content: ""; position: absolute; z-index: 0; inset: -25px 25px 25px -25px; border: 1px solid var(--sage); }
.about-image img { position: relative; z-index: 1; aspect-ratio: 4 / 5; object-fit: cover; }
.about-copy { max-width: 650px; }
.about-copy p { margin: 0 0 22px; color: var(--muted); }
.about-copy .lead { color: var(--ink); font-family: var(--serif); font-size: clamp(1.45rem, 2.1vw, 2.1rem); line-height: 1.35; }
.about-copy .text-link { margin-top: 18px; }

.gallery-section { background: var(--ivory); }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: clamp(220px, 27vw, 430px); gap: 14px; }
.gallery-item { position: relative; overflow: hidden; padding: 0; border: 0; background: #d8ddd8; cursor: zoom-in; }
.gallery-item-large { grid-column: span 2; grid-row: span 2; }
.gallery-item-tall { grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.gallery-item span { position: absolute; left: 16px; bottom: 14px; padding: 6px 10px; background: rgba(255,253,249,.86); color: var(--ink); font-size: .66rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; opacity: 0; transform: translateY(8px); transition: opacity .25s ease, transform .25s ease; }
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.035); filter: saturate(1.05); }
.gallery-item:hover span, .gallery-item:focus-visible span { opacity: 1; transform: none; }

.services { background: var(--sea-dark); color: white; }
.services .eyebrow { color: #c9ded4; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.25); border-left: 1px solid rgba(255,255,255,.25); }
.service-card { min-height: 260px; padding: clamp(28px, 3.2vw, 54px); border-right: 1px solid rgba(255,255,255,.25); border-bottom: 1px solid rgba(255,255,255,.25); }
.service-card svg { width: 32px; height: 32px; margin-bottom: 34px; fill: none; stroke: #c9ded4; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 0; font-family: var(--serif); font-size: 1.65rem; font-weight: 400; }
.service-card p { max-width: 280px; margin: 14px 0 0; color: rgba(255,255,255,.7); font-size: .94rem; }

.location { background: var(--paper); }
.location-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(50px, 9vw, 150px); align-items: center; }
.location-copy { max-width: 650px; }
.location-copy > p:not(.eyebrow) { color: var(--muted); margin: 30px 0; }
.location-list { margin: 35px 0 38px; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.location-list li { display: flex; align-items: baseline; gap: 22px; padding: 15px 0; border-bottom: 1px solid var(--line); color: var(--muted); }
.location-list li > span:first-child { min-width: 72px; color: var(--sea-dark); font-family: var(--serif); font-size: 1.28rem; }
.location-visual { position: relative; }
.location-visual img { aspect-ratio: 4 / 5; object-fit: cover; }
.map-card { position: absolute; right: -28px; bottom: -34px; width: min(290px, 66%); padding: 26px; display: flex; flex-direction: column; background: var(--ivory); box-shadow: var(--shadow); }
.map-card span { color: var(--muted); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.map-card strong { margin: 4px 0; font-family: var(--serif); font-size: 2.2rem; font-weight: 400; }

.contact { padding-top: 0; background: var(--paper); }
.contact-card { padding: clamp(48px, 8vw, 120px); background: var(--ink); color: white; text-align: center; }
.contact-card .eyebrow { color: #c9ded4; }
.contact-card h2 { margin-inline: auto; max-width: 900px; }
.contact-card > p:not(.eyebrow) { max-width: 660px; margin: 28px auto 0; color: rgba(255,255,255,.72); }
.contact-actions { margin-top: 40px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 18px; }
.direct-contact-block { max-width: 980px; margin: 62px auto 0; padding-top: 42px; border-top: 1px solid rgba(255,255,255,.18); }
.direct-contact-heading { margin: 0 0 22px; color: rgba(255,255,255,.9); font-family: var(--serif); font-size: clamp(1.5rem, 2.2vw, 2.1rem); }
.direct-contact-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.direct-contact-item { min-height: 116px; padding: 22px 18px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.035); color: inherit; text-decoration: none; transition: background .2s ease, border-color .2s ease, transform .2s ease; }
.direct-contact-item:hover, .direct-contact-item:focus-visible { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.55); transform: translateY(-2px); }
.direct-contact-label { color: white; font-size: .72rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.direct-contact-value { color: rgba(255,255,255,.82); font-size: .92rem; overflow-wrap: anywhere; }
.direct-contact-item.is-placeholder { cursor: default; }
.contact-note { margin: 22px 0 0; color: rgba(255,255,255,.5); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }

.site-footer { min-height: 250px; padding: 60px clamp(22px, 7vw, 130px); display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 30px; background: var(--ivory); border-top: 1px solid var(--line); }
.brand-footer { align-self: center; }
.site-footer > p { margin: 0; color: var(--muted); font-size: .82rem; }
.footer-meta { justify-self: end; text-align: right; }

.lightbox { width: 100vw; max-width: none; height: 100vh; max-height: none; margin: 0; padding: 24px; border: 0; background: rgba(18, 27, 25, .96); color: white; }
.lightbox::backdrop { background: rgba(18,27,25,.8); }
.lightbox[open] { display: grid; grid-template-columns: 70px 1fr 70px; align-items: center; }
.lightbox figure { margin: 0; height: calc(100vh - 48px); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.lightbox img { width: auto; max-width: 100%; height: auto; max-height: calc(100vh - 92px); object-fit: contain; }
.lightbox figcaption { color: rgba(255,255,255,.7); font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.lightbox button { border: 0; background: transparent; color: white; cursor: pointer; }
.lightbox-close { position: fixed; z-index: 2; top: 18px; right: 25px; font-size: 2.2rem; }
.lightbox-nav { font-size: 2rem; }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.js .reveal-delay { transition-delay: .15s; }
.js .reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .site-header { grid-template-columns: 1fr auto; }
  .header-actions { gap: 8px; }
  .main-nav { position: fixed; inset: var(--header-height) 0 auto; height: calc(100svh - var(--header-height)); padding: 45px 26px; display: flex; flex-direction: column; align-items: flex-start; gap: 24px; background: var(--ivory); transform: translateX(100%); visibility: hidden; transition: transform .35s ease, visibility .35s; }
  .main-nav.open { transform: none; visibility: visible; }
  .main-nav a { font-family: var(--serif); font-size: 2.3rem; font-weight: 400; letter-spacing: -.02em; text-transform: none; }
  .header-cta { display: none; }
  .language-toggle { width: 40px; height: 40px; }
  .menu-toggle { width: 46px; height: 46px; padding: 0; display: grid; place-content: center; gap: 7px; border: 0; background: transparent; cursor: pointer; }
  .menu-toggle span:not(.sr-only) { display: block; width: 25px; height: 1px; background: var(--ink); transition: transform .25s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }
  .hero { grid-template-columns: .9fr 1.1fr; }
  .hero-media { min-height: 500px; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  :root { --header-height: 72px; }
  .site-header { min-height: var(--header-height); }
  .site-header.scrolled { min-height: 64px; }
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 54px); grid-template-columns: 1fr; gap: 44px; }
  h1 { font-size: clamp(3.4rem, 16vw, 5.7rem); }
  h2 { font-size: clamp(2.7rem, 12vw, 4.4rem); }
  .hero-media { height: 67svh; min-height: 500px; }
  .scroll-hint { display: none; }
  .facts { grid-template-columns: repeat(2, 1fr); }
  .facts div { min-height: 120px; border-bottom: 1px solid var(--line); }
  .facts div:nth-child(2n) { border-right: 0; }
  .facts div:last-child { grid-column: 1 / -1; }
  .section { padding-block: 92px; }
  .section-heading-row { align-items: flex-start; flex-direction: column; gap: 20px; }
  .about-grid, .location-grid { grid-template-columns: 1fr; }
  .about-image::before { inset: -14px 14px 14px -14px; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 280px; }
  .gallery-item-large { grid-column: span 2; grid-row: span 2; }
  .gallery-item-tall { grid-row: span 1; }
  .gallery-item span { opacity: 1; transform: none; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .direct-contact-grid { grid-template-columns: 1fr; }
  .location-visual { margin-right: 18px; }
  .map-card { right: -18px; bottom: -28px; }
  .site-footer { min-height: 300px; grid-template-columns: 1fr; align-items: start; }
  .footer-meta { justify-self: start; text-align: left; }
  .lightbox { padding: 18px 10px; }
  .lightbox[open] { grid-template-columns: 42px 1fr 42px; }
  .lightbox figure { height: calc(100vh - 36px); }
  .lightbox img { max-height: calc(100vh - 92px); }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 430px; }
  .gallery-item-large { grid-column: auto; grid-row: auto; }
  .hero-actions { align-items: flex-start; flex-direction: column; }
  .button { width: 100%; }
  .contact-actions { width: 100%; flex-direction: column; }
  .contact-actions .button { width: 100%; }
  .direct-contact-block { margin-top: 48px; padding-top: 34px; }
}

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