/* =========================================================
   Getaways & Co. — Stylesheet
   Design tokens
   ========================================================= */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root{
  /* Colour tokens */
  --navy-deep:   #071427;
  --navy:        #0B2340;
  --navy-light:  #173A66;
  --gold:        #C9A24E;
  --gold-light:  #E7CE8C;
  --gold-deep:   #816319;  /* accessible gold for small text on light backgrounds */
  --ivory:       #F8F3E9;
  --cream:       #F1E9D8;
  --white:       #FFFFFF;
  --ink:         #1C2430;
  --ink-soft:    rgba(28,36,48,0.68);

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Jost', 'Helvetica Neue', Arial, sans-serif;

  /* Rhythm */
  --section-pad: clamp(64px, 9vw, 128px);
  --container-w: 1200px;
  --radius: 6px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}
img{ max-width:100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family: inherit; cursor:pointer; }
input, select, textarea{ font-family: inherit; font-size:1rem; }

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; }
}

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

/* Typography ------------------------------------------------ */
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  margin: 0 0 0.5em;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark p{ color: var(--white); }

h1{ font-size: clamp(3rem, 6vw, 5.4rem); font-weight: 300; }
h2{ font-size: clamp(2.3rem, 4.2vw, 3.5rem); }
h3{ font-size: clamp(1.45rem, 2.2vw, 1.9rem); }

p{ margin:0 0 1em; color: var(--ink-soft); }
.on-dark p{ color: rgba(255,255,255,0.78); }

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow::before{
  content:"";
  width: 26px;
  height: 1px;
  background: var(--gold);
  display:inline-block;
}

.lede{
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  max-width: 46ch;
}

.section-head{
  max-width: 640px;
  margin: 0 auto 56px;
  text-align:center;
}
.section-head.left{ margin: 0 0 48px; text-align:left; }

/* Buttons ----------------------------------------------------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  white-space: nowrap;
}
.btn-gold{
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--navy-deep);
  box-shadow: 0 8px 24px -10px rgba(201,162,78,0.6);
}
.btn-gold:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(201,162,78,0.75); }

.btn-outline{
  border-color: rgba(255,255,255,0.55);
  color: var(--white);
  background: transparent;
}
.btn-outline:hover{ border-color: var(--gold-light); color: var(--gold-light); transform: translateY(-2px); }

.btn-outline-navy{
  border-color: var(--navy);
  color: var(--navy);
  background: transparent;
}
.btn-outline-navy:hover{ background: var(--navy); color: var(--white); transform: translateY(-2px); }

.btn-block{ width:100%; }

/* Header / Nav -------------------------------------------------- */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 100;
  padding: 22px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-solid, .site-header.no-hero{
  background: rgba(11,35,64,0.96);
  backdrop-filter: blur(6px);
  padding: 14px 0;
  border-color: rgba(201,162,78,0.18);
  box-shadow: 0 8px 30px -18px rgba(0,0,0,0.6);
}
.nav-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand img{ width:44px; height:44px; }
.brand-word{
  font-family: var(--font-display);
  font-size: 1.28rem;
  letter-spacing: 0.01em;
  color: var(--white);
  line-height:1.1;
}
.brand-word small{
  display:block;
  font-family: var(--font-body);
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  color: var(--gold-light);
  font-weight: 500;
  margin-top: 2px;
}

