/* ============================================================
   L'Escapade · Gulf Spirit & Vibes
   Sample stylesheet (review build, standalone HTML)
   Fonts: Signika (display) + Open Sans (body), shared with the
   GSV Governance brand. Palette shares the GSV family, warmed
   for hospitality. No external CDN; everything is local.
   ============================================================ */

/* ---------- Fonts (local, relative paths) ---------- */
@font-face {
  font-family: 'Signika';
  src: url('../fonts/Signika-VariableFont_GRAD_wght.woff2') format('woff2');
  font-weight: 300 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/open-sans-latin-400-normal.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/open-sans-latin-400-italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/open-sans-latin-600-normal.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Open Sans';
  src: url('../fonts/open-sans-latin-700-normal.woff2') format('woff2');
  font-weight: 700; font-style: normal; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --teal:        #1A4659;
  --teal-deep:   #14323F;
  --green:       #008171;
  --green-text:  #007063;
  --green-dark:  #006F62;
  --light-green: #A3D4C2;
  --sand:        #B4A08D;
  --sand-soft:   #E7DBCC;
  --cream:       #F5EFE6;
  --cream-soft:  #FAF6EF;
  --white:       #FFFFFF;
  --ink:         #1C2A33;
  --ink-2:       rgba(28,42,51,0.72);
  --ink-3:       rgba(28,42,51,0.55);
  --line:        rgba(26,70,89,0.14);
  --rule-dark:   rgba(255,255,255,0.18);

  --font-display: 'Signika', system-ui, -apple-system, sans-serif;
  --font-body:    'Open Sans', system-ui, -apple-system, sans-serif;

  --content: 1184px;
  --gap: 32px;
  --radius: 6px;
  --shadow: 0 12px 40px rgba(26,70,89,0.14), 0 3px 10px rgba(26,70,89,0.08);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  --gradient-accent: linear-gradient(90deg, #008171 0%, #008171 35%, #A3D4C2 65%, #B4A08D 100%);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--green-text); text-decoration: none; transition: color .24s var(--ease); }
a:hover { color: var(--green-dark); }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--teal); margin: 0; line-height: 1.12; text-wrap: balance; }
p { margin: 0 0 1rem; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--light-green); color: var(--teal); }

/* ---------- Accessibility ---------- */
/* Skip link (WCAG 2.4.1): off-screen until focused, then pinned top-left.
   z-index sits above the sticky header (50) and the lightbox (200). */
.skip-link {
  position: absolute; left: 8px; top: -56px; z-index: 300;
  background: var(--teal); color: var(--white);
  font-family: var(--font-body); font-weight: 700; font-size: 0.95rem;
  padding: 10px 16px; border-radius: var(--radius); text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 8px; outline: 3px solid var(--light-green); outline-offset: 2px; }

/* Visible keyboard focus indicator (WCAG 2.4.7), legible on both light and
   dark backgrounds via a green outline plus a light-green halo. */
:focus-visible {
  outline: 2px solid var(--green); outline-offset: 2px;
  box-shadow: 0 0 0 4px var(--light-green); border-radius: 3px;
}

.wrap { width: 100%; max-width: var(--content); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-body); font-weight: 600;
  font-size: 0.8125rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--green-text); margin: 0 0 14px;
}
.eyebrow.on-dark { color: var(--light-green); }

.divider { width: 84px; height: 4px; background: var(--green); border: 0; margin: 18px 0 0; }
.divider.center { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; font-family: var(--font-body); font-weight: 600;
  font-size: 0.95rem; letter-spacing: 0.02em; line-height: 1;
  padding: 16px 30px; border-radius: var(--radius); cursor: pointer;
  border: 2px solid transparent; transition: all .24s var(--ease);
}
.btn-primary { background: var(--green); color: var(--white); }
.btn-primary:hover { background: var(--green-dark); color: var(--white); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.7); }
.btn-ghost:hover { background: var(--white); color: var(--teal); }
.btn-outline { background: transparent; color: var(--green-text); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); }

/* ---------- Top accent ---------- */
.top-accent { height: 6px; width: 100%; background: var(--gradient-accent); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 84px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 68px; width: auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text .name { font-family: var(--font-display); font-weight: 700; font-size: 1.12rem; color: var(--teal); letter-spacing: 0.01em; }
.brand-text .tag { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-text); }

