/* =========================================================
   Prime Travels Co. — Luxury Marketing Website
   Palette: midnight navy, champagne gold, cream
   Headings: Playfair Display | Body: DM Sans | Accents: Cormorant Garamond (italic)
   South African English throughout.
   ========================================================= */

:root {
  --navy: #0f1b2d;
  --navy-deep: #0a1320;
  --navy-soft: #16263d;
  --gold: #c8a45c;
  --gold-bright: #dcbd7a;
  --gold-soft: #e7d3a8;
  --cream: #f6f1e7;
  --cream-deep: #efe7d6;
  --ink: #1c2433;
  --muted: #6b7280;
  --white: #ffffff;

  --shadow-sm: 0 6px 18px rgba(15, 27, 45, 0.08);
  --shadow-md: 0 18px 48px rgba(15, 27, 45, 0.16);
  --shadow-lg: 0 30px 80px rgba(15, 27, 45, 0.28);

  --radius: 14px;
  --radius-lg: 22px;
  --maxw: 1200px;

  --font-head: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-accent: "Cormorant Garamond", Georgia, serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 0.5em;
}

p { margin: 0 0 1em; }

a { color: var(--gold); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--gold-bright); }

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

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

.accent {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--gold);
  letter-spacing: 0.3px;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 14px;
}

.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }
.section--navy { background: var(--navy); color: var(--cream); }
.section--navy h1,
.section--navy h2,
.section--navy h3 { color: var(--cream); }
.section--cream-deep { background: var(--cream-deep); }

.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.section-head p { color: var(--muted); font-size: 1.05rem; }
.section--navy .section-head p { color: rgba(246, 241, 231, 0.78); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 15px 30px;
  border-radius: 999px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.2s ease, color 0.2s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }

.btn--gold { background: var(--gold); color: var(--navy); box-shadow: 0 10px 26px rgba(200, 164, 92, 0.4); }
.btn--gold:hover { background: var(--gold-bright); color: var(--navy); }

.btn--outline { background: transparent; color: var(--gold); border: 1.5px solid var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--navy); }

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

.btn--ghost { background: rgba(255,255,255,0.08); color: var(--cream); border: 1px solid rgba(231, 211, 168, 0.35); }
.btn--ghost:hover { background: rgba(255,255,255,0.16); color: var(--white); }

.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: 11px 20px; font-size: 0.85rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 19, 32, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(231, 211, 168, 0.14);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  display: grid; place-items: center;
  color: var(--gold);
  font-family: var(--font-head);
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}
.brand__name {
  font-family: var(--font-head);
  color: var(--cream);
  font-size: 1.25rem;
  line-height: 1;
}
.brand__name small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.nav__links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav__links a {
  display: inline-block;
  padding: 10px 16px;
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 500;
  border-radius: 999px;
}
.nav__links a:hover { color: var(--gold); }
.nav__links a.is-active { color: var(--gold); }

.nav__actions { display: flex; align-items: center; gap: 14px; }

.cart-btn {
  position: relative;
  background: transparent;
  border: 1px solid rgba(231, 211, 168, 0.4);
  color: var(--cream);
  border-radius: 999px;
  padding: 9px 16px 9px 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, color 0.2s;
}
.cart-btn:hover { border-color: var(--gold); color: var(--gold); }
.cart-count {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  min-width: 19px;
  height: 19px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  padding: 0 5px;
  font-weight: 700;
}

.nav__toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  background:
    linear-gradient(180deg, rgba(10, 19, 32, 0.55) 0%, rgba(10, 19, 32, 0.78) 100%),
    var(--navy);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero__inner { max-width: 760px; padding: 80px 0; }
.hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); color: var(--white); margin-bottom: 0.3em; }
.hero p.lead { font-size: 1.2rem; color: rgba(246, 241, 231, 0.9); max-width: 560px; }
.hero__cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.hero__stats {
  display: flex;
  gap: 40px;
  margin-top: 54px;
  flex-wrap: wrap;
}
.hero__stat strong {
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--gold);
  display: block;
}
.hero__stat span { font-size: 0.85rem; letter-spacing: 0.06em; color: rgba(246,241,231,0.75); }

/* ---------- Page banner (interior pages) ---------- */
.page-banner {
  background:
    linear-gradient(180deg, rgba(10,19,32,0.6), rgba(10,19,32,0.82)),
    var(--navy);
  background-size: cover;
  background-position: center;
  color: var(--cream);
  text-align: center;
  padding: 120px 0 96px;
}
.page-banner h1 { color: var(--white); font-size: clamp(2.2rem, 5vw, 3.6rem); }
.page-banner p { color: rgba(246,241,231,0.85); max-width: 620px; margin: 0 auto; font-size: 1.08rem; }