.nav-links{
  display:flex;
  align-items:center;
  gap: 40px;
}
.nav-links a{
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:0; right:100%;
  bottom:-2px;
  height:1px;
  background: var(--gold);
  transition: right .35s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after{ right:0; }
.nav-links a.active{ color: var(--gold-light); }
.nav-cta{ margin-left: 6px; }

.nav-toggle{
  display:none;
  background:none;
  border:0;
  width: 34px;
  height: 26px;
  position: relative;
}
/* Invisible expanded hit area so the menu button meets a comfortable
   mobile touch-target size without changing its visible icon. */
.nav-toggle::before{
  content:"";
  position:absolute;
  inset: -11px -13px;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after{
  content:"";
  position:absolute;
  left:0; right:0;
  height:2px;
  background: var(--white);
  transition: transform .3s var(--ease), opacity .3s var(--ease), top .3s var(--ease);
}
.nav-toggle span{ top:12px; }
.nav-toggle span::before{ top:-9px; }
.nav-toggle span::after{ top:9px; }
.nav-toggle.is-open span{ background: transparent; }
.nav-toggle.is-open span::before{ top:0; transform: rotate(45deg); }
.nav-toggle.is-open span::after{ top:0; transform: rotate(-45deg); }

@media (max-width: 900px){
  .nav-links{
    position: fixed;
    inset: 0 0 0 30%;
    flex-direction: column;
    justify-content:center;
    align-items:flex-start;
    padding: 40px;
    background: var(--navy-deep);
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    gap: 28px;
  }
  .nav-links.is-open{ transform: translateX(0); }
  .nav-links a{ font-size: 1.1rem; }
  .nav-toggle{ display:block; z-index: 120; }
}

/* Hero ------------------------------------------------------- */
.hero{
  position:relative;
  min-height: 100vh;
  display:flex;
  align-items:center;
  color: var(--white);
  overflow:hidden;
  background: var(--navy-deep);
}
.hero-media{
  position:absolute; inset:0;
  z-index:0;
}
.hero-media img{ width:100%; height:100%; object-fit:cover; }
.hero-media::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(7,20,39,0.78) 0%, rgba(7,20,39,0.55) 45%, rgba(7,20,39,0.92) 100%);
}
.hero-content{
  position:relative;
  z-index:2;
  padding-top: 90px;
  max-width: 720px;
}
.hero-content .eyebrow{ color: var(--gold-light); }
.hero-content h1{ color: var(--white); }
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap: 18px;
  margin-top: 36px;
}
.hero-flight{
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  opacity:0.6;
}

.page-banner{
  position:relative;
  color: var(--white);
  padding: calc(var(--section-pad) + 60px) 0 96px;
  overflow:hidden;
}
.page-banner .hero-media::after{ background: linear-gradient(180deg, rgba(7,20,39,0.72), rgba(7,20,39,0.9)); }
.page-banner .container{ position:relative; z-index:2; }

/* Flight divider signature ------------------------------------ */
.flight-divider{
  position: relative;
  width: 100%;
  height: 90px;
  overflow: visible;
}
.flight-divider svg{ width:100%; height:100%; display:block; }

/* Sections ----------------------------------------------------- */
.section{ padding: var(--section-pad) 0; }
.section-navy{ background: var(--navy); }
.section-navy-deep{ background: var(--navy-deep); }
.section-cream{ background: var(--cream); }
.section-ivory{ background: var(--ivory); }

/* Featured getaway cards ---------------------------------------- */
.card-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.card-grid.cols-2{ grid-template-columns: repeat(2,1fr); }
@media (max-width: 980px){
  .card-grid{ grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px){
  .card-grid{ grid-template-columns: 1fr; }
}

.getaway-card{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  aspect-ratio: 3/4;
  display:block;
  isolation:isolate;
}
.getaway-card img{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  transition: transform 1s var(--ease);
}
.getaway-card::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(0deg, rgba(7,20,39,0.92) 0%, rgba(7,20,39,0.15) 55%, rgba(7,20,39,0.05) 100%);
  z-index:1;
  transition: background .4s var(--ease);
}
.getaway-card:hover img{ transform: scale(1.07); }
.card-body{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding: 26px;
  color: var(--white);
}
.card-body .card-tag{
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
  display:flex;
  align-items:center;
  gap:8px;
  opacity:0;
  transform: translateY(8px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
}
.getaway-card:hover .card-tag{ opacity:1; transform: translateY(0); }
.card-body h3{ color: var(--white); margin-bottom: 6px; }
.card-body .card-arrow{
  display:inline-flex; align-items:center; gap:8px;
  font-size:0.78rem; letter-spacing:0.1em; text-transform:uppercase; color: var(--gold-light);
}

/* How it works ---------------------------------------------------- */
.steps{
  position: relative;
  display:grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
  margin-top: 44px;
}
.steps-path{
  position:absolute;
  top: 34px;
  left: 6%;
  right: 6%;
  height: 2px;
  z-index:0;
}
.steps-path svg{ width:100%; height:60px; display:block; overflow:visible; }
.step{
  position:relative;
  z-index:1;
  text-align:left;
}
.step-num{
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--navy-deep);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: var(--font-display);
  font-size: 1.4rem;
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 22px;
}
@media (max-width: 900px){
  .steps{ grid-template-columns: 1fr; gap: 40px; }
  .steps-path{ display:none; }
}