.nav { display: flex; align-items: center; gap: 28px; }
.nav a { color: var(--teal); font-weight: 600; font-size: 0.95rem; }
.nav a:hover { color: var(--green-text); }
.nav .btn { padding: 12px 22px; }
/* Ensure the header CTA label is light/legible: .nav a was overriding .btn-primary's white */
.nav a.btn-primary { color: var(--white); font-weight: 700; }
.nav a.btn-primary:hover { color: var(--white); }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--teal); margin: 5px 0; transition: .24s var(--ease); }

/* Parent strip: signals one GSV family of three businesses */
.parent-strip {
  background: var(--teal-deep); color: rgba(255,255,255,0.92);
  font-size: 0.78rem; letter-spacing: 0.04em;
}
.parent-strip .wrap { display: flex; align-items: center; justify-content: space-between; height: 38px; gap: 16px; }
.parent-strip a { color: rgba(255,255,255,0.78); font-weight: 600; }
.parent-strip a:hover { color: var(--white); }
.parent-strip .active { color: var(--light-green); }
.parent-strip .links { display: flex; gap: 22px; }
/* Brand mark: clickable white GSV wave that routes back to the parent / */
.parent-strip__brand { display: inline-flex; align-items: center; line-height: 0; }
.parent-strip__brand img { display: block; height: 26px; width: auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 78vh; display: flex; align-items: center;
  color: var(--white); overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(16,42,53,0.60) 0%, rgba(16,42,53,0.34) 42%, rgba(16,42,53,0.10) 100%),
    linear-gradient(180deg, rgba(16,42,53,0.18) 0%, rgba(16,42,53,0.06) 42%, rgba(16,42,53,0.46) 100%),
    var(--hero-img, url('../images/hero-beachfront.jpg')) var(--hero-pos, center) / cover no-repeat;
  z-index: 0;
}
/* Shorter hero for inner pages */
.hero.compact { min-height: 52vh; }
.hero.compact .wrap { padding-top: 64px; padding-bottom: 64px; }
/* Branded, photo-free hero for guides where we hold no destination photography */
.hero.branded::before {
  background:
    radial-gradient(130% 110% at 82% 0%, rgba(0,129,113,0.55) 0%, rgba(0,129,113,0) 58%),
    linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 52%, var(--green-dark) 100%);
}
.hero.branded::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 200px;
  background: url('../images/waves-soft.svg') bottom center / 100% 100% no-repeat;
  opacity: 0.55; z-index: 0; pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; padding-top: 80px; padding-bottom: 80px; }
.hero .eyebrow.on-dark {
  color: var(--white);
  text-shadow: 0 1px 14px rgba(16,42,53,0.55);
}
.hero h1 {
  color: var(--white); font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.75rem); letter-spacing: -0.015em; max-width: 16ch;
  text-shadow: 0 2px 22px rgba(16,42,53,0.40);
}
.hero .lede {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: clamp(1.25rem, 2.4vw, 1.7rem); color: #FFFFFF;
  margin: 18px 0 30px; max-width: 34ch;
  text-shadow: 0 1px 16px rgba(16,42,53,0.55);
}
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Section scaffolding ---------- */
.section { padding: 88px 0; }
.section.tight { padding: 64px 0; }
.section.cream { background: var(--cream); }
.section.cream-soft { background: var(--cream-soft); }

/* Soft wave motif on the welcome and stay bands so they read warmer, not stark */
.section.cream-soft { position: relative; overflow: hidden; }
.section.cream-soft::before {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 240px;
  background: url('../images/waves-soft.svg') bottom center / 100% 100% no-repeat;
  pointer-events: none; z-index: 0;
}
.section.cream-soft > .wrap { position: relative; z-index: 1; }
.section-head { max-width: 720px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); font-weight: 700; }
.section-head p { color: var(--ink-2); font-size: 1.15rem; margin-top: 16px; }

