/* ==========================================================================
   Adulting Intermission Travel — retro Florida sunset design system
   Palette pulled from the brand business card.
   ========================================================================== */

:root {
  --navy: #2b4964;
  --navy-deep: #1f3850;
  --teal: #1f6a83;
  --sky: #9fd0e6;
  --cream: #f9edcb;
  --sand: #fdf8ec;
  --gold: #f4b45e;
  --orange: #f0994f;
  --coral: #e97350;
  --coral-deep: #d6572f;
  --ink: #233850;
  --white: #fffdf7;

  --font-script: 'Pacifico', 'Brush Script MT', cursive;
  --font-body: 'Poppins', 'Segoe UI', system-ui, sans-serif;

  --radius: 18px;
  --shadow: 0 10px 30px rgba(31, 56, 80, 0.14);
  --shadow-soft: 0 6px 18px rgba(31, 56, 80, 0.10);
  --maxw: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Subtle print-style grain over everything */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }

a { color: var(--teal); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 820px; }

/* ---------- Typography ---------- */

h1, h2, h3, h4 { font-weight: 700; line-height: 1.15; color: var(--navy-deep); }

h1 { font-size: clamp(2.5rem, 6.5vw, 4.3rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.9rem, 4.2vw, 2.9rem); margin-bottom: 0.5em; }
h3 { font-size: 1.22rem; margin-bottom: 0.35em; }

.script {
  font-family: var(--font-script);
  font-weight: 400;
  letter-spacing: 0.01em;
}

.accent { color: var(--coral-deep); }
.gold-script { color: var(--gold); }

.eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 14px;
}
.eyebrow.gold { color: var(--gold); }
.eyebrow.light { color: var(--navy-deep); opacity: 0.85; }

.section-sub {
  max-width: 640px;
  font-size: 1.06rem;
  color: rgba(35, 56, 80, 0.8);
  margin-bottom: 48px;
}
.section-sub.light { color: rgba(249, 237, 203, 0.85); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  font-family: var(--font-body);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--teal); outline-offset: 3px; }

.btn-coral { background: var(--coral-deep); color: var(--white); }
.btn-coral:hover { background: var(--coral); }

.btn-navy { background: var(--navy-deep); color: var(--cream); }
.btn-navy:hover { background: var(--navy); }

.btn-ghost { background: rgba(255, 253, 247, 0.55); border-color: var(--navy-deep); color: var(--navy-deep); }
.btn-ghost:hover { background: var(--white); }

.btn-ghost-navy { background: transparent; border-color: var(--navy-deep); color: var(--navy-deep); }

.btn-small { padding: 10px 22px; font-size: 0.92rem; }
.btn-full { width: 100%; }

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.cta-row.center { justify-content: center; }

/* ---------- Nav ---------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 248, 236, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: box-shadow 0.25s ease;
}
.nav.scrolled { box-shadow: 0 4px 20px rgba(31, 56, 80, 0.12); }

.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand { text-decoration: none; line-height: 1.05; }
.brand-script {
  display: block;
  font-family: var(--font-script);
  font-size: 1.45rem;
  color: var(--teal);
}
.brand-sub {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.5em;
  color: var(--coral-deep);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav-links a:not(.btn) {
  text-decoration: none;
  color: var(--navy-deep);
  font-weight: 500;
  font-size: 0.96rem;
  position: relative;
}
.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -5px;
  height: 2.5px;
  background: var(--coral);
  border-radius: 2px;
  transition: right 0.22s ease;
}
.nav-links a:not(.btn):hover::after { right: 0; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--navy-deep);
  border-radius: 2px;
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg,
    #a7d5e8 0%, #c9e4ee 16%, #f6e7b8 42%, #f5bb6c 66%, #ee8656 84%, #e46f4c 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: clamp(60px, 10vh, 110px) 24px 380px;
}

.hero h1 .script { color: var(--coral-deep); font-size: 1.08em; }

.hero-sub {
  max-width: 640px;
  margin: 22px auto 0;
  font-size: 1.12rem;
  color: rgba(31, 56, 80, 0.88);
}

.hero .cta-row { justify-content: center; }

.trust-chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}
.trust-chips li {
  background: rgba(255, 253, 247, 0.7);
  border: 1.5px solid rgba(43, 73, 100, 0.35);
  color: var(--navy-deep);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 999px;
}

.hero-scene {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: clamp(300px, 42vw, 560px);
  z-index: 1;
}

/* ---------- Destination marquee ---------- */

