:root {
  --green: #014438;
  --green-deep: #01332a;
  --teal: #009491;
  --gold: #cca054;
  --paper: #f7f4ec;
  --sand: #e8d8b8;
  --mist: #ece8dc;
  --ink: #014438;
  --white: #fff;
  --font-primary: "Exo", Arial, sans-serif;
  --font-secondary: "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-primary);
  font-weight: 500;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(18,63,53,.035) 1px, transparent 1px) 0 0 / 72px 72px,
    var(--paper);
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
button { font: inherit; font-family: var(--font-primary); }
input, textarea, select { font-family: var(--font-secondary); }
button { cursor: pointer; }

p, li, figcaption, blockquote {
  font-family: var(--font-secondary);
}

h1, h2, h3, h4, h5, h6,
.desktop-nav, .mobile-menu, .eyebrow,
.primary-button, .light-button, .text-link,
.hero-service-line {
  font-family: var(--font-primary);
}

.site-header {
  position: sticky;
  z-index: 50;
  inset: 0 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto auto auto;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 4px clamp(16px, 3vw, 34px);
  color: var(--green);
  background: rgba(247,244,236,.9);
  border-bottom: 1px solid rgba(18,63,53,.1);
  box-shadow: 0 8px 22px rgba(8,42,35,.04);
  backdrop-filter: blur(10px);
  transition: box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(247,244,236,.92);
  color: var(--green);
  box-shadow: 0 8px 22px rgba(8,42,35,.04);
  backdrop-filter: blur(10px);
}
.brand {
  grid-row: 1;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  padding: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.brand img { display: block; width: 110px; height: auto; max-height: 56px; object-fit: contain; }
.desktop-nav { justify-self: end; display: flex; align-items: center; gap: clamp(14px, 1.65vw, 24px); }
.desktop-nav a {
  color: inherit;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 600;
  opacity: .88;
  transition: opacity .2s ease, color .2s ease;
}

.why-uae-hero {
  min-height: clamp(520px, 74svh, 720px);
  padding-top: clamp(26px, 4vw, 52px);
  padding-bottom: clamp(26px, 4vw, 52px);
}
.why-uae-hero-media {
  background-image: url("assets/why-dubai-then-now-alt.jpg");
  background-position: center;
}
.oryx-concept-section {
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: stretch;
  gap: 1px;
  padding: 12px 18px 18px;
  background: #fffdf7;
}
.oryx-concept-mark {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: clamp(34px, 5vw, 76px);
  border-radius: 30px 0 0 30px;
  background: var(--paper);
}
.oryx-concept-mark img {
  width: min(100%, 390px);
  height: auto;
}
.oryx-concept-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 76px);
  border-radius: 0 30px 30px 0;
  background: var(--green-deep);
  color: var(--white);
}
.oryx-concept-copy .eyebrow { color: var(--gold); }
.oryx-concept-copy h2 {
  margin: 8px 0 14px;
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: .98;
}
.oryx-concept-copy p:not(.eyebrow) {
  max-width: 840px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.38;
}
.oryx-concept-copy p + p { margin-top: 14px; }
.uae-facts-heading {
  padding: 22px 18px 8px;
  background: #fffdf7;
}
.uae-facts-heading h2 {
  margin-top: 5px;
  color: var(--green);
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: .98;
}
.uae-proof-section {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: clamp(22px, 3vw, 38px) clamp(24px, 5vw, 70px);
  background: rgba(18,63,53,.16);
}
.sun-card,
.proof-card {
  min-height: 255px;
  padding: clamp(20px, 2.3vw, 30px);
  background: var(--paper);
  color: var(--green);
  display: grid;
  align-content: space-between;
}
.sun-card {
  background: var(--green-deep);
  color: var(--white);
}
.sun-card span {
  display: block;
  color: var(--gold);
  font-size: clamp(78px, 9vw, 142px);
  line-height: .82;
  font-weight: 300;
}
.sun-card h2 {
  margin-top: 12px;
  font-size: clamp(34px, 4.1vw, 62px);
  line-height: .92;
  text-transform: uppercase;
}
.sun-card p,
.proof-card p {
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.32;
}
.sun-card p {
  color: rgba(255,255,255,.82);
}
.proof-card span {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .12em;
}
.proof-card h3 {
  margin-top: 18px;
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: .96;
  text-transform: uppercase;
}
.proof-card p {
  color: rgba(18,63,53,.74);
}
.then-now-section {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  align-items: center;
  gap: clamp(22px, 3.6vw, 48px);
  padding: clamp(30px, 4vw, 56px) clamp(24px, 5vw, 70px);
  background: var(--cream);
}
.then-now-copy h2 {
  font-size: clamp(42px, 5.8vw, 86px);
  line-height: .92;
}
.then-now-copy p {
  margin-top: 14px;
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.32;
  color: rgba(18,63,53,.78);
}
.then-now-image {
  margin: 0;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(8,42,35,.18);
}
.then-now-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.why-uae-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 42px);
  align-items: center;
  padding: clamp(30px, 4vw, 54px) clamp(24px, 5vw, 70px);
  background: var(--green-deep);
  color: var(--white);
}
.why-uae-cta-copy h2 {
  max-width: 980px;
  font-size: clamp(36px, 4.9vw, 76px);
  line-height: .94;
}
.why-uae-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}
.why-uae-cta-actions .primary-button {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
}
.desktop-nav a:hover, .desktop-nav a.active { color: #8f6618; opacity: 1; }
.home-page .site-header {
  position: fixed;
  inset: 0 0 auto;
  color: var(--white);
  background: transparent;
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
  min-height: 58px;
  padding: 8px clamp(16px, 3vw, 34px);
}
.home-page .site-header.scrolled,
.home-page.menu-open .site-header {
  color: var(--white);
  background: linear-gradient(180deg, rgba(7,37,31,.7), rgba(7,37,31,.06));
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.home-page .brand img {
  width: clamp(88px, 8vw, 112px);
  max-height: none;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,.35));
}
.home-page .desktop-nav a,
.home-page .nav-cta,
.home-page .header-socials a,
.home-page .menu-toggle {
  text-shadow: 0 2px 14px rgba(0,0,0,.42);
}
.home-page .nav-cta {
  background: rgba(7,37,31,.12);
  border-color: rgba(255,255,255,.8);
  box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
.home-page .desktop-nav a:hover,
.home-page .desktop-nav a.active {
  color: var(--gold);
}
.home-page .hero-weather {
  top: clamp(118px, 9vw, 148px);
  padding: 10px 16px 10px 10px;
  min-height: 52px;
  background: rgba(247,244,236,.18);
  color: var(--white);
  border-color: rgba(255,255,255,.48);
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
  text-shadow: 0 2px 14px rgba(0,0,0,.34);
}
.home-page .hero-weather .weather-icon {
  width: 36px;
  height: 36px;
  font-size: 20px;
}
.home-page .hero-weather .weather-place,
.home-page .hero-weather .weather-time,
.home-page .hero-weather .weather-temp {
  font-size: 13px;
}
.home-page .hero-weather .weather-place,
.home-page .hero-weather .weather-time {
  color: var(--white);
}
.home-page .hero-weather .weather-temp {
  border-left-color: rgba(255,255,255,.42);
}
.home-page .hero .eyebrow,
.home-page .hero-service-line {
  display: none;
}
.nav-cta, .menu-toggle, .mobile-menu button {
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}
.nav-cta {
  grid-column: 4;
  grid-row: 1;
  justify-self: end;
  width: max-content;
  min-width: 0;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}
.header-socials {
  grid-column: 5;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 5px;
}
.header-socials a {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
  text-decoration: none;
  overflow: visible;
  transition: opacity .2s ease, transform .2s ease;
}
.header-socials img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 0;
  object-fit: contain;
}
.header-socials a:hover {
  opacity: .76;
  transform: translateY(-1px);
}
.weather-widget {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  border: 1px solid rgba(255,255,255,.62);
  border-radius: 999px;
  padding: 7px 12px 7px 8px;
  background: rgba(247,244,236,.82);
  color: var(--green);
  cursor: default;
  outline: none;
  box-shadow: 0 18px 44px rgba(8,42,35,.18);
  backdrop-filter: blur(16px);
}
.hero-weather {
  position: absolute;
  z-index: 4;
  top: clamp(18px, 2.4vw, 34px);
  right: clamp(18px, 3.5vw, 54px);
}
.weather-icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 17px;
  line-height: 1;
}
.weather-place,
.weather-time,
.weather-temp {
  white-space: nowrap;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
}
.weather-place {
  color: #8f6618;
}
.weather-time {
  color: rgba(18,63,53,.82);
}
.weather-temp {
  padding-left: 7px;
  border-left: 1px solid rgba(18,63,53,.18);
}
.weather-panel {
  position: absolute;
  z-index: 80;
  top: calc(100% + 10px);
  right: 0;
  width: 210px;
  padding: 12px;
  border: 1px solid rgba(18,63,53,.16);
  border-radius: 16px;
  background: rgba(247,244,236,.98);
  color: var(--green);
  box-shadow: 0 18px 42px rgba(8,42,35,.14);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity .18s ease, transform .18s ease;
}
.weather-widget:hover .weather-panel,
.weather-widget:focus .weather-panel,
.weather-widget:focus-within .weather-panel {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}
.weather-panel strong {
  display: block;
  margin-bottom: 10px;
  color: #8f6618;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.weather-days {
  display: grid;
  gap: 6px;
}
.weather-day {
  display: grid;
  grid-template-columns: 34px 30px auto;
  gap: 6px;
  align-items: center;
  padding-top: 6px;
  border-top: 1px solid rgba(18,63,53,.12);
  font-size: 13px;
  line-height: 1.1;
}
.weather-day:first-child {
  border-top: 0;
  padding-top: 0;
}
.weather-day b {
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.weather-day .weather-day-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  font-family: "Segoe UI Emoji", "Apple Color Emoji", sans-serif;
  font-size: 22px;
  line-height: 1;
  filter: drop-shadow(0 2px 2px rgba(8,42,35,.14));
}
.weather-day em {
  justify-self: end;
  color: rgba(18,63,53,.78);
  font-size: 12px;
  font-style: normal;
  font-variant-numeric: tabular-nums;
}
.menu-toggle {
  grid-column: 3;
  grid-row: 1;
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  place-items: center;
}
.menu-toggle span { display: block; width: 18px; height: 1px; background: currentColor; transition: transform .25s ease; }
.menu-toggle span + span { margin-top: 6px; }
.menu-open .menu-toggle span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-open .menu-toggle span:last-child { transform: translateY(-3px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  z-index: 40;
  inset: 0;
  padding: 120px 28px 40px;
  background: var(--green-deep);
  color: var(--white);
  display: grid;
  align-content: center;
  gap: 18px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-16px);
  transition: .3s ease;
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: none;
}
.mobile-menu a, .mobile-menu button {
  color: inherit;
  text-decoration: none;
  text-align: left;
  font-size: clamp(24px, 7.2vw, 34px);
  line-height: 1.08;
  letter-spacing: .02em;
  white-space: nowrap;
  text-transform: uppercase;
  font-weight: 500;
}
.mobile-menu button { border: 0; padding: 0; }

@media (min-width: 981px) {
  body.menu-open { overflow: auto; }
  .site-header {
    grid-template-columns: auto 1fr auto auto auto;
  }
  .desktop-nav {
    display: none;
  }
  .menu-toggle {
    display: grid;
    justify-self: end;
    border: 1px solid rgba(18,63,53,.28);
    background: rgba(247,244,236,.72);
    color: var(--green);
  }
  .home-page .menu-toggle {
    color: var(--white);
    border-color: rgba(255,255,255,.72);
    background: rgba(7,37,31,.18);
    backdrop-filter: blur(8px);
  }
  .mobile-menu {
    inset: 72px clamp(18px, 3.5vw, 42px) auto auto;
    width: min(300px, calc(100vw - 36px));
    padding: 18px;
    align-content: start;
    gap: 4px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 18px;
    box-shadow: 0 20px 55px rgba(4,28,23,.24);
    transform: translateY(-8px) scale(.98);
    transform-origin: top right;
  }
  .home-page .mobile-menu {
    top: clamp(78px, 7vw, 102px);
  }
  .mobile-menu a,
  .mobile-menu button {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    font-size: 14px;
    line-height: 1.2;
    letter-spacing: .08em;
    transition: color .18s ease, background .18s ease;
  }
  .mobile-menu a:hover,
  .mobile-menu a:focus-visible,
  .mobile-menu button:hover,
  .mobile-menu button:focus-visible {
    color: var(--gold);
    background: rgba(255,255,255,.08);
    outline: none;
  }
}