/* ---------- Grids ---------- */
.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__media {
  position: relative;
  aspect-ratio: 3 / 2;
  background: var(--navy-soft);
  background-size: cover;
  background-position: center;
}
.card__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
}
.card__tag--dark { background: var(--navy); color: var(--gold); }
.card__tag--vip {
  background: linear-gradient(120deg, var(--gold-bright), var(--gold));
  color: var(--navy-deep);
  box-shadow: 0 4px 14px rgba(200, 164, 92, 0.5);
}
.card__body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.card__city { font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.card__body h3 { margin: 6px 0 8px; font-size: 1.4rem; }
.card__desc { color: var(--muted); font-size: 0.95rem; margin-bottom: 18px; }
.card__features { list-style: none; padding: 0; margin: 0 0 22px; }
.card__features li {
  font-size: 0.9rem;
  padding: 7px 0 7px 26px;
  position: relative;
  border-bottom: 1px solid var(--cream-deep);
  color: var(--ink);
}
.card__features li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.card__foot { margin-top: auto; }
.card__price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 16px; }
.card__price .amount { font-family: var(--font-head); font-size: 1.9rem; color: var(--navy); }
.card__price .per { font-size: 0.82rem; color: var(--muted); }
.card__price .from { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }

/* ---------- Deal card (home) ---------- */
.deal-card .card__media { aspect-ratio: 4 / 3; }
.deal-meta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 14px; font-size: 0.84rem; color: var(--muted); }
.deal-meta span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Feature / value tiles ---------- */
.tile {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(15,27,45,0.05);
}
.section--navy .tile { background: var(--navy-soft); border-color: rgba(231,211,168,0.12); }
.tile__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(200,164,92,0.16);
  color: var(--gold);
  font-size: 1.5rem;
  margin-bottom: 18px;
}
.tile h3 { font-size: 1.25rem; }
.tile p { color: var(--muted); font-size: 0.95rem; margin: 0; }
.section--navy .tile p { color: rgba(246,241,231,0.75); }

/* ---------- Split (image + text) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--navy-soft);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
}
.split__media--tall { aspect-ratio: 3 / 4; }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery figure {
  margin: 0;
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--navy-soft);
  background-size: cover;
  background-position: center;
}
.gallery figure.wide { grid-column: span 2; aspect-ratio: 2 / 1; }
.gallery figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px 16px;
  background: linear-gradient(180deg, transparent, rgba(10,19,32,0.85));
  color: var(--cream);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.05rem;
}

/* ---------- Payment options ---------- */
.pay-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pay-card {
  background: var(--navy-soft);
  border: 1px solid rgba(231,211,168,0.16);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: border-color 0.2s, transform 0.2s;
}
.pay-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.pay-card--soon { opacity: 0.72; }
.pay-card--soon:hover { border-color: rgba(231,211,168,0.16); transform: none; }
.pay-card__badge--soon { background: rgba(231,211,168,0.22); color: var(--gold-soft); }
.pay-card__badge {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 5px 12px;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 14px;
  font-weight: 700;
}
.pay-card h3 { color: var(--cream); font-size: 1.3rem; margin-bottom: 8px; }
.pay-card p { color: rgba(246,241,231,0.7); font-size: 0.9rem; margin: 0; }
.pay-card .pjn { font-family: var(--font-head); color: var(--gold-bright); font-size: 1.4rem; }