/* Feature list (why us) --------------------------------------------- */
.feature-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 48px;
}
@media (max-width: 780px){ .feature-grid{ grid-template-columns: 1fr; } }
.feature{
  display:flex;
  gap: 18px;
  align-items:flex-start;
}
.feature-icon{
  flex: 0 0 auto;
  width: 46px; height:46px;
  border-radius:50%;
  border: 1px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  color: var(--gold-light);
}
.feature h3{ margin-bottom:6px; font-size:1.15rem; }
.feature p{ margin:0; }

/* CTA banner ---------------------------------------------------------- */
.cta-banner{
  position:relative;
  text-align:center;
  padding: 96px 24px;
  background: var(--navy-deep);
  color: var(--white);
  overflow:hidden;
}
.cta-banner .container{ position:relative; z-index:2; max-width: 620px; }
.cta-banner h2{ color:var(--white); }

/* Footer ----------------------------------------------------------- */
.site-footer{
  background: var(--navy-deep);
  color: rgba(255,255,255,0.7);
  padding-top: 72px;
}
.footer-top{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 860px){
  .footer-top{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .footer-top{ grid-template-columns: 1fr; }
}
.footer-brand .brand{ margin-bottom: 16px; }
.footer-tagline{
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.05rem;
}
.footer h4{
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-col ul li{ margin-bottom: 12px; }
.footer-col a:hover{ color: var(--gold-light); }
.footer-social{ display:flex; gap:14px; margin-top: 18px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%;
  border: 1px solid rgba(255,255,255,0.25);
  display:flex; align-items:center; justify-content:center;
  transition: border-color .3s, color .3s;
}
.footer-social a:hover{ border-color: var(--gold); color: var(--gold-light); }

.footer-legal{
  padding: 28px 0 32px;
  font-size: 0.8rem;
  line-height:1.7;
  color: rgba(255,255,255,0.45);
}
.footer-legal p{ color: rgba(255,255,255,0.45); margin-bottom: 10px; }
.footer-bottom{
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap: 12px;
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.78rem;
}
.footer-bottom ul{ display:flex; gap: 22px; flex-wrap:wrap; }
.footer-bottom a:hover{ color: var(--gold-light); }

/* Forms ----------------------------------------------------------------- */
.form-card{
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 56px);
  box-shadow: 0 30px 70px -40px rgba(7,20,39,0.35);
}
.form-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 28px;
}
.form-grid .full{ grid-column: 1 / -1; }
@media (max-width: 680px){
  .form-grid{ grid-template-columns: 1fr; }
}
.field{
  display:flex;
  flex-direction:column;
  gap: 8px;
}
.field label{
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 600;
}
.field .hint{
  font-size: 0.78rem;
  color: var(--ink-soft);
  font-weight: 400;
  text-transform:none;
  letter-spacing:0;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field input[type="number"],
.field select,
.field textarea{
  border: 1px solid rgba(11,35,64,0.18);
  border-radius: 3px;
  padding: 14px 16px;
  background: var(--ivory);
  color: var(--ink);
  transition: border-color .3s, box-shadow .3s;
}
.field textarea{ resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,78,0.18);
}
.field.required label::after{
  content: " *";
  color: var(--gold);
}