.page-hero {
  position: relative;
  min-height: calc(100svh - 62px);
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 4vw, 72px);
  align-items: center;
  padding: clamp(44px, 6vw, 86px) clamp(24px, 5vw, 72px);
}
.page-hero-copy h1 {
  max-width: 720px;
  margin: 18px 0 22px;
  font-size: clamp(48px, 6vw, 94px);
  line-height: .9;
  font-weight: 300;
  color: var(--green);
  text-transform: uppercase;
}
.page-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  font-size: clamp(20px, 1.7vw, 27px);
  line-height: 1.34;
  color: var(--green);
}
.dark-link { color: var(--green); }
.page-hero-media {
  min-height: min(68vh, 640px);
  background: url("assets/dubai-creek-clubhouse.jpg") center / cover no-repeat;
  border-radius: 0;
  box-shadow: 0 28px 70px rgba(18,63,53,.12);
}
.experiences-hero-media {
  background-image: url("assets/marina.png");
}
.experiences-hero .page-hero-copy h1 {
  font-size: clamp(36px, 3.8vw, 56px);
  max-width: 650px;
  margin-bottom: 14px;
}
.experiences-hero .page-hero-copy p:not(.eyebrow) {
  max-width: 640px;
  font-size: clamp(16px, 1.12vw, 18px);
  line-height: 1.24;
}
.experiences-hero {
  min-height: auto;
  align-items: center;
  padding-top: clamp(22px, 2.8vw, 36px);
  padding-bottom: clamp(22px, 2.8vw, 36px);
}
.experiences-hero .page-hero-media {
  min-height: min(40vh, 360px);
  margin-top: clamp(34px, 4.2vw, 62px);
}
.experiences-hero .hero-weather {
  top: clamp(58px, 5.2vw, 82px);
}
.golf-page-hero .page-hero-copy h1,
.golf-overview .section-head h2 {
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: .94;
}
.golf-page-hero {
  min-height: auto;
  align-items: center;
  padding-top: clamp(28px, 3.6vw, 48px);
  padding-bottom: clamp(14px, 1.8vw, 26px);
}
.golf-page-hero .page-hero-copy p:not(.eyebrow) {
  max-width: 620px;
  font-size: clamp(17px, 1.28vw, 21px);
  line-height: 1.28;
}
.golf-page-hero .page-hero-media {
  min-height: min(38vh, 360px);
}
.concierge-hero {
  grid-template-columns: 1fr;
  min-height: calc(100svh - 62px);
  align-items: start;
  padding-top: clamp(24px, 3vw, 42px);
  padding-bottom: clamp(28px, 3.6vw, 50px);
}
.concierge-hero .page-hero-copy h1 {
  font-size: clamp(34px, 3.9vw, 60px);
  max-width: 980px;
  margin-bottom: 12px;
}
.concierge-hero .page-hero-copy p:not(.eyebrow) {
  max-width: 920px;
  font-size: clamp(16px, 1.15vw, 20px);
  line-height: 1.28;
}
.concierge-hero .hero-actions {
  margin-top: 16px;
}
.golf-overview {
  padding: clamp(20px, 2.4vw, 34px) clamp(24px, 5vw, 72px) clamp(26px, 3vw, 42px);
  background: rgba(247,244,236,.72);
}
.golf-overview .section-head {
  margin-bottom: 12px;
}
.planning-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.planning-grid article {
  min-height: 0;
  min-height: clamp(138px, 11vw, 168px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(20px, 2vw, 28px) clamp(22px, 2.3vw, 34px);
  border: 1px solid rgba(18,63,53,.18);
  border-radius: 34px;
  background: rgba(255,253,247,.74);
}
.planning-grid span, .tournament-list span {
  display: inline-block;
  margin-bottom: 20px;
  color: #9a6d19;
  font-size: 20px;
  font-weight: 700;
}
.tournament-list span {
  margin-bottom: 12px;
  font-size: 18px;
}
.planning-grid h3 {
  margin-bottom: 8px;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1;
  font-weight: 600;
  color: var(--green);
  text-transform: uppercase;
}
.planning-grid p, .tournament-list p {
  font-size: 15px;
  line-height: 1.28;
  color: rgba(18,63,53,.86);
}
.golf-beyond-section {
  padding: clamp(34px, 4.2vw, 60px) clamp(24px, 5vw, 72px) clamp(18px, 2.2vw, 30px);
  background: #fffdf7;
  border-top: 1px solid rgba(18,63,53,.1);
}
.golf-beyond-section .section-head {
  max-width: 820px;
  margin-bottom: 20px;
}
.golf-beyond-section .section-head h2 {
  font-size: clamp(34px, 3.2vw, 50px);
  line-height: .96;
}
.beyond-golf-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.beyond-golf-grid article {
  position: relative;
  min-height: clamp(180px, 17vw, 260px);
  overflow: hidden;
  border-radius: 18px;
  color: var(--white);
  background: var(--green-deep);
}
.beyond-golf-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.beyond-golf-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,42,35,.04), rgba(8,42,35,.74));
}
.beyond-golf-grid div {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
}
.beyond-golf-grid h3 {
  margin: 0;
  font-size: clamp(22px, 2vw, 34px);
  line-height: .98;
  font-weight: 400;
  text-transform: uppercase;
}
.course-showcase {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  grid-template-rows: repeat(2, minmax(260px, 1fr));
  gap: 1px;
  background: var(--green-deep);
}
.course-card {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  color: var(--white);
}
.course-card.large { grid-row: span 2; min-height: 650px; }
.course-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.course-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,42,35,.08), rgba(8,42,35,.76));
}
.course-card div {
  position: absolute;
  z-index: 1;
  left: clamp(24px, 4vw, 56px);
  right: clamp(24px, 4vw, 56px);
  bottom: clamp(24px, 4vw, 52px);
}
.course-card h2, .course-card h3 {
  max-width: 760px;
  margin: 0;
  font-weight: 300;
  text-transform: uppercase;
}
.course-card h2 { font-size: clamp(46px, 5vw, 82px); line-height: .9; }
.course-card h3 { font-size: clamp(28px, 3vw, 44px); line-height: .96; }
.course-selector-section {
  min-height: auto;
  padding: clamp(28px, 3.4vw, 46px) clamp(24px, 5vw, 72px) clamp(34px, 4vw, 56px);
  background: #fffdf7;
  border-top: 1px solid rgba(18,63,53,.1);
  border-bottom: 1px solid rgba(18,63,53,.1);
}
.course-selector-section .section-head {
  max-width: 760px;
  margin-bottom: 16px;
}
.course-selector-section .section-head h2 {
  font-size: clamp(34px, 3.5vw, 54px);
  line-height: .94;
}
.course-selector-tool {
  display: grid;
  gap: 16px;
}
.course-control {
  width: min(680px, 100%);
  display: grid;
  gap: 10px;
}
.course-picker-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}
.course-picker-heading span {
  color: #8f6618;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.course-picker-heading small {
  color: rgba(18,63,53,.68);
  font-size: 15px;
  line-height: 1.2;
}
.course-region-tabs {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  gap: 5px;
  padding: 5px;
  border: 1px solid rgba(18,63,53,.18);
  border-radius: 999px;
  background: rgba(247,244,236,.84);
}
.course-region-tabs button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--green);
  padding: 9px 16px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}
.course-region-tabs button.active,
.course-region-tabs button:hover {
  background: var(--green-deep);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(8,42,35,.14);
}
.course-select-label {
  color: #8f6618;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-top: 3px;
}
.course-control select {
  width: 100%;
  border: 1px solid rgba(18,63,53,.28);
  border-radius: 20px;
  background: var(--paper);
  color: var(--green);
  padding: 15px 18px;
  font: inherit;
  font-size: clamp(17px, 1.25vw, 21px);
  text-transform: uppercase;
  outline: none;
  box-shadow: 0 12px 32px rgba(8,42,35,.06);
  cursor: pointer;
}
.course-control optgroup {
  font-weight: 800;
}
.course-control option {
  font-weight: 400;
}
.course-control option.club-option {
  font-weight: 800;
}
.course-control option:disabled {
  color: var(--green);
  font-weight: 800;
}
.selected-course {
  display: grid;
  grid-template-columns: 1fr;
  min-height: min(68svh, 620px);
  position: relative;
  border: 1px solid rgba(18,63,53,.14);
  background: var(--green-deep);
  box-shadow: 0 18px 48px rgba(8,42,35,.08);
  overflow: hidden;
}
.selected-course-media {
  position: relative;
  grid-area: 1 / 1;
  min-height: min(68svh, 620px);
  background: var(--green-deep);
}
.selected-course-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.selected-course::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,37,31,.04), rgba(7,37,31,.08) 48%, rgba(7,37,31,.32));
  pointer-events: none;
}
.selected-course-copy {
  grid-area: 1 / 1;
  position: relative;
  z-index: 1;
  align-self: end;
  justify-self: end;
  width: min(520px, 42%);
  margin: clamp(18px, 2.6vw, 34px);
  padding: clamp(18px, 2.1vw, 30px);
  border: 0;
  background: rgba(7,37,31,.22);
  box-shadow: none;
  backdrop-filter: blur(3px);
}
.selected-course-copy .eyebrow {
  color: rgba(255,255,255,.9);
  text-shadow: 0 1px 10px rgba(0,0,0,.5);
}
.selected-course-copy h3 {
  max-width: 620px;
  margin: 8px 0 12px;
  color: var(--white);
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
  font-size: clamp(26px, 2.35vw, 38px);
  line-height: .96;
  font-weight: 300;
  text-transform: uppercase;
}
.selected-course-copy p:not(.eyebrow) {
  max-width: 660px;
  margin: 0;
  color: rgba(255,255,255,.86);
  text-shadow: 0 1px 12px rgba(0,0,0,.42);
  font-size: clamp(14px, .95vw, 16px);
  line-height: 1.25;
}

/* Golf holidays: photo-first continuation of the homepage PLAY section. */
.golf-holidays-page .golf-page-hero,
.golf-holidays-page .golf-overview {
  display: none;
}
.golf-holidays-page .course-selector-section {
  display: grid;
  grid-template-columns: minmax(210px, .45fr) minmax(520px, 1.55fr);
  align-items: center;
  min-height: auto;
  padding: 0;
  border: 0;
  background: #fffdf7;
  overflow: hidden;
}
.golf-holidays-page .course-selector-section .section-head {
  position: static;
  width: auto;
  margin: 0;
  padding: 12px 20px 12px clamp(24px, 5vw, 72px);
  color: var(--green);
  text-shadow: none;
}
.golf-holidays-page .course-selector-section .section-head .eyebrow {
  color: #8f6618;
}
.golf-holidays-page .course-selector-section .section-head h2 {
  max-width: 460px;
  margin: 0;
  color: var(--green);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.16;
  font-weight: 400;
}
.beyond-18-entry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 3px;
  padding: 6px 11px;
  border: 0;
  border-radius: 999px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  line-height: normal;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.beyond-18-entry:hover {
  background: var(--green-deep);
  color: var(--white);
}
.beyond-18-entry.logistics-entry {
  border: 1px solid rgba(18,63,53,.3);
  background: transparent;
  color: var(--green);
}
.beyond-18-entry.logistics-entry:hover {
  border-color: var(--green-deep);
  background: var(--green-deep);
  color: var(--white);
}
.course-quick-links {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  white-space: nowrap;
}

