:root {
  --paper: #F5EFE3;
  --paper2: #EBE3D3;
  --paperGlass: rgba(245,239,227,0.82);
  --ink: #1E272C;
  --muted: #545F5F;
  --sage: #93A28B;
  --olive: #4F6152;
  --line: rgba(30,39,44,0.15);
  --darkbg: #1E272C;
  --onDark: #EFE7D6;
  --onDarkSoft: rgba(239,231,214,0.80);
  --onDarkLine: rgba(239,231,214,0.16);
  --accent: #B98E4E;
  --hfont: 'Cormorant Garamond', serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: 'Jost', sans-serif; -webkit-font-smoothing: antialiased; min-height: 100vh; }
a { color: #56613F; text-decoration: none; }
a:hover { color: #2C3327; }
section { scroll-margin-top: 84px; }
img { display: block; }
.fill { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
::selection { background: #7E8A6B; color: #F4EFE4; }

/* Layout primitives */
.container { max-width: 1360px; margin: 0 auto; }
.split-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: clamp(40px,6vw,88px); align-items: center; max-width: 1360px; margin: 0 auto; }
.tile-grid { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1.5fr 1fr; gap: 14px; height: clamp(420px,52vw,600px); }
.order-1 { order: 1; }
.order-2 { order: 2; }

.section { padding: clamp(72px,10vw,140px) clamp(24px,6vw,96px); }
.section--paper { background: var(--paper); }
.section--paper2 { background: var(--paper2); }
.section--dark {
  position: relative;
  background: var(--darkbg);
  color: var(--onDark);
  padding: clamp(80px,11vw,150px) clamp(24px,6vw,96px);
  overflow: hidden;
}

/* Typography components */
.kicker { font-family: 'Jost', sans-serif; font-size: 13px; letter-spacing: .32em; text-transform: uppercase; color: var(--olive); margin: 0 0 20px; }
.kicker--mb-18 { margin-bottom: 18px; }
.section--dark .kicker { letter-spacing: .34em; color: var(--sage); margin: 0 0 22px; }

.heading-xl { font-family: var(--hfont); font-weight: 500; font-size: clamp(34px,5vw,58px); line-height: 1.05; margin: 0 0 28px; color: var(--ink); letter-spacing: -0.01em; }
.heading-xl--flush { margin: 0; }
.heading-xl--sm { font-size: clamp(34px,5vw,56px); }
.heading-xxl { font-family: var(--hfont); font-weight: 500; font-size: clamp(38px,6vw,68px); line-height: 1.02; margin: 0 0 26px; letter-spacing: -0.01em; }

.body-text { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 17px; line-height: 1.9; color: var(--muted); margin: 0 0 20px; }
.body-text--mb-32 { margin-bottom: 32px; }
.body-text--region { font-size: 18px; margin-bottom: 44px; }

/* Buttons */
.btn { font-family: 'Jost', sans-serif; letter-spacing: .18em; text-transform: uppercase; border-radius: 2px; display: inline-block; }
.btn--nav { font-size: 12px; color: var(--paper); background: #1E272C; padding: 11px 22px; }
.btn--light { font-size: 13px; color: var(--ink); background: #F4EFE4; padding: 16px 34px; }
.btn--outline { font-size: 13px; color: #F4EFE4; border: 1px solid rgba(244,239,228,0.6); padding: 16px 34px; }
.btn--dark { font-size: 13px; color: var(--paper); background: #1E272C; padding: 16px 34px; }
.btn--cream { font-size: 13px; color: var(--darkbg); background: var(--onDark); padding: 16px 36px; }

/* Image tiles */
.tile { position: relative; border-radius: 2px; overflow: hidden; background: #d8d0be; }
.tile--col-1-span-2 { grid-column: 1 / span 2; }
.tile--span-2 { grid-column: span 2; }
.tile--row-span-2 { grid-row: span 2; }
.tile--2x2 { grid-column: span 2; grid-row: span 2; }
.tile--h-conf { height: clamp(360px,44vw,540px); }
.focal-62 { object-position: 62% center; }
.focal-75 { object-position: 75% center; }

/* Feature lists */
.feature-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 28px; }
.feature-list--mb-32 { margin-bottom: 32px; }
.feature-list__item { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 15px; color: var(--ink); border-left: 2px solid var(--sage); padding-left: 14px; }

/* Stats */
.stat-row { display: flex; gap: 44px; flex-wrap: wrap; border-top: 1px solid var(--line); padding-top: 28px; }
.stat__value { font-family: var(--hfont); font-size: 42px; line-height: 1; color: var(--ink); }
.stat__label { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--olive); margin-top: 8px; }
.stat__value--lg { font-size: clamp(38px,4vw,52px); }
.stat__label--lg { font-size: 13px; letter-spacing: .14em; margin-top: 10px; }
.region-stats { display: grid; grid-template-columns: repeat(auto-fit,minmax(180px,1fr)); gap: clamp(20px,3vw,44px); border-top: 1px solid var(--line); padding-top: 44px; }

/* Site header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: 16px clamp(24px,6vw,96px);
  background: var(--paperGlass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.brand { display: flex; flex-direction: column; gap: 6px; line-height: 1; text-decoration: none; align-items: center; }
.brand__logo { height: 26px; width: auto; }
.brand__meta { font-family: 'Jost', sans-serif; font-size: 10px; letter-spacing: .42em; color: var(--olive); text-align: center; }
.site-nav { display: flex; align-items: center; gap: clamp(14px,2.2vw,34px); flex-wrap: wrap; justify-content: flex-end; }
.nav__link { font-family: 'Jost', sans-serif; font-size: 13px; letter-spacing: .16em; text-transform: uppercase; color: var(--ink); font-weight: 400; }

.hamburger { display: none; position: relative; background: none; border: none; cursor: pointer; padding: 0; width: 24px; height: 24px; }
.hamburger__line { position: absolute; left: 0; top: 50%; margin-top: -1px; width: 100%; height: 2px; background: var(--ink); border-radius: 1px; transition: transform .3s ease, opacity .3s ease; }
.hamburger__line:nth-child(1) { transform: translateY(-8px); }
.hamburger__line:nth-child(3) { transform: translateY(8px); }

.hamburger.active .hamburger__line:nth-child(1) { transform: rotate(45deg); }
.hamburger.active .hamburger__line:nth-child(2) { opacity: 0; }
.hamburger.active .hamburger__line:nth-child(3) { transform: rotate(-45deg); }

@media (max-width: 768px) {
  .hamburger { display: block; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0; background: var(--paperGlass); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 0 solid var(--line); padding: 0 clamp(24px,6vw,96px); max-height: 0; overflow: hidden; transition: max-height .3s ease, padding-block .3s ease, border-bottom-width .3s ease; }
  .site-nav.active { max-height: 500px; padding-block: 16px; border-bottom-width: 1px; }
  .nav__link { display: block; padding: 12px 0; }
  .btn--nav { width: 100%; text-align: center; }
}

/* Hero */
.hero { position: relative; height: 100vh; min-height: 620px; overflow: hidden; background: #26301F; display: flex; align-items: flex-end; }
.hero__media { position: absolute; inset: 0; overflow: hidden; pointer-events: none; background: #1E272C; }
.hero__video { position: absolute; top: 50%; left: 50%; width: 100%; height: 100%; transform: translate(-50%,-50%); object-fit: cover; }
.hero__scrim { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(20,26,16,0.242) 0%, rgba(20,26,16,0.154) 45%, rgba(20,26,16,0.560) 100%); }
.hero__content { position: relative; z-index: 2; width: 100%; padding: 0 clamp(24px,6vw,96px) clamp(56px,9vh,110px); color: #F4EFE4; }
.hero__logo { display: block; width: clamp(300px,60vw,780px); max-width: 100%; height: auto; margin: 0 0 36px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); margin: -1px; padding: 0; border: 0; }

/* Estate strip */
.estate-strip { background: var(--paper2); border-bottom: 1px solid var(--line); padding: clamp(28px,4vw,44px) clamp(24px,6vw,96px); text-align: center; }
.estate-strip__eyebrow { font-family: 'Jost', sans-serif; font-size: 13px; letter-spacing: .4em; text-transform: uppercase; margin: 0; color: var(--olive); }
.estate-strip__lead { max-width: 640px; margin: 18px auto 0; font-family: 'Jost', sans-serif; font-weight: 300; font-size: clamp(17px,2vw,20px); line-height: 1.6; color: var(--muted); }

/* Intro strip */
.intro-strip { background: var(--paper); padding: clamp(64px,9vw,120px) clamp(24px,6vw,96px); text-align: center; }
.intro-strip__eyebrow { font-family: 'Jost', sans-serif; font-size: 13px; letter-spacing: .34em; text-transform: uppercase; color: var(--olive); margin: 0 0 26px; }
.intro-strip__lead { max-width: 900px; margin: 0 auto; font-family: var(--hfont); font-weight: 400; font-size: clamp(26px,3.6vw,44px); line-height: 1.32; color: var(--ink); letter-spacing: -0.005em; }

/* Weddings feature */
.hero-feature__intro { text-align: center; max-width: 820px; margin: 0 auto clamp(48px,6vw,72px); }
.hero-feature__lead { font-family: 'Jost', sans-serif; font-weight: 300; font-size: clamp(17px,2vw,20px); line-height: 1.75; color: var(--onDarkSoft); margin: 0; }
.hero-feature__cta { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 22px; margin-top: 44px; }
.hero-feature__note { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 14px; letter-spacing: .05em; color: var(--onDarkSoft); }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1px; background: var(--onDarkLine); border: 1px solid var(--onDarkLine); border-radius: 2px; overflow: hidden; }
.feature-card { background: var(--darkbg); padding: 38px 30px; }
.feature-card__num { font-family: var(--hfont); font-size: 38px; line-height: 1; margin-bottom: 16px; color: var(--accent); }
.feature-card__title { font-family: var(--hfont); font-weight: 500; font-size: 24px; margin: 0 0 10px; }
.feature-card__text { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 15px; line-height: 1.7; color: var(--onDarkSoft); margin: 0; }

/* Region */
.region__intro { max-width: 760px; }

/* Gallery */
.gallery__intro { text-align: center; margin-bottom: clamp(40px,5vw,64px); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); grid-auto-rows: 230px; gap: 14px; }
.tile[data-gallery-image] { cursor: pointer; transition: transform 0.3s ease, z-index 0s; }
.tile[data-gallery-image]:hover { transform: scale(1.25); z-index: 10; }
.tile[data-gallery-image]:focus { outline: 2px solid var(--accent); outline-offset: -2px; }

/* Gallery Modal */
.gallery-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 1000; animation: fadeIn 0.3s ease; padding: 40px 20px; }
.gallery-modal.active { display: flex; align-items: center; justify-content: center; }
.gallery-modal__content { position: relative; max-width: 90vw; max-height: 90vh; display: flex; }
.gallery-modal__image { max-width: 100%; max-height: 100%; object-fit: contain; }
.gallery-modal__close { position: fixed; top: 20px; right: 20px; width: 40px; height: 40px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); border-radius: 2px; color: white; font-size: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s ease; z-index: 1001; }
.gallery-modal__close:hover { background: rgba(255,255,255,0.2); }
.gallery-modal__nav { position: fixed; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.3); border-radius: 2px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s ease; z-index: 1001; }
.gallery-modal__nav:hover { background: rgba(255,255,255,0.2); }
.gallery-modal__nav img { width: 24px; height: 24px; }
.gallery-modal__nav--prev { left: 20px; }
.gallery-modal__nav--next { right: 20px; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Stories */
.story__link { text-decoration: underline; }

/* Enquire */
.enquire__wrap { max-width: 900px; margin: 0 auto; text-align: center; }
.enquire__lead { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 17px; line-height: 1.85; color: var(--muted); margin: 0 auto 48px; max-width: 520px; }
.enquire__note { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 13px; letter-spacing: .06em; color: var(--muted); margin: 28px 0 0; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(200px,1fr)); gap: 36px 44px; text-align: center; justify-items: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 44px 0; }
.contact__label { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--olive); margin-bottom: 6px; }
.contact__name { font-family: var(--hfont); font-size: 22px; color: var(--ink); cursor: pointer; transition: opacity 0.2s ease; }
.contact__name:hover { opacity: 0.7; }
.contact__value { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 16px; line-height: 1.6; color: var(--ink); }
.contact__link { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 16px; color: var(--ink); text-decoration: underline; }

/* Footer */
.site-footer { background: var(--darkbg); color: var(--onDark); padding: clamp(56px,7vw,88px) clamp(24px,6vw,96px) 40px; }
.site-footer__top { max-width: 1360px; margin: 0 auto; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-end; gap: 32px; }
.site-footer__logo { height: 32px; width: auto; }
.site-footer__meta { font-family: 'Jost', sans-serif; font-size: 11px; letter-spacing: .4em; color: var(--sage); margin-top: 12px; }
.site-footer__links { display: flex; gap: 28px; flex-wrap: wrap; }
.footer__link { font-family: 'Jost', sans-serif; font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--onDarkSoft); }
.site-footer__bottom {
  max-width: 1360px; margin: 36px auto 0;
  border-top: 1px solid var(--onDarkLine);
  padding-top: 22px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px;
  font-family: 'Jost', sans-serif; font-weight: 300; font-size: 12px; letter-spacing: .06em;
  color: var(--onDarkSoft);
}
