:root {
  --bg: #f6f2eb;
  --paper: #fcfaf6;
  --ink: #1f1c18;
  --muted: #65605a;
  --line: #d9ccb8;
  /* four golds, and only four. change the brand gold here and it changes everywhere.
     the -rgb twins exist so rgba() tints reference the same value instead of a literal. */
  --gold: #c6a15b;          /* primary — buttons, accent lines, active underlines */
  --gold-rgb: 198, 161, 91;
  --gold-deep: #a2844b;     /* hover and pressed states — the brand gold, one notch darker */
  --gold-deep-rgb: 162, 132, 75;
  --gold-mid: #c6a15b;      /* muted links and hairline borders on cream */
  --gold-mid-rgb: 198, 161, 91;
  --gold-light: #c6a15b;    /* eyebrows and labels sitting on dark photography */
  --dark: #1b1a18;

  /* Header size is driven by the screen, not hardcoded. The `min(..., Nvh)` cap is the
     important half: on a short laptop screen the mark shrinks instead of eating the
     viewport, which is what used to push the hero copy up underneath it.
     Full 216/225px is still reached on any display 865px tall or more. */
  --nav-h: min(clamp(88px, 13vw, 216px), 25vh);
  /* the mark is a 6.9:1 wordmark, so this drives its WIDTH and the height follows */
  --logo-size: clamp(210px, 30vw, 380px);
  /* height of the header once it's solid — scrolled, or on a page with no hero behind it */
  --nav-h-solid: 92px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* every anchor jump lands with the header already solid, so hold every target clear of it
     here rather than per-element — otherwise the fixed bar sits on top of what you jumped to */
  scroll-padding-top: calc(var(--nav-h-solid) + 24px);
  /* luxury brands lean on slightly larger, airier body type (~1px up) */
  font-size: 17px;
}

body {
  font-family: 'Lato', sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

body.destinations-page section {
  background-color: var(--paper);
}

body.destinations-page .destination-card,
body.destinations-page .destinations-values-grid article,
body.destinations-page .secondary-cta,
body.destinations-page .destination-table,
body.destinations-page .destination-info,
body.destinations-page .destination-icon-cell {
  background: var(--paper);
}

img {
  width: 100%;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.3rem, 5vw, 4.4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  margin-bottom: 0.6rem;
}

h3 {
  font-size: 1.4rem;
}

p {
  color: var(--muted);
}

.container {
  width: min(94%, 1380px);
  margin: 0 auto;
}

.panel {
  background: var(--paper);
}

.panel-inner {
  padding: clamp(0.85rem, 1.3vw, 1.3rem) 0;
}

/* First section sits just under the fixed nav — trim the empty space above it */
main > .panel:first-child > .panel-inner {
  padding-top: clamp(1rem, 1.8vw, 1.6rem);
}

/* services: full-bleed image banner sits flush under the nav, no cream gap */
main > .services.panel:first-child {
  border-top: 0;
}
main > .services.panel:first-child > .panel-inner {
  padding-top: 0;
}

.top-nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: rgba(252, 250, 246, 0.98);
  border-bottom: 1px solid rgba(var(--gold-mid-rgb), 0.3);
  backdrop-filter: blur(10px);
  transition: background 0.3s ease, border-color 0.3s ease;
}

/* hero pages: transparent header overlaying the hero, solid once scrolled */
body.hero-nav .top-nav:not(.scrolled) {
  background: transparent;
  border-bottom: 0;
  box-shadow: none !important;
  backdrop-filter: none;
  background-image: linear-gradient(180deg, rgba(10, 14, 20, 0.42), rgba(10, 14, 20, 0));
}

body.hero-nav .top-nav:not(.scrolled) .nav-links a {
  color: #fff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}

body.hero-nav .top-nav:not(.scrolled) .nav-links a:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.9);
}

body.hero-nav .top-nav:not(.scrolled) .nav-links a.active {
  color: #fff;
  border-bottom-color: var(--gold);
}

body.hero-nav .top-nav:not(.scrolled) .menu-icon,
body.hero-nav .top-nav:not(.scrolled) .menu-icon::before,
body.hero-nav .top-nav:not(.scrolled) .menu-icon::after {
  background: #fff;
}

.nav-wrap {
  min-height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  min-width: 160px;
}

.brand-logo {
  width: var(--logo-size);
  height: auto;
  object-fit: contain;
  /* the wordmark is trimmed to its ink, so there's no built-in padding left to pull back */
  margin-left: 0;
}

/* over a photo the mark loses itself — a faint ivory disc + glow lifts it out */
body.hero-nav .top-nav:not(.scrolled) .brand-logo {
  /* closest-side so the glow fades to nothing inside the box — no hard rim.
     ellipse, not circle, so it follows the wordmark's width instead of a blob in the middle */
  background: radial-gradient(
    ellipse closest-side,
    rgba(246, 241, 232, 0.16) 0%,
    rgba(246, 241, 232, 0.12) 46%,
    rgba(246, 241, 232, 0.06) 72%,
    rgba(246, 241, 232, 0.02) 88%,
    rgba(246, 241, 232, 0) 100%
  );
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.35)) drop-shadow(0 0 4px rgba(246, 241, 232, 0.2));
}

/* Solid header — scrolled, or a page with no hero behind it. At full height the ivory bar
   reads as a huge empty band, so the bar and the mark shrink together at every width. */
.brand-logo,
.nav-wrap {
  transition: width 0.28s ease, height 0.28s ease, min-height 0.28s ease;
}

.top-nav.scrolled .nav-wrap,
body:not(.hero-nav) .nav-wrap {
  min-height: var(--nav-h-solid);
}

.top-nav.scrolled .brand-logo,
body:not(.hero-nav) .brand-logo {
  width: 270px;
  height: auto;
  margin-left: 0;
}

.site-nav {
  margin: 0 auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: clamp(1rem, 2vw, 2.2rem);
}

.nav-links a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.82rem;
  font-weight: 500;
  color: #36322d;
  padding-bottom: 0.28rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-links a:hover {
  color: var(--gold-deep);
  border-bottom-color: rgba(var(--gold-deep-rgb), 0.55);
}

.nav-links a.active {
  border-bottom-color: var(--gold);
}

.btn-nav,
.btn-primary,
.btn-outline,
.btn-small {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.7rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.95rem 1.7rem;
  border: 2px solid transparent;
  border-radius: 0;
  cursor: pointer;
}

.btn-nav,
.btn-primary,
.btn-small {
  background: var(--gold);
  color: #fff;
}

.btn-nav:hover,
.btn-primary:hover,
.btn-small:hover {
  background: var(--gold-deep);
}

.btn-outline {
  border-color: var(--gold);
  color: var(--gold-deep);
  background: transparent;
}

.btn-outline:hover {
  background: rgba(var(--gold-mid-rgb), 0.09);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 38px;
  height: 38px;
  padding: 0;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-icon {
  position: relative;
  width: 20px;
  height: 2px;
  background: #2f2a24;
  display: inline-block;
}

.menu-icon::before,
.menu-icon::after {
  content: '';
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: #2f2a24;
}

.menu-icon::before {
  top: -6px;
}

.menu-icon::after {
  top: 6px;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  align-items: center;
  background-image: url('images/hero-home.jpeg');
  background-size: cover;
  background-position: 60% center;
  margin-top: 0;
  /* the copy is centred in the hero, so on a short screen the centre line rises into the
     logo. Reserving the header height means it centres in the space BELOW the header —
     overlap becomes impossible at any viewport size rather than merely unlikely. */
  padding-top: var(--nav-h);
}

/* homepage only — sits behind the existing background-image, which stays as the
   poster/fallback frame until the video paints (or if it fails to load). */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* left-to-right black scrim: strongest behind the copy, near-clear on the right.
   The video cycles through very different clips (sunset, snow, daylight ocean), so
   there's a flat 0.14 floor everywhere in it — enough that the logo and copy stay
   readable on the brightest scene without the darker scenes looking heavy. */
.hero-fade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.45) 28%,
    rgba(0, 0, 0, 0.45) 50%,
    rgba(0, 0, 0, 0.45) 72%,
    rgba(0, 0, 0, 0.45) 100%
  );
}