.beyond-18-page .stay-media {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  grid-template-areas: none;
}
.beyond-18-page .stay-media img:nth-child(n) { grid-area: auto; }
.beyond-18-page .stay-media img:first-child {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 980px) {
  .beyond-18-page .stay-media,
  .beyond-18-page .stay-media {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-template-areas: none;
  }
  .beyond-18-page .stay-media img:nth-child(n) { grid-area: auto; min-height: 220px; }
}
.golf-holidays-page .course-selector-tool {
  display: contents;
}
.golf-holidays-page .selected-course,
.golf-holidays-page .selected-course-media {
  min-height: calc(100svh - 122px);
}
.golf-holidays-page .selected-course {
  grid-column: 1 / -1;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.golf-holidays-page .selected-course::after {
  background: linear-gradient(90deg, rgba(4,30,25,.72), rgba(4,30,25,.08) 58%), linear-gradient(0deg, rgba(4,30,25,.5), transparent 55%);
}
.golf-holidays-page .course-control {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  gap: 12px;
  position: static;
  width: auto;
  margin: 0;
  padding: 10px clamp(24px, 5vw, 72px) 10px 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--green);
  backdrop-filter: none;
}
.golf-holidays-page .course-picker-heading span,
.golf-holidays-page .course-select-label { color: var(--gold); }
.golf-holidays-page .course-picker-heading span { font-size: 10px; }
.golf-holidays-page .course-picker-heading small {
  max-width: 290px;
  color: rgba(18,63,53,.68);
  font-size: 12px;
}
.golf-holidays-page .course-region-tabs {
  border-color: rgba(18,63,53,.18);
  background: rgba(247,244,236,.84);
}
.golf-holidays-page .course-region-tabs button {
  padding: 6px 11px;
  color: var(--green);
  font-size: 10px;
}
.golf-holidays-page .course-region-tabs button.active,
.golf-holidays-page .course-region-tabs button:hover {
  color: var(--white);
}
.golf-holidays-page .course-select-label {
  margin-top: 0;
  font-size: 9px;
}
.golf-holidays-page .course-control select {
  border: 1px solid rgba(18,63,53,.32);
  background: rgba(247,244,236,.96);
  padding: 8px 14px;
  border-radius: 999px;
  box-shadow: 0 5px 14px rgba(8,42,35,.08);
  color: var(--green);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
.golf-holidays-page .course-control select:hover,
.golf-holidays-page .course-control select:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 7px 18px rgba(8,42,35,.14);
  outline: none;
}
.golf-holidays-page .selected-course-copy {
  width: min(560px, 42%);
  background: rgba(4,38,31,.26);
  backdrop-filter: blur(4px);
}
.golf-holidays-page .selected-course-copy #course-club { display: none; }
.golf-holidays-page .selected-course-copy #course-title { display: none; }
.golf-holidays-page .selected-course-copy p:not(.eyebrow) { display: none; }
.golf-holidays-page .selected-course-copy .course-tags { margin-top: 0; }

@media (max-width: 760px) {
  .golf-holidays-page .course-selector-section {
    grid-template-columns: 1fr;
  }
  .golf-holidays-page .course-selector-section .section-head {
    padding: 12px 20px 6px;
  }
  .golf-holidays-page .course-selector-section .section-head h2 {
    font-size: 18px;
  }
  .golf-holidays-page .course-control {
    grid-template-columns: auto minmax(0, 1fr);
    width: auto;
    margin: 0;
    padding: 6px 20px 12px;
  }
  .golf-holidays-page .course-quick-links {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }
  .golf-holidays-page .selected-course,
  .golf-holidays-page .selected-course-media {
    min-height: calc(100svh - 170px);
  }
  .golf-holidays-page .selected-course {
    grid-column: 1;
  }
  .golf-holidays-page .selected-course-copy {
    width: auto;
    margin: 16px;
    padding: 18px;
  }
}
.course-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}
.course-tags span {
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--white);
  background: rgba(7,37,31,.16);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.tournament-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(34px, 5vw, 86px);
  padding: clamp(34px, 4vw, 56px) clamp(24px, 5vw, 72px) clamp(30px, 3.4vw, 48px);
  background: var(--green-deep);
  color: var(--white);
}
.tournament-copy h2, .details-copy h2, .page-cta h2 {
  margin: 18px 0 20px;
  font-size: clamp(42px, 5vw, 78px);
  line-height: .9;
  font-weight: 300;
  text-transform: uppercase;
}
.tournament-copy p:not(.eyebrow) {
  max-width: 620px;
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.35;
}
.tournament-list {
  display: grid;
  gap: 1px;
  align-self: start;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.18);
}
.tournament-list article {
  padding: 18px 26px;
  background: rgba(255,255,255,.055);
}
.tournament-list strong {
  display: block;
  margin-bottom: 6px;
  font-size: clamp(22px, 1.9vw, 28px);
  font-weight: 500;
  text-transform: uppercase;
}
.tournament-list p {
  color: rgba(255,255,255,.82);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.22;
}
.golf-holidays-page .tournament-section {
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
  padding-top: clamp(24px, 2.8vw, 38px);
  padding-bottom: clamp(24px, 2.8vw, 38px);
  background: #fffdf7;
  color: var(--green);
  border-top: 1px solid rgba(18,63,53,.1);
  border-bottom: 1px solid rgba(18,63,53,.1);
}
.golf-holidays-page .tournament-copy .eyebrow { color: #8f6618; }
.golf-holidays-page .tournament-copy h2 {
  max-width: 640px;
  margin: 10px 0 0;
  font-size: clamp(28px, 3vw, 46px);
  line-height: .94;
}
.golf-holidays-page .tournament-list {
  align-self: center;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: rgba(18,63,53,.14);
  border-color: rgba(18,63,53,.14);
}
.golf-holidays-page .tournament-list article {
  min-height: 86px;
  padding: 13px 20px;
  background: rgba(247,244,236,.78);
}
.golf-holidays-page .tournament-list span {
  margin-bottom: 7px;
  color: #8f6618;
  font-size: 15px;
}
.golf-holidays-page .tournament-list strong {
  color: var(--green);
  font-size: clamp(17px, 1.35vw, 22px);
}
.golf-details {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(32px, 5vw, 82px);
  padding: clamp(34px, 4vw, 56px) clamp(24px, 5vw, 72px) clamp(54px, 6vw, 86px);
}
.golf-holidays-page .golf-details {
  gap: clamp(24px, 3.5vw, 52px);
  padding-top: clamp(26px, 3vw, 42px);
  padding-bottom: clamp(28px, 3.2vw, 46px);
  background: var(--white);
  border-top: 1px solid rgba(18,63,53,.1);
  border-bottom: 1px solid rgba(18,63,53,.1);
}
.golf-holidays-page .golf-details .eyebrow { color: #8f6618; }
.golf-holidays-page .details-copy h2 {
  margin: 10px 0 0;
  font-size: clamp(30px, 3.5vw, 52px);
  line-height: .94;
}
.golf-holidays-page .detail-list li {
  gap: 14px;
  padding: 13px 0;
}
.golf-holidays-page .detail-list span {
  font-size: 18px;
}
.golf-holidays-page .detail-list b {
  font-size: 16px;
  line-height: 1.15;
}
.golf-holidays-page .page-cta {
  min-height: 36vh;
  padding-top: clamp(38px, 4.5vw, 66px);
  padding-bottom: clamp(38px, 4.5vw, 66px);
}
.golf-holidays-page .page-cta h2 {
  max-width: 880px;
  margin: 10px 0 0;
  font-size: clamp(34px, 4vw, 60px);
  line-height: .92;
}
.detail-list {
  list-style: none;
  display: grid;
  align-self: start;
  border-top: 1px solid rgba(18,63,53,.22);
}
.detail-list li {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(18,63,53,.22);
  color: var(--green);
}
.detail-list span {
  font-size: 24px;
  text-transform: uppercase;
}
.detail-list b {
  font-size: 20px;
  font-weight: 400;
  color: rgba(18,63,53,.72);
}
.page-cta {
  min-height: 58vh;
  display: grid;
  align-items: center;
  padding: clamp(70px, 8vw, 118px) clamp(24px, 5vw, 72px);
  background: linear-gradient(90deg, rgba(8,42,35,.94), rgba(8,42,35,.62)), url("assets/golf-course-fairway.jpg") center / cover no-repeat;
  color: var(--white);
}
.page-cta div { max-width: 920px; }

.mood-board {
  padding: clamp(22px, 2.8vw, 34px) clamp(24px, 5vw, 72px) clamp(36px, 4vw, 56px);
  background: rgba(247,244,236,.76);
}
.mood-board-page main {
  background:
    linear-gradient(rgba(18,63,53,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,63,53,.055) 1px, transparent 1px),
    #fffdf7;
  background-size: 106px 106px;
  padding: 12px 18px 18px;
}
.mood-board-page .mood-board {
  min-height: calc(100svh - 82px);
  padding: clamp(24px, 3vw, 42px);
  border-radius: 28px;
  background: var(--green-deep);
  color: var(--white);
}
.mood-board-page .mood-board .section-head {
  max-width: none;
  margin-bottom: 8px;
}
.mood-board-page .mood-board .section-head .eyebrow {
  color: var(--gold);
}
.mood-board-page .mood-board .section-head h2 {
  color: var(--white);
  font-size: clamp(26px, 2.2vw, 36px);
}
.mood-board-page .mood-tile {
  border-color: rgba(255,255,255,.3);
  background: transparent;
  color: rgba(255,255,255,.88);
}
.mood-board-page .mood-tile:nth-child(odd) {
  background: rgba(255,255,255,.04);
}
.mood-board-page .mood-tile.active,
.mood-board-page .mood-tile:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--green-deep);
}
.mood-board-page .destination-note {
  color: rgba(255,255,255,.68);
}
.mood-board-page .experience-region {
  background: transparent;
  color: var(--gold);
}
.mood-board .section-head {
  margin-bottom: 12px;
}
.mood-board .section-head h2 {
  font-size: clamp(28px, 2.7vw, 42px);
  line-height: .98;
}
.mood-filter {
  margin: 12px 0 14px;
}
.mood-board-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: 0;
}
.mood-tile {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 36px;
  width: auto;
  max-width: none;
  border: 1px solid rgba(18,63,53,.2);
  border-radius: 999px;
  padding: 7px 11px;
  background: rgba(255,255,255,.56);
  color: var(--green);
  font: inherit;
  text-align: center;
  cursor: pointer;
  box-shadow: none;
}
.mood-tile:nth-child(odd) { background: rgba(247,244,236,.9); }
.mood-tile::before {
  content: attr(data-icon);
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  flex: 0 0 auto;
}
.mood-tile span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.mood-tile strong {
  display: none;
}
.mood-tile.all {
  min-width: auto;
  background: var(--green-deep);
  color: var(--white);
}
.mood-tile.active,
.mood-tile:hover {
  background: #efe9db;
  outline: 2px solid var(--green-deep);
  outline-offset: -4px;
  transform: none;
}
.mood-tile.all.active,
.mood-tile.all:hover {
  background: var(--green-deep);
  outline-color: #d9aa38;
}
.destination-note {
  max-width: 760px;
  margin: 0 0 18px;
  color: rgba(18,63,53,.78);
  font-size: clamp(15px, 1.05vw, 18px);
  line-height: 1.24;
}
.concierge-selector {
  display: grid;
  grid-template-columns: minmax(250px, .2fr) minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  margin: 20px 0 16px;
}
.concierge-control {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 16px 14px;
  border: 1px solid rgba(18,63,53,.14);
  border-radius: 20px;
  background: rgba(255,255,255,.58);
}
.concierge-control p {
  margin: 0;
  color: #8f6618;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.concierge-menu {
  display: grid;
  gap: 7px;
}
.concierge-menu button {
  width: 100%;
  border: 1px solid rgba(18,63,53,.16);
  border-radius: 999px;
  background: rgba(255,255,255,.46);
  color: var(--green);
  padding: 10px 14px;
  font: inherit;
  font-size: clamp(13px, .9vw, 15px);
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.08;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.concierge-menu button.active,
.concierge-menu button:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}
.concierge-detail {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(300px, .58fr) minmax(520px, 1.42fr);
  gap: clamp(18px, 1.8vw, 28px);
  align-items: stretch;
  padding: clamp(18px, 2vw, 26px);
  border-radius: 22px;
  background: var(--green-deep);
  color: var(--white);
  box-shadow: 0 18px 42px rgba(8,42,35,.12);
}
.concierge-detail:not(.has-media) {
  grid-template-columns: 1fr;
}
.concierge-detail > span {
  display: none;
}
.concierge-detail h3 {
  margin: 7px 0 10px;
  font-size: clamp(30px, 2.6vw, 42px);
  line-height: .96;
  font-weight: 300;
  text-transform: uppercase;
}
.concierge-detail p:not(.eyebrow) {
  max-width: 620px;
  margin: 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.06vw, 18px);
  line-height: 1.28;
}
.concierge-detail .eyebrow {
  color: var(--gold);
}
.concierge-detail ul {
  display: grid;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.concierge-detail li {
  padding-top: 8px;
  border-top: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.78);
  font-size: clamp(14px, .96vw, 16px);
  line-height: 1.26;
}
.concierge-story-image {
  width: 100%;
  height: clamp(150px, 13vw, 220px);
  margin-top: clamp(18px, 1.8vw, 26px);
  display: block;
  object-fit: cover;
  border-radius: 16px;
}
.concierge-detail:not(.has-media) .concierge-story-image {
  display: none;
}
.concierge-story-image.is-hidden {
  display: none;
}
.concierge-hotel-collage {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: clamp(64px, 4.8vw, 86px);
  grid-template-areas:
    "a a b b b"
    "a a b b b"
    "a a c c d"
    "e e c c d"
    "f f g h h"
    "f f i i j"
    "k k k l l";
  gap: 8px;
  align-self: stretch;
  min-height: clamp(300px, 24vw, 380px);
  max-width: 100%;
  overflow: hidden;
}
.concierge-hotel-collage.is-hidden {
  display: none;
}
.concierge-hotel-collage img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 12px;
}
.concierge-hotel-collage img:first-child {
  grid-area: a;
}
.concierge-hotel-collage img:nth-child(2) {
  grid-area: b;
}
.concierge-hotel-collage img:nth-child(3) {
  grid-area: c;
}
.concierge-hotel-collage img:nth-child(4) {
  grid-area: d;
}
.concierge-hotel-collage img:nth-child(5) {
  grid-area: e;
}
.concierge-hotel-collage img:nth-child(6) {
  grid-area: f;
}
.concierge-hotel-collage img:nth-child(7) {
  grid-area: g;
}
.concierge-hotel-collage img:nth-child(8) {
  grid-area: h;
}
.concierge-hotel-collage img:nth-child(9),
.concierge-hotel-collage img:nth-child(10) {
  grid-area: i;
}
.concierge-hotel-collage img:nth-child(10) {
  grid-area: j;
}
.concierge-hotel-collage img:nth-child(11) {
  grid-area: k;
}
.concierge-hotel-collage img:nth-child(12) {
  grid-area: l;
}
.concierge-hotel-collage.compact-media {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(78px, 6vw, 112px);
  grid-template-areas:
    "a a b b"
    "a a b b"
    "c c d d"
    "c c e f"
    "c c e f";
}
.concierge-focus-page .concierge-hero {
  min-height: calc(100svh - 62px);
  padding: 12px 18px 18px;
  background:
    linear-gradient(rgba(18,63,53,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,63,53,.055) 1px, transparent 1px),
    #fffdf7;
  background-size: 106px 106px;
}
.concierge-focus-page .hero-weather,
.concierge-focus-page .page-hero-copy > .eyebrow,
.concierge-focus-page .page-hero-copy > h1,
.concierge-focus-page .page-hero-copy > p {
  display: none;
}
.concierge-focus-page .page-hero-copy {
  max-width: none;
}
.concierge-focus-page .concierge-selector {
  min-height: calc(100svh - 104px);
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(18px, 2vw, 30px);
  margin: 0;
  padding: clamp(20px, 2.2vw, 34px);
  border-radius: 28px;
  background: var(--green-deep);
}
.concierge-focus-page .concierge-control {
  padding: 0;
  border: 0;
  background: transparent;
}
.concierge-focus-page .concierge-control > p {
  display: none;
}
.concierge-focus-page .concierge-menu button,
.concierge-focus-page .concierge-menu .choose-course-link {
  border-color: rgba(255,255,255,.3);
  background: transparent;
  color: rgba(255,255,255,.88);
  padding: 13px 17px;
}
.concierge-focus-page .concierge-menu button.active,
.concierge-focus-page .concierge-menu button:hover,
.concierge-focus-page .concierge-menu .choose-course-link:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--green-deep);
}
.concierge-focus-page .concierge-detail {
  grid-template-columns: minmax(300px, .68fr) minmax(520px, 1.32fr);
  gap: clamp(22px, 2.4vw, 38px);
  box-shadow: none;
  padding: 0;
}
.concierge-focus-page .concierge-detail-copy {
  display: flex;
  flex-direction: column;
}
.concierge-focus-page .concierge-control {
  margin-top: auto;
  margin-bottom: 0;
  padding-top: clamp(24px, 3vw, 44px);
}
.concierge-focus-page .concierge-menu {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 8px;
}
.concierge-focus-page .concierge-menu button,
.concierge-focus-page .concierge-menu .choose-course-link {
  width: 100%;
  min-height: 44px;
  flex: 0 0 auto;
}
.concierge-focus-page .concierge-menu .choose-course-link {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 999px;
  font-size: clamp(13px, .9vw, 15px);
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.08;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.concierge-focus-page .concierge-detail h3 {
  font-size: clamp(34px, 3.2vw, 52px);
}
.concierge-focus-page .concierge-detail p:not(.eyebrow) {
  color: var(--gold);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.why-story-page .why-uae-hero {
  height: calc(100svh - 62px);
  min-height: calc(100svh - 62px);
  align-items: stretch;
  padding: 12px 18px 18px;
  gap: 0;
  background:
    linear-gradient(rgba(18,63,53,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,63,53,.055) 1px, transparent 1px),
    #fffdf7;
  background-size: 106px 106px;
}
.why-story-page .hero-weather { display: none; }
.why-story-page .why-uae-hero .page-hero-copy {
  min-height: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 4vw, 64px);
  border-radius: 28px 0 0 28px;
  background: var(--green-deep);
}
.why-story-page .why-uae-hero .page-hero-copy .eyebrow { color: var(--gold); }
.why-story-page .why-uae-hero .page-hero-copy h1 {
  margin: 12px 0 14px;
  color: var(--white);
  font-size: clamp(34px, 3.6vw, 56px);
  line-height: .98;
}
.why-story-page .why-uae-hero .page-hero-copy p:not(.eyebrow) {
  color: var(--white);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.26;
}
.why-story-page .why-uae-hero-media {
  position: relative;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  border-radius: 0 28px 28px 0;
  background: var(--green-deep);
}
.why-story-page .why-uae-hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.why-story-page .why-uae-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7,37,31,.28), transparent 52%, rgba(7,37,31,.12));
  pointer-events: none;
}
.why-story-page .why-uae-hero-media > span {
  position: absolute;
  z-index: 1;
  left: 24px;
  right: auto;
  bottom: 20px;
  color: rgba(255,255,255,.82);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.why-story-page .uae-proof-section {
  padding: 8px 18px 22px;
  background: #fffdf7;
}
.why-story-page .sun-card,
.why-story-page .proof-card { min-height: 210px; }
.why-story-page .sun-card span {
  font-size: clamp(40px, 4.8vw, 72px);
  line-height: .88;
}
.why-story-page .proof-card span {
  display: block;
  font-size: clamp(32px, 3.2vw, 50px);
  line-height: .9;
  letter-spacing: .015em;
  white-space: nowrap;
}
.why-story-page .sun-card h2 {
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1;
}
.why-story-page .proof-card h3 {
  margin-top: 12px;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.02;
}
.why-story-page .sun-card p,
.why-story-page .proof-card p {
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.26;
}
.why-story-page .then-now-section { background: var(--green-deep); }
.why-story-page .then-now-copy h2 {
  color: var(--white);
  font-size: clamp(34px, 3.4vw, 52px);
  line-height: .98;
}
.why-story-page .then-now-copy p {
  color: var(--white);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.28;
}
.why-story-page .then-now-copy .eyebrow { color: var(--gold); }
.why-story-page .why-uae-cta-copy h2 {
  font-size: clamp(30px, 3.4vw, 52px);
  line-height: .98;
}
@media (max-width: 980px) {
  .oryx-concept-section { grid-template-columns: 1fr; }
  .oryx-concept-mark {
    min-height: 260px;
    border-radius: 24px 24px 0 0;
  }
  .oryx-concept-copy { border-radius: 0 0 24px 24px; }
  .why-story-page .why-uae-hero { height: auto; }
  .why-story-page .why-uae-hero .page-hero-copy { border-radius: 24px 24px 0 0; }
  .why-story-page .why-uae-hero-media {
    min-height: 58svh;
    border-radius: 0 0 24px 24px;
  }
}
@media (max-width: 560px) {
  .why-story-page .proof-card span {
    font-size: 25px;
  }
}
@media (max-width: 980px) {
  .concierge-focus-page .concierge-selector {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .concierge-focus-page .concierge-detail {
    grid-template-columns: 1fr;
  }
}
/* STAY — photo-first page */
.stay-legacy {
  display: none;
}
.stay-page {
  background: #fffdf7;
}
.stay-picker {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  min-height: 92px;
  padding: 14px clamp(28px, 5vw, 90px);
  background: #fffdf7;
  border-bottom: 1px solid rgba(18,63,53,.12);
}
.stay-picker-copy {
  flex: 0 0 auto;
  display: flex;
  align-items: baseline;
  gap: 16px;
}
.stay-picker-copy .eyebrow {
  margin: 0;
  color: #8f6618;
}
.stay-picker-copy h1 {
  margin: 0;
  color: var(--green);
  font-size: clamp(20px, 1.8vw, 30px);
  line-height: 1;
  font-weight: 400;
}
.stay-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.stay-tabs button {
  border: 1px solid rgba(18,63,53,.28);
  border-radius: 999px;
  background: transparent;
  color: var(--green);
  padding: 8px 16px;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
}
.stay-tabs button.active,
.stay-tabs button:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--white);
}
.stay-showcase {
  position: relative;
  min-height: clamp(560px, 74vh, 820px);
  overflow: hidden;
  background: var(--green-deep);
}
.stay-showcase > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity .3s ease;
}
.stay-highlights {
  position: absolute;
  right: clamp(24px, 5vw, 88px);
  bottom: clamp(24px, 5vw, 72px);
  width: min(480px, calc(100% - 48px));
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 26px;
  background: rgba(8,42,35,.48);
  color: var(--white);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.stay-highlights .eyebrow {
  margin: 0 0 9px;
  color: var(--gold);
}
.stay-highlights h2 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
}
.stay-highlights ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.stay-highlights li {
  padding-top: 9px;
  border-top: 1px solid rgba(255,255,255,.24);
  font-size: clamp(13px, .95vw, 15px);
  letter-spacing: .04em;
}
.stay-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 4px 0;
  background: #fffdf7;
}
.stay-gallery img {
  width: 100%;
  height: clamp(220px, 24vw, 420px);
  object-fit: cover;
}
@media (max-width: 820px) {
  .stay-picker {
    display: block;
    min-height: 0;
    padding: 14px 20px;
  }
  .stay-picker-copy .eyebrow {
    display: none;
  }
  .stay-picker-copy h1 {
    font-size: 20px;
  }
  .stay-tabs {
    flex-wrap: nowrap;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
  }
  .stay-tabs button {
    flex: 0 0 auto;
  }
  .stay-showcase {
    min-height: 68svh;
  }
  .stay-highlights {
    right: 16px;
    bottom: 16px;
    width: calc(100% - 32px);
    padding: 22px;
    border-radius: 20px;
  }
  .stay-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .stay-gallery img {
    height: 46vw;
  }
}

