:root {
  --ivory: oklch(97% 0.018 88);
  --paper: oklch(99% 0.009 88);
  --champagne: oklch(87% 0.055 82);
  --gold: oklch(65% 0.095 75);
  --sunset: oklch(70% 0.105 45);
  --palm: oklch(29% 0.055 145);
  --palm-soft: oklch(43% 0.05 145);
  --ink: oklch(23% 0.025 80);
  --muted: oklch(50% 0.026 75);
  --line: oklch(88% 0.025 82);
  --white: #fff;
  --display: "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --body: "Avenir Next", Avenir, "Segoe UI", system-ui, sans-serif;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(55, 43, 25, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--ivory); font-family: var(--body); line-height: 1.65; }
body.locked { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 3px solid color-mix(in oklch, var(--gold), white 20%); outline-offset: 4px; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: clamp(82px, 10vw, 148px) 0; }
.section.paper { background: var(--paper); }
.section.palm { color: white; background: var(--palm); }
.eyebrow { margin: 0 0 15px; color: var(--gold); font-size: .72rem; font-weight: 700; letter-spacing: .19em; text-transform: uppercase; }
.eyebrow.light { color: var(--champagne); }
h1, h2, h3, p { text-wrap: pretty; }
h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 400; line-height: 1.04; letter-spacing: -.025em; }
h1 { font-size: clamp(3.8rem, 7vw, 7rem); }
h2 { font-size: clamp(2.6rem, 5vw, 4.8rem); }
h3 { font-size: clamp(1.4rem, 2vw, 2rem); }
p { margin: 0; }
.lead { color: var(--muted); font-size: clamp(1.04rem, 1.5vw, 1.22rem); line-height: 1.85; }
.section-head { display: grid; grid-template-columns: 1.18fr .82fr; gap: 56px; align-items: end; margin-bottom: 58px; }
.section-head.center { display: block; max-width: 800px; margin: 0 auto 58px; text-align: center; }
.section-head.center .lead { margin-top: 22px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px; cursor: pointer; font-size: .77rem; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; transition: transform .2s, background .2s, color .2s, border-color .2s; }
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--palm); color: white; }
.button.primary:hover { background: var(--palm-soft); }
.button.gold { color: var(--palm); background: var(--champagne); }
.button.ghost { color: white; border-color: rgba(255,255,255,.58); background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.button.ghost:hover { color: var(--palm); background: white; }
.text-link { display: inline-flex; align-items: center; gap: 12px; margin-top: 28px; color: var(--palm); font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.text-link::after { content: ""; width: 46px; height: 1px; background: var(--gold); transition: width .2s; }
.text-link:hover::after { width: 64px; }

.site-header { position: fixed; inset: 0 0 auto; z-index: 50; color: white; border-bottom: 1px solid rgba(255,255,255,.2); transition: background .3s, color .3s, box-shadow .3s; }
.site-header.scrolled { color: var(--ink); background: color-mix(in oklch, var(--paper), transparent 6%); box-shadow: 0 12px 40px rgba(50,40,25,.08); backdrop-filter: blur(18px); }
.nav { height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.brand { display: flex; align-items: center; gap: 13px; min-width: max-content; }
.brand-mark { width: 34px; height: 34px; border: 1px solid currentColor; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-size: 1.2rem; }
.brand-name { font-family: var(--display); font-size: 1.45rem; letter-spacing: .01em; }
.nav-links { display: flex; align-items: center; gap: clamp(17px, 2vw, 30px); font-size: .71rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.nav-links a:not(.button) { position: relative; }
.nav-links a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 1px; background: currentColor; transition: right .2s; }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.site-header:not(.scrolled) .button.primary { color: var(--palm); background: var(--champagne); }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 0; border: 1px solid currentColor; border-radius: 50%; color: inherit; background: transparent; cursor: pointer; }
.menu-toggle span, .menu-toggle::before, .menu-toggle::after { content: ""; display: block; width: 19px; height: 1px; margin: 5px auto; background: currentColor; transition: transform .2s, opacity .2s; }
.menu-toggle.open span { opacity: 0; }
.menu-toggle.open::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle.open::after { transform: translateY(-6px) rotate(-45deg); }

.page-hero { min-height: 76svh; position: relative; display: grid; align-items: end; color: white; overflow: hidden; isolation: isolate; }
.page-hero::before, .page-hero::after { content: ""; position: absolute; inset: 0; z-index: -2; }
.page-hero::before { background: var(--hero-image) center / cover; transform: scale(1.025); animation: settle 1.8s ease forwards; }
.page-hero::after { z-index: -1; background: linear-gradient(90deg, rgba(17,29,20,.7), rgba(17,29,20,.18) 68%), linear-gradient(0deg, rgba(15,24,17,.62), transparent 55%); }
@keyframes settle { to { transform: scale(1); } }
.page-hero-content { padding: 190px 0 88px; }
.page-hero h1 { max-width: 900px; }
.page-hero .lead { max-width: 650px; margin-top: 25px; color: rgba(255,255,255,.86); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.story-grid, .split-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(54px, 8vw, 110px); align-items: center; }
.story-image { min-height: 620px; position: relative; }
.story-image img { height: 620px; object-fit: cover; border-radius: 180px 180px 20px 20px; box-shadow: var(--shadow); }
.story-copy .lead + .lead { margin-top: 18px; }
.signature { margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); color: var(--palm); font-family: var(--display); font-size: 1.4rem; font-style: italic; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.value-card, .service-card, .contact-card { padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: white; }
.value-card span, .service-card span { display: block; margin-bottom: 40px; color: var(--gold); font-family: var(--display); font-size: 1.35rem; font-style: italic; }
.value-card p, .service-card p { margin-top: 13px; color: var(--muted); font-size: .92rem; }
.quote-band { padding: clamp(84px, 10vw, 130px) 0; color: white; text-align: center; background: var(--palm); }
.quote-band blockquote { max-width: 980px; margin: 0 auto; font-family: var(--display); font-size: clamp(2.3rem, 4.8vw, 4.7rem); line-height: 1.12; }
.quote-band p { margin-top: 28px; color: var(--champagne); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { min-height: 330px; display: flex; flex-direction: column; }
.service-card .text-link { margin-top: auto; padding-top: 24px; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,.22); border-left: 1px solid rgba(255,255,255,.22); }
.process-step { min-height: 260px; padding: 30px; border-right: 1px solid rgba(255,255,255,.22); border-bottom: 1px solid rgba(255,255,255,.22); }
.process-step span { color: var(--champagne); font-family: var(--display); font-size: 1.35rem; font-style: italic; }
.process-step h3 { margin-top: 42px; font-size: 1.55rem; }
.process-step p { margin-top: 12px; color: rgba(255,255,255,.63); font-size: .88rem; }
.detail-list { display: grid; gap: 0; margin-top: 30px; border-top: 1px solid var(--line); }
.detail-list div { display: flex; justify-content: space-between; gap: 24px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.detail-list strong { color: var(--palm); font-family: var(--display); font-size: 1.15rem; font-weight: 400; }
.detail-list span { color: var(--muted); text-align: right; }
.split-image img { min-height: 580px; height: 580px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow); }

.gallery-toolbar { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 38px; }
.filter-button { min-height: 44px; padding: 0 19px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); background: transparent; cursor: pointer; font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.filter-button.active { color: white; border-color: var(--palm); background: var(--palm); }
.portfolio-grid { columns: 3; column-gap: 20px; }
.portfolio-item { width: 100%; position: relative; display: block; break-inside: avoid; margin: 0 0 20px; padding: 0; border: 0; border-radius: var(--radius); overflow: hidden; background: var(--palm); cursor: zoom-in; }
.portfolio-item[hidden] { display: none; }
.portfolio-item img { height: auto; min-height: 280px; object-fit: cover; transition: transform .45s; }
.portfolio-item:nth-child(3n+1) img { aspect-ratio: 4 / 5; }
.portfolio-item:nth-child(3n+2) img { aspect-ratio: 4 / 3; }
.portfolio-item:nth-child(3n) img { aspect-ratio: 1 / 1; }
.portfolio-item:hover img { transform: scale(1.035); }
.portfolio-caption { position: absolute; inset: auto 0 0; padding: 56px 24px 22px; color: white; text-align: left; background: linear-gradient(transparent, rgba(16,29,20,.78)); }
.portfolio-caption strong { display: block; font-family: var(--display); font-size: 1.35rem; font-weight: 400; }
.portfolio-caption span { font-size: .68rem; letter-spacing: .13em; text-transform: uppercase; opacity: .75; }
.modal, .lightbox { position: fixed; inset: 0; z-index: 100; display: none; place-items: center; padding: 24px; background: rgba(14,25,18,.76); backdrop-filter: blur(12px); }
.modal.open, .lightbox.open { display: grid; }
.modal-card { width: min(720px, 100%); max-height: calc(100vh - 48px); overflow: auto; padding: clamp(30px, 5vw, 56px); border-radius: 28px; background: var(--paper); box-shadow: 0 30px 100px rgba(0,0,0,.3); }
.modal-top { display: flex; justify-content: space-between; gap: 20px; }
.modal-card .lead { margin-top: 15px; font-size: 1rem; }
.lightbox img { width: min(1160px, 92vw); max-height: 82vh; object-fit: contain; border-radius: 16px; box-shadow: 0 30px 90px rgba(0,0,0,.4); }
.close { width: 46px; height: 46px; border: 1px solid currentColor; border-radius: 50%; color: inherit; background: transparent; cursor: pointer; font-size: 1.35rem; }
.lightbox .close { position: absolute; top: 22px; right: 24px; color: white; }

.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(44px, 7vw, 90px); align-items: start; }
.contact-stack { display: grid; gap: 16px; margin-top: 32px; }
.contact-card { padding: 24px 26px; }
.contact-card small { display: block; margin-bottom: 5px; color: var(--gold); font-size: .68rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.contact-card a, .contact-card strong { font-family: var(--display); font-size: 1.25rem; font-weight: 400; }
.enquiry-panel { padding: clamp(32px, 5vw, 58px); border-radius: 28px; background: var(--paper); box-shadow: var(--shadow); }
.enquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 34px; }
.field { display: grid; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; min-height: 54px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: white; }
.field textarea { min-height: 126px; resize: vertical; }
.form-actions { grid-column: 1 / -1; display: flex; align-items: center; gap: 18px; margin-top: 8px; }
.form-status { color: var(--palm); font-size: .84rem; }
.visit-card { min-height: 520px; position: relative; display: flex; align-items: end; padding: clamp(36px, 6vw, 72px); color: white; border-radius: 30px; overflow: hidden; background: url("/assets/night-enterence.webp") center / cover; isolation: isolate; }
.visit-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(17,31,21,.85), rgba(17,31,21,.1) 75%); }
.visit-card h2 { max-width: 660px; }
.visit-card p { max-width: 600px; margin-top: 18px; color: rgba(255,255,255,.78); }
.visit-card .button { margin-top: 28px; }