@media (max-width: 1180px) {
  .hero {
    background-position: center;
  }
}

.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 590px;
  /* was 50px to clear the pillar edge; pulled back to 0 on request, so the copy
     now sits flush with the container gutter. Mobile already resets this to 0. */
  margin-left: 0;
  /* restrained shadow: enough lift off the photo, never an outline */
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.28);
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  color: #f6f1e8;
}

.hero-title-accent {
  font-style: italic;
  color: var(--gold-light);
  display: block;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.hero-copy .btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.hero-copy .btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: #fff;
}

.hero-copy p {
  font-size: 1.1rem;
  color: #f6f1e8;
  margin-bottom: 1.5rem; /* Add spacing below the paragraph */
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.accent-line {
  display: block;
  width: 70px;
  height: 3px;
  background: var(--gold);
  margin: 1.5rem auto;
}

.accent-line-left {
  margin: 1rem 0 1.5rem;
}

.about .panel-inner {
  text-align: center;
}

.about h2,
.destinations-head h2,
.services h2,
.enquire h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1rem;
}

.about h2::after,
.destinations-head h2::after,
.services h2::after,
.enquire h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -0.45rem;
  transform: translateX(-50%);
  width: 52px;
  height: 1.5px;
  background: rgba(var(--gold-mid-rgb), 0.75);
}

.about .panel-inner p {
  max-width: 720px;
  margin: 0 auto 0.8rem;
  font-size: 0.99rem;
}

.about-gallery {
  margin: 2.2rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.about-gallery img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-home-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-home-copy {
  text-align: left;
  max-width: 620px;
}

.about-home-copy .btn-primary {
  display: inline-block;
  margin-top: 0.45rem;
}

.about-home-mark {
  justify-self: center;
}

.about-home-mark img {
  width: min(420px, 70vw);
  height: auto;
  object-fit: contain;
}

.about-home-preview {
  padding-bottom: clamp(0.8rem, 1.35vw, 1.2rem);
  text-align: center;
}

/* eyebrow-style label to match the about-us "Why Choose" heading exactly */
.about-home-preview h3 {
  position: relative;
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.about-home-preview h3::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -0.45rem;
  transform: translateX(-50%);
  width: 52px;
  height: 1.5px;
  background: rgba(var(--gold-mid-rgb), 0.75);
}

.about-home-values-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* enquire page: bordered diamond-mark cards, distinct from the home page's icon row */
.enquire-why {
  text-align: center;
}

.enquire-why h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  color: #2a2620;
}

.enquire-why-grid {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}

.enquire-why-grid article {
  border: 1px solid var(--line);
  background: #fff;
  padding: 2rem 1.2rem;
}

.enquire-why-diamond {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-bottom: 1rem;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
}

.enquire-why-grid h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: #2a2620;
}

.enquire-why-grid p {
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  color: #6b625a;
  max-width: 24ch;
  margin: 0 auto;
}

@media (max-width: 820px) {
  .enquire-why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .enquire-why-grid {
    grid-template-columns: 1fr;
  }
}

.about-home-values-grid article {
  padding: 1.15rem 0.9rem;
  text-align: center;
  position: relative;
}

/* short dividers that stop short of the top/bottom rules, like about-us */
.about-home-values-grid article + article::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.15rem;
  bottom: 1.15rem;
  border-left: 1px solid var(--line);
}

.about-home-values-grid img {
  width: 46px;
  height: 46px;
  margin: 0 auto 0.6rem;
  object-fit: contain;
}

.about-home-values-grid h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  margin-bottom: 0.38rem;
}

.about-home-values-grid p {
  font-size: 0.8rem;
  max-width: 28ch;
  margin: 0 auto;
}

.destinations-wrap {
  padding-top: clamp(0.35rem, 0.6vw, 0.55rem);
}

/* the intro sits directly under the hero photo — give it breathing room (~0.5cm) */
body.destinations-page .destinations-wrap {
  padding-top: clamp(1.5rem, 2vw, 1.9rem);
}

.destination-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  /* holds the dark tone until the photo lands, so the white logo never sits on white */
  background-color: #111b29;
}

/* photo on its own layer so it can be lifted without washing out the white text above it:
   brightness = exposure, reduced contrast = lifted shadows, saturate = vibrance, sepia = warmth */
.destination-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('images/Destinations/hero-rio-wide.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* exposure + vibrance + warmth only — the shadow lift and the sunset glow are baked
     into the file itself, so doing them again here would double up and go hazy */
  filter: brightness(1.06) saturate(1.08) sepia(0.04);
}

/* ~20% lighter scrim than before — still enough for the white headline to hold */
.destination-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(17, 27, 41, 0.34) 0%, rgba(17, 27, 41, 0.12) 40%, rgba(17, 27, 41, 0.27) 100%);
}

.destination-hero-inner {
  position: relative;
  z-index: 1;
}

.destination-hero-copy {
  max-width: 520px;
  color: #fff;
  text-align: left;
  /* clear of the logo overhead — capped against viewport height so it shrinks with the
     header on a short screen instead of shoving the copy off the bottom */
  margin-top: min(150px, 24vh);
}

.destination-hero-copy .eyebrow {
  color: var(--gold-light);
  letter-spacing: 0.22em;
  font-size: 0.75rem;
  margin-bottom: 1rem;
}

.destination-hero-copy h1 {
  font-size: clamp(2.4rem, 4vw, 4.25rem);
  line-height: 1.05;
  margin-bottom: 0.75rem;
  max-width: 12ch;
}

.destination-hero-copy p {
  font-size: 1.05rem;
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.2rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
}

.destination-hero-copy .btn-primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #ffffff;
}

.destination-intro {
  text-align: center;
  margin-bottom: 1rem;
}

/* destinations: tighten the space around the "Why Choose" block (~50%) */
.destinations-wrap .about-home-preview {
  margin-top: 0;
  padding-top: 0.8rem;
  padding-bottom: clamp(0.4rem, 0.7vw, 0.6rem);
}

.destinations-wrap .about-home-preview h3 {
  margin-bottom: 0.5rem;
}

.destinations-wrap .about-home-values-grid {
  margin-top: 0.55rem;
}

.destination-intro h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  margin-bottom: 0.8rem;
}

.destination-intro p {
  max-width: 61ch;
  margin: 0 auto;
  color: #4f4a42;
  font-size: 1rem;
}

.destination-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.destination-card {
  overflow: hidden;
  border: 1px solid rgba(217, 204, 184, 0.45);
  background: #fff;
  display: grid;
  grid-template-rows: auto 1fr;
}

.destination-card#wellness-retreats {
  grid-column: 1 / -1;
}

.destination-card picture {
  display: block;
}

.destination-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.destination-card#wellness-retreats img {
  height: 620px;
  object-position: center;
}

.destination-card-copy {
  padding: 2rem 1.8rem 2.1rem;
  display: grid;
  gap: 1rem;
}

.destination-card-copy h3 {
  font-size: 1.15rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #2a2620;
}