/* ---------- Tabs (packages) ---------- */
.tabs { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-bottom: 44px; }
.tab {
  background: var(--white);
  border: 1px solid rgba(15,27,45,0.1);
  color: var(--navy);
  padding: 12px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.tab:hover { border-color: var(--gold); }
.tab.is-active { background: var(--navy); color: var(--gold); border-color: var(--navy); }

.tab-panel { display: none; }
.tab-panel.is-active { display: block; animation: fade 0.4s ease; }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.city-block { margin-bottom: 72px; }
.city-block:last-child { margin-bottom: 0; }
.city-block__head { text-align: center; margin-bottom: 40px; padding-bottom: 22px; border-bottom: 1px solid var(--cream-deep); }
.city-block__head h2 { font-size: clamp(2rem, 4vw, 2.8rem); margin: 0; }

.package-group { margin-bottom: 56px; }
.package-group__head { display: flex; align-items: baseline; gap: 14px; margin-bottom: 24px; flex-wrap: wrap; }
.package-group__head h3 { font-size: 1.8rem; margin: 0; }
.package-group__head .accent { font-size: 1.15rem; }

/* ---------- Builder CTA banner ---------- */
.builder-banner {
  background:
    linear-gradient(120deg, rgba(10,19,32,0.92), rgba(22,38,61,0.86)),
    var(--navy);
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  padding: 56px;
  text-align: center;
  color: var(--cream);
  box-shadow: var(--shadow-md);
}
.builder-banner h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.builder-banner p { color: rgba(246,241,231,0.82); max-width: 560px; margin: 0 auto 26px; }

/* ---------- Modal ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 20px;
  background: rgba(10, 19, 32, 0.72);
  backdrop-filter: blur(4px);
  overflow-y: auto;
}
.modal.is-open { display: flex; }
.modal__dialog {
  background: var(--cream);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 860px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: pop 0.3s ease;
}
@keyframes pop { from { opacity: 0; transform: scale(0.96) translateY(12px); } to { opacity: 1; transform: none; } }
.modal__head {
  background: var(--navy);
  color: var(--cream);
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}
.modal__head h2 { color: var(--white); margin: 0; font-size: 1.7rem; }
.modal__head p { margin: 6px 0 0; color: rgba(246,241,231,0.75); font-size: 0.92rem; }
.modal__close {
  background: transparent;
  border: 1px solid rgba(231,211,168,0.4);
  color: var(--cream);
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: background 0.2s;
}
.modal__close:hover { background: rgba(255,255,255,0.12); }
.modal__body { padding: 28px 32px; }
.modal__foot {
  padding: 22px 32px;
  background: var(--cream-deep);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.modal__foot .total { font-family: var(--font-head); font-size: 1.3rem; color: var(--navy); }
.modal__foot .total small { font-family: var(--font-body); font-size: 0.8rem; color: var(--muted); display: block; }

.builder-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 26px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 7px; letter-spacing: 0.02em; }
.field select, .field input, .field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(15,27,45,0.16);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
}
.field select:focus, .field input:focus, .field textarea:focus { outline: 2px solid var(--gold); border-color: var(--gold); }

.activity-cat { margin-bottom: 24px; }
.activity-cat h4 {
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--cream-deep);
  padding-bottom: 8px;
  margin-bottom: 14px;
}
.activity-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.activity {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid rgba(15,27,45,0.1);
  border-radius: 12px;
  padding: 13px 15px;
  cursor: pointer;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.activity:hover { border-color: var(--gold); }
.activity.is-checked { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold) inset; background: #fffdf8; }
.activity input { width: 18px; height: 18px; accent-color: var(--gold); flex-shrink: 0; }
.activity__info { flex: 1; }
.activity__info strong { display: block; font-size: 0.95rem; color: var(--navy); font-weight: 600; }
.activity__info span { font-size: 0.8rem; color: var(--muted); }
.activity__price { font-family: var(--font-head); color: var(--navy); font-size: 1rem; white-space: nowrap; }

/* ---------- Cart drawer ---------- */
.drawer-backdrop {
  position: fixed; inset: 0; z-index: 90;
  background: rgba(10,19,32,0.5);
  display: none;
}
.drawer-backdrop.is-open { display: block; }
.drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: 420px;
  max-width: 92vw;
  background: var(--cream);
  z-index: 95;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-lg);
}
.drawer.is-open { transform: none; }
.drawer__head {
  background: var(--navy);
  color: var(--cream);
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer__head h3 { color: var(--white); margin: 0; font-size: 1.3rem; }
.drawer__items { flex: 1; overflow-y: auto; padding: 20px 24px; }
.drawer__empty { text-align: center; color: var(--muted); padding: 60px 20px; }
.cart-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--cream-deep);
}
.cart-item__thumb {
  width: 64px; height: 64px;
  border-radius: 10px;
  background: var(--navy-soft);
  background-size: cover; background-position: center;
  flex-shrink: 0;
}
.cart-item__info { flex: 1; }
.cart-item__info strong { display: block; font-size: 0.95rem; color: var(--navy); }
.cart-item__info span { font-size: 0.8rem; color: var(--muted); }
.cart-item__price { font-family: var(--font-head); color: var(--navy); }
.cart-item__remove {
  background: transparent; border: none; color: var(--muted);
  cursor: pointer; font-size: 0.8rem; padding: 4px 0; text-decoration: underline;
}
.cart-item__remove:hover { color: #b54040; }
.drawer__foot { padding: 22px 24px; border-top: 1px solid var(--cream-deep); }
.drawer__total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.drawer__total span { color: var(--muted); }
.drawer__total strong { font-family: var(--font-head); font-size: 1.6rem; color: var(--navy); }

/* ---------- Checkout ---------- */
.checkout { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; }
.checkout__panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.checkout__panel h2 { font-size: 1.5rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .field--full { grid-column: 1 / -1; }
.field { margin-bottom: 4px; }

.pay-method {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid rgba(15,27,45,0.14);
  border-radius: 12px;
  padding: 16px 18px;
  cursor: pointer;
  margin-bottom: 12px;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.pay-method:hover { border-color: var(--gold); }
.pay-method.is-selected { border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold) inset; background: #fffdf8; }
.pay-method.is-disabled { opacity: 0.6; cursor: not-allowed; background: #f4f1ea; }
.pay-method.is-disabled:hover { border-color: rgba(15,27,45,0.14); }
.pay-method.is-disabled input { cursor: not-allowed; }
.pay-method__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #9a6a1a;
  background: #f3e4c4;
  border-radius: 999px;
  padding: 3px 9px;
  margin-left: 8px;
  vertical-align: middle;
}
.pay-method input { margin-top: 4px; accent-color: var(--gold); width: 18px; height: 18px; }
.pay-method__info strong { display: block; color: var(--navy); }
.pay-method__info span { font-size: 0.86rem; color: var(--muted); }

.summary {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}
.summary h3 { font-size: 1.3rem; }
.summary__line { display: flex; justify-content: space-between; padding: 11px 0; border-bottom: 1px solid var(--cream-deep); font-size: 0.92rem; }
.summary__line span:first-child { color: var(--ink); }
.summary__line span:last-child { font-weight: 600; color: var(--navy); }
.summary__total { display: flex; justify-content: space-between; padding-top: 18px; margin-top: 8px; align-items: baseline; }
.summary__total strong { font-family: var(--font-head); font-size: 1.7rem; color: var(--navy); }
.summary__plan { background: var(--cream-deep); border-radius: 12px; padding: 16px; margin-top: 18px; font-size: 0.88rem; color: var(--ink); }
.summary__plan strong { color: var(--navy); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 48px; align-items: start; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.contact-line { display: flex; gap: 16px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--cream-deep); }
.contact-line:last-child { border-bottom: none; }
.contact-line__icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(200,164,92,0.16); color: var(--gold);
  display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0;
}
.contact-line strong { display: block; font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.contact-line a, .contact-line p { color: var(--navy); font-size: 1.1rem; margin: 0; font-weight: 500; }

/* ---------- Notification toast ---------- */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(120%);
  background: var(--navy);
  color: var(--cream);
  padding: 15px 26px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
  z-index: 200;
  font-size: 0.92rem;
  font-weight: 500;
  border: 1px solid rgba(231,211,168,0.3);
  transition: transform 0.35s ease;
}
.toast.is-visible { transform: translateX(-50%) translateY(0); }
.toast strong { color: var(--gold); }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(246,241,231,0.75); padding: 70px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 50px; }
.footer-grid h4 { color: var(--cream); font-family: var(--font-body); font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 18px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { color: rgba(246,241,231,0.75); font-size: 0.95rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-about p { font-size: 0.95rem; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid rgba(231,211,168,0.14);
  padding-top: 26px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}
.footer-bottom a { color: rgba(246,241,231,0.75); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.divider-accent { width: 60px; height: 2px; background: var(--gold); margin: 0 auto 22px; border: none; }
.section-head .divider-accent { margin-bottom: 22px; }
.hidden { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid--3, .grid--4, .pay-grid, .gallery { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .checkout { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .summary { position: static; }
  .gallery figure.wide { grid-column: span 2; }
}

@media (max-width: 720px) {
  .nav__links {
    position: absolute;
    top: 78px; left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    gap: 4px;
    border-bottom: 1px solid rgba(231,211,168,0.14);
    display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__toggle { display: flex; }
  .nav__links a { padding: 14px 16px; }
  .section { padding: 64px 0; }
  .builder-intro, .form-grid, .activity-list { grid-template-columns: 1fr; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .pay-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .builder-banner { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero__stats { gap: 24px; }
  .modal__foot { flex-direction: column; align-items: stretch; }
  .modal__foot .btn { width: 100%; justify-content: center; }
}
