/* ==========================================================================
   HIDEAWAY VILLA, KARJAT
   Design system + site styles
   Palette and type are derived from the villa's own wordmark:
   Didone serif, ink navy, single green leaf.
   ========================================================================== */

/* ---------------------------------------------------------------
   1. TOKENS
   --------------------------------------------------------------- */
:root {
  /* Brand colour, sampled from the logo */
  --ink:        #242C3C;
  --ink-deep:   #171E2B;
  --ink-soft:   #3A4354;
  --leaf:       #33574A;
  --leaf-deep:  #24473B;
  --sage:       #8FB5A3;
  --clay:       #A9583C;   /* from the villa's terracotta deck + accent wall */

  /* Neutrals */
  --shell:      #FBF9F6;
  --sand:       #EDE7DC;
  --sand-soft:  #F4EFE7;
  --white:      #FFFFFF;
  --body:       #4E5665;
  --line:       rgba(36, 44, 60, .13);
  --line-soft:  rgba(36, 44, 60, .07);
  --line-light: rgba(255, 255, 255, .18);

  /* Type */
  --display: 'Prata', 'Times New Roman', serif;
  --sans:    'Jost', 'Helvetica Neue', Arial, sans-serif;

  /* Rhythm */
  --wrap:    1240px;
  --wrap-sm: 900px;
  --gutter:  clamp(1.15rem, 4vw, 2.5rem);
  --section: clamp(4.25rem, 8.5vw, 7.5rem);

  /* Motion */
  --ease: cubic-bezier(.22, .61, .36, 1);

  /* Layering */
  --z-float:  998;
  --z-bar:    999;
  --z-header: 1000;
  --z-nav:    1001;
  --z-close:  1002;
  --z-modal:  1200;
}

/* ---------------------------------------------------------------
   2. RESET / BASE
   --------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--body);
  background: var(--shell);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a   { color: var(--leaf); text-decoration: none; transition: color .25s var(--ease); }
a:hover { color: var(--leaf-deep); }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 .6em;
  line-height: 1.16;
  letter-spacing: -.005em;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.5rem); line-height: 1.1; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
h3 { font-size: clamp(1.12rem, 1.9vw, 1.4rem); line-height: 1.3; }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

ul { margin: 0 0 1.15em; padding-left: 1.1rem; }
li { margin-bottom: .4em; }

:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: .8rem 1.2rem;
  z-index: 2000; font-size: .9rem;
}
.skip-link:focus { left: 0; color: #fff; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

/* ---------------------------------------------------------------
   3. LAYOUT PRIMITIVES
   --------------------------------------------------------------- */
.wrap     { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--sm { max-width: var(--wrap-sm); }

.section        { padding-block: var(--section); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.75rem); }
.section--sand  { background: var(--sand-soft); }
.section--ink   { background: var(--ink); color: rgba(255,255,255,.78); }
.section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }

/* Eyebrow: small label with the villa's own leaf as the marker */
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--sans); font-size: .705rem; font-weight: 500;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--leaf); margin: 0 0 1.15rem;
}
.eyebrow::before {
  content: ''; width: 13px; height: 18px; flex: 0 0 13px;
  background: url('../images/brand/leaf-mark.png') center/contain no-repeat;
}
.section--ink .eyebrow { color: var(--sage); }

.lede { font-size: 1.13rem; line-height: 1.72; color: var(--ink-soft); }

.section-head { max-width: 62ch; margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* ---------------------------------------------------------------
   4. BUTTONS
   --------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans); font-size: .8rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  padding: 1.02rem 1.9rem; border: 1px solid transparent; border-radius: 2px;
  cursor: pointer; text-align: center; line-height: 1.15;
  transition: background .28s var(--ease), color .28s var(--ease),
              border-color .28s var(--ease), transform .28s var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--leaf); color: #fff; }