.destination-card-copy p {
  margin: 0;
  font-family: 'Lato', sans-serif;
  color: #4d463f;
  line-height: 1.75;
  font-size: 1rem;
  max-width: 46ch;
}

.destination-card#wellness-retreats .destination-card-copy {
  padding: 2rem 2.2rem 2.4rem;
  text-align: center;
}

.destination-card#wellness-retreats .destination-card-copy h3 {
  font-size: 1.15rem;
  letter-spacing: 0.16em;
}

.destination-card#wellness-retreats .destination-card-copy p {
  max-width: 54ch;
  margin: 0 auto;
  color: #6b625a;
  font-size: 1rem;
}

.destination-card#wellness-retreats .destination-link {
  justify-self: center;
}

.destination-link {
  display: inline-flex;
  align-items: center;
  color: var(--gold-mid);
  text-decoration: none;
  letter-spacing: 0.02em;
  font-size: 0.88rem;
}

.destination-link::after {
  content: '→';
  margin-left: 0.55rem;
}

.destination-link:hover {
  text-decoration: none;
  color: var(--gold-deep);
}

.destinations-values {
  margin-top: clamp(3rem, 5vw, 4.5rem);
}

.destinations-values h3 {
  text-align: center;
  margin-bottom: 1.2rem;
}

.destinations-values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.destinations-values-grid article {
  background: #fff;
  padding: 1.85rem 1rem;
  text-align: center;
  display: grid;
  gap: 0.8rem;
  align-items: center;
  border-right: 1px solid rgba(217, 204, 184, 0.22);
}

.destinations-values-grid article:last-child {
  border-right: 0;
}

.destinations-values-grid article::before {
  content: '';
  width: 44px;
  height: 44px;
  margin: 0 auto;
  border-radius: 50%;
  background: #fcfaf6;
  border: 1px solid rgba(var(--gold-mid-rgb), 0.35);
  display: grid;
  place-items: center;
}

.destinations-values-grid h4 {
  font-family: 'Lato', sans-serif;
  font-size: 0.98rem;
  margin-bottom: 0.45rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #2a2620;
  font-weight: 600;
}

.destinations-values-grid p {
  margin: 0 auto;
  font-size: 0.92rem;
  color: #5a5045;
  line-height: 1.75;
  max-width: 30ch;
}

.destinations-values-grid article:nth-child(1)::before {
  content: '';
  background: #fcfaf6 url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23b89d6f" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpath d="M12 2.5l2.9 5.85 6.45.94-4.67 4.55 1.1 6.43L12 17.6l-5.78 3.05 1.1-6.43L2.65 9.29l6.45-.94L12 2.5z"/%3E%3C/svg%3E') no-repeat center;
}

.destinations-values-grid article:nth-child(2)::before {
  content: '';
  background: #fcfaf6 url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23b89d6f" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpath d="M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2"/%3E%3Ccircle cx="12" cy="7" r="4"/%3E%3C/svg%3E') no-repeat center;
}

.destinations-values-grid article:nth-child(3)::before {
  content: '';
  background: #fcfaf6 url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23b89d6f" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpath d="M12 2l7 7-3 11H8L5 9l7-7z"/%3E%3Cpath d="M12 2l3.5 7h-7L12 2z"/%3E%3C/svg%3E') no-repeat center;
}

.destinations-values-grid article:nth-child(4)::before {
  content: '';
  background: #fcfaf6 url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23b89d6f" stroke-width="1.8" stroke-linecap="round" stroke-linejoin="round"%3E%3Ccircle cx="8" cy="10" r="2.5"/%3E%3Ccircle cx="16" cy="10" r="2.5"/%3E%3Cpath d="M4 20c1.5-2 3.5-3 6-3s4.5 1 6 3"/%3E%3Cpath d="M10 14h4"/%3E%3C/svg%3E') no-repeat center;
}


/* Destinations Table Layout */

.destination-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background: transparent;
  margin-bottom: 0.7rem;
  table-layout: fixed;
}
.destination-table tr {
  border-bottom: 1px solid rgba(217, 204, 184, 0.28);
  height: 540px;
  background: transparent;
}
.destination-table tr:last-child {
  border-bottom: none;
}
.destination-img {
  width: 48%;
  padding: 0;
  background: transparent;
}
.destination-img img {
  display: block;
  width: 100%;
  height: 540px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
}
.destination-info {
  width: 40%;
  background: transparent;
  padding: 1.2rem 1.4rem;
  vertical-align: middle;
  text-align: left;
  word-break: break-word;
}
.destination-info h3 {
  margin: 0 0 0.35rem 0;
  font-size: 1.35rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.destination-info p {
  margin: 0;
  font-size: 0.99rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 34ch;
}
.destination-icon-cell {
  width: 12%;
  min-width: 72px;
  max-width: 110px;
  background: transparent;
  text-align: center;
  vertical-align: middle;
}
.destination-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-deep);
  width: 73px;
  height: 73px;
  /* the icon art draws its own gold ring — a container ring here would double it up */
}
.destination-icon img {
  width: 73px;
  height: 73px;
  object-fit: contain;
}

.secondary-cta {
  margin-top: 0.75rem;
  border: 1px solid rgba(217, 204, 184, 0.32);
  background: rgba(252, 250, 246, 0.94);
  text-align: center;
  padding: 1.25rem 1.4rem 1.3rem;
}

.secondary-cta h4 {
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.86rem;
  margin-bottom: 0.35rem;
}

.secondary-cta p {
  font-size: 0.99rem;
  max-width: 780px;
  margin: 0 auto 0.85rem;
}

/* Destination page hero-style CTA */
body.destinations-page .secondary-cta.journey-hero {
  position: relative;
  min-height: 180px;
  display: grid;
  align-items: center;
  background-image: url('images/Destinations/journey-amalfi.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 0;
  padding: 2.2rem 0;
}

/* Make the values grid and journey hero stretch full-bleed */
body.destinations-page .destinations-values,
body.destinations-page .secondary-cta.journey-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

/* Keep inner content constrained and centered */
body.destinations-page .destinations-values {
  padding: 1rem 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

body.destinations-page .destinations-values .destinations-values-grid {
  width: min(94%, 1380px);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.destinations-page .secondary-cta.journey-hero .secondary-cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(92deg, rgba(17,27,41,0.45) 0%, rgba(17,27,41,0.28) 36%, rgba(17,27,41,0.48) 100%);
  z-index: 1;
}

body.destinations-page .secondary-cta.journey-hero .secondary-cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 1rem 0.5rem;
}

body.destinations-page .secondary-cta.journey-hero h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.2vw, 2.6rem);
  margin-bottom: 0.6rem;
  color: #fff;
  line-height: 1.05;
}

body.destinations-page .secondary-cta.journey-hero p {
  margin: 0 auto 1rem;
  color: rgba(255,255,255,0.95);
  font-size: 1rem;
  max-width: 56ch;
}

body.destinations-page .btn-journey {
  /* was --gold-mid, a paler tone than every other CTA */
  background: var(--gold);
  color: #fff;
  padding: 0.72rem 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: none;
  display: inline-block;
}

body.destinations-page .btn-journey:hover {
  background: var(--gold-deep);
}

/* Remove vertical whitespace so journey hero touches above section and footer */
section.destinations .panel-inner {
  padding-bottom: 0;
}

body.destinations-page .destinations-values {
  margin-bottom: 0;
  padding-bottom: 0;
}

body.destinations-page .secondary-cta.journey-hero {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  min-height: 218px; /* increased additional 10% (from 198px) */
}

.services .panel-inner {
  text-align: center;
}