.radio-row, .check-row{
  display:flex;
  flex-wrap:wrap;
  gap: 12px;
}
.pill-choice{
  position:relative;
}
.pill-choice input{
  position:absolute;
  opacity:0;
  width:100%; height:100%;
  cursor:pointer;
  margin:0;
}
.pill-choice span{
  display:inline-flex;
  align-items:center;
  padding: 10px 18px;
  border: 1px solid rgba(11,35,64,0.2);
  border-radius: 30px;
  font-size: 0.85rem;
  color: var(--navy);
  transition: all .25s var(--ease);
  background: var(--ivory);
}
.pill-choice input:checked + span{
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.pill-choice input:focus-visible + span{
  box-shadow: 0 0 0 3px rgba(201,162,78,0.35);
}

.checkbox-line{
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--ink);
}
.checkbox-line input{ width:18px; height:18px; accent-color: var(--navy); }

.form-note{
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-top: 4px;
}

.form-success{
  display:none;
  text-align:center;
  padding: 60px 20px;
}
.form-success.is-visible{ display:block; }
.form-success .icon-check{
  width: 74px; height: 74px;
  border-radius:50%;
  border: 1px solid var(--gold);
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 26px;
  color: var(--gold);
}

/* Contact split ------------------------------------------------------- */
.split{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items:start;
}
@media (max-width: 900px){
  .split{ grid-template-columns: 1fr; }
}
.contact-detail{
  display:flex;
  gap: 16px;
  margin-bottom: 26px;
}
.contact-detail .feature-icon{ color: var(--gold); border-color: var(--gold); }

/* About page ------------------------------------------------------------ */
.about-media{
  border-radius: var(--radius);
  overflow:hidden;
  position: relative;
}
.about-media::after{
  content:"";
  position:absolute; inset:0;
  border: 1px solid rgba(201,162,78,0.4);
  margin: 14px;
  pointer-events:none;
}

.value-list{ margin-top: 20px; }
.value-list li{
  display:flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(11,35,64,0.1);
}
.value-list li:last-child{ border-bottom:none; }
.value-list .num{
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.1rem;
}