.stay-main {
  padding: clamp(18px, 2.4vw, 38px);
  background:
    linear-gradient(rgba(18,63,53,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,63,53,.055) 1px, transparent 1px),
    #fffdf7;
  background-size: 106px 106px;
}
.stay-planner {
  min-height: calc(100svh - 150px);
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  gap: clamp(20px, 2.5vw, 42px);
  padding: clamp(24px, 3vw, 48px);
  border-radius: 34px;
  background: var(--green-deep);
  color: var(--white);
  overflow: hidden;
}
.stay-menu {
  padding-right: clamp(20px, 2.5vw, 40px);
  border-right: 1px solid rgba(255,255,255,.2);
}
.stay-menu > p {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.stay-planner .stay-tabs {
  display: grid;
  gap: 10px;
}
.stay-planner .stay-tabs button {
  width: 100%;
  border-color: rgba(255,255,255,.32);
  color: rgba(255,255,255,.86);
  padding: 13px 17px;
  text-align: left;
}
.stay-planner .stay-tabs button.active,
.stay-planner .stay-tabs button:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-deep);
}
.mood-board-link {
  display: block;
  margin-top: 16px;
  padding: 12px 16px;
  border: 1px solid rgba(214,170,70,.72);
  border-radius: 999px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.mood-board-link:hover {
  background: var(--gold);
  color: var(--green-deep);
}
.beyond-18-page .mood-board-link {
  text-align: left;
}
.stay-content {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(230px, .46fr) minmax(0, 1.54fr);
  gap: clamp(22px, 2.8vw, 48px);
  align-items: stretch;
}
.stay-content .stay-highlights {
  position: static;
  width: auto;
  padding: 8px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}
.stay-content .stay-highlights h1 {
  margin: 8px 0 26px;
  color: var(--white);
  font-size: clamp(30px, 3.2vw, 52px);
  font-weight: 300;
  line-height: .95;
  text-transform: uppercase;
}
.stay-content .stay-highlights li {
  padding: 14px 0;
  color: rgba(255,255,255,.86);
}
.stay-media {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(120px, 1fr));
  grid-template-areas:
    "a a b c d"
    "a a e f g"
    "h i j k l";
  gap: 9px;
  min-height: 590px;
}
.stay-media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  border-radius: 15px;
}
.stay-media img:nth-child(1) { grid-area: a; }
.stay-media img:nth-child(2) { grid-area: b; }
.stay-media img:nth-child(3) { grid-area: c; }
.stay-media img:nth-child(4) { grid-area: d; }
.stay-media img:nth-child(5) { grid-area: e; }
.stay-media img:nth-child(6) { grid-area: f; }
.stay-media img:nth-child(7) { grid-area: g; }
.stay-media img:nth-child(8) { grid-area: h; }
.stay-media img:nth-child(9) { grid-area: i; }
.stay-media img:nth-child(10) { grid-area: j; }
.stay-media img:nth-child(11) { grid-area: k; }
.stay-media img:nth-child(12) { grid-area: l; }
@media (min-width: 981px) {
  .stay-main {
    height: calc(100svh - 54px);
    min-height: 0;
    padding: 12px 18px;
    box-sizing: border-box;
  }
  .stay-planner {
    height: 100%;
    min-height: 0;
    display: grid;
    grid-template-columns: minmax(245px, 320px) minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    grid-template-areas:
      "copy media"
      "menu media";
    gap: clamp(18px, 2vw, 32px);
    padding: clamp(20px, 2vw, 32px);
    border-radius: 26px;
  }
  .stay-content {
    display: contents;
  }
  .stay-content .stay-highlights {
    grid-area: copy;
  }
  .stay-menu {
    grid-area: menu;
    align-self: start;
    padding: 0;
    border: 0;
  }
  .stay-media {
    grid-area: media;
  }
  .stay-content,
  .stay-media {
    min-height: 0;
  }
  .stay-media {
    height: 100%;
    grid-template-rows: repeat(3, minmax(0, 1fr));
  }
  .stay-content .stay-highlights h1 {
    margin-bottom: 18px;
  }
  .stay-content .stay-highlights li {
    padding: 10px 0;
  }
  .explore-page .stay-planner,
  .adventure-page .stay-planner,
  .entertain-page .stay-planner {
    row-gap: 10px;
  }
  .explore-page .stay-content .stay-highlights h1,
  .adventure-page .stay-content .stay-highlights h1,
  .entertain-page .stay-content .stay-highlights h1 {
    margin-bottom: 12px;
  }
  .explore-page .stay-content .stay-highlights li,
  .adventure-page .stay-content .stay-highlights li,
  .entertain-page .stay-content .stay-highlights li {
    padding: 7px 0;
  }
  .explore-page .stay-planner .stay-tabs,
  .adventure-page .stay-planner .stay-tabs,
  .entertain-page .stay-planner .stay-tabs {
    gap: 7px;
  }
  .explore-page .stay-planner .stay-tabs button,
  .adventure-page .stay-planner .stay-tabs button,
  .entertain-page .stay-planner .stay-tabs button {
    padding: 10px 16px;
  }
  .explore-page .mood-board-link,
  .adventure-page .mood-board-link,
  .entertain-page .mood-board-link {
    margin-top: 9px;
    padding: 9px 14px;
  }
}
@media (max-width: 980px) {
  .stay-planner {
    grid-template-columns: 1fr;
  }
  .stay-menu {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.2);
  }
  .stay-planner .stay-tabs {
    display: flex;
    flex-wrap: wrap;
  }
  .stay-planner .stay-tabs button {
    width: auto;
  }
}
@media (max-width: 720px) {
  .stay-main {
    padding: 10px;
  }
  .stay-planner {
    min-height: 0;
    padding: 22px 18px;
    border-radius: 22px;
  }
  .stay-planner .stay-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
  .stay-planner .stay-tabs button {
    flex: 0 0 auto;
  }
  .stay-content {
    grid-template-columns: 1fr;
  }
  .stay-content .stay-highlights h1 {
    margin-bottom: 18px;
  }
  .stay-media {
    min-height: 520px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    grid-template-areas:
      "a a"
      "b c"
      "d e";
  }
  .stay-media img:nth-child(n+6) {
    display: none;
  }
}