.services-hero {
  position: relative;
  margin: 0 0 1rem;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  overflow: hidden;
}

/* full-width letterbox banner: capped height, framed to keep sky + car */
.services-hero-bg {
  display: block;
  width: 100%;
  height: 86vh;
  object-fit: cover;
  object-position: center 62%;
}

/* subtle dark overlay so the headline stays legible over the banner */
.services-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(15, 20, 28, 0.5) 0%,
    rgba(15, 20, 28, 0.32) 34%,
    rgba(15, 20, 28, 0.1) 60%,
    rgba(15, 20, 28, 0.03) 100%
  );
}

.services-hero-inner {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  /* same box as .container so the copy lines up under the logo, like the other heroes */
  width: min(94%, 1380px);
  margin: 0 auto;
}

.services-label {
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  color: var(--gold-light);
  font-weight: 700;
}

/* full-width banner: copy sits left over a dark overlay */
.services-hero-copy {
  text-align: left;
  max-width: 560px;
  color: #fff;
  margin-top: min(180px, 23vh);
}

.services-hero-copy h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.7rem, 5vw, 4.4rem);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.services-hero-copy p {
  max-width: 44ch;
  margin-bottom: 1.6rem;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
}

.services-hero-copy .btn-primary {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.services-hero-copy .btn-primary:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  color: #fff;
}

.services-hero-caption {
  max-width: 700px;
  margin: 0 auto 2rem;
  text-align: center;
}

.services-hero-divider {
  display: inline-block;
  width: 56px;
  height: 1.5px;
  background: rgba(var(--gold-mid-rgb), 0.75);
  margin-bottom: 1.4rem;
}

.services-hero-caption p {
  margin: 0.5rem 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

/* New services layout: hero + alternating rows */
.services-rows {
  margin-top: 1rem;
}

.service-row {
  padding: 2rem 0;
}

.services-hero-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  border-radius: 0;
}

.services-rows {
  margin-top: 1rem;
}

.service-row {
  padding: 2rem 0;
}

.service-row-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.service-row-media img {
  width: 100%;
  /* most sources are tall portraits; 320px cropped them to a thin band */
  height: 420px;
  object-fit: cover;
  display: block;
}

/* the Rolls sits in the lower half of a very tall frame */
.service-row-media img[src*="04-chauffeur"] {
  object-position: center 70%;
}

/* the laid table (candle, roses, place setting) is near the bottom */
.service-row-media img[src*="03-dining"] {
  object-position: center 85%;
}

.service-row-media--pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}

.service-row-media--pair img {
  height: 420px;
}

.service-row-text {
  text-align: left;
}

.service-number {
  display: block;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.service-row-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.service-row-text p {
  color: var(--muted);
  max-width: 48ch;
}

@media (max-width: 1024px) {
  .services-hero-inner,
  .service-row-content {
    grid-template-columns: 1fr;
  }

  /* Rows alternate in the markup to make the desktop zig-zag, so collapsing to one
     column inherited that alternation — image-then-text, then text-then-image.
     Force the same order for all six: photo first, copy under it. */
  .service-row-media {
    order: 1;
  }

  .service-row-text {
    order: 2;
  }

  .services-hero-image img,
  .service-row-media img {
    height: 260px;
  }
}

@media (max-width: 640px) {
  .services-hero-image img,
  .service-row-media img {
    height: 200px;
  }

  .service-row-text h3 {
    font-size: 1.95rem;
  }
}

/* desktop only: the gold rule sat ~16px under the hero photo, too tight against it.
   Scoped to min-width so the mobile spacing stays exactly as it is. */
@media (min-width: 1025px) {
  .services-hero-caption {
    /* padding, not margin: a top margin here collapses against the hero's own
       bottom margin and only bought ~9px of the 24px asked for */
    padding-top: 1rem;
  }
}

/* Legacy grid removed - keep utility classes for small cards */
.service-card {
  background: #fff;
}

.service-img-wrap {
  position: relative;
}

.service-img-wrap img {
  aspect-ratio: 3 / 4;
  width: 100%;
  object-fit: cover;
  display: block;
}

.service-icon {
  position: absolute;
  bottom: -27px;
  left: 50%;
  transform: translateX(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--gold-deep);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-icon img {
  width: 28px;
  height: 28px;
  aspect-ratio: auto;
  object-fit: contain;
}

.service-card h3 {
  margin: 1.8rem 0 0.45rem;
  padding: 0 0.5rem;
  font-family: 'Lato', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.61rem;
  font-weight: 600;
  color: var(--ink);
}

.service-card p {
  padding: 0 0.6rem 1rem;
  font-size: 0.66rem;
  line-height: 1.45;
  color: var(--muted);
}

/* The closing CTA sat 2px off the footer. It computes to display:inline, so its
   padding overflowed its line box and ate the container's bottom padding rather than
   pushing it. inline-block puts the button's real height back into the flow. */
.services-tagline + .btn-primary {
  display: inline-block;
}

.services-tagline {
  margin: 2rem 0 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.16rem;
  color: var(--ink);
  font-style: italic;
}

.enquire-wrap {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: 1.25rem;
  align-items: stretch;
  justify-content: center;
}

.enquire-image {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 1rem;
  display: block;
}

.form-box {
  border: 1px solid rgba(217, 204, 184, 0.45);
  background: #fbf7ef;
  padding: 2rem 1.8rem 1.6rem;
  border-radius: 1rem;
  width: 100%;
  max-width: none;
}

.enquire-copy {
  margin-bottom: 1.8rem;
}

.enquire-copy .eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.74rem;
  color: var(--gold-mid);
  margin-bottom: 0.85rem;
}

.enquire-copy h1 {
  margin: 0.4rem 0 1rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  line-height: 1.02;
}

.enquire-copy p {
  margin: 0;
  color: #4b443b;
  font-size: 1rem;
  line-height: 1.8;
  max-width: 46ch;
}

.enquire-fees {
  margin-top: 0.9rem !important;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  color: var(--muted) !important;
  font-size: 0.92rem !important;
}

.service-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2a2620;
  margin: 1.35rem 0 0.65rem;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}

.service-checkboxes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  grid-column: 1 / -1;
}

.service-checkboxes label {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(217, 204, 184, 0.45);
  border-radius: 0.65rem;
  background: #fcfaf6;
  font-size: 0.95rem;
  color: var(--ink);
}

.service-checkboxes input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: var(--gold-deep);
}

.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  border: 1px solid rgba(217, 204, 184, 0.65);
  background: #fff;
  padding: 0.95rem 1rem;
  font: inherit;
  color: var(--ink);
  width: 100%;
  border-radius: 0.6rem;
}

.enquiry-form select {
  appearance: none;
}

/* the "Occasion (Optional)" default should read like the other placeholders, not like typed-in text */
.enquiry-form ::placeholder {
  color: #9a958c;
  opacity: 1;
}

.enquiry-form select:has(option[value=""]:checked) {
  color: #9a958c;
}

.enquiry-form select option {
  color: var(--ink);
}

.enquiry-form textarea {
  min-height: 140px;
  grid-column: 1 / -1;
}

.enquiry-form .service-label,
.enquiry-form .btn-primary,
.enquiry-form .consent-check {
  grid-column: 1 / -1;
}

.enquiry-form .btn-primary {
  margin-top: 1rem;
  width: 100%;
}

.enquiry-form .consent-check {
  padding-top: 0.6rem;
}

@media (max-width: 1180px) {
  .enquire-wrap {
    grid-template-columns: 1fr;
  }

  .enquire-image {
    max-height: 420px;
  }

  .service-checkboxes {
    grid-template-columns: 1fr;
  }
}


