/* =========================================================
   RD May Booking Sprint — styles.css (cleaned + organized)
   ========================================================= */

/* ---------- Tokens / Base ---------- */
:root{
  --ink:#111827;
  --ink-2:#1f2933;
  --muted:#6b7280;

  --bg:#ffffff;
  --bg-alt:#f5f7fa;

  --brand:#0a2540;
  --brand-2:#0f355a;

  --card:#ffffff;
  --sand:#faf2d9;

  --shadow:0 10px 30px rgba(0,0,0,0.10);
  --shadow-soft:0 6px 20px rgba(0,0,0,0.08);

  --radius:10px;
  --radius-lg:16px;
}

*{ box-sizing:border-box; margin:0; padding:0; }

body{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,Helvetica,sans-serif;
  color:var(--ink-2);
  line-height:1.6;
  background:var(--bg);
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }

.container{
  width:min(1120px, 92%);
  margin:0 auto;
}

/* ---------- Typography ---------- */
h1,h2,h3{ color:var(--ink); line-height:1.15; }
h1{ font-size:clamp(2.5rem, 3.2vw, 3rem); letter-spacing:-0.02em; }
h2{ font-size:clamp(1.5rem, 2.2vw, 2rem); margin-bottom:12px; }
h3{ font-size:1.8rem; margin-bottom:6px; }
p{ margin:0 auto; padding-bottom:10px; }

.muted{ color:var(--muted); }
.small{ font-size:0.92rem; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:16px 18px;
  border-radius:999px;
  font-weight:600;
  letter-spacing:0.01em;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  border:1px solid transparent;
  white-space:nowrap;
}

button.btn{
  -webkit-appearance:none;
  appearance:none;
  background:none;
  border:0;
  padding:16px 18px !important;
  margin:0;
  font:inherit;
  color:inherit;
  line-height:inherit;
  text-align:inherit;
  cursor:pointer;
  border-radius:999px !important;
  border:1px solid transparent !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
}

a.btn,
button.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
}

.btn.primary{
  background:var(--brand);
  color:#fff;
  box-shadow:0 10px 24px rgba(10,37,64,.25);
}

.btn.primary:hover{
  background:var(--brand-2);
  transform:translateY(-1px);
}

.btn.secondary{
  background:rgba(255,255,255,0.9);
  color:var(--brand);
  border-color:rgba(255,255,255,0.7);
}

.section .btn.secondary{
  background:transparent;
  border-color:rgba(10,37,64,0.35);
  color:var(--brand);
}

.btn.secondary:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 18px rgba(0,0,0,0.08);
}

.btn.details{
  width:100%;
  margin-top:8px;
  background:#f3f4f6;
  color:var(--brand);
  border:1px solid rgba(10,37,64,0.20);
  box-shadow:0 6px 16px rgba(0,0,0,0.08);
}

.btn.details:hover{
  background:var(--brand);
  color:#fff;
  border-color:var(--brand);
  transform:translateY(-1px);
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

/* ---------- Sections ---------- */
.section{ padding:64px 0; }
.section-alt{ background:var(--bg-alt); }
.section-head{ margin-bottom:22px; text-align:center; }
.section-intro{ max-width:820px; text-align:center; margin:0 auto; }

.section-soft-bg{
  background:linear-gradient(
    180deg,
    #F3F3F3 0%,
    #E5ECF1 50%,
    #F0F3F5 100%
  );
}

.section.flush-bottom{
  padding-bottom:0;
  margin-bottom:0;
}

.section-bg.flush-top{
  padding-top:0;
  margin-top:0;
}

/* ---------- Full-width section backgrounds ---------- */
.section-bg{
  position:relative;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
}

.section-bg::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.30) 55%, rgba(0,0,0,0.18) 100%);
  z-index:0;
}

.section-bg > .container{
  position:relative;
  z-index:1;
  background:rgba(255,255,255,0.50);
  border-radius:16px;
  padding:40px 28px;
  box-shadow:0 6px 20px rgba(0,0,0,0.08);
}

.section-bg-why{ background-image:url("images/REPLACE-WHY-BG.jpg"); }
.section-bg-itinerary{ background-image:url("images/bkgrnd-cta-01.jpeg"); }

/* ---------- Hero ---------- */
.hero{
  position:relative;
  min-height:100vh;
  min-height:100svh;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.25) 55%, rgba(0,0,0,0.10) 100%);
}

.hero-audio{
  position:absolute;
  z-index:3;
  right:16px;
  bottom:16px;
  background:rgba(0,0,0,0.55);
  color:#fff;
  border:1px solid rgba(255,255,255,0.25);
  border-radius:999px;
  padding:10px 12px;
  font-size:14px;
  cursor:pointer;
}