/* ---------- Property showcase ---------- */
.props { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.prop-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 1px 2px rgba(26,70,89,0.05); transition: transform .28s var(--ease), box-shadow .28s var(--ease);
}
.prop-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.prop-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.prop-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.prop-card:hover .prop-media img { transform: scale(1.04); }
.badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 7px 12px; border-radius: 4px;
}
.badge.live { background: var(--green); color: var(--white); }
.badge.soon { background: rgba(20,50,63,0.86); color: var(--light-green); }
.prop-media.upcoming img { filter: saturate(0.82) brightness(0.92); }
.prop-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.prop-body h3 { font-size: 1.4rem; font-weight: 700; }
.prop-loc { color: var(--teal); font-weight: 600; font-size: 0.85rem; letter-spacing: 0.04em; margin: 4px 0 14px; }
.prop-specs { display: flex; flex-wrap: wrap; gap: 8px 16px; color: var(--ink-2); font-size: 0.9rem; margin-bottom: 20px; }
.prop-specs span { display: inline-flex; align-items: center; gap: 6px; }
.prop-specs .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--light-green); }
.prop-foot { margin-top: auto; }

/* ---------- Who we are (split) ---------- */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.split .media img { border-radius: var(--radius); box-shadow: var(--shadow); width: 100%; object-fit: cover; }
.split h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 700; }
.split p { color: var(--ink-2); font-size: 1.08rem; margin-top: 18px; }

/* ---------- Discover band (full-bleed) ---------- */
.discover { position: relative; color: var(--white); text-align: center; overflow: hidden; }
.discover::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(180deg, rgba(20,50,63,0.72), rgba(20,50,63,0.78)), url('../images/discover-uae.jpg') center/cover fixed no-repeat;
}
.discover .wrap { position: relative; z-index: 1; padding: 104px 24px; }
.discover h2 { color: var(--white); font-size: clamp(1.9rem, 4vw, 2.9rem); font-weight: 700; max-width: 18ch; margin: 0 auto; }
.discover p { color: rgba(255,255,255,0.9); font-size: 1.12rem; max-width: 62ch; margin: 20px auto 30px; }

/* ---------- Booking (Stay with us) ---------- */
.book-row { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 12px; }
.book-row .btn { min-width: 210px; text-align: center; }
.whatsapp-line { margin-top: 20px; font-size: 1rem; color: var(--ink-2); }
.whatsapp-line a { font-weight: 700; }

/* ---------- Footer ---------- */
.site-footer { background: var(--teal-deep); color: rgba(255,255,255,0.82); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; }
.site-footer h4 { color: var(--white); font-size: 1rem; font-weight: 700; letter-spacing: 0.04em; margin-bottom: 18px; }
.site-footer a { color: rgba(255,255,255,0.78); }
.site-footer a:hover { color: var(--light-green); }
.footer-logo { height: 80px; margin-bottom: 18px; }
.footer-blurb { max-width: 38ch; font-size: 0.95rem; line-height: 1.7; }
.footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; font-size: 0.95rem; }
.footer-contact { font-size: 0.95rem; line-height: 1.8; }
.footer-contact strong { color: var(--white); font-weight: 700; }
.footer-legal-links {
  margin: 22px 0 0;
  font-size: 0.85rem; line-height: 1.7;
  color: rgba(255,255,255,0.6);
}
.footer-legal-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  text-decoration: underline;
}
.footer-legal-links a:hover { color: var(--white); }
/* Cookie settings is a <button>: match the adjacent links exactly via
   explicit typography inheritance, strip the default form chrome. */
.footer-settings-btn {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  line-height: inherit;
  letter-spacing: inherit;
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  cursor: pointer;
}
.footer-settings-btn:hover { color: var(--white); }
.footer-settings-btn:focus-visible {
  outline: 3px solid var(--light-green);
  outline-offset: 2px;
}