.enquiry-status {
  margin-top: 0.9rem;
  padding: 1.15rem 1.3rem;
  border: 1px solid rgba(var(--gold-rgb), 0.4);
  border-left: 3px solid var(--gold);
  background: linear-gradient(180deg, rgba(var(--gold-rgb), 0.09), rgba(var(--gold-rgb), 0.04));
  color: #4a3f2d;
  font-size: 0.9rem;
  line-height: 1.6;
  text-align: center;
  opacity: 1;
  transition: opacity 0.35s ease;
}

/* success gets a serif headline + supporting line */
.enquiry-status .status-title {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.enquiry-status.is-error {
  border-color: rgba(150, 70, 55, 0.35);
  border-left-color: #9a4a3a;
  background: rgba(150, 70, 55, 0.07);
  color: #6d3a2e;
}

.enquiry-status.is-fade-out {
  opacity: 0;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-top: 0.25rem;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--muted);
}

.consent-check input {
  margin-top: 0.18rem;
  width: 16px;
  height: 16px;
  accent-color: var(--gold-deep);
  flex: 0 0 auto;
}

.consent-check a {
  color: var(--gold-deep);
  text-decoration: none;
}

.consent-check a:hover {
  text-decoration: underline;
}

.policies {
  background: #f8f5ee;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.policy-grid article {
  border: 1px solid rgba(217, 204, 184, 0.35);
  background: rgba(252, 250, 246, 0.96);
  padding: 1rem;
  display: grid;
  grid-template-columns: 72px 1fr;
  grid-template-rows: auto 1fr auto;
  column-gap: 0.85rem;
  align-items: start;
}

.policy-icon {
  width: 52px;
  height: 52px;
  object-fit: contain;
  margin: 0;
  grid-column: 1;
  grid-row: 1 / 4;
  align-self: center;
  justify-self: center;
}

.policy-grid h3 {
  grid-column: 2;
  margin-bottom: 0.55rem;
}

.policy-grid article p {
  grid-column: 2;
}

.policy-read-more {
  grid-column: 2;
  display: inline-block;
  margin-top: 0.75rem;
  padding: 0.62rem 1rem;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  width: max-content;
  justify-self: start;
}

.footer {
  background:
    radial-gradient(120% 160% at 10% 0%, rgba(142, 104, 60, 0.16) 0%, rgba(22, 25, 30, 0) 48%),
    radial-gradient(140% 180% at 90% 100%, rgba(142, 104, 60, 0.12) 0%, rgba(22, 25, 30, 0) 54%),
    #151b22;
  color: #e5dbc8;
  padding-top: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.95fr 3.05fr;
  gap: 2.4rem;
  padding-bottom: 1.4rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
}

.footer-brand {
  padding-right: 0.8rem;
}

.footer-crest {
  display: block;
  /* 96px + 25% */
  width: 120px;
  height: auto;
  margin-bottom: 0.9rem;
}

.footer-logo {
  width: 210px;
  height: auto;
  object-fit: contain;
  margin-bottom: 0.6rem;
}

.footer-contact {
  margin-top: 0;
}

.footer-emblem {
  width: 88px;
  height: 88px;
  border: 1px solid rgba(var(--gold-mid-rgb), 0.64);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 0.6rem;
  color: var(--gold);
  position: relative;
}

.footer-emblem-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  line-height: 1;
}

.footer-emblem-text {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.43rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(var(--gold-mid-rgb), 0.9);
}

.footer-emblem-text.top {
  top: 12px;
}

.footer-emblem-text.bottom {
  bottom: 12px;
}

.footer-brand p {
  font-family: 'Cormorant Garamond', serif;
  color: rgba(229, 219, 200, 0.87);
  font-size: 0.88rem;
  line-height: 1.46;
  margin-bottom: 0.54rem;
  max-width: 240px;
}

.footer-contact-title {
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.footer-contact-list {
  list-style: none;
  display: grid;
  gap: 0.25rem;
}

.footer-contact-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.contact-icon {
  width: 17px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--gold);
  stroke-width: 1.45;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer h4 {
  font-size: 1.02rem;
  font-family: 'Cormorant Garamond', serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.85rem;
  white-space: nowrap;
}

.footer p,
.footer a {
  color: rgba(229, 219, 200, 0.9);
  font-size: 0.99rem;
}

.footer ul {
  list-style: none;
}

.footer li {
  margin-bottom: 0.08rem;
  line-height: 1.28;
}

.footer-col a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.98rem;
}

/* phones: footer links were 23px tall — too tight for a thumb. Pad the anchor itself
   (not the li) so the tap area grows without changing the type or the column rhythm. */
@media (max-width: 820px) {
  /* padding rather than min-height, so an item that wraps to two lines keeps the same
     breathing room as a single-line one — min-height alone bunched the wrapped ones up */
  .footer-col a {
    display: block;
    padding: 0.44rem 0;
    line-height: 1.35;
  }

  .footer-contact-list a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
  }

  .footer li {
    margin-bottom: 0;
  }
}

.footer-contact-list a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.99rem;
}

.footer a {
  text-decoration: none;
}

.footer a:hover {
  color: #f2e9d9;
}

.footer-right {
  display: grid;
  grid-template-rows: auto auto;
  gap: 0.9rem;
}

.footer-links-grid {
  display: grid;
  /* Services carries the longest labels (Private Aviation, Chauffeur & VIP
     Transfers / Luxury Shopping & Personal Styling) so it gets extra share;
     Quick Links and Contact are short and can give some up. */
  grid-template-columns: 0.48fr 1.05fr 1.85fr 0.5fr;
  gap: 1.1rem;
}

.footer-news-row {
  margin-top: 0;
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr 122px;
  gap: 0.4rem;
}

.newsletter input {
  height: 36px;
  padding: 0 0.9rem;
  border: 1px solid rgba(var(--gold-mid-rgb), 0.5);
  background: rgba(22, 29, 38, 0.75);
  color: #fff;
  font-size: 0.76rem;
}

.newsletter button {
  border: 0;
  background: var(--gold);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.69rem;
  font-weight: 700;
  height: 36px;
  padding: 0 0.95rem;
  cursor: pointer;
}

.footer-statement {
  border-top: 1px solid rgba(var(--gold-mid-rgb), 0.38);
  padding-top: 1.15rem;
  text-align: center;
}

.footer-statement p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  letter-spacing: 0.09em;
  color: rgba(var(--gold-mid-rgb), 0.95);
}

.footer-bottom {
  margin-top: 0.9rem;
  /* the WhatsApp button is fixed bottom-right and was covering the Cookie Policy link */
  padding: 0.42rem 0 3.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.footer-bottom p {
  font-size: 0.68rem;
  font-family: 'Cormorant Garamond', serif;
  color: rgba(229, 219, 200, 0.86);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.42rem;
}

.footer-legal-links a {
  font-size: 0.82rem;
  font-family: 'Cormorant Garamond', serif;
  color: rgba(229, 219, 200, 0.9);
}

.footer-legal-links a + a::before {
  content: '|';
  margin-right: 0.42rem;
  color: rgba(var(--gold-mid-rgb), 0.75);
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(94%, 1120px);
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.11);
  z-index: 1200;
}

.cookie-banner p {
  font-size: 0.8rem;
}

.cookie-actions {
  display: flex;
  gap: 0.45rem;
}

.outline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  background: rgba(19, 22, 28, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1300;
}

.cookie-modal.is-open {
  display: flex;
}