.hero-audio.is-on{
  background:rgba(16,185,129,0.25);
  border-color:rgba(16,185,129,0.5);
}

.hero-content{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:flex-start;
  align-items:center;
  text-align:center;
  min-height:100vh;
  min-height:100svh;
  padding-top:50px;
  padding-bottom:32px;
  padding-left:24px;
  padding-right:24px;
  max-width:820px;
  margin:0 auto;
}

.hero-content h1,
.hero-content h3,
.hero-content h4,
.hero-content p,
.hero-content .hero-note,
.hero-content .scroll-link{
  color:#fff;
}

.hero-content h3:first-of-type{
  font-size:0.95rem;
  letter-spacing:0.14em;
  text-transform:uppercase;
  font-weight:600;
  opacity:0.9;
  margin-bottom:10px;
}

.hero-content h1{
  color:rgba(250,245,172,1);
  text-shadow:0 2px 14px rgba(0,0,0,0.55);
  font-size:clamp(2.6rem, 5vw, 3.6rem);
  line-height:1.15;
  letter-spacing:-0.02em;
  font-weight:700;
  padding-bottom:5px;
  margin-bottom:0;
}

.hero-content h3:nth-of-type(2){
  color:#fff;
  text-shadow:0 2px 14px rgba(0,0,0,0.55);
  font-size:1.25rem;
  font-weight:500;
  max-width:680px;
  margin-top:8px;
}

.hero-content .hero-subhead{
  font-size:1.5rem;
  max-width:680px;
  color:rgba(255,255,255,0.92);
  text-shadow:0 2px 10px rgba(0,0,0,0.45);
}

.hero-note{
  margin-top:10px;
  color:rgba(255,255,255,0.85);
  font-size:0.95rem;
}

.hero-buttons{
  width:100%;
  text-align:center;
}

.hero-buttons > div{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
}

.hero-buttons .btn{
  margin:0;
}

.hero-buttons-desktop{
  margin-top:auto;
  padding-top:24px;
}

.hero-buttons-mobile{
  display:none;
}

.hero-mobile-cta{
  display:none;
  background:#fff;
  padding:18px 0 8px;
}

.scroll-link{
  display:inline-block;
  margin-top:20px;
  color:rgba(255,255,255,0.9);
  font-weight:600;
  text-decoration:underline;
  text-underline-offset:4px;
}

/* ---------- Voyage Grid / Cards ---------- */
.voyage-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:22px;
  margin-top:20px;
  max-width:960px;
  margin-left:auto;
  margin-right:auto;
}

.voyage-card{
  background:var(--card);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow-soft);
  transition:transform .15s ease, box-shadow .15s ease;
  display:flex;
  flex-direction:column;
  height:100%;
}

.voyage-card:hover{
  transform:translateY(-2px);
  box-shadow:var(--shadow);
}

.voyage-img{
  height:220px;
  width:100%;
  object-fit:cover;
}

.voyage-body{
  padding:16px 16px 18px;
  display:flex;
  flex-direction:column;
  flex:1;
}

.pill{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  font-size:0.85rem;
  font-weight:700;
  background:#6097cd;
  color:#fff;
  border:1px solid rgba(10,37,64,0.22);
  margin-bottom:10px;
}

.chef-line{
  font-size:0.98rem;
  margin-bottom:10px;
  color:var(--ink);
}

.date-band{
  display:block;
  padding:10px 12px;
  border-radius:12px;
  background:var(--sand);
  color:#374151;
  font-weight:700;
  margin:10px 0 12px;
}

.card-copy{
  margin-top:10px;
  color:#374151;
}

.card-actions{
  display:grid;
  grid-template-columns:1fr;
  gap:10px;
}

.voyage-card .card-actions{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
}

.voyage-card .card-actions + .card-actions{
  margin-top:10px;
}

.card-actions-wrap{
  margin-top:auto;
}

.voyage-card .card-actions.three{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}

.voyage-card .card-actions.three .btn{
  font-size:0.86rem;
  padding:10px 10px;
}

.voyage-card .btn{
  padding:10px 12px;
  font-size:0.88rem;
  line-height:1.15;
  white-space:normal;
  text-align:center;
  min-height:44px;
}

.voyage-card .card-actions .btn{
  display:-webkit-box;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
  overflow:hidden;
}

.voyage-card .btn.primary,
.voyage-card .btn.details,
.voyage-card .btn.chef,
.voyage-card .btn.meet{
  background:var(--brand);
  color:#fff;
  border:1px solid rgba(255,255,255,0.14);
  box-shadow:0 8px 18px rgba(10,37,64,0.20);
}