.adventure-page .stay-media[data-count="4"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "a b"
    "c d";
}
.adventure-page .stay-media[data-count="5"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "a a b"
    "c d e";
}
.adventure-page .stay-media[data-count="6"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "a b c"
    "d e f";
}
@media (max-width: 720px) {
  .adventure-page .stay-media img:nth-child(n+6) {
    display: block;
  }
  .adventure-page .stay-media[data-count="4"],
  .adventure-page .stay-media[data-count="5"],
  .adventure-page .stay-media[data-count="6"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(3, minmax(0, 1fr));
    grid-template-areas:
      "a b"
      "c d"
      "e f";
  }
  .adventure-page .stay-media[data-count="4"] {
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-template-areas:
      "a b"
      "c d";
  }
}

.concierge-flow {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: stretch;
  min-height: 76vh;
  background: #fffdf7;
}
.concierge-flow-image {
  min-height: 560px;
  background: url("assets/yacht-charter.jpg") center / cover no-repeat;
}
.concierge-flow-copy {
  padding: clamp(46px, 6vw, 86px);
  align-self: center;
}
.concierge-flow-copy h2,
.itinerary-copy h2 {
  margin: 16px 0 24px;
  font-size: clamp(38px, 4.6vw, 72px);
  line-height: .94;
  font-weight: 300;
}
.flow-list {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid rgba(18,63,53,.2);
}
.flow-list article {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(18,63,53,.2);
}
.flow-list span {
  color: #8f6618;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.flow-list p {
  margin: 0;
  color: rgba(18,63,53,.82);
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.25;
}
.concierge-itinerary {
  padding: clamp(64px, 7vw, 108px) clamp(24px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: start;
  background: rgba(18,63,53,.07);
}
.itinerary-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(18,63,53,.78);
  font-size: clamp(19px, 1.5vw, 23px);
  line-height: 1.3;
}
.itinerary-strip {
  display: grid;
  gap: 12px;
}
.itinerary-strip article {
  min-height: 150px;
  border: 1px solid rgba(18,63,53,.16);
  border-radius: 999px;
  padding: 22px 28px;
  background: var(--paper);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 20px;
  align-items: center;
}
.itinerary-strip span {
  color: #8f6618;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.itinerary-strip strong {
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.05;
  font-weight: 400;
  text-transform: uppercase;
}
.concierge-cta {
  background:
    linear-gradient(0deg, rgba(7,37,31,.78), rgba(7,37,31,.78)),
    url("assets/dubai-desert-safari.jpg") center / cover no-repeat;
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: clamp(64px, 4.2vw, 74px);
  grid-auto-flow: dense;
  gap: 8px;
  background: transparent;
  border: 0;
}
.experience-card {
  min-height: 0;
  position: relative;
  overflow: hidden;
  background: var(--paper);
  color: var(--green);
  transition: opacity .2s ease, transform .2s ease;
}
.experience-card.is-hidden {
  display: none;
}
.experience-region {
  grid-column: 1 / -1;
  padding: 14px 4px 7px;
  background: var(--paper);
  color: var(--green);
  font-size: clamp(20px, 1.9vw, 28px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.experience-card.image-card {
  grid-row: span 2;
  min-height: 0;
  border-radius: 20px;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(18,63,53,.12);
}
.experience-card.tall {
  grid-row: span 3;
}
.experience-grid > .experience-card.image-card:nth-of-type(2),
.experience-grid > .experience-card.image-card:nth-of-type(8),
.experience-grid > .experience-card.image-card:nth-of-type(15),
.experience-grid > .experience-card.image-card:nth-of-type(22),
.experience-grid > .experience-card.image-card:nth-of-type(31),
.experience-grid > .experience-card.image-card:nth-of-type(36) {
  grid-column: span 2;
  grid-row: span 3;
}
.experience-grid > .experience-card.image-card:nth-of-type(3),
.experience-grid > .experience-card.image-card:nth-of-type(12),
.experience-grid > .experience-card.image-card:nth-of-type(18),
.experience-grid > .experience-card.image-card:nth-of-type(25),
.experience-grid > .experience-card.image-card:nth-of-type(33) {
  grid-column: span 2;
}
.experience-grid > .experience-card.image-card:nth-of-type(6),
.experience-grid > .experience-card.image-card:nth-of-type(14),
.experience-grid > .experience-card.image-card:nth-of-type(27) {
  grid-row: span 3;
}
.experience-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.experience-card.image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,42,35,.08), rgba(8,42,35,.82));
}
.experience-card div,
.experience-card.text-card {
  padding: clamp(16px, 2vw, 24px);
}
.experience-card.image-card div {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
}
.experience-grid .experience-card.image-card span,
.experience-grid .experience-card.image-card p {
  display: none;
}
.experience-card span {
  display: block;
  margin-bottom: 12px;
  color: #c99b2f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.experience-card h3 {
  margin: 0;
  font-size: clamp(14px, 1.16vw, 20px);
  line-height: .98;
  font-weight: 400;
  text-transform: uppercase;
}
.experience-card p {
  margin: 0;
  font-size: 18px;
  line-height: 1.34;
  color: inherit;
}
.experience-card.text-card p {
  color: rgba(18,63,53,.78);
}
.experience-builder {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: clamp(28px, 4vw, 64px);
  padding: clamp(44px, 5vw, 72px) clamp(24px, 5vw, 72px);
}
.builder-copy h2 {
  margin: 14px 0 16px;
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: .94;
  font-weight: 300;
  color: var(--green);
  text-transform: uppercase;
}
.builder-copy p:not(.eyebrow) {
  max-width: 620px;
  font-size: clamp(18px, 1.35vw, 21px);
  line-height: 1.3;
  color: var(--green);
}
.builder-steps {
  display: grid;
  gap: 1px;
  align-self: start;
  background: rgba(18,63,53,.16);
  border: 1px solid rgba(18,63,53,.16);
}
.builder-steps article {
  padding: 22px 28px;
  background: var(--paper);
}
.builder-steps span {
  display: inline-block;
  margin-bottom: 16px;
  color: #9a6d19;
  font-size: 19px;
  font-weight: 700;
}
.builder-steps strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: clamp(22px, 1.8vw, 26px);
  font-weight: 500;
  text-transform: uppercase;
}
.builder-steps p {
  margin: 0;
  color: rgba(18,63,53,.78);
  font-size: 17px;
  line-height: 1.28;
}
.experiences-cta {
  background: linear-gradient(90deg, rgba(8,42,35,.94), rgba(8,42,35,.52)), url("assets/dubai-beach-skyline.jpg") center / cover no-repeat;
}
.experiences-cta h2 {
  font-size: clamp(38px, 4.2vw, 64px);
}