.footer-legal {
  margin-top: 18px; border-top: 1px solid var(--rule-dark); padding-top: 18px;
  font-size: 0.8rem; line-height: 1.7; color: rgba(255,255,255,0.58); max-width: 96ch;
}
.footer-bottom {
  margin-top: 24px; border-top: 1px solid var(--rule-dark); padding: 22px 0;
  font-size: 0.82rem; color: rgba(255,255,255,0.6);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* ---------- Feature grid (inner pages) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.feature {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px 18px; display: flex; align-items: center; gap: 12px;
  font-weight: 600; color: var(--teal); font-size: 0.98rem;
}
.feature .tick {
  flex: 0 0 auto; width: 24px; height: 24px; border-radius: 50%;
  background: var(--light-green); color: var(--teal); display: grid; place-items: center;
  font-size: 0.8rem; font-weight: 700;
}

/* ---------- Amenities ---------- */
.amenity-cols { columns: 3; column-gap: 40px; }
.amenity-cols li {
  break-inside: avoid; list-style: none; padding: 12px 0 12px 26px; position: relative;
  border-bottom: 1px solid var(--line); color: var(--ink-2); font-size: 1rem;
}
.amenity-cols li strong { color: var(--teal); font-weight: 600; }
.amenity-cols li .note { color: var(--ink-3); font-size: 0.85rem; }
.amenity-cols li::before {
  content: ""; position: absolute; left: 0; top: 19px;
  width: 8px; height: 8px; border-radius: 50%; background: var(--green);
}
.amenity-cols { padding: 0; margin: 0; }

/* ---------- Gallery ---------- */
.gallery-group { margin-top: 40px; }
.gallery-group:first-child { margin-top: 0; }
.gallery-group h3 {
  font-family: var(--font-body); font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: var(--green-text); margin-bottom: 16px;
}
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery figure { margin: 0; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius); }
.gallery img {
  width: 100%; height: 100%; object-fit: cover; cursor: zoom-in;
  transition: transform .5s var(--ease); background: var(--cream);
}
.gallery img:hover { transform: scale(1.05); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200; display: none;
  background: rgba(16,42,53,0.92); align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 94vw; max-height: 88vh; border-radius: var(--radius); box-shadow: var(--shadow); }
.lightbox .lb-close, .lightbox .lb-nav {
  position: absolute; background: rgba(255,255,255,0.14); color: #fff; border: 0;
  width: 48px; height: 48px; border-radius: 50%; font-size: 1.4rem; cursor: pointer;
}
.lightbox .lb-close { top: 20px; right: 20px; }
.lightbox .lb-nav.prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-nav.next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-nav:hover, .lightbox .lb-close:hover { background: rgba(255,255,255,0.28); }

/* ---------- Nearby attractions ---------- */
.attr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.attr-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; display: flex; flex-direction: column;
}
.attr-card h3 { font-size: 1.25rem; font-weight: 700; }
.attr-card .meta { display: block; margin-top: 6px; color: var(--green-text); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; }
.attr-card p { color: var(--ink-2); margin: 12px 0 0; font-size: 1rem; }
.attr-card .more-link { display: inline-block; margin-top: 16px; font-weight: 700; font-size: 0.95rem; color: var(--green-text); }
.attr-card .more-link:hover { color: var(--teal); }