.voyage-card .btn.primary:hover,
.voyage-card .btn.details:hover,
.voyage-card .btn.chef:hover,
.voyage-card .btn.meet:hover{
  background:var(--brand-2);
  transform:translateY(-1px);
}

.btn.chef{
  width:100%;
  background:#fff;
  color:var(--brand);
  border:1px solid rgba(10,37,64,0.22);
  box-shadow:0 6px 16px rgba(0,0,0,0.06);
}

.btn.chef:hover{
  background:var(--brand);
  color:#fff;
  border-color:var(--brand);
  transform:translateY(-1px);
}

.chef-modal-video-wrap{
  position:relative;
  width:100%;
  border-radius:14px;
  overflow:hidden;
  background:#000;
}

.chef-modal-video{
  width:100%;
  height:340px;
  object-fit:cover;
  display:block;
  background:#000;
}

.chef-video-play{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%, -50%);
  z-index:2;
  background:rgba(0,0,0,0.72);
  color:#fff;
  border:1px solid rgba(255,255,255,0.25);
  border-radius:999px;
  padding:12px 18px;
  font-size:15px;
  font-weight:600;
  cursor:pointer;
}

.chef-video-sound{
  position:absolute;
  right:12px;
  bottom:12px;
  z-index:2;
  background:rgba(0,0,0,0.62);
  color:#fff;
  border:1px solid rgba(255,255,255,0.25);
  border-radius:999px;
  padding:8px 12px;
  font-size:13px;
  cursor:pointer;
}

@media (max-width: 820px){
  .chef-modal-video{
    height:260px;
  }
}

/* ---------- CTA Band ---------- */
.cta-band{
  margin-top:28px;
  border-radius:var(--radius-lg);
  background:#fff;
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(17,24,39,0.06);
}

.cta-band-inner{
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}

.testimonial-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
  margin-top:22px;
}

.testimonial-card{
  background:var(--card);
  border-radius:var(--radius-lg);
  padding:22px 20px;
  box-shadow:var(--shadow-soft);
  border:1px solid rgba(17,24,39,0.06);
  height:100%;
}

.testimonial-stars{
  font-size:1rem;
  letter-spacing:0.12em;
  color:#d4a017;
  margin-bottom:12px;
}

.testimonial-quote{
  font-size:1rem;
  line-height:1.7;
  color:#374151;
  padding-bottom:0;
}

.testimonial-author{
  margin-top:16px;
  font-weight:600;
  color:var(--brand);
}

@media (max-width: 980px){
  .testimonial-grid{
    grid-template-columns:1fr;
    max-width:640px;
    margin-left:auto;
    margin-right:auto;
  }
}

/* ---------- Lists ---------- */
.icon-list{
  list-style:none;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px 18px;
  margin-top:12px;
}

.icon-list li{
  padding:12px 14px;
  background:rgba(255,255,255,0.8);
  border-radius:var(--radius);
  border:1px solid rgba(17,24,39,0.06);
}

.inline-list{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin-top:14px;
  padding:0;
}

.inline-list li{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,0.9);
  border:1px solid rgba(17,24,39,0.08);
  color:#374151;
  white-space:nowrap;
}

/* ---------- Split section ---------- */
.split{
  display:grid;
  grid-template-columns:1.1fr 0.9fr;
  gap:22px;
  align-items:center;
}

.split-image img{
  border-radius:var(--radius-lg);
  height:360px;
  width:100%;
  object-fit:cover;
  box-shadow:var(--shadow-soft);
}

.xo-section{
  background:#ffffff;
  padding:48px 0;
}

.xo-panel{
  display:grid;
  grid-template-columns:180px 1fr;
  align-items:center;
  gap:28px;
  padding:24px 18px;
}

.xo-logo-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
}

.xo-logo{
  width:150px;
  max-width:100%;
  height:auto;
  display:block;
}

.xo-copy{
  text-align:center;
  color:#6b6b6b;
  font-family: Georgia, "Times New Roman", serif;
  font-size:clamp(1.0rem, 1.5vw, 1.5rem);
  line-height:1.18;
  letter-spacing:0.22em;
  text-transform:uppercase;
}

.xo-copy strong{
  color:#4f4f4f;
  font-weight:700;
}

@media (max-width: 720px){
  .xo-panel{
    grid-template-columns:1fr;
    gap:18px;
    padding:18px 10px;
  }

  .xo-logo{
    width:120px;
  }

  .xo-copy{
    font-size:clamp(1rem, 5vw, 1.5rem);
    letter-spacing:0.14em;
    line-height:1.22;
  }
}