.cookie-modal-panel {
  position: relative;
  width: min(94vw, 640px);
  background: #fff;
  border: 1px solid rgba(var(--gold-mid-rgb), 0.45);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.22);
  padding: 1.2rem;
}

.cookie-modal-close {
  position: absolute;
  top: 0.45rem;
  right: 0.55rem;
  border: 0;
  background: transparent;
  font-size: 1.4rem;
  color: #6f675d;
  cursor: pointer;
}

.cookie-modal h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  margin-bottom: 0.4rem;
  color: var(--ink);
}

.cookie-modal-intro {
  font-size: 0.86rem;
  margin-bottom: 0.9rem;
}

.cookie-pref-list {
  display: grid;
  gap: 0.6rem;
}

.cookie-pref-item {
  border: 1px solid var(--line);
  background: #fbf8f2;
  padding: 0.65rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.cookie-pref-item strong {
  display: block;
  font-size: 0.84rem;
  color: var(--ink);
}

.cookie-pref-item small {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.72rem;
  color: var(--muted);
}

.cookie-pref-item input[type='checkbox'] {
  width: 40px;
  height: 22px;
  appearance: none;
  border-radius: 999px;
  background: #d4c9b8;
  position: relative;
  cursor: pointer;
  transition: background-color 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.cookie-pref-item input[type='checkbox']::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  top: 2px;
  left: 2px;
  transition: transform 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.cookie-pref-item input[type='checkbox']:checked {
  background: var(--gold-mid);
}

.cookie-pref-item input[type='checkbox']:checked::after {
  transform: translateX(18px);
}

.cookie-pref-item input[type='checkbox']:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}

.cookie-modal-actions {
  margin-top: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: flex-end;
}

@media (max-width: 1180px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .destination-table tr,
  .destination-img img {
    height: 470px;
  }

  .enquire-wrap {
    grid-template-columns: 1fr;
  }

  .enquire-image {
    width: 100%;
    min-height: 320px;
  }

  .enquire-image {
    min-height: 420px;
  }

  .about-home-intro {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-home-copy {
    text-align: center;
  }

  .about-home-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-home-values-grid article:nth-child(odd)::before {
    display: none;
  }

  .about-home-values-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 1024px) {
  .site-nav {
    margin-left: auto;
  }

  .btn-nav {
    display: none;
  }

  /* flex, not block: the base rule centres the icon with align-items/justify-content,
     and display:block made those inert so the bars sat low on the text baseline */
  .menu-toggle {
    display: flex;
  }

  /* the dropdown hangs off the header, so it has to follow the shorter bar up —
     just clear of the 93px bar rather than tucked behind it */
  .nav-links {
    position: absolute;
    /* hang off the burger, not the bar: the button is centred, so the bar's bottom edge is
       ~48px below it on the tall header. 50% = the button's centre in either state,
       + half its 38px height + a 6px gap. */
    top: calc(50% + 25px);
    right: 3%;
    min-width: 230px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 1rem 1.15rem;
    border-radius: 0.5rem;
    box-shadow: 0 18px 40px rgba(10, 14, 20, 0.22);
    display: none;
    flex-direction: column;
    gap: 0.85rem;
  }

  .nav-links.active {
    display: flex;
  }

  /* the open dropdown is a solid white card, so undo everything the transparent-header rules
     do for legibility over a photo: white text, and the halo shadow that blurs it on white.
     a.active needs naming explicitly or the hero-nav rule outranks this and stays white-on-white. */
  body.hero-nav .top-nav:not(.scrolled) .nav-links a,
  body.hero-nav .top-nav:not(.scrolled) .nav-links a:hover,
  body.hero-nav .top-nav:not(.scrolled) .nav-links a.active {
    color: #36322d;
    text-shadow: none;
  }

  body.hero-nav .top-nav:not(.scrolled) .nav-links a.active {
    color: var(--gold-deep);
    border-bottom-color: var(--gold);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .policy-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-left {
    display: block;
  }

  .footer-contact {
    margin-top: 1.15rem;
  }

  .footer-right {
    display: block;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .footer-news-row {
    grid-column: auto;
    margin-top: 0.2rem;
  }

  .newsletter {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }
}

@media (max-width: 820px) {
  .hero {
    /* 90vh to match .destination-hero — at 82vh the next section peeked in
       at the bottom on a phone instead of the banner filling the screen */
    min-height: 90vh;
    /* 1000px copy — phones don't need the full-size file */
    background-image: url('images/hero-home-mobile.jpeg');
  }

  /* phones get an even scrim — there is no pillar to dodge on a narrow crop.
     Floor raised to 0.3 mid-band so bright clips (snow, daylight) don't wash the
     copy out — see the desktop note above on why this needs a consistent floor. */
  .hero-fade {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.34) 0%,
      rgba(0, 0, 0, 0.3) 45%,
      rgba(0, 0, 0, 0.34) 100%
    );
  }

  .hero-copy {
    max-width: 100%;
    /* the desktop nudge off the pillar would push the headline off a phone */
    margin-left: 0;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.9rem);
  }

  .hero-copy p {
    font-size: 1rem;
    color: #f6f1e8;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  }

  .hero-copy .btn-primary {
    background: var(--gold);
    color: #fff;
    border: 2px solid var(--gold);
  }

  .hero-copy .btn-primary:hover {
    background: var(--gold-deep);
    border-color: var(--gold-deep);
  }

  .about-gallery,
  .services-grid,
  .policy-grid,
  .enquiry-form,
  .services-hero-inner {
    grid-template-columns: 1fr;
  }

  .about-home-values-grid {
    grid-template-columns: 1fr;
  }

  .about-home-values-grid article::before {
    display: none;
  }

  .about-home-values-grid article {
    border-bottom: 1px solid var(--line);
  }

  .about-home-values-grid article:last-child {
    border-bottom: 0;
  }

  .policy-grid {
    gap: 0.8rem;
  }

  .enquire-image {
    min-height: 320px;
  }

  .form-box {
    padding: 0.9rem;
  }

  .footer {
    padding-top: 1.2rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-bottom: 0.85rem;
  }

  .footer-left {
    display: block;
  }

  .footer-contact {
    margin-top: 1.15rem;
  }

  .footer-right {
    display: block;
  }

  /* Brand block centred on a phone. */
  .footer-brand {
    text-align: center;
    padding-right: 0;
  }

  .footer-crest,
  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-brand p {
    margin-left: auto;
    margin-right: auto;
  }

  /* Two equal halves. minmax(0, 1fr) is the point: a plain `1fr` will not shrink
     below its content's min-width, so "Honeymoons & Romance" was forcing the
     Destinations column wider than half and squeezing "QUICK LINKS" into two lines.
     With a 0 minimum each column is exactly 50% and long labels wrap instead. */
  /* the email is a single unbreakable token — in a half-width column it overflowed
     and put the whole page into horizontal scroll. Let these rows wrap. */
  .footer-contact-list li {
    min-width: 0;
  }

  /* grid rather than flex, so a wrapped second line lines up under the text
     instead of sliding back under the icon */
  .footer-contact-list a {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.42rem;
    align-items: start;
    overflow-wrap: anywhere;
    min-height: 0;
    padding: 0.3rem 0;
  }

  .footer-contact-list .contact-icon {
    margin-top: 0.2rem;
  }

  .footer-links-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 1.6rem;
    row-gap: 1.8rem;
    align-items: start;
  }

  /* Contact sits beside Services, not on its own row. The email is one long
     unbreakable token, so at half width it wraps mid-word — the overflow-wrap
     above is what stops it overflowing the column. */
  .footer-links-grid .footer-contact {
    grid-column: 2;
  }

  .footer-news-row {
    grid-column: auto;
    margin-top: 0.2rem;
  }

  .footer-brand p {
    font-size: 1rem;
    max-width: none;
  }

  .footer h4 {
    font-size: 0.95rem;
    margin-bottom: 0.35rem;
  }

  .footer-col a,
  .footer-contact-list a {
    font-size: 1.08rem;
  }

  /* clear the fixed WhatsApp pill (bottom: 12px + ~34px tall) so it stops sitting
     on top of the "Cookie Policy" legal link at the end of the page */
  .footer-bottom {
    padding: 0.55rem 0 3.6rem;
    gap: 0.45rem;
  }

  .footer-bottom p,
  .footer-legal-links a {
    font-size: 0.88rem;
  }

  .destination-grid {
    grid-template-columns: 1fr;
  }

  .destination-card img {
    height: 360px;
  }

  .destination-card#wellness-retreats img {
    /* the phone crop is portrait — give it room so cover doesn't shave the pool off */
    height: 500px;
    object-position: center;
  }

  .destination-card-copy {
    padding: 1rem;
  }

  .destination-card-copy h3 {
    font-size: 1.4rem;
  }

  .destination-card-copy p {
    font-size: 0.96rem;
  }

  .destination-link {
    justify-self: start;
  }

  body.destinations-page .destinations-values .destinations-values-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .destination-hero {
    min-height: 90vh;
    /* clear the transparent header so hero copy never rides under the logo */
    padding-top: 120px;
    padding-bottom: 2rem;
    align-items: center;
  }

  /* lighter file for the full-bleed CTA banner on phones */
  body.destinations-page .secondary-cta.journey-hero {
    background-image: url('images/Destinations/journey-amalfi-mobile.jpeg');
  }

  /* portrait crop frames the whole scene on a tall phone screen; resized for mobile data */
  .destination-hero::before {
    background-image: url('images/Destinations/hero-rio-mobile.jpeg');
    background-position: center 18%;
  }

  .destination-hero-copy h1 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  /* the 150px/180px margins are desktop values sized for a 225px logo. On a phone they
     stack on top of the hero's own padding and leave a huge void under the mark.
     MOBILE ONLY — the desktop rules at :636 and :1138 are untouched. */
  .destination-hero-copy {
    margin-top: 0;
  }

  .services-hero-copy {
    margin-top: 64px;
  }

  .destination-intro h2 {
    font-size: 1.9rem;
  }

  .destination-intro p {
    font-size: 0.98rem;
  }

  .cookie-banner {
    width: min(96%, 520px);
    bottom: 8px;
    padding: 0.65rem;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner p {
    font-size: 0.74rem;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn-small {
    flex: 1;
  }

  .cookie-modal-panel {
    padding: 1rem 0.85rem;
  }

  .cookie-modal-actions {
    justify-content: stretch;
  }

  .cookie-modal-actions .btn-small {
    flex: 1;
  }
}

@media (max-width: 540px) {
  body.destinations-page .destinations-values .destinations-values-grid {
    grid-template-columns: 1fr;
  }

  .destination-table,
  .destination-table tbody,
  .destination-table tr,
  .destination-table td {
    display: block;
    width: 100%;
  }

  .destination-table tr {
    height: auto;
    padding-bottom: 1.2rem;
  }

  .destination-img img {
    height: 220px;
  }

  .destinations-head,
  .destination-info {
    padding: 1rem 0.2rem 0;
    text-align: center;
  }

  /* the copy is max-width capped, so centre the block itself too */
  .destination-info p {
    margin-left: auto;
    margin-right: auto;
  }

  /* stacked rows: let the cell span full width so the icon can centre */
  .destination-table .destination-icon-cell {
    max-width: none;
    min-width: 0;
    width: 100%;
    text-align: center;
    padding-top: 0.9rem;
  }

  .brand {
    min-width: 0;
  }

  /* 30% down from the desktop width */
  .brand-logo {
    width: 210px;
    height: auto;
  }

  /* solid bar on a phone: the desktop 270px reads oversized next to the burger — and it
     was actually growing on scroll, since that rule outranks the mobile width above. 25% off. */
  .top-nav.scrolled .brand-logo,
  body:not(.hero-nav) .brand-logo {
    width: 202px;
  }

  /* bar comes down with it, or the smaller mark just floats in dead space */
  .nav-wrap {
    min-height: 132px;
  }

  /* no top margin: the header is transparent and must sit ON the photo, not above it —
     a margin here leaves a bare strip with the logo hanging over it. Pad the copy clear instead. */
  .hero {
    padding-top: 120px;
    padding-bottom: 2rem;
  }

  /* 0.6rem = 10px with wide tracking — too small to read on a phone for the main CTA.
     0.72rem keeps the button on one line at 360px while staying legible. */
  .btn-primary,
  .btn-nav,
  .btn-small,
  .btn-outline {
    padding: 0.85rem 1.05rem;
    font-size: 0.72rem;
  }

  .secondary-cta {
    padding: 0.85rem 0.9rem;
  }

  .newsletter {
    grid-template-columns: 1fr;
  }

  .newsletter button {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
  }

  .footer-legal-links {
    gap: 0.25rem;
  }
}

.btn-primary {
  background: var(--gold);
  color: #fff;
  border: 2px solid var(--gold);
  box-shadow: none;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

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

.about-page {
  margin-top: 0;
}

.about-hero,
.about-cta {
  position: relative;
  min-height: 52vh;
  display: grid;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.about-hero {
  min-height: 74vh;
  /* same reservation as the home hero — its copy is centred too, so without this it
     sits within a few px of the logo on a short screen */
  padding-top: var(--nav-h);
  background-position: center;
  /* holds the dark tone while the photo is still downloading, so the white logo never sits on white */
  background-color: #111b29;
}

/* photo lives on its own filterable layer so brightening it never washes out the white text on top */
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('images/about-new/experience-pool-wide.jpg');
  background-size: cover;
  background-position: center;
  filter: brightness(1.07) saturate(1.03);
}

.about-cta {
  min-height: 34vh;
  background-color: #111b29;
  background-image: url('images/about-new/cta-dining.jpeg');
}

/* dark left-weighted scrim so the white heading/text stays readable on the photo */
.about-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(10, 14, 20, 0.78) 0%, rgba(10, 14, 20, 0.55) 38%, rgba(10, 14, 20, 0.28) 68%, rgba(10, 14, 20, 0.12) 100%);
}

.about-hero-overlay,
.about-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(90deg, rgba(17, 27, 41, 0.4) 0%, rgba(17, 27, 41, 0.2) 45%, rgba(17, 27, 41, 0.04) 100%);
}