.marquee {
  background: var(--navy-deep);
  color: var(--cream);
  overflow: hidden;
  padding: 14px 0;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  gap: 34px;
  padding-left: 34px;
  animation: marquee 36s linear infinite;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.marquee-track span:nth-child(even) { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */

.section { padding: 96px 0; position: relative; }
.section-sand { background: linear-gradient(180deg, var(--sand), var(--cream)); }

.section-navy {
  background: linear-gradient(180deg, var(--navy-deep), var(--navy));
  color: var(--cream);
  padding: 140px 0;
}
.section-navy h2 { color: var(--cream); }
.section-navy h3 { color: var(--gold); }

.wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 70px;
}
.wave-top { top: -1px; }
.wave-bottom { bottom: -1px; }

/* ---------- Trip cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
}

.trip-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
}
.trip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.trip-art { aspect-ratio: 400 / 260; }
.trip-art svg { width: 100%; height: 100%; }

.trip-body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.trip-body p { font-size: 0.95rem; color: rgba(35, 56, 80, 0.82); }

.trip-tags {
  margin-top: 12px;
  font-size: 0.8rem !important;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal) !important;
}

.trip-link {
  margin-top: auto;
  padding-top: 14px;
  font-weight: 600;
  text-decoration: none;
  color: var(--coral-deep);
}
.trip-link:hover { text-decoration: underline; }

/* ---------- Perks (navy section) ---------- */

.perk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 34px;
  margin-top: 14px;
}
.perk p { font-size: 0.95rem; color: rgba(249, 237, 203, 0.82); }
.perk-icon { width: 52px; height: 52px; margin-bottom: 14px; }
.perk-icon svg { width: 100%; height: 100%; }

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 24px;
  counter-reset: step;
}
.step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-soft);
  border-top: 6px solid var(--gold);
}
.step:nth-child(2) { border-top-color: var(--orange); }
.step:nth-child(3) { border-top-color: var(--coral); }
.step p { font-size: 0.96rem; color: rgba(35, 56, 80, 0.82); }

.step-num {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--coral-deep);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

/* ---------- About ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: center;
}
.about-badge svg { width: 100%; height: auto; filter: drop-shadow(0 12px 24px rgba(31,56,80,0.18)); }
.about-copy p { margin-bottom: 16px; }

.cred-list {
  list-style: none;
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cred-list li {
  padding-left: 30px;
  position: relative;
  font-weight: 500;
  font-size: 0.95rem;
}
.cred-list li::before {
  content: "☀";
  position: absolute;
  left: 0;
  color: var(--coral-deep);
}

/* ---------- Testimonials ---------- */

.quote-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-top: 10px;
}
.quote {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.quote::before {
  content: "“";
  font-family: var(--font-script);
  font-size: 3.4rem;
  color: var(--gold);
  position: absolute;
  top: 6px;
  left: 18px;
  line-height: 1;
}
.quote blockquote {
  border: none;
  font-size: 0.99rem;
  padding-top: 20px;
  color: rgba(35, 56, 80, 0.88);
}
.quote figcaption {
  margin-top: 16px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--teal);
}

/* ---------- Lead form ---------- */