/* ---------- Booking / Form ---------- */
.booking p{ max-width:880px; }

.form-wrap{
  margin-top:28px;
  background:rgba(255,255,255,0.9);
  border:1px solid rgba(17,24,39,0.06);
  border-radius:var(--radius-lg);
  padding:18px;
  box-shadow:var(--shadow-soft);
}

.inquiry-form{ margin-top:12px; }

.form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:12px;
  margin-bottom:12px;
}

label span{
  display:block;
  font-size:0.86rem;
  color:#6b7280;
  margin-bottom:6px;
}

input, select{
  width:100%;
  padding:12px;
  border-radius:10px;
  border:1px solid rgba(17,24,39,0.12);
  background:#fff;
  outline:none;
}

input:focus, select:focus{
  border-color:rgba(10,37,64,0.45);
  box-shadow:0 0 0 3px rgba(10,37,64,0.12);
}

/* ---------- Travel Advisor Section ---------- */
.agent-section{
  background:linear-gradient(180deg, #f6f8f9 0%, #eef3f6 50%, #f6f8f9 100%);
}

.agent-section .section-intro{
  max-width:720px;
  margin:10px auto 0;
}

.agent-grid{
  margin-top:22px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:22px;
}

.agent-col{
  background:rgba(255,255,255,0.92);
  border:1px solid rgba(17,24,39,0.06);
  border-radius:var(--radius-lg);
  padding:18px 18px 16px;
  box-shadow:var(--shadow-soft);
}

.agent-col h3{
  margin:0 0 8px 0;
  color:#111827;
}

.agent-col p{
  margin:0 0 14px 0;
  color:#374151;
}

.agent-col h3 + p{
  margin-bottom:16px;
}

.agent-note{
  margin-top:16px;
  text-align:center;
  color:var(--muted);
  font-size:0.95rem;
}

.agent-cta-row{
  margin-top:14px;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.agent-section .btn.secondary{
  background:transparent;
  border-color:rgba(10,37,64,0.30);
  color:var(--brand);
}

/* ================================
   Sticky Bottom CTA
   ================================ */

.sticky-cta{
  position:fixed;
  bottom:0;
  left:0;
  width:100%;
  z-index:999;

  background:var(--brand);
  color:#fff;

  box-shadow:0 -8px 30px rgba(0,0,0,0.18);
}

.sticky-cta-inner{
  max-width:1200px;
  margin:0 auto;
  padding:12px 20px;

  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.sticky-cta-text{
  font-size:1.1rem;
  font-weight:700;
  letter-spacing:.02em;
}

.sticky-cta-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

/* prevent content from hiding under CTA */
body{
  padding-bottom:90px;
}

@media (max-width:640px){

  .sticky-cta{
    display:none;
  }
}

/* ---------- Mobile ---------- */

@media (max-width:640px){

  .sticky-cta-inner{
    flex-direction:column;
    align-items:stretch;
    gap:10px;
  }

  .sticky-cta-text{
    text-align:center;
    font-size:1rem;
  }

  .sticky-cta-buttons{
    flex-direction:column;
  }

  .sticky-cta-buttons .btn{
    width:100%;
  }

}

/* ---------- Footer ---------- */
.footer{
  background:#0b1220;
  color:rgba(255,255,255,0.85);
  padding:28px 0;
}

.footer-inner{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:20px;
}

.footer-links{
  display:flex;
  gap:10px;
  align-items:center;
}

.footer-links a{
  color:rgba(255,255,255,0.9);
  text-decoration:underline;
  text-underline-offset:3px;
}

.footer-logo img{
  height:120px;
  max-width:160px;
  width:auto;
  display:block;
}

.footer-text{
  text-align:center;
  margin:0;
}

/* ---------- Modal ---------- */
.modal{
  position:fixed;
  inset:0;
  z-index:1000;
  display:none;
  align-items:center;
  justify-content:center;
  padding:16px;
}

.modal.is-open{
  display:flex;
}

.modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

.modal-panel{
  position:relative;
  width:min(920px, 92%);
  margin:0;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 18px 60px rgba(0,0,0,0.35);
  max-height:90svh;
  display:flex;
  flex-direction:column;
}

.modal-close{
  position:absolute;
  top:10px;
  right:14px;
  font-size:30px;
  line-height:1;
  background:transparent;
  border:0;
  color:rgba(17,24,39,0.65);
  cursor:pointer;
  z-index:2;
}

.modal-header{
  padding:18px 22px 10px;
  border-bottom:1px solid rgba(17,24,39,0.08);
  flex-shrink:0;
}

.modal-header h3{ margin:0; }

.modal-body{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:18px;
  padding:18px 22px 20px;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  flex:1;
  min-height:0;
}

.modal-media img{
  width:100%;
  height:340px;
  object-fit:cover;
  border-radius:14px;
}

.modal-copy p{ margin-top:0; }

.modal-copy a{
  color:var(--brand);
  text-decoration:underline;
  text-underline-offset:3px;
}

.modal-footer{
  padding:0 22px 22px;
  display:flex;
  justify-content:flex-end;
  flex-shrink:0;
}

body.modal-open{
  overflow:hidden;
}

/* ---------- Contact Modal ---------- */
#contactModal .modal-body{
  grid-template-columns:1fr;
}

#contactModal .contact-form-wrap{
  width:100%;
}

#contactModal .contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

#contactModal .contact-field{
  display:block;
  font-size:14px;
  color:#111827;
}