/* ---------- Location / directions band ---------- */
.loc-band { background: var(--teal); color: var(--white); }
.loc-band .wrap { padding: 72px 24px; text-align: center; }
.loc-band h2 { color: var(--white); font-size: clamp(1.7rem, 3.2vw, 2.4rem); font-weight: 700; max-width: 22ch; margin: 0 auto; }
.loc-band p { color: rgba(255,255,255,0.88); max-width: 60ch; margin: 18px auto 28px; font-size: 1.08rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1023px) {
  .props { grid-template-columns: repeat(2, 1fr); }
  .split { gap: 36px; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .amenity-cols { columns: 2; }
  .attr-grid { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .nav { display: none; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 18px;
    position: absolute; top: 84px; left: 0; right: 0; background: var(--white);
    padding: 24px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
  }
  .parent-strip .links { gap: 16px; }
}
@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .props { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split .media { order: -1; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .discover::before { background-attachment: scroll; }
  .parent-strip .wrap { font-size: 0.72rem; }
  .hero { min-height: 70vh; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .amenity-cols { columns: 1; }
  .book-row .btn { min-width: 0; width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; scroll-behavior: auto !important; }
  .discover::before { background-attachment: scroll; }
}

/* ============================================================
   FEEDBACK ROUND 1 ADDITIONS
   Decorative leaf/wave softening, one-line booking rows,
   photo attraction cards, captioned person card, map split,
   stronger eyebrow. All assets are local (assets/decor, assets/images).
   ============================================================ */

/* ---- Decorative motifs (leaves = sand fronds + wavy lines, waves = soft teal band) ---- */
/* Leaf/line texture is one fixed background layer (bg-pattern.svg) pinned to the
   viewport, so it stays still while content scrolls past, matching the live site.
   Wave band is the original soft layered wave (waves-soft.svg), rendered taller. */
.section.leaf, .section.wave { position: relative; overflow: hidden; }
.section.leaf > .wrap, .section.wave > .wrap { position: relative; z-index: 1; }

.section.leaf {
  background-image: url('../decor/bg-pattern.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}
/* Keep the fixed leaf texture readable over the warm section fills */
.section.leaf.cream { background-color: var(--cream); }
.section.leaf.cream-soft { background-color: var(--cream-soft); }

.section.wave::before {
  content: ""; position: absolute; z-index: 0; pointer-events: none;
  left: 0; right: 0; bottom: 0; height: 260px;
  background: url('../images/waves-soft.svg') bottom center / 100% 100% no-repeat;
}
.section.wave.wave-top::before { bottom: auto; top: 0; transform: scaleY(-1); }

/* Mobile browsers handle fixed backgrounds poorly (jank on iOS Safari), so the
   texture scrolls normally on small screens. */
@media (max-width: 760px) {
  .section.leaf { background-attachment: scroll; }
}

/* ---- One-line booking row (items 17, 28, 29, 34) ---- */
.book-row.three { flex-wrap: nowrap; gap: 12px; align-items: stretch; max-width: 760px; margin-left: auto; margin-right: auto; }
.book-row.three .btn { flex: 1 1 0; min-width: 0; white-space: nowrap; padding-left: 16px; padding-right: 16px; text-align: center; }
.book-row.single { margin-top: 16px; }
.book-row.single .btn { min-width: 220px; }
@media (max-width: 760px) {
  .book-row.three { flex-wrap: wrap; }
  .book-row.three .btn { flex: 1 1 100%; }
}

/* ---- Stronger eyebrow (item 12) ---- */
.eyebrow.strong { color: var(--green); font-weight: 700; }

/* ---- Attraction cards with a photo (items 14, 22) ---- */
.attr-card.has-photo { padding: 0; overflow: hidden; }
.attr-card.has-photo .ph { aspect-ratio: 3 / 2; overflow: hidden; background: var(--cream); }
.attr-card.has-photo .ph img { width: 100%; height: 100%; object-fit: cover; cursor: zoom-in; transition: transform .5s var(--ease); }
.attr-card.has-photo:hover .ph img { transform: scale(1.05); }
.attr-card.has-photo .bd { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.attr-card.has-photo .bd h3 { font-size: 1.25rem; font-weight: 700; }
.attr-card.has-photo .bd .meta { display: block; margin-top: 6px; color: var(--green-text); font-weight: 700; font-size: 0.74rem; letter-spacing: 0.1em; text-transform: uppercase; }
.attr-card.has-photo .bd p { color: var(--ink-2); margin: 12px 0 0; font-size: 1rem; }

/* ---- Mission/values with manager photo (item 32) ---- */
.values-layout { display: grid; grid-template-columns: 1.45fr 1fr; gap: 48px; align-items: start; }
.values-layout .v-cards { display: grid; gap: var(--gap); }
.person-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: 0 1px 2px rgba(26,70,89,0.05);
}
.person-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.person-card figcaption { padding: 16px 20px; margin: 0; font-weight: 700; color: var(--teal); font-size: 1rem; }
.person-card figcaption span { display: block; color: var(--green-text); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }
@media (max-width: 860px) { .values-layout { grid-template-columns: 1fr; gap: 28px; } }

/* ---- Map in a split (item 19): show the whole map on a light card ---- */
.split .media.map img { box-shadow: none; border: 1px solid var(--line); background: var(--white); object-fit: contain; padding: 14px; }

/* ---- Discover band copy emphasis (item 5): bolder, wider, max ~4 lines ---- */
.discover.tighter h2 { max-width: 28ch; }
.discover.tighter p { max-width: 80ch; color: rgba(255,255,255,0.96); font-size: 1.2rem; font-weight: 600; line-height: 1.55; }