.section-sunset {
  background: linear-gradient(180deg, #f5bb6c 0%, #ee8656 45%, #d6572f 100%);
}
/* gold script is unreadable on the light-gold sunset — use deep burnt coral here */
.section-sunset .gold-script { color: #a03818; }

.form-wrap {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
}

.light-h { color: var(--navy-deep); }
.light-p { color: rgba(31, 56, 80, 0.85); max-width: 460px; }

.contact-lines { margin-top: 26px; display: flex; flex-direction: column; gap: 10px; }
.contact-lines a {
  color: var(--navy-deep);
  font-weight: 600;
  text-decoration: none;
  font-size: 1.05rem;
}
.contact-lines a span { font-weight: 400; font-size: 0.9rem; }
.contact-lines a:hover { text-decoration: underline; }

.trip-form {
  background: var(--white);
  border-radius: 22px;
  padding: 36px 32px;
  box-shadow: 0 24px 60px rgba(120, 45, 15, 0.28);
}

.field { display: flex; flex-direction: column; margin-bottom: 18px; flex: 1; }
.field-row { display: flex; gap: 18px; }

.field label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 6px;
}

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--sand);
  border: 2px solid rgba(43, 73, 100, 0.18);
  border-radius: 12px;
  padding: 12px 14px;
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(31, 106, 131, 0.15);
}
.field input.error { border-color: var(--coral-deep); }

.form-note {
  margin-top: 14px;
  font-size: 0.86rem;
  text-align: center;
  color: rgba(35, 56, 80, 0.7);
}

/* ---------- FAQ ---------- */

.faq-item {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  margin-top: 14px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 54px 20px 24px;
  font-weight: 600;
  color: var(--navy-deep);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--coral-deep);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item p { padding: 0 24px 22px; color: rgba(35, 56, 80, 0.82); font-size: 0.97rem; }

/* ---------- CTA band + footer ---------- */

.cta-band {
  background: linear-gradient(180deg, var(--navy), var(--navy-deep));
  padding: 90px 0;
  text-align: center;
}
.cta-band h2 { color: var(--cream); }
.cta-band .btn-ghost {
  background: transparent;
  border-color: var(--cream);
  color: var(--cream);
}
.cta-band .btn-ghost:hover { background: rgba(249, 237, 203, 0.12); }

.footer {
  background: var(--navy-deep);
  color: rgba(249, 237, 203, 0.85);
  padding: 60px 0 100px;
  border-top: 1px solid rgba(249, 237, 203, 0.15);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}
.footer h4 {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer p { margin-bottom: 8px; font-size: 0.95rem; }
.footer a { color: rgba(249, 237, 203, 0.9); text-decoration: none; }
.footer a:hover { text-decoration: underline; color: var(--white); }

.footer-brand { font-size: 1.7rem; color: var(--sky); }
.light-sub { color: var(--gold); }
.footer-tag { margin-top: 14px; font-size: 0.9rem; opacity: 0.8; }

.footer-legal {
  border-top: 1px solid rgba(249, 237, 203, 0.18);
  padding-top: 26px;
  font-size: 0.82rem;
  opacity: 0.75;
}
.footer-legal p { margin-bottom: 6px; }

/* ---------- Mobile quick bar ---------- */

.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(253, 248, 236, 0.96);
  backdrop-filter: blur(8px);
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  gap: 10px;
  box-shadow: 0 -6px 24px rgba(31, 56, 80, 0.18);
}
.mobile-bar .btn { flex: 1; text-align: center; padding: 12px 10px; font-size: 0.95rem; }

/* ---------- Reveal animation ---------- */

.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee-track { animation: none; }
  .btn, .trip-card { transition: none; }
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 34px; }
  .about-badge { max-width: 230px; margin: 0 auto; }
  .form-wrap { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .section-navy { padding: 110px 0; }

  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--sand);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px 26px;
    gap: 18px;
    box-shadow: 0 18px 30px rgba(31, 56, 80, 0.15);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.22s ease, opacity 0.22s ease, visibility 0.22s;
  }
  .nav-links.open { transform: none; opacity: 1; visibility: visible; }

  .hero { min-height: 0; }
  .hero-content { padding-bottom: 300px; }
  .hero-scene { height: 300px; }

  .field-row { flex-direction: column; gap: 0; }

  .mobile-bar { display: flex; }
  .footer { padding-bottom: 130px; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-content { padding-bottom: 250px; }
  .hero-scene { height: 250px; }
}