.hero {
  min-height: 100svh;
  position: relative;
  color: var(--white);
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(92px, 10vw, 132px) clamp(24px, 6vw, 92px) 54px;
  isolation: isolate;
  overflow: hidden;
}
.home-page .hero {
  align-items: end;
  padding: clamp(110px, 10vw, 140px) clamp(20px, 3.5vw, 54px) clamp(30px, 4vw, 54px);
}
.home-page .hero-content {
  align-self: end;
}
.home-page .hero h1 {
  margin-bottom: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/home-hero-emirates-majlis.jpg") center / cover no-repeat;
  transform: scale(1.04);
  opacity: 1;
  transition: opacity .45s ease;
}
.hero-bg.is-changing {
  opacity: 0;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(7,37,31,.42), rgba(7,37,31,.16) 48%, rgba(7,37,31,.03)),
    linear-gradient(0deg, rgba(7,37,31,.32), rgba(7,37,31,.01) 58%);
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
  font-weight: 700;
}
.eyebrow.dark { color: #9a6d19; }
h1, h2, h3, p { margin-top: 0; }
.hero h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(42px, 4.75vw, 78px);
  line-height: .92;
  font-weight: 300;
  text-transform: uppercase;
}
.hero h1 em {
  color: var(--white);
  font-style: normal;
  font-weight: 400;
}
.hero-service-line {
  display: inline-flex;
  margin: 0 0 18px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 800;
  line-height: 1;
  text-shadow: 0 2px 16px rgba(0,0,0,.34);
}
.hero-lede {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.25;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; }
.primary-button, .light-button {
  border: 0;
  background: var(--gold);
  color: var(--green-deep);
  border-radius: 999px;
  padding: 14px 24px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 800;
}
.text-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
}
.hero-text-cta {
  border-top: 0;
  border-right: 0;
  border-left: 0;
  background: transparent;
  font: inherit;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 400;
  letter-spacing: .08em;
  cursor: pointer;
}
.hero-card {
  align-self: center;
  background: rgba(247,244,236,.9);
  color: var(--green);
  padding: 24px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 24px 60px rgba(7,37,31,.16);
}
.hero-card span, .hero-card strong { display: block; text-transform: uppercase; }
.hero-card span { color: #9a6d19; letter-spacing: .16em; font-weight: 700; font-size: 13px; }
.hero-card strong { margin: 10px 0 14px; font-size: 27px; line-height: 1; font-weight: 500; }
.hero-card p {
  display: inline-flex;
  margin: 0;
  border: 1px solid rgba(18,63,53,.26);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 15px;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
}

.intro-section {
  display: grid;
  grid-template-columns: minmax(280px, .92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 5vw, 74px);
  min-height: auto;
  padding: clamp(70px, 9vw, 116px) clamp(24px, 7vw, 110px);
  border-bottom: 1px solid rgba(18,63,53,.12);
}
.intro-copy h2, .section-head h2, .steps h2 {
  font-size: clamp(44px, 5.8vw, 86px);
  line-height: .9;
  font-weight: 300;
  text-transform: uppercase;
}
.intro-copy h2 {
  max-width: 680px;
  font-size: clamp(38px, 4.15vw, 64px);
  line-height: .98;
}
.intro-copy::after {
  content: "";
  display: block;
  width: 90px;
  height: 1px;
  margin-top: 28px;
  background: var(--gold);
}
.intro-text p {
  max-width: 720px;
  margin-bottom: clamp(18px, 2.5vw, 28px);
  font-size: clamp(19px, 1.75vw, 24px);
  line-height: 1.42;
}
.home-page .intro-section {
  display: block;
  min-height: 0;
  padding: clamp(28px, 3.5vw, 48px) clamp(24px, 7vw, 110px);
  text-align: center;
}
.home-page .intro-line {
  max-width: none;
  margin: 0;
  color: var(--green);
  font-family: var(--font-primary);
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: .03em;
}

.play-section {
  position: relative;
  min-height: clamp(560px, 78svh, 820px);
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4,30,25,.7), rgba(4,30,25,.08) 62%),
    linear-gradient(0deg, rgba(4,30,25,.45), transparent 55%),
    url("assets/course-majlis.jpg") center / cover no-repeat;
  overflow: hidden;
}
.play-stack {
  width: min(460px, 100%);
}
.play-copy {
  width: 100%;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 20px;
  background: rgba(4,38,31,.44);
  box-shadow: 0 22px 58px rgba(0,0,0,.2);
  backdrop-filter: blur(7px);
}
.play-label {
  position: static;
  margin: 0 0 14px 2px;
  color: rgba(255,255,255,.72);
  font-family: var(--font-primary);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 0 6px 24px rgba(0,0,0,.24);
}
.play-copy h2 {
  margin: 0 0 24px;
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 300;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}
.play-copy label {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.play-copy select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 999px;
  padding: 0 42px 0 16px;
  color: var(--green-deep);
  background: rgba(255,255,255,.94);
  font-family: var(--font-secondary);
  font-size: 14px;
  cursor: pointer;
}
@media (max-width: 700px) {
  .play-section {
    min-height: 68svh;
    padding: 20px;
    background-position: 58% center;
  }
  .play-copy {
    padding: 20px;
  }
  .play-label {
    font-size: clamp(30px, 10vw, 44px);
  }
  .play-copy h2 {
    font-size: clamp(22px, 7vw, 30px);
    white-space: normal;
  }
}

.journey-section {
  position: relative;
  min-height: clamp(520px, 72svh, 760px);
  display: flex;
  align-items: flex-end;
  padding: clamp(28px, 5vw, 72px);
  color: var(--white);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}
.journey-stay {
  background-image:
    linear-gradient(270deg, rgba(4,30,25,.64), rgba(4,30,25,.05) 62%),
    linear-gradient(0deg, rgba(4,30,25,.36), transparent 58%),
    url("assets/hotel-atlantis-the-royal.jpg");
}
.journey-explore {
  background-image:
    linear-gradient(90deg, rgba(4,30,25,.62), rgba(4,30,25,.04) 62%),
    linear-gradient(0deg, rgba(4,30,25,.36), transparent 58%),
    url("assets/museum-of-the-future.jpg");
}
.journey-adventure {
  background-image:
    linear-gradient(270deg, rgba(4,30,25,.62), rgba(4,30,25,.04) 62%),
    linear-gradient(0deg, rgba(4,30,25,.36), transparent 58%),
    url("assets/itinerary-skydive.jpg");
}
.journey-entertain {
  background-image:
    linear-gradient(90deg, rgba(4,30,25,.64), rgba(4,30,25,.05) 62%),
    linear-gradient(0deg, rgba(4,30,25,.36), transparent 58%),
    url("assets/la-perle-aqua-show-det-poi-mar-2025.jpg");
}
.journey-why {
  background-image:
    linear-gradient(270deg, rgba(4,30,25,.62), rgba(4,30,25,.04) 62%),
    linear-gradient(0deg, rgba(4,30,25,.36), transparent 58%),
    url("assets/oryx-desert.jpg");
}
.journey-stack {
  width: min(460px, 100%);
}
.journey-stack.align-right {
  margin-left: auto;
}
.journey-label {
  margin: 0 0 14px 2px;
  color: rgba(255,255,255,.72);
  font-family: var(--font-primary);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 0 6px 24px rgba(0,0,0,.24);
}
.journey-copy {
  width: 100%;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 20px;
  background: rgba(4,38,31,.44);
  box-shadow: 0 22px 58px rgba(0,0,0,.2);
  backdrop-filter: blur(7px);
}
.journey-copy h2 {
  margin: 0 0 22px;
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 300;
  line-height: 1.05;
  text-transform: uppercase;
}
.journey-copy a {
  display: inline-block;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.72);
  padding-bottom: 5px;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-decoration: none;
  text-transform: uppercase;
}
.journey-copy a:hover,
.journey-copy a:focus-visible {
  color: var(--gold);
  border-color: var(--gold);
}
.section-divider {
  padding: clamp(22px, 2.8vw, 36px) clamp(24px, 7vw, 110px);
  border-top: 1px solid rgba(18,63,53,.08);
  border-bottom: 1px solid rgba(18,63,53,.1);
  background: var(--white);
  color: var(--green);
  text-align: center;
}
.section-divider p {
  margin: 0;
  font-family: var(--font-primary);
  font-size: clamp(16px, 1.65vw, 23px);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .03em;
}
@media (max-width: 700px) {
  .journey-section {
    min-height: 64svh;
    padding: 20px;
  }
  .journey-stack.align-right {
    margin-left: 0;
  }
  .journey-label {
    font-size: clamp(30px, 10vw, 44px);
  }
  .journey-copy {
    padding: 20px;
  }
  .journey-stay { background-position: 58% center; }
  .journey-explore { background-position: 52% center; }
  .journey-adventure { background-position: 50% center; }
  .journey-entertain { background-position: 54% center; }
  .journey-why { background-position: 50% center; }
}

.split-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100svh - 64px);
  background: var(--green-deep);
  color: var(--white);
}
.feature-image {
  min-height: 0;
  background-size: cover;
  background-position: center left;
  background-repeat: no-repeat;
  background-color: var(--green);
}
.golf-image { background-image: url("assets/golf-course-fairway.jpg"); }
.feature-panel {
  display: grid;
  align-content: center;
  padding: clamp(42px, 5.5vw, 84px);
}
.feature-panel h2 {
  font-size: clamp(36px, 3.7vw, 58px);
  line-height: .96;
  font-weight: 300;
  text-transform: uppercase;
}
.not-golfer h2, .closing-copy h2 {
  font-size: clamp(44px, 5.8vw, 88px);
  line-height: .9;
  font-weight: 300;
  text-transform: uppercase;
}
.feature-panel p, .not-golfer p, .closing-copy p {
  font-size: clamp(19px, 1.7vw, 24px);
  line-height: 1.38;
}
.check-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 9px;
}
.check-list li {
  border-top: 1px solid rgba(255,255,255,.24);
  padding-top: 9px;
  font-size: clamp(16px, 1.35vw, 19px);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.feature-icon-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 4px 0 10px;
}
.feature-icon-link {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  color: var(--green-deep);
  background: var(--gold);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}
button.feature-icon-link {
  border: 0;
  font: inherit;
  cursor: pointer;
}
.feature-icon-link span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(8,42,35,.26);
  border-radius: 999px;
  color: var(--white);
  background: var(--green-deep);
  font-size: 22px;
  line-height: 1;
}
.feature-icon-link strong {
  border-bottom: 0;
  padding-bottom: 0;
  font-size: 13px;
}

.not-golfer {
  min-height: clamp(560px, 72svh, 720px);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0;
  background: var(--cream);
  color: var(--green);
  overflow: hidden;
}
.not-golfer-media {
  min-height: 100%;
  align-self: stretch;
  background: url("assets/home-dubai-experiences-collage.jpeg") center / cover no-repeat;
}
.not-golfer-copy {
  display: grid;
  align-content: center;
  min-height: 100%;
  padding: clamp(34px, 4.4vw, 66px);
  background: var(--cream);
}
.not-golfer-copy .eyebrow {
  color: var(--gold);
}
.not-golfer h2 {
  font-size: clamp(36px, 3.7vw, 58px);
  line-height: .96;
}

.concierge {
  padding: clamp(28px, 3.8vw, 52px) clamp(24px, 7vw, 110px);
  background: #fffdf7;
  border-top: 1px solid rgba(18,63,53,.1);
  border-bottom: 1px solid rgba(18,63,53,.1);
}
.section-head { max-width: 920px; margin-bottom: 28px; }
.section-head h2 { font-size: clamp(38px, 4.6vw, 70px); line-height: .96; }
.section-head .feature-icon-links { margin-top: 18px; }
.concierge .section-head {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 22px;
  align-items: end;
  margin-bottom: 24px;
}
.concierge .section-head .eyebrow {
  grid-column: 1 / -1;
}
.concierge .section-head h2 {
  max-width: 760px;
  font-size: clamp(34px, 4vw, 60px);
}
.concierge .section-head .feature-icon-links {
  margin: 0 0 4px;
  justify-content: flex-end;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  padding-bottom: 0;
  background: rgba(18,63,53,.16);
  border: 1px solid rgba(18,63,53,.16);
}
.service-grid article {
  min-height: 168px;
  background: var(--paper);
  color: var(--green);
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.service-grid article:nth-child(even) { background: #f1ede2; }
.service-grid span { color: var(--gold); letter-spacing: .14em; font-weight: 700; }
.service-grid strong {
  display: block;
  font-size: clamp(26px, 2.25vw, 34px);
  line-height: .98;
  font-weight: 400;
  text-transform: uppercase;
}
.service-grid p { margin: 12px 0 0; font-size: 16px; line-height: 1.3; color: rgba(18,63,53,.78); }

.how-it-works {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  min-height: calc(100svh - 64px);
  background: var(--paper);
}
.oryx-panel { background: url("assets/oryx-desert.jpg") center 46% / cover no-repeat; min-height: 0; }
.steps {
  align-self: center;
  padding: clamp(34px, 5vw, 72px);
}
.steps h2 {
  max-width: 780px;
  font-size: clamp(36px, 3.75vw, 58px);
  line-height: .96;
  margin-bottom: 24px;
}
.steps ol {
  list-style: none;
  margin: 18px 0 24px;
  padding: 0;
  display: grid;
  gap: 9px;
}
.steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  border-top: 1px solid rgba(18,63,53,.24);
  padding-top: 10px;
  font-size: clamp(17px, 1.55vw, 22px);
  line-height: 1.18;
}
.steps li span { color: #9a6d19; font-weight: 700; }

.how-page-hero {
  min-height: calc(100svh - 64px);
}
.how-hero-media {
  background-image: url("assets/oryx-desert.jpg");
  background-position: center 45%;
}
.how-flow-section {
  padding: clamp(46px, 5vw, 76px) clamp(24px, 5vw, 70px) clamp(18px, 2.2vw, 30px);
  background: var(--cream);
}
.how-flow-intro {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) 1fr;
  gap: clamp(28px, 5vw, 74px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.how-flow-intro h2 {
  max-width: 680px;
  font-size: clamp(36px, 4.8vw, 72px);
  line-height: .96;
}
.how-flow-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border: 1px solid rgba(18,63,53,.22);
  border-radius: 34px;
  overflow: hidden;
}
.how-flow-grid article {
  min-height: 255px;
  padding: clamp(24px, 2.4vw, 34px);
  display: grid;
  align-content: start;
  border-right: 1px solid rgba(18,63,53,.18);
  background: rgba(255,255,255,.34);
}
.how-flow-grid article:last-child { border-right: 0; }
.how-flow-grid span {
  color: var(--gold);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 28px;
}
.how-flow-grid h3 {
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: .98;
  text-transform: uppercase;
}
.how-flow-grid p {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.35;
  color: rgba(18,63,53,.76);
}
.planning-brief-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr auto;
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(46px, 5.8vw, 76px) clamp(24px, 5vw, 70px);
  background: var(--green-deep);
  color: var(--white);
}
.how-flow-section + .planning-brief-section {
  margin-top: 0;
}
.planning-brief-copy h2 {
  font-size: clamp(32px, 4vw, 58px);
  line-height: .96;
  max-width: 620px;
}
.planning-brief-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.planning-brief-list span {
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 999px;
  padding: 10px 16px;
  color: rgba(255,255,255,.86);
  font-size: 17px;
  line-height: 1.1;
}
.talk-first-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(42px, 5vw, 70px) clamp(24px, 5vw, 70px);
  background: var(--cream);
  border-top: 1px solid rgba(18,63,53,.12);
}
.talk-first-copy {
  max-width: 920px;
}
.talk-first-copy h2 {
  font-size: clamp(38px, 4.8vw, 74px);
  line-height: .96;
}
.talk-first-copy p {
  max-width: 780px;
  margin-top: 18px;
  font-size: clamp(20px, 1.8vw, 27px);
  line-height: 1.32;
  color: rgba(18,63,53,.78);
}
.talk-first-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.talk-first-actions .primary-button,
.talk-first-actions .feature-icon-link {
  white-space: nowrap;
}
.talk-first-actions .primary-button {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.closing-cta {
  min-height: 78vh;
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--white);
  padding: 90px 24px;
  isolation: isolate;
  overflow: hidden;
}
.closing-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/night-golf.jpg") center / cover no-repeat;
}
.closing-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(7,37,31,.74);
}
.closing-copy { max-width: 920px; }
.closing-copy h2 { font-size: clamp(42px, 5vw, 76px); }
.light-button { background: var(--white); color: var(--green-deep); margin-top: 8px; }