/* Getaways listing page --------------------------------------------------- */
.getaway-list{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 780px){ .getaway-list{ grid-template-columns: 1fr; } }
.getaway-panel{
  background: var(--white);
  border-radius: var(--radius);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.getaway-panel .media{ aspect-ratio: 4/3; overflow:hidden; }
.getaway-panel .media img{ width:100%; height:100%; object-fit:cover; transition: transform .8s var(--ease); }
.getaway-panel:hover .media img{ transform: scale(1.06); }
.getaway-panel .body{ padding: 26px 28px 30px; flex:1; display:flex; flex-direction:column; }
.getaway-panel .body p{ flex:1; }
.getaway-panel .link-cta{
  display:inline-flex; align-items:center; gap:8px;
  font-size:0.8rem; letter-spacing:0.1em; text-transform:uppercase; color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
  width: fit-content;
  transition: color .3s;
}
.getaway-panel .link-cta:hover{ color: var(--gold); }

/* Reveal on scroll ------------------------------------------------------- */
.reveal{
  opacity:0;
  transform: translateY(26px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.is-visible{ opacity:1; transform:none; }
.reveal-delay-1{ transition-delay: .1s; }
.reveal-delay-2{ transition-delay: .2s; }
.reveal-delay-3{ transition-delay: .3s; }
.reveal-delay-4{ transition-delay: .4s; }

/* Misc ------------------------------------------------------------------- */
.thin-rule{
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
}
.center{ text-align:center; }
.mt-lg{ margin-top: var(--section-pad); }
.visually-hidden{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}
.skip-link{
  position:absolute;
  left: 12px; top: -60px;
  background: var(--gold);
  color: var(--navy-deep);
  padding: 10px 18px;
  z-index: 999;
  transition: top .3s;
  font-size: 0.85rem;
  font-weight:600;
}
.skip-link:focus{ top: 12px; }

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


/* =========================================================
   V2 refinement — Getaways & Co.
   ========================================================= */
/* Guarantee readable text on dark photography/brand sections */
.hero .lede, .page-banner p, .cta-banner p { color: rgba(255,255,255,0.84); }
.page-banner h1, .page-banner h2 { color: var(--white); }
.site-footer, .site-footer a { color: rgba(255,255,255,0.78); }
.site-footer p, .site-footer .footer-copy { color: rgba(255,255,255,0.68); }
.site-footer .footer-tagline { color: var(--gold-light); }
.site-footer .brand-word { color: var(--white); }
.footer-legal p { color: rgba(255,255,255,0.58); }
.footer-bottom p { color: rgba(255,255,255,0.55); margin:0; }
.social-letter{font-size:1rem; line-height:1; font-weight:600;}

/* Give hero copy a little more depth when real photos are added */
.hero-media::after{
  background: linear-gradient(90deg, rgba(7,20,39,0.88) 0%, rgba(7,20,39,0.68) 46%, rgba(7,20,39,0.34) 100%),
              linear-gradient(180deg, rgba(7,20,39,0.26) 0%, rgba(7,20,39,0.18) 52%, rgba(7,20,39,0.72) 100%);
}
.hero-content .lede{max-width:52ch;}

/* Tighter internal page banners, especially Plan My Getaway */
.page-banner{ padding: calc(var(--section-pad) + 30px) 0 58px; min-height: 360px; display:flex; align-items:flex-end; }
.page-banner .container{ width:100%; }

/* Travel cards are designed around photography */
.getaway-card::before{
  background: linear-gradient(0deg, rgba(7,20,39,0.94) 0%, rgba(7,20,39,0.42) 48%, rgba(7,20,39,0.12) 100%);
}
.card-body .card-tag{opacity:0.9; transform:none;}

/* Mobile polish */
@media (max-width: 640px){
  :root{ --section-pad: 64px; }
  .container{ padding-left:18px; padding-right:18px; }
  .site-header{padding:14px 0;}
  .brand-word{font-size:1.05rem;}
  .brand img{width:38px;height:38px;}
  .hero{min-height:92svh;}
  .hero-content{padding-top:88px;}
  .hero-actions{display:grid;grid-template-columns:1fr;gap:12px;}
  .hero-actions .btn{width:100%;}
  .page-banner{min-height:300px;padding-top:130px;padding-bottom:42px;}
  .section-head{margin-bottom:36px;}
  .form-card{padding:24px 18px;}
  .footer-top{gap:30px;padding-bottom:40px;}
  .footer-social{margin-top:14px;}
  /* Prevent long uppercase button labels (e.g. the submit CTAs) from
     clipping past their button on the narrowest phone widths — wrap
     instead of overflowing. */
  .btn-block{ white-space:normal; text-align:center; line-height:1.3; }
}

/* =========================================================
   V2.1 readability audit — stronger contrast across dark UI
   ========================================================= */
/* Footer headings were inheriting the global dark heading colour because
   the original selector targeted .footer h4 rather than .site-footer h4. */
.site-footer h1,
.site-footer h2,
.site-footer h3,
.site-footer h4,
.site-footer h5,
.site-footer h6 {
  color: var(--gold-light) !important;
}

.site-footer .brand-word,
.site-footer .footer-brand .brand-word {
  color: var(--white) !important;
}

.site-footer,
.site-footer a,
.site-footer li,
.site-footer span {
  color: rgba(255,255,255,0.88);
}

.site-footer p,
.site-footer .footer-copy,
.site-footer .footer-col p {
  color: rgba(255,255,255,0.80) !important;
}

.site-footer .footer-legal,
.site-footer .footer-legal p {
  color: rgba(255,255,255,0.70) !important;
}

.site-footer .footer-bottom,
.site-footer .footer-bottom p,
.site-footer .footer-bottom a {
  color: rgba(255,255,255,0.76) !important;
}

.site-footer .footer-tagline {
  color: var(--gold-light) !important;
}

/* All dark/navy sections: prevent global navy heading colour from leaking in. */
.on-dark h1,
.on-dark h2,
.on-dark h3,
.on-dark h4,
.on-dark h5,
.on-dark h6,
.page-banner h1,
.page-banner h2,
.page-banner h3,
.cta-banner h1,
.cta-banner h2,
.cta-banner h3 {
  color: var(--white) !important;
}

.on-dark p,
.on-dark .lede,
.page-banner p,
.page-banner .lede,
.cta-banner p {
  color: rgba(255,255,255,0.88) !important;
}

/* Keep muted copy readable instead of near-transparent on dark backgrounds. */
.on-dark .muted,
.on-dark small,
.on-dark .subtext {
  color: rgba(255,255,255,0.74) !important;
}

/* Buttons on gold backgrounds need solid navy text. */
.btn-gold,
.btn-primary {
  color: var(--navy-deep) !important;
}

/* Reviews section (hidden until genuine reviews are supplied — see index.html) */
.reviews-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 980px){ .reviews-grid{ grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px){ .reviews-grid{ grid-template-columns: 1fr; } }
.review-card{
  position:relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 30px 28px;
  border-top: 2px solid var(--gold);
  box-shadow: 0 24px 50px -36px rgba(7,20,39,0.35);
}
.review-quote-mark{
  display:block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height:1;
  color: var(--gold);
  opacity:0.85;
  margin-bottom: 6px;
}
.review-text{
  font-size: 1rem;
  color: var(--ink);
  font-style: italic;
  margin-bottom: 18px;
}
.review-stars{
  display:flex;
  gap: 3px;
  margin-bottom: 10px;
  color: var(--gold);
}
.review-stars svg{ width:14px; height:14px; }
.review-meta{
  display:flex;
  flex-wrap:wrap;
  align-items:baseline;
  gap: 8px;
  font-size: 0.85rem;
}
.review-name{ font-weight:600; color: var(--navy); }
.review-trip{ color: var(--ink-soft); }
.review-trip::before{ content:"— "; }

/* Disabled controls: clear, accessible affordance without looking broken. */
.btn:disabled,
.btn[aria-disabled="true"]{
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}
.field input:disabled,
.field select:disabled,
.field textarea:disabled{
  background: rgba(11,35,64,0.05);
  color: var(--ink-soft);
  cursor: not-allowed;
  border-style: dashed;
}

/* Image cards: guarantee labels remain readable regardless of source image. */
.getaway-card .card-body h3,
.getaway-card .card-body p {
  color: var(--white) !important;
  text-shadow: 0 1px 16px rgba(0,0,0,0.32);
}
.getaway-card .card-tag,
.getaway-card .link-cta {
  color: var(--gold-light) !important;
}

/* Destination photo gallery */
.destination-gallery-section .section-heading{max-width:720px;margin:0 auto 34px;text-align:center}
.destination-gallery-section .section-heading .eyebrow{justify-content:center}
.destination-gallery{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:18px}
.destination-photo{margin:0;overflow:hidden;border-radius:3px;aspect-ratio:4/3;background:#eee7dc}
.destination-photo-wide{aspect-ratio:16/10}
.destination-photo img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .45s ease}
.destination-photo:hover img{transform:scale(1.025)}
.gallery-cta{text-align:center;margin-top:30px}
@media (max-width:700px){.destination-gallery{grid-template-columns:1fr;gap:12px}.destination-photo,.destination-photo-wide{aspect-ratio:4/3}}


/* Real destination inspiration cards */
.destination-card-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
.destination-card{position:relative;display:block;min-height:330px;overflow:hidden;border-radius:4px;background:#0c1930;text-decoration:none;box-shadow:0 12px 28px rgba(12,25,48,.10)}
.destination-card img{width:100%;height:100%;position:absolute;inset:0;object-fit:cover;display:block;transition:transform .5s ease}
.destination-card::after{content:"";position:absolute;inset:0;background:linear-gradient(180deg,rgba(8,18,36,.04) 35%,rgba(8,18,36,.86) 100%)}
.destination-card span{position:absolute;z-index:2;left:22px;right:22px;bottom:20px;color:#fff}
.destination-card strong{display:block;font-family:var(--font-display);font-size:clamp(1.55rem,2.5vw,2.05rem);line-height:1.05;font-weight:500}
.destination-card small{display:block;margin-top:6px;color:#e8cf86;font-size:.78rem;text-transform:uppercase;letter-spacing:.14em}
.destination-card:hover img,.destination-card:focus-visible img{transform:scale(1.035)}
.destination-card:focus-visible{outline:3px solid #d8bd6a;outline-offset:4px}
@media (max-width:900px){.destination-card-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media (max-width:620px){.destination-card-grid{grid-template-columns:1fr;gap:14px}.destination-card{min-height:290px}}

/* Reviews section stays hidden until genuine reviews are added —
   see the HTML comment above #reviews for how to re-enable it. */
.reviews-section[hidden]{display:none!important}

/* =========================================================
   Accessibility: gold text contrast on LIGHT backgrounds
   ---------------------------------------------------------
   #C9A24E on ivory/cream/white measures ~2.2:1, below the
   WCAG AA 4.5:1 minimum for small text (the .eyebrow labels
   are 0.78rem uppercase). A deeper gold (~4.6:1) is used for
   small gold TEXT on light panels only.

   Gold on navy is untouched (7.7:1, already passing), so the
   navy/gold/ivory palette and all borders, icons, rules and
   buttons keep the original --gold.
   ========================================================= */
.section-ivory .eyebrow,
.section-cream .eyebrow,
.section-white .eyebrow,
.form-card .eyebrow,
.value-list .num,
.field.required label::after,
.getaway-panel .link-cta:hover,
.review-stars {
  color: var(--gold-deep);
}

/* Dark sections keep the original gold eyebrow. */
.hero-content .eyebrow,
.page-banner .eyebrow,
.cta-banner .eyebrow,
.on-dark .eyebrow {
  color: var(--gold-light);
}

/* The "dates are flexible" checkbox is nudged down to sit level with the
   adjacent labelled input in the 2-column grid. Once the grid collapses to
   a single column that offset becomes a stray gap, so it is removed. */
.checkbox-align{ margin-top: 30px; }
@media (max-width: 680px){
  .checkbox-align{ margin-top: 0; }
}

/* Inline submission error (replaces a browser alert dialog). */
.form-error{
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #C0392B;
  background: #FDF3F2;
  color: #8E2C21;
  font-size: 0.92rem;
  line-height: 1.6;
}
.form-error a{ color: #8E2C21; text-decoration: underline; }
.form-error:focus{ outline: 2px solid #8E2C21; outline-offset: 2px; }

/* =========================================================
   Brand alignment pass
   Draws the site closer to the Getaways & Co. brand sheet:
   classical letterspaced serif, the dot-centred gold rule
   from the logo lockup, and the circle/flight-path motif.
   ========================================================= */

/* --- Display type ------------------------------------------------------ */
/* The wordmark sets caps in a wide, airy serif. Mirror that on headings
   without making body copy harder to read. */
.brand-name{
  font-family: var(--font-display);
  letter-spacing: 0.06em;
}
h1{ letter-spacing: 0.005em; }
h2{ letter-spacing: 0.01em; }

/* The logo's tagline is small letterspaced caps — the eyebrow already
   matches, so tighten it slightly toward the printed lockup. */
.eyebrow{ letter-spacing: 0.22em; }

/* --- Dot-centred rule, taken from the logo lockup ---------------------- */
.thin-rule{
  position: relative;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg,
    transparent, var(--gold) 18%, var(--gold) 82%, transparent);
  margin: 0 auto 26px;
  overflow: visible;
}
.thin-rule::after{
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translate(-50%, -50%);
}
.on-dark .thin-rule,
.page-banner .thin-rule{
  background: linear-gradient(90deg,
    transparent, var(--gold-light) 18%, var(--gold-light) 82%, transparent);
}
.on-dark .thin-rule::after,
.page-banner .thin-rule::after{ background: var(--gold-light); }

/* --- Hero: circular flight-path motif ---------------------------------- */
/* Echoes the ring and arc around the "G" in the logo. Purely decorative,
   sits behind content, and is hidden on small screens where it would
   crowd the text. */
.hero::after{
  content: "";
  position: absolute;
  right: -14vw;
  top: 50%;
  width: 62vw;
  height: 62vw;
  max-width: 780px;
  max-height: 780px;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(201,162,78,0.20);
  box-shadow:
    inset 0 0 0 60px rgba(201,162,78,0.045),
    inset 0 0 0 61px rgba(201,162,78,0.13);
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 900px){
  .hero::after{ opacity: 0.5; right: -34vw; }
}

/* --- Buttons: warmer, more considered gold ----------------------------- */
.btn{ letter-spacing: 0.14em; }
.btn-gold{
  background: linear-gradient(135deg, #E7CE8C, #C9A24E 55%, #B8912F);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn-gold:hover{
  transform: translateY(-2px);
  box-shadow: 0 14px 30px -12px rgba(201,162,78,0.75);
}

/* --- Cards: subtle gold edge instead of flat borders ------------------- */
.feature-card,
.getaway-panel{
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.feature-card:hover,
.getaway-panel:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 44px -26px rgba(7,20,39,0.42);
}

/* --- Respect reduced-motion preferences -------------------------------- */
@media (prefers-reduced-motion: reduce){
  .btn-gold:hover,
  .feature-card:hover,
  .getaway-panel:hover{ transform: none; }
}

/* --- Header wordmark: match the printed lockup ------------------------- */
/* The brand sheet sets "GETAWAYS & Co." in wide caps with a small
   letterspaced tagline beneath. Cormorant runs small at this size, so
   nudge it up and open the tracking. */
.brand-word{
  font-size: 1.42rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 500;
}
.brand-word small{
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.54rem;
  margin-top: 4px;
}
@media (max-width: 480px){
  .brand-word{ font-size: 1.18rem; letter-spacing: 0.05em; }
}

/* =========================================================
   Getaways page — richer category cards
   Real photography replaced the flat icon panels, so the
   cards now need treatment that lets the images carry the
   page: a navy scrim for depth, a gold hairline that draws
   in on hover, and a slower, smoother lift.
   ========================================================= */
.getaway-panel{
  position: relative;
  border: 1px solid rgba(7,20,39,0.07);
  box-shadow: 0 2px 10px -6px rgba(7,20,39,0.18);
}

/* Thin gold rule that grows across the top edge on hover. */
.getaway-panel::before{
  content: "";
  position: absolute;
  top: 0; left: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
  transition: width .55s var(--ease);
  z-index: 3;
}
.getaway-panel:hover::before,
.getaway-panel:focus-within::before{ width: 100%; }

/* Gradient scrim so the photo sits back and the white body reads
   as a continuation of the card rather than a separate block. */
.getaway-panel .media{ position: relative; }
.getaway-panel .media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(7,20,39,0.10) 0%,
    rgba(7,20,39,0) 45%,
    rgba(7,20,39,0.22) 100%);
  transition: opacity .55s var(--ease);
  pointer-events: none;
}
.getaway-panel:hover .media::after{ opacity: 0.55; }

.getaway-panel:hover,
.getaway-panel:focus-within{
  transform: translateY(-6px);
  box-shadow: 0 26px 50px -28px rgba(7,20,39,0.5);
}

/* Slightly gentler zoom now that these are photographs, not flat art. */
.getaway-panel .media img{ transition: transform 1.1s var(--ease); }
.getaway-panel:hover .media img{ transform: scale(1.05); }

/* Arrow slides on hover for a little life on the CTA. */
.getaway-panel .link-cta{ transition: color .3s var(--ease), gap .3s var(--ease); }
.getaway-panel:hover .link-cta{ gap: 14px; }

@media (prefers-reduced-motion: reduce){
  .getaway-panel:hover,
  .getaway-panel:focus-within{ transform: none; }
  .getaway-panel:hover .media img{ transform: none; }
}