.btn--primary:hover { background: var(--leaf-deep); color: #fff; }

.btn--ink { background: var(--ink); color: #fff; }
.btn--ink:hover { background: var(--ink-deep); color: #fff; }

.btn--outline { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); color: #fff; }

.btn--ghost { border-color: rgba(255,255,255,.5); color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn--sm { padding: .72rem 1.25rem; font-size: .715rem; letter-spacing: .13em; }

.btn-row { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ---------------------------------------------------------------
   5. HEADER + NAVIGATION
   --------------------------------------------------------------- */
.topbar {
  background: var(--ink-deep); color: rgba(255,255,255,.62);
  font-size: .74rem; letter-spacing: .1em; text-transform: uppercase;
  max-height: 40px; overflow: hidden;
  transition: max-height .35s var(--ease), background .35s var(--ease), border-color .35s var(--ease);
  border-bottom: 1px solid transparent;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 1rem; min-height: 38px; }
.topbar a { color: rgba(255,255,255,.78); }
.topbar a:hover { color: #fff; }
.topbar__set { display: flex; align-items: center; gap: 1.4rem; }

.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: var(--z-header);
  background: var(--shell);
  border-bottom: 1px solid var(--line);
  transition: background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.header-main { background: inherit; }
.site-header .header-main .wrap {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; min-height: 78px;
}

.brand { display: flex; align-items: center; flex: 0 0 auto; }
.brand img { width: clamp(132px, 15vw, 172px); transition: opacity .3s var(--ease); }
.brand__light { display: none; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2vw, 1.85rem); }
.nav__link {
  font-size: .755rem; font-weight: 500; letter-spacing: .155em;
  text-transform: uppercase; color: var(--ink); white-space: nowrap;
  padding-block: .4rem; position: relative;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--leaf); transition: width .3s var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }
.nav__link[aria-current="page"] { color: var(--leaf); }

.header-cta { display: flex; align-items: center; gap: .6rem; }

/* Transparent header over the homepage hero */
.site-header--over {
  background: transparent; border-bottom-color: transparent;
}
.site-header--over .topbar {
  background: transparent; color: rgba(255,255,255,.72);
  border-bottom-color: rgba(255,255,255,.16);
}
/* Once the page scrolls, the utility strip folds away and the bar goes solid */
.site-header--scrolled .topbar { max-height: 0; border-bottom-color: transparent; }
.site-header--over .nav__link { color: #fff; }
.site-header--over .nav__link::after { background: #fff; }
.site-header--over .brand__dark { display: none; }
.site-header--over .brand__light { display: block; }
.site-header--over .burger span { background: #fff; }
.site-header--over .btn--outline { border-color: rgba(255,255,255,.65); color: #fff; }
.site-header--over .btn--outline:hover { background: #fff; color: var(--ink); }
.site-header--scrolled { box-shadow: 0 6px 30px rgba(23,30,43,.07); }

/* Burger */
.burger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 0 9px; background: none; border: 0; cursor: pointer;
}
.burger span { display: block; height: 1.5px; width: 100%; background: var(--ink); transition: background .3s var(--ease); }

/* Mobile nav overlay — close button rules per Bigfoot technical standard */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: var(--z-nav);
  background: var(--shell);
  flex-direction: column; justify-content: center;
  padding: 5.5rem var(--gutter) 100px;
  overflow-y: auto;
}
.mobile-nav.active { display: flex; }
.mobile-nav__list { list-style: none; margin: 0; padding: 0; }
.mobile-nav__list li { margin: 0; border-bottom: 1px solid var(--line-soft); }
.mobile-nav__list a {
  display: block; padding: .95rem 0;
  font-family: var(--display); font-size: 1.5rem; color: var(--ink);
}
.mobile-nav__list a[aria-current="page"] { color: var(--leaf); }
.mobile-nav__foot { margin-top: 2rem; display: flex; flex-direction: column; gap: .7rem; }

.mobile-nav-close {
  position: fixed; top: 72px; right: 20px; z-index: var(--z-close);
  width: 44px; height: 44px; border-radius: 50%;
  background: #fff; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--ink); font-size: 1.15rem; line-height: 1;
  box-shadow: 0 4px 18px rgba(23,30,43,.12);
}

/* Spacer so fixed header never covers content on inner pages */
.header-spacer { height: 116px; }

/* ---------------------------------------------------------------
   6. HERO — cinematic slider with slow zoom
   --------------------------------------------------------------- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  overflow: hidden; background: var(--ink);
}
.hero__media { position: absolute; inset: 0; }
.hero__slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.6s var(--ease);
}
.hero__slide.is-active { opacity: 1; }
.hero__slide img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.01);
}
.hero__slide.is-active img {
  animation: kenburns 11s linear forwards;
}
@keyframes kenburns {
  from { transform: scale(1.01); }
  to   { transform: scale(1.14); }
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right,  rgba(19,25,36,.74) 0%,  rgba(19,25,36,.42) 42%, rgba(19,25,36,.06) 78%),
    linear-gradient(to bottom, rgba(19,25,36,.62) 0%,  rgba(19,25,36,.06) 30%, rgba(19,25,36,.30) 62%, rgba(19,25,36,.86) 100%);
}
.hero__inner { position: relative; width: 100%; padding-bottom: clamp(4rem, 8vw, 6.5rem); padding-top: 9.5rem; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .705rem; font-weight: 400; letter-spacing: .28em; text-transform: uppercase;
  color: rgba(255,255,255,.86); margin-bottom: 1.4rem;
}
.hero__eyebrow::after { content: ''; width: 46px; height: 1px; background: rgba(255,255,255,.45); }
.hero h1 {
  color: #fff; max-width: 17ch;
  font-size: clamp(2.25rem, 5vw, 4.15rem); line-height: 1.07; margin-bottom: 1.1rem;
  text-shadow: 0 2px 26px rgba(15,20,30,.3);
}
.hero__sub {
  color: rgba(255,255,255,.9); max-width: 46ch; font-size: 1.1rem;
  line-height: 1.7; margin-bottom: 2rem;
}
.hero__dots { display: flex; gap: .5rem; margin-top: 2.6rem; }
.hero__dot {
  width: 30px; height: 2px; border: 0; padding: 0; cursor: pointer;
  background: rgba(255,255,255,.32); transition: background .3s var(--ease);
}
.hero__dot.is-active { background: #fff; }

/* ---------------------------------------------------------------
   7. FACT STRIP
   --------------------------------------------------------------- */
.facts { background: var(--ink); color: #fff; }
.facts__grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.facts__item {
  padding: clamp(1.6rem, 3vw, 2.4rem) 1rem; text-align: center;
  border-left: 1px solid var(--line-light);
}
.facts__item:first-child { border-left: 0; }
.facts__num {
  font-family: var(--display); font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  color: #fff; line-height: 1.1; margin-bottom: .35rem;
}
.facts__label {
  font-size: .68rem; letter-spacing: .19em; text-transform: uppercase;
  color: rgba(255,255,255,.55);
}

/* ---------------------------------------------------------------
   8. SPLIT (image + copy)
   --------------------------------------------------------------- */
.split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split__media--wide img { aspect-ratio: 5 / 4; }

/* Stacked second image, offset — used once, on the About intro */
.split__inset {
  position: absolute; right: -8%; bottom: -12%;
  width: 46%; border: 8px solid var(--shell);
}
.split__inset img { aspect-ratio: 1 / 1; }

/* ---------------------------------------------------------------
   9. SIGNATURE — "The villa, level by level"
   The villa is a three-storey house; the order is real information,
   so the level markers earn their numbering.
   --------------------------------------------------------------- */
.levels { border-top: 1px solid var(--line); }
.level {
  display: grid; grid-template-columns: 92px 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
  padding-block: clamp(2.25rem, 4.5vw, 3.5rem);
  border-bottom: 1px solid var(--line);
}
.level__marker { align-self: start; padding-top: .4rem; }
.level__num {
  font-family: var(--display); font-size: 1.65rem; color: var(--leaf); line-height: 1;
}
.level__rule { width: 40px; height: 1px; background: var(--line); margin-top: .8rem; }
.level__label {
  display: block; font-size: .64rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--body); margin-top: .8rem;
}
.level__body h3 { margin-bottom: .55rem; }
.level__media img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.level__tags {
  list-style: none; padding: 0; margin: 1.1rem 0 0;
  display: flex; flex-wrap: wrap; gap: .4rem .5rem;
}
.level__tags li {
  margin: 0; font-size: .72rem; letter-spacing: .09em; text-transform: uppercase;
  color: var(--ink-soft); background: var(--sand-soft); padding: .38rem .7rem;
}

/* ---------------------------------------------------------------
   10. FEATURE GRID
   --------------------------------------------------------------- */
.feature-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(238px, 1fr));
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.feature {
  background: var(--shell); padding: clamp(1.6rem, 3vw, 2.15rem);
  transition: background .3s var(--ease);
}
.feature:hover { background: var(--sand-soft); }
.feature__icon { width: 26px; height: 26px; margin-bottom: 1rem; color: var(--leaf); }
.feature h3 { font-size: 1.06rem; margin-bottom: .4rem; }
.feature p { font-size: .935rem; line-height: 1.65; margin: 0; }
.section--sand .feature { background: var(--sand-soft); }
.section--sand .feature:hover { background: #fff; }

/* Plain checklist (used for "Why choose" / amenity lists) */
.ticks {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: .1rem 2rem;
}
.ticks li {
  position: relative; padding: .72rem 0 .72rem 1.75rem;
  border-bottom: 1px solid var(--line-soft); margin: 0;
  font-size: .98rem; color: var(--ink-soft);
}
.ticks li::before {
  content: ''; position: absolute; left: 0; top: 1.28rem;
  width: 8px; height: 8px; border-radius: 50%;
  border: 1.5px solid var(--leaf);
}

/* Occasion tags */
.tags { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: .55rem; }
.tags li {
  margin: 0; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink); border: 1px solid var(--line); padding: .6rem 1.05rem;
  background: var(--white);
}
.section--ink .tags li { color: #fff; border-color: var(--line-light); background: transparent; }

/* ---------------------------------------------------------------
   11. GALLERY
   --------------------------------------------------------------- */
.gal-filters {
  display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center;
  margin-bottom: clamp(1.75rem, 3vw, 2.5rem);
}
.gal-filter {
  font-family: var(--sans); font-size: .715rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  padding: .62rem 1.15rem; border: 1px solid var(--line);
  background: transparent; color: var(--ink-soft); cursor: pointer;
  transition: all .25s var(--ease);
}
.gal-filter:hover { border-color: var(--ink); color: var(--ink); }
.gal-filter.is-active { background: var(--ink); border-color: var(--ink); color: #fff; }

.gal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .65rem; }
.gal-item {
  position: relative; overflow: hidden; cursor: zoom-in;
  background: var(--sand); padding: 0; border: 0; display: block;
  width: 100%; aspect-ratio: 4 / 3;
}
.gal-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform .7s var(--ease);
}
.gal-item:hover img { transform: scale(1.06); }
.gal-item[hidden] { display: none; }

/* Homepage preview strip */
.gal-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: .65rem; }
.gal-strip img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; transition: transform .7s var(--ease); }
.gal-strip a { overflow: hidden; display: block; aspect-ratio: 3 / 4; }
.gal-strip img { height: 100%; }
.gal-strip a:hover img { transform: scale(1.06); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: var(--z-modal);
  background: rgba(15,20,30,.94);
  display: none; align-items: center; justify-content: center; padding: 1.5rem;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 94vw; max-height: 86vh; object-fit: contain; }
.lightbox__btn {
  position: absolute; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.3);
  color: #fff; width: 46px; height: 46px; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  transition: background .25s var(--ease);
}
.lightbox__btn:hover { background: rgba(255,255,255,.24); }
.lightbox__close { top: 20px; right: 20px; }
.lightbox__prev  { left: 18px;  top: 50%; transform: translateY(-50%); }
.lightbox__next  { right: 18px; top: 50%; transform: translateY(-50%); }
.lightbox__count {
  position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.7); font-size: .78rem; letter-spacing: .16em;
}

/* ---------------------------------------------------------------
   12. CARDS (attractions)
   --------------------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(255px, 1fr)); gap: clamp(1.25rem, 2.5vw, 2rem); }
.card { background: var(--white); border: 1px solid var(--line); display: flex; flex-direction: column; }
.card__media { overflow: hidden; }
.card__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .7s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 1.5rem 1.4rem 1.65rem; flex: 1; }
.card__meta {
  font-size: .69rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--leaf); margin-bottom: .55rem;
}
.card h3 { margin-bottom: .5rem; }
.card p { font-size: .94rem; line-height: 1.65; margin: 0; }

/* ---------------------------------------------------------------
   13. CTA BAND
   --------------------------------------------------------------- */
.cta-band { position: relative; overflow: hidden; background: var(--ink); }
.cta-band__bg { position: absolute; inset: 0; }
.cta-band__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.cta-band__inner { position: relative; text-align: center; padding-block: clamp(4rem, 8vw, 6.5rem); }
.cta-band h2 { color: #fff; max-width: 20ch; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 56ch; margin-inline: auto; margin-bottom: 2rem; }
.cta-band .btn-row { justify-content: center; }

/* ---------------------------------------------------------------
   14. FAQ
   --------------------------------------------------------------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; background: none; border: 0; cursor: pointer; text-align: left;
  display: flex; justify-content: space-between; align-items: center; gap: 1.5rem;
  padding: 1.4rem 0; font-family: var(--display); font-size: 1.08rem;
  color: var(--ink); line-height: 1.4;
}
.faq__icon { flex: 0 0 auto; width: 16px; height: 16px; position: relative; }
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; background: var(--leaf); transition: transform .3s var(--ease);
}
.faq__icon::before { top: 7.5px; left: 0; width: 16px; height: 1.4px; }
.faq__icon::after  { left: 7.5px; top: 0; width: 1.4px; height: 16px; }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq__a > div { padding-bottom: 1.5rem; font-size: .97rem; }

/* ---------------------------------------------------------------
   15. FORM
   --------------------------------------------------------------- */
.enquiry { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem 1.25rem; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: .68rem; letter-spacing: .17em; text-transform: uppercase; color: var(--ink-soft);
}
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: .97rem; font-weight: 300; color: var(--ink);
  padding: .85rem .95rem; border: 1px solid var(--line); background: var(--white);
  border-radius: 2px; width: 100%;
  transition: border-color .25s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--leaf); outline: none; }
.field textarea { resize: vertical; min-height: 108px; }
.form-note { font-size: .82rem; color: var(--body); margin-top: .9rem; }
.form-status {
  grid-column: 1 / -1; font-size: .9rem; padding: .85rem 1rem;
  background: var(--sand-soft); border-left: 2px solid var(--leaf); display: none;
}
.form-status.is-visible { display: block; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; }

/* ---------------------------------------------------------------
   16. CONTACT / MAP
   --------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { margin: 0; padding: 1.15rem 0; border-bottom: 1px solid var(--line-soft); }
.contact-list__label {
  display: block; font-size: .66rem; letter-spacing: .19em; text-transform: uppercase;
  color: var(--leaf); margin-bottom: .3rem;
}
.contact-list__value { font-size: 1.02rem; color: var(--ink); }
.contact-list a { color: var(--ink); }
.contact-list a:hover { color: var(--leaf); }

.map-frame { width: 100%; height: clamp(320px, 46vw, 470px); border: 0; display: block; filter: grayscale(.2); }

.socials { display: flex; gap: .6rem; margin-top: 1.5rem; }
.socials a {
  width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--ink);
  transition: all .25s var(--ease);
}
.socials a:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.socials svg { width: 17px; height: 17px; }

/* ---------------------------------------------------------------
   17. FOOTER
   --------------------------------------------------------------- */
.site-footer { background: var(--ink-deep); color: rgba(255,255,255,.62); font-size: .93rem; }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: clamp(1.75rem, 4vw, 3rem);
  padding-block: clamp(3.25rem, 6vw, 4.75rem);
}
.footer-logo { width: 168px; margin-bottom: 1.25rem; }
.footer-col h4 {
  color: #fff; font-family: var(--sans); font-size: .69rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.15rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .62rem; }
.footer-bottom {
  border-top: 1px solid var(--line-light);
  padding-block: 1.5rem; display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center; gap: .75rem;
  font-size: .84rem;
}
.footer-credit { margin: 0; }
.footer-credit a { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.site-footer .socials a { border-color: var(--line-light); color: rgba(255,255,255,.75); }
.site-footer .socials a:hover { background: #fff; border-color: #fff; color: var(--ink); }

/* ---------------------------------------------------------------
   18. FLOATING WIDGETS + MOBILE STICKY BAR
   --------------------------------------------------------------- */
.float-widgets {
  position: fixed; right: 18px; bottom: 22px; z-index: var(--z-float);
  display: flex; flex-direction: column; gap: .65rem;
}
.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: #fff;
  box-shadow: 0 6px 22px rgba(15,20,30,.22);
  transition: transform .28s var(--ease);
}
.float-btn:hover { transform: translateY(-3px); color: #fff; }
.float-btn svg { width: 24px; height: 24px; }
.float-btn--wa   { background: #25D366; }
.float-btn--call { background: var(--ink); }

.mobile-bar {
  display: none;
  position: fixed; inset: auto 0 0 0; z-index: var(--z-bar);
  background: var(--ink); border-top: 1px solid rgba(255,255,255,.1);
  padding-bottom: env(safe-area-inset-bottom);
}
.mobile-bar__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.mobile-bar a {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .22rem;
  padding: .68rem .3rem .72rem; color: rgba(255,255,255,.9);
  font-size: .655rem; letter-spacing: .13em; text-transform: uppercase;
  border-left: 1px solid rgba(255,255,255,.1);
}
.mobile-bar a:first-child { border-left: 0; }
.mobile-bar a svg { width: 19px; height: 19px; }
.mobile-bar .mobile-bar__book { background: var(--leaf); color: #fff; }

/* ---------------------------------------------------------------
   19. PAGE HEADER (inner pages)
   --------------------------------------------------------------- */
.page-hero { position: relative; background: var(--ink); overflow: hidden; }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .48; }
.page-hero__inner {
  position: relative; padding-block: clamp(4rem, 9vw, 6.5rem);
  max-width: 66ch;
}
.page-hero h1 { color: #fff; margin-bottom: .5rem; }
.page-hero p { color: rgba(255,255,255,.85); margin: 0; }
.crumbs {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.62); margin-bottom: 1.2rem;
}
.crumbs a { color: rgba(255,255,255,.82); }
.crumbs span { padding-inline: .45rem; }

/* Legal / long-form text pages */
.prose { max-width: 74ch; }
.prose h2 { margin-top: 2.5rem; font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.75rem; }
.prose ul { padding-left: 1.15rem; }

/* ---------------------------------------------------------------
   20. SCROLL REVEAL
   --------------------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------------------------------------------------------------
   21. RESPONSIVE
   --------------------------------------------------------------- */
@media (max-width: 1080px) {
  .nav, .header-cta .btn--outline { display: none; }
  .burger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .facts__grid { grid-template-columns: repeat(3, 1fr); }
  .facts__item:nth-child(4) { border-left: 0; }
}

@media (max-width: 900px) {
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .split__media img, .split__media--wide img { aspect-ratio: 3 / 2; }
  .split__inset { display: none; }
  .level { grid-template-columns: 64px 1fr; }
  .level__media { grid-column: 1 / -1; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-strip { grid-template-columns: repeat(2, 1fr); }
  .topbar { display: none; }
  .header-spacer { height: 78px; }
}

@media (max-width: 720px) {
  body { font-size: 1rem; }
  .site-header .header-main .wrap { min-height: 66px; }
  .header-spacer { height: 66px; }
  .mobile-nav-close { top: 62px; }
  .hero { min-height: 92svh; }
  .hero__inner { padding-top: 6rem; }
  .facts__grid { grid-template-columns: repeat(2, 1fr); }
  .facts__item { border-left: 1px solid var(--line-light); border-top: 1px solid var(--line-light); }
  .facts__item:nth-child(odd) { border-left: 0; }
  .facts__item:nth-child(-n+2) { border-top: 0; }
  .facts__item:last-child { grid-column: 1 / -1; border-left: 0; }
  .enquiry { grid-template-columns: 1fr; }
  .float-widgets { bottom: 84px; right: 14px; }
  .float-btn { width: 46px; height: 46px; }
  .float-btn svg { width: 21px; height: 21px; }
  .mobile-bar { display: block; }
  body { padding-bottom: 62px; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .hero .btn-row { flex-direction: row; }
  .hero .btn { width: auto; flex: 1; padding-inline: 1rem; font-size: .72rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 420px) {
  .gal-grid { grid-template-columns: 1fr; }
  .level { grid-template-columns: 1fr; }
  .level__marker { display: flex; align-items: baseline; gap: .8rem; padding-top: 0; }
  .level__rule { display: none; }
  .level__label { margin-top: 0; }
}

/* ---------------------------------------------------------------
   22. MOTION PREFERENCES / PRINT
   --------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__slide.is-active img { animation: none; transform: scale(1.03); }
}

@media print {
  .site-header, .mobile-bar, .float-widgets, .hero__dots, .topbar { display: none !important; }
  body { color: #000; background: #fff; }
}