footer {
  position: relative;
  isolation: isolate;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  background: var(--green-deep);
  color: rgba(255,255,255,.78);
  padding: 42px clamp(24px, 5vw, 60px) 26px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
}
.footer-talk {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2vw, 28px);
  padding: 20px 24px 30px;
  background: #fffdf7;
  color: var(--green);
  text-align: center;
}
.footer-talk p {
  margin: 0;
  font-size: clamp(19px, 1.8vw, 28px);
  font-weight: 400;
  line-height: 1;
}
.footer-talk a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.footer-talk a:hover {
  background: var(--green-deep);
  color: var(--white);
}
footer::before,
footer::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: -5%;
  width: 110%;
  pointer-events: none;
}
footer > * {
  position: relative;
  z-index: 1;
}
footer::before {
  top: -44px;
  height: 74px;
  border-top: 6px solid #28a9a5;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  background: var(--green-deep);
}
footer::after {
  top: -36px;
  height: 62px;
  border-top: 2px solid var(--gold);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
footer a { color: var(--gold); text-decoration: none; }
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}
.footer-contact a {
  white-space: nowrap;
}

.whatsapp-float {
  position: fixed;
  z-index: 35;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-deep);
  box-shadow: 0 14px 35px rgba(0,0,0,.24);
  transition: bottom .22s ease, transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover { transform: translateY(-2px); }
.whatsapp-float svg { width: 24px; fill: currentColor; }

.inquiry {
  width: min(980px, calc(100% - 28px));
  max-height: 94vh;
  border: 0;
  padding: clamp(30px, 5vw, 62px);
  background: var(--paper);
  color: var(--green);
}
.inquiry::backdrop { background: rgba(7,37,31,.86); backdrop-filter: blur(8px); }
.close-inquiry {
  position: absolute;
  right: 18px;
  top: 10px;
  border: 0;
  background: transparent;
  color: var(--green);
  font-size: 42px;
}
.inquiry h2 {
  margin-bottom: 34px;
  font-size: clamp(42px, 5vw, 74px);
  line-height: .9;
  font-weight: 300;
  text-transform: uppercase;
}
.inquiry form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
}
.inquiry label { display: grid; gap: 7px; }
.inquiry label span {
  color: #9a6d19;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 700;
  font-size: 13px;
}
.inquiry input, .inquiry textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(18,63,53,.42);
  background: transparent;
  color: var(--green);
  padding: 10px 0;
  outline: none;
  font-size: 19px;
}
.inquiry textarea {
  border: 1px solid rgba(18,63,53,.42);
  padding: 12px;
  resize: vertical;
}
.wide, .submit-inquiry, .form-status { grid-column: 1 / -1; }
.submit-inquiry {
  border: 0;
  background: var(--green);
  color: var(--white);
  padding: 17px 20px;
  display: flex;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 800;
}
.submit-inquiry b { color: var(--gold); }
.form-status { margin: 0; min-height: 20px; }
.dialog-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
}
.dialog-contact a,
.dialog-whatsapp {
  color: var(--green);
  text-decoration-color: var(--gold);
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .footer-talk {
    flex-direction: column;
    gap: 12px;
    padding: 20px 20px 28px;
  }
  .site-header { grid-template-columns: auto 1fr auto auto auto; gap: 6px; }
  .desktop-nav { display: none; }
  .nav-cta {
    display: block;
    justify-self: end;
    width: max-content;
    padding: 8px 10px;
    font-size: 10px;
    letter-spacing: .08em;
    white-space: nowrap;
  }
  .header-socials {
    gap: 3px;
  }
  .header-socials a {
    width: 26px;
    height: 26px;
    font-size: 8px;
  }
  .home-page .site-header {
    min-height: 58px;
    padding: 7px 14px;
    background: linear-gradient(180deg, rgba(7,37,31,.5), rgba(7,37,31,0));
  }
  .home-page .site-header.scrolled,
  .home-page.menu-open .site-header {
    background: linear-gradient(180deg, rgba(7,37,31,.72), rgba(7,37,31,.08));
  }
  .home-page .brand img {
    width: 88px;
  }
  .home-page .menu-toggle {
    width: 38px;
    height: 38px;
    color: var(--white);
    border-color: rgba(255,255,255,.72);
    background: rgba(7,37,31,.14);
    backdrop-filter: blur(8px);
  }
  .mobile-menu {
    background:
      linear-gradient(180deg, rgba(247,244,236,.98), rgba(232,216,184,.96));
    color: var(--green-deep);
    border-top: 1px solid rgba(18,63,53,.12);
    backdrop-filter: blur(18px);
  }
  .home-page.menu-open .site-header {
    color: var(--green-deep);
    background: rgba(247,244,236,.96);
    border-bottom: 1px solid rgba(18,63,53,.1);
    backdrop-filter: blur(18px);
  }
  .home-page.menu-open .menu-toggle {
    color: var(--green-deep);
    border-color: rgba(18,63,53,.3);
    background: rgba(255,255,255,.55);
  }
  .weather-widget {
    gap: 6px;
    min-height: 34px;
    padding: 6px 9px;
  }
  .hero-weather {
    top: 14px;
    right: 16px;
  }
  .weather-place {
    display: none;
  }
  .weather-panel {
    right: -54px;
  }
  .home-page .hero-weather {
    top: 76px;
    right: 18px;
    box-sizing: border-box;
    width: auto;
    min-height: 34px;
    padding: 0;
    gap: 6px;
    justify-content: flex-start;
    overflow: visible;
    background: transparent;
    color: var(--white);
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }
  .home-page .hero-weather .weather-icon {
    flex: 0 0 26px;
    width: 26px;
    height: 26px;
    font-size: 15px;
  }
  .home-page .hero-weather .weather-place {
    display: inline;
    color: var(--white);
    font-size: 9px;
  }
  .home-page .hero-weather .weather-time,
  .home-page .hero-weather .weather-temp {
    font-size: 9px;
    letter-spacing: .06em;
  }
  .home-page .hero-weather .weather-time {
    color: var(--white);
  }
  .home-page .hero-weather .weather-temp {
    border-left: 0;
    padding-left: 0;
  }
  .menu-toggle { display: grid; justify-self: end; }
  .page-hero, .tournament-section, .golf-details, .selected-course {
    grid-template-columns: 1fr;
  }
  .experience-builder { grid-template-columns: 1fr; }
  .experience-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .concierge-selector {
    grid-template-columns: 1fr;
  }
  .concierge-detail {
    grid-template-columns: 1fr;
  }
  .concierge-hotel-collage {
    grid-column: 1 / -1;
  }
  .concierge-flow,
  .concierge-itinerary {
    grid-template-columns: 1fr;
  }
  .concierge-flow-image {
    min-height: 48vh;
  }
  .page-hero { min-height: auto; }
  .page-hero-media { min-height: 52vh; order: -1; }
  .experiences-hero .page-hero-media {
    min-height: 34vh;
    margin-top: 0;
  }
  .planning-grid { grid-template-columns: 1fr; }
  .planning-grid article { min-height: auto; }
  .beyond-golf-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .beyond-golf-grid article,
  .beyond-golf-grid article:nth-child(1),
  .beyond-golf-grid article:nth-child(2),
  .beyond-golf-grid article:nth-child(3),
  .beyond-golf-grid article:nth-child(4),
  .beyond-golf-grid article:nth-child(5),
  .beyond-golf-grid article:nth-child(6) {
    grid-column: span 1;
  }
  .course-showcase { grid-template-columns: 1fr; grid-template-rows: auto; }
  .course-card, .course-card.large { min-height: 62vh; grid-row: auto; }
  .selected-course-media { min-height: 48vh; }
  .detail-list li { grid-template-columns: 1fr; gap: 6px; }
  .hero, .intro-section, .split-feature, .not-golfer, .how-it-works {
    grid-template-columns: 1fr;
  }
  .uae-proof-section {
    grid-template-columns: 1fr 1fr;
  }
  .then-now-section,
  .why-uae-cta {
    grid-template-columns: 1fr;
  }
  .why-uae-cta-actions {
    justify-content: flex-start;
  }
  .how-flow-intro,
  .planning-brief-section,
  .concierge .section-head,
  .talk-first-section {
    grid-template-columns: 1fr;
  }
  .concierge .section-head .feature-icon-links {
    justify-content: flex-start;
  }
  .talk-first-actions {
    justify-content: flex-start;
  }
  .how-flow-grid {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }
  .how-flow-grid article {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(18,63,53,.18);
  }
  .how-flow-grid article:last-child {
    border-bottom: 0;
  }
  .hero { padding-top: 48px; }
  .home-page .hero {
    min-height: 100svh;
    align-content: end;
    padding: 128px 22px 38px;
  }
  .home-page .hero-bg {
    transform: scale(1.02);
    background-position: center;
  }
  .home-page .hero::after {
    background:
      linear-gradient(180deg, rgba(7,37,31,.24), rgba(7,37,31,.05) 28%, rgba(7,37,31,.46) 100%),
      linear-gradient(90deg, rgba(7,37,31,.18), rgba(7,37,31,.02));
  }
  .home-page .hero h1 {
    max-width: 94vw;
    font-size: clamp(38px, 10.8vw, 58px);
    line-height: .94;
    margin-bottom: 0;
  }
  .home-page .hero-lede {
    max-width: 82vw;
    margin-bottom: 18px;
  }
  .home-page .hero-card {
    display: none;
  }
  .hero-card { max-width: 420px; }
  .feature-image, .oryx-panel, .not-golfer-media { min-height: 55vh; }
  .feature-panel, .steps { padding: 64px 24px; }
  .not-golfer { padding: 0; }
  .not-golfer-copy { margin: 0; padding: 58px 24px; }
  .service-grid { grid-template-columns: 1fr; overflow: visible; }
  footer {
    flex-direction: column;
    margin-top: 30px;
    padding-top: 34px;
  }
  footer::before {
    top: -31px;
    height: 50px;
    border-top-width: 4px;
  }
  footer::after {
    top: -25px;
    height: 42px;
  }
  .footer-contact {
    justify-content: flex-start;
  }
}