.about-hero-inner,
.about-cta-inner {
  position: relative;
  z-index: 1;
}

.about-hero-copy,
.about-cta-inner div {
  max-width: 520px;
  color: #fff;
}

.about-cta-inner div {
  color: #fff;
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

.about-cta .accent-line {
  margin: 1.2rem 0;
}

.about-hero-copy h1,
.about-cta h2 {
  color: #fff;
  font-size: clamp(1.75rem, 4.15vw, 3.15rem);
  margin-bottom: 1.15rem;
}

.about-hero-copy h1 {
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.about-cta h2 {
  color: #fff;
}

.about-hero-copy p,
.about-cta p {
  color: rgba(255, 255, 255, 0.9);
}

/* sits on dark photography, so the deep gold goes muddy — lighter gold, heavier, with a scrim */
.about-hero-copy .eyebrow {
  color: var(--gold-light);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.26em;
  margin-bottom: 0.9rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

.about-cta p {
  color: rgba(255, 255, 255, 0.9);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.about-story-copy .eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  margin-bottom: 0.8rem;
}

.about-story {
  background: #f7f3ec;
}

.about-story-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.about-story-copy {
  max-width: 620px;
}

.about-story-copy h2,
.about-values h2,
.about-experience-copy h2 {
  margin-bottom: 0.75rem;
}

.about-experience-copy h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 1.4rem;
}

.about-experience-copy h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -0.5rem;
  width: 52px;
  height: 1.5px;
  background: rgba(var(--gold-mid-rgb), 0.75);
}

.about-story-copy p {
  margin-bottom: 0.82rem;
  font-size: 0.95rem;
}

.about-story-mark {
  justify-self: center;
}

.about-story-mark img {
  width: min(420px, 70vw);
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
}

.about-values .panel-inner {
  text-align: center;
}

/* section label reads as an eyebrow, not a display heading */
.about-values h2 {
  position: relative;
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.about-values h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -0.45rem;
  transform: translateX(-50%);
  width: 52px;
  height: 1.5px;
  background: rgba(var(--gold-mid-rgb), 0.75);
}

.about-values-grid {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.about-values-grid article {
  padding: 1.15rem 0.9rem;
  position: relative;
}

/* dividers stop short of the top/bottom rules instead of meeting them */
.about-values-grid article + article::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1.15rem;
  bottom: 1.15rem;
  border-left: 1px solid var(--line);
}

.about-values-grid img {
  width: 46px;
  height: 46px;
  margin: 0 auto 0.6rem;
  object-fit: contain;
}

.about-values-grid h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  margin-bottom: 0.38rem;
}

