/* Open Door Travel Advisors — site draft v1
   Palette: cream #F9F4EA · gold #C29F55 · charcoal #2B2E35 · emerald #1A4738
   Fonts: Cormorant Garamond (display serif) + Inter (body), system fallbacks. */

:root {
  --cream: #F9F4EA;
  --cream-deep: #F1E9D9;
  --gold: #C29F55;
  --gold-soft: #D9BC82;
  --charcoal: #2B2E35;
  --charcoal-soft: #4A4E57;
  --emerald: #1A4738;
  --emerald-soft: #2C6A55;
  --white: #FFFFFF;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 1080px; margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 760px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 7vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4.5vw, 2.9rem); margin-bottom: 28px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }

p { color: var(--charcoal-soft); }
.lead { font-size: 1.15rem; line-height: 1.7; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.eyebrow-light { color: var(--gold-soft); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(249, 244, 234, 0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(194, 159, 85, 0.35);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--charcoal);
}
.brand-glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  color: var(--emerald);
  font-size: 1.25rem;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}
.site-nav { display: flex; align-items: center; gap: 26px; }
.site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--charcoal-soft);
  transition: color 0.2s;
}
.site-nav a:hover { color: var(--emerald); }

/* Mobile nav toggle (hidden checkbox + burger label, no JS) */
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-burger { display: none; }
.nav-cta {
  color: var(--emerald) !important;
  border: 1px solid var(--emerald);
  border-radius: 999px;
  padding: 8px 18px;
}
.nav-cta:hover { background: var(--emerald); color: var(--cream) !important; }

/* ---------- Hero ---------- */
.hero {
  padding: 72px 0 84px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(194, 159, 85, 0.12), transparent 70%),
    var(--cream);
}
.hero-inner { display: flex; flex-direction: column; align-items: center; }
.hero-logo {
  width: clamp(180px, 34vw, 300px);
  height: auto;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(43, 46, 53, 0.14);
  margin-bottom: 36px;
}
.hero h1 { margin-bottom: 18px; }
.hero-sub {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 999px;
  transition: all 0.2s;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--emerald);
  color: var(--cream);
}
.btn-primary:hover { background: var(--emerald-soft); }
.btn-ghost {
  border-color: var(--gold);
  color: var(--charcoal);
  background: transparent;
}
.btn-ghost:hover { background: var(--gold); color: var(--white); }
.btn-block { width: 100%; margin-top: 8px; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-light { background: var(--white); }
.section-light-alt { background: var(--cream-deep); }
.section-emerald {
  background:
    radial-gradient(ellipse 60% 80% at 80% 10%, rgba(194, 159, 85, 0.14), transparent 60%),
    var(--emerald);
  text-align: center;
}
.section-emerald h2 { color: var(--cream); }
.section-emerald .lead { color: rgba(249, 244, 234, 0.86); }

/* ---------- Cards ---------- */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 12px;
}
.card {
  border: 1px solid rgba(194, 159, 85, 0.5);
  border-radius: 14px;
  padding: 34px 30px;
  background: var(--cream);
}
.card h3 { color: var(--emerald); }
.card p { margin-bottom: 0; }

/* ---------- Steps ---------- */
.steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 12px;
}
.steps li {
  border-top: 2px solid var(--gold);
  padding-top: 22px;
}
.step-num {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.steps h3 { font-size: 1.25rem; }
.steps p { font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact-form { margin-top: 34px; text-align: left; }
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.contact-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
  color: var(--charcoal);
}
.contact-form input,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid rgba(43, 46, 53, 0.25);
  border-radius: 10px;
  padding: 13px 16px;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(194, 159, 85, 0.2);
}
.form-note {
  margin-top: 18px;
  font-size: 0.9rem;
  text-align: center;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(249, 244, 234, 0.75);
  padding: 48px 0 56px;
  text-align: center;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--cream);
  margin-bottom: 8px;
}
.footer-tag { color: var(--gold-soft); margin-bottom: 18px; }
.footer-legal {
  font-size: 0.82rem;
  color: rgba(249, 244, 234, 0.55);
}

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .cards, .steps, .field-row { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .nav-burger {
    display: inline-flex;
    align-items: center;
    font-size: 1.5rem;
    line-height: 1;
    color: var(--emerald);
    cursor: pointer;
    user-select: none;
    padding: 4px 6px;
  }
  .nav-burger::before { content: "\2630"; }
  .nav-toggle:checked ~ .nav-burger::before { content: "\2715"; }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 4px 4px;
    border-top: 1px solid rgba(194, 159, 85, 0.35);
    margin-top: 10px;
  }
  .nav-toggle:checked ~ .site-nav { display: flex; }
  .site-nav a { font-size: 0.95rem; }
  .nav-cta { padding: 8px 18px; }
  .hero { padding: 56px 0 64px; }
}