#contactModal .contact-field span{
  display:block;
  margin-bottom:6px;
  color:#374151;
  font-weight:600;
  font-size:13px;
}

#contactModal input,
#contactModal select,
#contactModal textarea{
  width:100%;
  border:1px solid rgba(17,24,39,0.18);
  border-radius:10px;
  padding:10px 12px;
  font-size:14px;
  outline:none;
}

#contactModal textarea{
  resize:vertical;
}

#contactModal .contact-hint{
  margin-top:10px;
  font-size:12px;
  color:#6b7280;
}

#contactModal .contact-actions{
  display:flex;
  gap:10px;
  margin-top:14px;
  justify-content:flex-end;
}

.mobile-only{
  display:none;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px){
  .voyage-grid{
    grid-template-columns:1fr;
    max-width:640px;
  }

  .icon-list{ grid-template-columns:1fr; }
  .split{ grid-template-columns:1fr; }
  .split-image img{ height:320px; }
  .form-grid{ grid-template-columns:1fr; }
  .agent-grid{ grid-template-columns:1fr; }

  .section-bg > .container{
    padding:28px 18px;
  }
}

@media (max-width: 820px){
  .modal-body{
    grid-template-columns:1fr;
  }

  .modal-media img{
    height:260px;
  }

  .modal-footer{
    justify-content:stretch;
  }

  .modal-footer .btn{
    width:100%;
  }

  #contactModal .contact-grid{
    grid-template-columns:1fr;
  }

  #contactModal .contact-actions{
    flex-direction:column;
    align-items:stretch;
  }

  #contactModal .contact-actions .btn{
    width:100%;
  }
}

@media (max-width: 720px){
  .footer-inner{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-logo{
    margin-bottom:8px;
  }

  .footer-links{
    justify-content:center;
  }
}

@media (max-width: 640px){
  .hero{
    min-height:auto;
    height:auto;
    overflow:hidden;
  }

  .hero-content{
    min-height:auto;
    padding-top:28px;
    padding-bottom:24px;
    padding-left:18px;
    padding-right:18px;
  }

  .hero-content h3:first-of-type{
    font-size:0.78rem;
    line-height:1.25;
    letter-spacing:0.10em;
    margin-top:0;
    margin-bottom:8px;
  }

  .hero-content h1{
    font-size:2rem;
    line-height:1.08;
    margin-top:0;
    margin-bottom:10px;
  }

  .hero-content h3:nth-of-type(2){
    display:none;
  }

  .hero-content .hero-subhead{
    font-size:1.05rem;
    line-height:1.3;
    margin-top:0;
  }

  .hero-buttons-desktop{
    display:none;
  }

  .hero-mobile-cta{
    display:block;
  }

  .hero-buttons-mobile{
    display:block;
    width:100%;
    text-align:center;
  }

  .hero-buttons-mobile > div{
    display:flex;
    flex-direction:column;
    gap:8px;
  }

  .hero-buttons-mobile .btn{
    width:100%;
  }

  .hero-audio{
    right:10px;
    bottom:10px;
    padding:8px 10px;
    font-size:13px;
  }

  .cta-row{
    flex-wrap:wrap;
    gap:10px;
  }
	
  .mobile-only{
    display:block;
  }
}

@media (max-width: 560px){
  .btn{
    width:100%;
  }

  .cta-row{
    width:100%;
  }

  .voyage-img{
    height:180px;
  }

  .cta-band-inner{
    padding:16px;
  }

  .voyage-card .card-actions,
  .voyage-card .card-actions.three{
    grid-template-columns:1fr;
  }
}