.whatsapp-float {
  position: fixed;
  right: 14px;
  bottom: 16px;
  z-index: 1180;
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  padding: 0.5rem 0.62rem;
  border-radius: 999px;
  background: #1fa463;
  color: #fff;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
}

.whatsapp-float:hover {
  background: #168a52;
}

.whatsapp-float-icon {
  font-size: 0.92rem;
  line-height: 1;
}

@media (max-width: 820px) {
  .whatsapp-float {
    right: 10px;
    bottom: 12px;
    padding: 0.36rem 0.48rem;
    font-size: 0.58rem;
    gap: 0.26rem;
  }

  .whatsapp-float-icon {
    font-size: 0.78rem;
  }

  /* phones: portrait crop of the same scene, resized + recompressed so it lands fast on mobile data */
  .about-hero::before {
    background-image: url('images/about-new/experience-pool-mobile.jpeg');
    background-position: center 60%;
  }

  /* the phone crop is much brighter than the wide one — the left-weighted desktop scrim
     leaves the gold eyebrow and white heading unreadable, so weight it top-down here */
  .about-hero .about-hero-overlay {
    background: linear-gradient(180deg, rgba(17, 27, 41, 0.5) 0%, rgba(17, 27, 41, 0.34) 45%, rgba(17, 27, 41, 0.1) 100%);
  }

  /* the olive-branch art costs a whole screen of scroll on mobile */
  .about-story-mark {
    display: none;
  }
}

.about-values-grid p {
  font-size: 0.8rem;
  max-width: 28ch;
  margin: 0 auto;
}

.about-experience-wrap {
  padding: 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: stretch;
}

.about-experience-image {
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.about-experience-copy {
  padding: clamp(2rem, 5vw, 4rem);
  background: #f9f5ee;
}

.about-experience-copy p {
  margin-bottom: 0.8rem;
}

.about-testimonial .panel-inner {
  text-align: center;
  max-width: 880px;
}

.quote-mark {
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  font-size: 4.6rem;
  line-height: 0.62;
  margin-bottom: 0.45rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.2em;
  margin-bottom: 0.65rem;
}

.about-testimonial blockquote {
  border: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #2f2922;
  line-height: 1.25;
  margin: 0 auto 0.55rem;
  max-width: 46ch;
}

.quote-author {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  color: #8d816f;
}

.about-cta h2 {
  margin-bottom: 0.95rem;
}

.about-cta .btn-primary {
  display: inline-block;
  margin-top: 0.85rem;
  color: #fff;
  background-color: var(--gold);
  border-color: var(--gold);
}

.about-cta .btn-primary:hover {
  color: #fff;
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

@media (max-width: 1024px) {
  .about-story-inner,
  .about-experience-wrap {
    grid-template-columns: 1fr;
  }

  .about-story-mark {
    order: -1;
  }

  .about-experience-image {
    min-height: 340px;
  }

  .about-values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* 2 columns: no divider on the item that starts a row */
  .about-values-grid article:nth-child(odd)::before {
    display: none;
  }

  .about-values-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  /* hero keeps the full-height treatment used on services/destinations */
  .about-hero {
    min-height: 74vh;
    /* no top margin on the page: the header is transparent and must sit ON the photo,
       the way it does on destinations/services. Pad the copy clear of the logo instead. */
    padding-top: 120px;
    padding-bottom: 2rem;
  }

  /* text-only CTA has no image, so it stays compact */
  .about-cta {
    min-height: 44vh;
  }

  .about-values-grid {
    grid-template-columns: 1fr;
  }

  .about-values-grid article::before {
    display: none;
  }

  .about-values-grid article {
    border-bottom: 1px solid var(--line);
  }

  .about-values-grid article:last-child {
    border-bottom: 0;
  }

  .about-experience-copy {
    padding: 1.2rem;
  }
}

/* Enquire page only: closing "Your Next Journey Begins Here" box */
.enquire-next {
  margin-top: 2.6rem;
  border: 1px solid rgba(217, 204, 184, 0.7);
  background: var(--paper);
  text-align: center;
  padding: 2.3rem 1.5rem 2.5rem;
}

.enquire-next h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
  color: var(--ink);
  margin-bottom: 0.6rem;
}

/* no rule under this heading (inherited from .about h2::after) */
.enquire-next h2::after {
  content: none;
}

.enquire-next p {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 auto 1.35rem;
  max-width: 62ch;
}

/* ---------------------------------------------------------------------------
   Hero copy legibility

   Every hero already has a scrim, but they are directional (90deg on services
   and about, 180deg on destinations) and the photos underneath have bright
   patches exactly where the copy lands — the white car on services, the pool on
   about, the sunlit bay on destinations. On mobile the copy spans the full
   column width, so a horizontal gradient gives the right-hand words almost no
   cover at all. A shadow travels with the text instead of with the gradient, so
   one rule holds the contrast on all four heroes at every width.
   -------------------------------------------------------------------------- */
.hero-copy h1,
.hero-copy p,
.destination-hero-copy h1,
.destination-hero-copy p,
.destination-hero-copy .eyebrow,
.about-hero-copy h1,
.about-hero-copy p,
.about-hero-copy .eyebrow,
.services-hero-copy h1,
.services-hero-copy p,
.services-hero-copy .eyebrow {
  text-shadow: 0 1px 12px rgba(12, 18, 28, 0.55), 0 1px 3px rgba(12, 18, 28, 0.4);
}

@media (max-width: 820px) {
  /* stacked layout puts the copy across the full width, so the scrims need to
     run top-to-bottom rather than left-to-right */
  .services-hero::before {
    background: linear-gradient(
      180deg,
      rgba(15, 20, 28, 0.42) 0%,
      rgba(15, 20, 28, 0.3) 45%,
      rgba(15, 20, 28, 0.12) 100%
    );
  }

  .about-hero .about-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(17, 27, 41, 0.5) 0%,
      rgba(17, 27, 41, 0.38) 45%,
      rgba(17, 27, 41, 0.42) 100%
    );
  }
}