@media (min-width: 981px) and (max-height: 820px) {
  .page-hero {
    min-height: auto;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .page-hero-copy h1 {
    font-size: clamp(44px, 5vw, 72px);
  }
  .golf-page-hero .page-hero-copy h1,
  .golf-overview .section-head h2 {
    font-size: clamp(32px, 3vw, 46px);
  }
  .page-hero-media {
    min-height: 520px;
  }
  .experiences-hero {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  .experiences-hero .page-hero-media {
    min-height: 300px;
  }
  .experiences-hero .page-hero-copy h1 {
    font-size: clamp(32px, 3.2vw, 46px);
  }
  .golf-page-hero .page-hero-media {
    min-height: 300px;
  }
  .golf-page-hero {
    padding-top: 26px;
    padding-bottom: 14px;
  }
  .planning-grid article {
    min-height: 150px;
    padding: 18px 24px;
  }
  .course-card.large {
    min-height: 540px;
  }
  .course-selector-section {
    padding-top: 24px;
    padding-bottom: 30px;
  }
  .course-selector-section .section-head {
    margin-bottom: 16px;
  }
  .course-selector-section .section-head h2 {
    font-size: clamp(32px, 3vw, 46px);
  }
  .course-selector-tool {
    gap: 12px;
  }
  .selected-course,
  .selected-course-media {
    min-height: 440px;
  }
  .selected-course-copy {
    width: min(460px, 40%);
    margin: 22px;
    padding: 18px 22px;
  }
  .selected-course-copy h3 {
    font-size: clamp(24px, 2.15vw, 34px);
    margin-bottom: 8px;
  }
  .selected-course-copy p:not(.eyebrow) {
    font-size: clamp(13px, .9vw, 15px);
    line-height: 1.24;
  }
  .course-tags {
    margin-top: 14px;
  }
  .tournament-copy h2, .details-copy h2, .page-cta h2 {
    font-size: clamp(40px, 4.3vw, 64px);
  }
  .hero {
    padding-top: 34px;
    padding-bottom: 34px;
  }
  .hero h1 {
    font-size: clamp(40px, 4.45vw, 70px);
    margin-bottom: 16px;
  }
  .hero-lede {
    max-width: 620px;
    margin-bottom: 18px;
    font-size: clamp(17px, 1.35vw, 21px);
  }
  .hero-card {
    padding: 18px;
  }
  .hero-card strong {
    font-size: 24px;
  }
  .primary-button, .light-button {
    padding: 13px 22px;
  }
  .intro-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }
  .intro-copy h2 {
    font-size: clamp(36px, 3.9vw, 60px);
  }
  .intro-text p {
    font-size: clamp(18px, 1.55vw, 23px);
    line-height: 1.3;
    margin-bottom: 22px;
  }
  .steps {
    padding: 30px 52px;
  }
  .steps h2 {
    font-size: clamp(34px, 3.45vw, 54px);
    margin-bottom: 16px;
  }
  .steps ol {
    gap: 7px;
    margin: 14px 0 18px;
  }
  .steps li {
    grid-template-columns: 38px 1fr;
    gap: 12px;
    padding-top: 8px;
    font-size: clamp(16px, 1.25vw, 19px);
    line-height: 1.14;
  }
  .feature-panel {
    padding: 30px 54px;
  }
  .feature-panel h2 {
    font-size: clamp(34px, 3.55vw, 56px);
    margin-bottom: 14px;
  }
  .feature-panel p {
    font-size: 19px;
    line-height: 1.26;
    margin-bottom: 0;
  }
  .check-list {
    gap: 7px;
  }
  .check-list li {
    padding-top: 7px;
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  .brand { padding: 5px 8px; }
  .brand img { width: 76px; max-height: 38px; }
  .site-header { min-height: 56px; padding: 8px 16px; }
  .weather-widget {
    max-width: 120px;
    gap: 5px;
    padding: 6px 8px;
  }
  .weather-icon {
    width: 26px;
    height: 26px;
    font-size: 15px;
  }
  .weather-time,
  .weather-temp {
    font-size: 10px;
    letter-spacing: .06em;
  }
  .weather-panel {
    right: 0;
    width: min(260px, calc(100vw - 28px));
  }
  .home-page .hero-weather {
    max-width: none;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    backdrop-filter: none;
  }
  .home-page .hero-weather .weather-panel {
    right: 0;
    width: min(270px, calc(100vw - 32px));
  }
  .page-hero, .golf-overview, .golf-beyond-section, .course-selector-section, .tournament-section, .golf-details, .page-cta {
    padding-left: 20px;
    padding-right: 20px;
  }
  .uae-proof-section {
    grid-template-columns: 1fr;
    padding: 1px 20px 20px;
  }
  .sun-card,
  .proof-card {
    min-height: 240px;
    padding: 24px;
  }
  .then-now-section,
  .why-uae-cta {
    padding-left: 20px;
    padding-right: 20px;
  }
  .golf-overview {
    padding-top: 34px;
    padding-bottom: 34px;
  }
  .planning-grid {
    margin-top: 20px;
  }
  .planning-grid article {
    min-height: auto;
    border-radius: 22px;
  }
  .planning-grid h3 {
    font-size: 20px;
  }
  .beyond-golf-grid {
    grid-template-columns: 1fr;
  }
  .beyond-golf-grid article {
    min-height: 260px;
  }
  .course-selector-section {
    padding-top: 26px;
  }
  .course-picker-heading {
    align-items: start;
    flex-direction: column;
    gap: 6px;
  }
  .mood-board, .experience-builder, .concierge-itinerary {
    padding-left: 20px;
    padding-right: 20px;
  }
  .concierge-detail {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: auto;
    padding: 24px;
  }
  .concierge-hotel-collage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: none;
    grid-auto-rows: 92px;
    min-height: 0;
  }
  .concierge-hotel-collage.compact-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-areas: none;
    grid-auto-rows: 92px;
  }
  .concierge-hotel-collage img:first-child,
  .concierge-hotel-collage img:nth-child(2),
  .concierge-hotel-collage img:nth-child(3),
  .concierge-hotel-collage img:nth-child(4),
  .concierge-hotel-collage img:nth-child(5),
  .concierge-hotel-collage img:nth-child(6),
  .concierge-hotel-collage img:nth-child(7),
  .concierge-hotel-collage img:nth-child(8),
  .concierge-hotel-collage img:nth-child(9),
  .concierge-hotel-collage img:nth-child(10),
  .concierge-hotel-collage img:nth-child(11),
  .concierge-hotel-collage img:nth-child(12) {
    grid-column: span 1;
    grid-row: span 1;
  }
  .concierge-story-image {
    height: 150px;
  }
  .concierge-hotel-collage img:first-child {
    grid-column: span 2;
    grid-row: span 2;
  }
  .concierge-flow-copy {
    padding: 58px 20px;
  }
  .flow-list article,
  .itinerary-strip article {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .itinerary-strip article {
    border-radius: 28px;
    min-height: auto;
    padding: 24px;
  }
  .mood-tile,
  .mood-tile.all {
    min-height: 48px;
    width: 100%;
    max-width: none;
    padding: 12px 14px;
  }
  .mood-tile span { white-space: normal; }
  .experience-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }
  .experience-card.image-card,
  .experience-card.tall {
    grid-column: auto;
    min-height: 300px;
    grid-row: auto;
  }
  .page-hero-copy h1 {
    font-size: clamp(42px, 13vw, 68px);
  }
  .golf-page-hero .page-hero-copy h1,
  .golf-overview .section-head h2 {
    font-size: clamp(32px, 10vw, 46px);
  }
  .page-hero-copy p:not(.eyebrow) {
    font-size: 20px;
  }
  .page-hero-media, .course-card, .course-card.large {
    min-height: 420px;
  }
  .experiences-hero .page-hero-media {
    min-height: 260px;
  }
  .experiences-hero .page-hero-copy h1 {
    font-size: clamp(34px, 10vw, 48px);
  }
  .mood-board {
    padding-top: 30px;
  }
  .golf-page-hero .page-hero-media {
    min-height: 300px;
  }
  .selected-course {
    min-height: 520px;
  }
  .selected-course-media {
    min-height: 520px;
  }
  .selected-course-copy {
    width: auto;
    margin: 16px;
    padding: 20px;
    align-self: end;
    justify-self: stretch;
  }
  .course-selector-section .section-head h2 {
    font-size: clamp(32px, 10vw, 46px);
  }
  .selected-course-copy h3 {
    font-size: clamp(28px, 8vw, 38px);
  }
  .selected-course-copy p:not(.eyebrow) {
    font-size: 15px;
  }
  .course-control select {
    border-radius: 28px;
    font-size: 18px;
  }
  .course-card h2 {
    font-size: clamp(38px, 12vw, 58px);
  }
  .course-card h3 {
    font-size: clamp(28px, 9vw, 42px);
  }
  .tournament-copy h2, .details-copy h2, .page-cta h2 {
    font-size: clamp(38px, 12vw, 60px);
  }
  .hero { padding: 40px 20px 42px; }
  .hero h1 { font-size: clamp(44px, 15vw, 72px); }
  .hero-card { padding: 20px; }
  .intro-section, .concierge { padding: 68px 20px; }
  .inquiry form { grid-template-columns: 1fr; }
  .wide, .submit-inquiry, .form-status { grid-column: 1; }
}

@media (max-width: 560px) {
  .site-header,
  .home-page .site-header {
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    min-height: 52px;
    grid-template-columns: 70px minmax(0, 1fr) 34px 105px 38px;
    gap: 4px;
    padding: 6px 10px 6px 8px;
  }
  .brand img,
  .home-page .brand img {
    width: 70px;
    max-height: 42px;
  }
  .menu-toggle,
  .home-page .menu-toggle {
    width: 34px;
    height: 34px;
  }
  .nav-cta {
    width: 105px;
    max-width: 105px;
    min-width: 0;
    padding: 7px 8px;
    font-size: 8px;
    line-height: 1.05;
    letter-spacing: .045em;
    text-align: center;
    white-space: normal;
    overflow: hidden;
  }
  .header-socials {
    width: 38px;
    max-width: 38px;
    justify-self: end;
    gap: 2px;
  }
  .header-socials a {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
  }
  .why-story-page .why-uae-hero {
    padding: 8px 10px 12px;
  }
  .why-story-page .why-uae-hero .page-hero-copy {
    padding: 26px 22px;
    border-radius: 20px 20px 0 0;
  }
  .why-story-page .why-uae-hero .page-hero-copy h1 {
    margin: 8px 0 10px;
    font-size: 31px;
    line-height: 1;
  }
  .why-story-page .why-uae-hero .page-hero-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.32;
  }
  .why-story-page .why-uae-hero-media {
    min-height: 48svh;
    border-radius: 0 0 20px 20px;
  }
  .oryx-concept-section {
    padding: 8px 10px 14px;
  }
  .oryx-concept-mark {
    min-height: 150px;
    padding: 20px;
    border-radius: 20px 20px 0 0;
  }
  .oryx-concept-mark img {
    width: min(58vw, 190px);
  }
  .oryx-concept-copy {
    padding: 24px 22px 26px;
    border-radius: 0 0 20px 20px;
  }
  .oryx-concept-copy h2,
  .uae-facts-heading h2,
  .why-story-page .then-now-copy h2 {
    font-size: 30px;
    line-height: 1;
  }
  .oryx-concept-copy h2 {
    margin: 6px 0 11px;
  }
  .oryx-concept-copy p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.36;
  }
  .oryx-concept-copy p + p {
    margin-top: 10px;
  }
  .uae-facts-heading {
    padding: 18px 18px 6px;
  }
  .uae-facts-heading h2 {
    margin-top: 4px;
  }
  .why-story-page .uae-proof-section {
    grid-template-columns: 1fr;
    padding: 6px 10px 16px;
  }
  .why-story-page .sun-card,
  .why-story-page .proof-card {
    min-height: 150px;
    padding: 20px;
  }
  .why-story-page .sun-card span,
  .why-story-page .proof-card span {
    font-size: 32px;
    line-height: .95;
  }
  .why-story-page .sun-card h2,
  .why-story-page .proof-card h3 {
    margin-top: 8px;
    font-size: 20px;
  }
  .why-story-page .sun-card p,
  .why-story-page .proof-card p {
    font-size: 14px;
    line-height: 1.3;
  }
  .why-story-page .then-now-section,
  .why-story-page .why-uae-cta {
    padding: 26px 18px;
  }
  .why-story-page .then-now-copy p {
    margin-top: 10px;
    font-size: 15px;
  }
  .why-story-page .then-now-image {
    border-radius: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}