/* ---------- Seasonal features (v2) ---------- */
.seasonal-lead { max-width: 680px; margin-bottom: 44px; }

.season-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.season-card {
  border: 1px solid rgba(194, 159, 85, 0.5);
  border-radius: 16px;
  overflow: hidden;
  background: var(--cream);
  display: flex;
  flex-direction: column;
}

.season-img {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--charcoal);
}
.season-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.season-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  color: var(--white);
}
.tag-now { background: var(--emerald); }

.season-body {
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.season-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.season-body h3 { color: var(--emerald); font-size: 1.5rem; }

.season-desc { font-size: 0.97rem; margin-bottom: 18px; }

.season-facts {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.season-facts li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  color: var(--charcoal-soft);
  margin-bottom: 8px;
}
.season-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.season-facts strong { color: var(--emerald); }

.btn-sm { padding: 11px 24px; font-size: 0.9rem; align-self: flex-start; margin-top: auto; }

/* ---------- Year-round offer band ---------- */
.yearband {
  margin: 34px 0 8px;
  border-radius: 16px;
  background:
    radial-gradient(ellipse 60% 90% at 90% 0%, rgba(194, 159, 85, 0.22), transparent 60%),
    var(--emerald);
  color: var(--cream);
  padding: 36px 38px;
}
.yearband-kicker {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 8px;
}
.yearband h3 { color: var(--cream); font-size: 1.75rem; margin-bottom: 12px; }
.yearband-desc {
  font-size: 0.97rem;
  color: rgba(249, 244, 234, 0.9);
  margin-bottom: 18px;
  max-width: 640px;
}
.yearband-facts {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  max-width: 640px;
}
.yearband-facts li {
  position: relative;
  padding-left: 20px;
  font-size: 0.92rem;
  color: rgba(249, 244, 234, 0.85);
  margin-bottom: 8px;
}
.yearband-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.yearband-facts strong { color: var(--gold-soft); }
.btn-gold {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-gold:hover { background: var(--gold-soft); color: var(--charcoal); }

.season-disclaimer {
  margin-top: 34px;
  font-size: 0.84rem;
  color: var(--charcoal-soft);
  border-top: 1px solid rgba(194, 159, 85, 0.4);
  padding-top: 20px;
}

.contact-link {
  color: var(--emerald);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 71, 56, 0.35);
}
.contact-link:hover { border-bottom-color: var(--emerald); }

@media (max-width: 820px) {
  .season-grid { grid-template-columns: 1fr; }
  .yearband { padding: 28px 22px; }
}

/* ---------- Sub-pages (v7) ---------- */
.page-hero {
  padding: 72px 0 60px;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 55% at 50% 0%, rgba(194, 159, 85, 0.12), transparent 70%),
    var(--cream);
}
.page-hero h1 { margin-bottom: 18px; }
.page-lead { max-width: 640px; margin: 0 auto; }

.prose { max-width: 760px; margin: 0 auto; }
.prose p + p { margin-top: 16px; }

.card-meta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.card-link { margin-top: 16px; }
.card-link a {
  color: var(--emerald);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(26, 71, 56, 0.35);
}
.card-link a:hover { border-bottom-color: var(--emerald); }

.dot-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.dot-list li {
  position: relative;
  padding-left: 20px;
  font-size: 0.95rem;
  color: var(--charcoal-soft);
  margin-bottom: 8px;
}
.dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}
.dot-list strong { color: var(--emerald); }

.cta-band {
  padding: 84px 0;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 80% 10%, rgba(194, 159, 85, 0.14), transparent 60%),
    var(--emerald);
}
.cta-band h2 { color: var(--cream); }
.cta-lead { color: rgba(249, 244, 234, 0.86); margin-bottom: 28px; }
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-link-light {
  color: var(--gold-soft);
  border-bottom-color: rgba(217, 188, 130, 0.5);
}
.contact-link-light:hover { border-bottom-color: var(--gold-soft); }
.btn-ghost-light {
  border-color: var(--gold-soft);
  color: var(--cream);
  background: transparent;
}
.btn-ghost-light:hover { background: var(--gold); color: var(--charcoal); }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 14px;
}
.footer-nav a {
  color: rgba(249, 244, 234, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
}
.footer-nav a:hover { color: var(--gold-soft); }
.footer-contact {
  color: var(--gold-soft);
  font-size: 0.95rem;
  margin-bottom: 10px;
}

@media (max-width: 820px) {
  .page-hero { padding: 56px 0 48px; }
  .cta-band { padding: 64px 0; }
}