.final-cta { position: relative; padding: clamp(105px, 13vw, 175px) 0; color: white; text-align: center; background: url("/assets/heart-decor.webp") center 48% / cover; isolation: isolate; }
.final-cta::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(24,39,29,.7); }
.final-cta h2 { max-width: 880px; margin-inline: auto; }
.final-cta p { max-width: 670px; margin: 25px auto 33px; color: rgba(255,255,255,.82); font-size: 1.1rem; }

footer { padding: 76px 0 30px; color: white; background: oklch(20% .035 145); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr .9fr; gap: 50px; }
.footer-about p { max-width: 34ch; margin-top: 23px; color: rgba(255,255,255,.58); font-size: .9rem; }
.footer-title { margin-bottom: 22px; color: var(--champagne); font-size: .69rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.footer-list { display: grid; gap: 11px; color: rgba(255,255,255,.7); font-size: .86rem; }
.footer-list a:hover { color: white; }
.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; font-size: .72rem; font-weight: 700; }
.footer-bottom { margin-top: 62px; padding-top: 24px; display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.42); font-size: .72rem; }
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1020px) {
  .nav-links { position: fixed; inset: 88px 0 auto; padding: 30px 24px 36px; display: none; flex-direction: column; align-items: stretch; color: var(--ink); background: var(--paper); box-shadow: 0 25px 50px rgba(40,32,20,.14); }
  .nav-links.open { display: flex; }
  .nav-links .button { margin-top: 8px; }
  .menu-toggle { display: block; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .story-grid, .split-grid, .contact-layout { grid-template-columns: 1fr; }
  .story-image { order: 2; }
  .values-grid, .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { columns: 2; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .container { width: min(100% - 32px, 1180px); }
  .nav { height: 74px; }
  .nav-links { inset-block-start: 74px; }
  .page-hero { min-height: 84svh; }
  .page-hero-content { padding: 150px 0 70px; }
  .page-hero h1 { font-size: clamp(3.3rem, 16vw, 5rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .story-image, .story-image img { min-height: 480px; height: 480px; }
  .story-image img { border-radius: 100px 100px 18px 18px; }
  .values-grid, .services-grid, .process-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 285px; }
  .portfolio-grid { columns: 1; }
  .enquiry-form { grid-template-columns: 1fr; }
  .field.full, .form-actions { grid-column: auto; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .button { width: 100%; }
  .detail-list div { display: grid; gap: 4px; }
  .detail-list span { text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about, .footer-contact { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
}

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