/* Porto to Lisbon Train — port wine / granite design system */

:root {
  --wine-950: #34101a;
  --wine-900: #4a1420;
  --wine-800: #611a29;
  --wine-700: #7d2536;
  --wine-500: #a53a4d;
  --wine-300: #cf8e9b;
  --wine-100: #f3e2e6;
  --stone: #efe9df;
  --stone-deep: #e3dac9;
  --white: #fffaf2;
  --ink: #26221f;
  --ink-soft: #5c5650;
  --line: #d9cdb4;
  --cork: #b9793c;
  --cork-dark: #8f5a26;
  --granite: #504a44;
  --radius: 14px;
  --shadow: 0 12px 30px -12px rgba(52, 16, 26, 0.32);
  --maxw: 1340px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--stone);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: "Spectral", Georgia, "Times New Roman", serif;
  color: var(--wine-900);
  line-height: 1.16;
  margin: 0 0 0.5em;
  font-weight: 600;
}
h1 { font-size: clamp(2rem, 4.4vw, 3.05rem); }
h2 { font-size: clamp(1.55rem, 2.9vw, 2.15rem); }
h3 { font-size: 1.22rem; }
p { margin: 0 0 1em; }
a { color: var(--wine-700); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 16px; }
section { padding: 72px 0; }
.section-head { max-width: 700px; margin: 0 auto 40px; text-align: center; }
.section-head p { color: var(--ink-soft); font-size: 1.05rem; }
.kicker {
  display: inline-block;
  font-size: 0.76rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cork-dark);
  font-weight: 700;
  margin-bottom: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  border: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--cork);
  color: var(--white);
  box-shadow: 0 8px 20px -8px rgba(143, 90, 38, 0.6);
}
.btn-primary:hover { background: var(--cork-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 250, 242, 0.55);
}
.btn-ghost:hover { background: rgba(255, 250, 242, 0.12); }
.btn-outline {
  background: transparent;
  color: var(--wine-700);
  border: 1.5px solid var(--wine-500);
  padding: 10px 20px;
}
.btn-outline:hover { background: var(--wine-100); }

/* ---------- Header ---------- */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--wine-950);
  border-bottom: 1px solid rgba(255, 250, 242, 0.08);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 18px;
  height: 68px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: "Spectral", serif;
  font-weight: 700;
  font-size: 1.15rem;
  white-space: nowrap;
}
.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--cork);
  color: var(--wine-950);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 800;
  flex: none;
}
nav.primary-nav {
  display: flex;
  gap: 14px;
  justify-self: center;
  flex-wrap: nowrap;
  min-width: 0;
}
nav.primary-nav a {
  color: rgba(255, 250, 242, 0.85);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
}
nav.primary-nav a:hover { color: var(--white); }
.header-cta { justify-self: end; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
  justify-self: end;
}
.nav-toggle svg { width: 24px; height: 24px; }
.mobile-panel { display: none; }

@media (max-width: 1060px) {
  .header-cta .btn { padding: 8px 14px; font-size: 0.85rem; }
}
@media (max-width: 860px) {
  .header-inner { grid-template-columns: auto 1fr auto; height: 62px; }
  nav.primary-nav { display: none; }
  .nav-toggle { display: block; }
  .header-cta .btn { padding: 7px 12px; font-size: 0.8rem; }
  .mobile-panel {
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    background: var(--wine-900);
    padding: 10px 16px 22px;
    box-shadow: var(--shadow);
  }
  .mobile-panel.open { display: block; }
  .mobile-panel a {
    display: block;
    padding: 12px 0;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 250, 242, 0.1);
    font-weight: 500;
  }
}

/* ---------- Hero: torn wine-label motif ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--wine-900);
  color: var(--white);
  padding: 60px 0 76px;
}
@media (max-width: 900px) { .hero { padding: 34px 0 26px; } }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 90% at 15% 20%, rgba(181, 121, 60, 0.22), transparent 60%),
    radial-gradient(ellipse 50% 70% at 90% 85%, rgba(207, 142, 155, 0.16), transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .hero-inner { grid-template-columns: 1fr; align-items: stretch; gap: 0; } }
.label-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Spectral", serif;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--cork);
  margin-bottom: 18px;
}
.label-line .thread { flex: 1; height: 1px; background: repeating-linear-gradient(90deg, var(--cork) 0 6px, transparent 6px 11px); }
.hero h1 { color: var(--white); }
.hero-sub { font-size: 1.12rem; color: rgba(255, 250, 242, 0.88); max-width: 540px; }
.hero-actions { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }
@media (max-width: 900px) { .hero-actions { margin-top: 16px; } }
.stat-panel { margin-top: 0; border: 1px solid rgba(255, 250, 242, 0.18); border-radius: var(--radius); padding: 20px; background: rgba(255, 250, 242, 0.05); }
@media (max-width: 900px) { .stat-panel { margin-top: 18px; } }
.stat-panel-label {
  display: block;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 250, 242, 0.55);
  margin-bottom: 14px;
}
@media (max-width: 900px) { .stat-panel-label { margin-bottom: 6px; } }
.stat-strip { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (max-width: 900px) { .stat-strip { gap: 8px; grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 640px) { .stat-strip { grid-template-columns: repeat(2, 1fr); } }
.stat { background: rgba(255, 250, 242, 0.07); border: 1px solid rgba(255, 250, 242, 0.14); border-radius: var(--radius); padding: 16px 18px; }
@media (max-width: 900px) { .stat { padding: 12px 14px; } }
.stat b { display: block; font-family: "Spectral", serif; font-size: 1.45rem; color: var(--white); }
@media (max-width: 900px) { .stat b { font-size: 1.15rem; } }
.stat span { font-size: 0.82rem; color: rgba(255, 250, 242, 0.72); }

#firebird-search-widget { min-height: 210px; }
/* The embedded widget ships its own 64px top/bottom padding baked into its
   outer wrapper div — override it directly (targeted by ID + direct child,
   not its hashed class names, so it survives their next redeploy) since it
   otherwise leaves a lot of dead space below the form on this page. */
#firebird-search-widget > div { padding: 20px !important; }

/* ---------- Widget strip ---------- */
.widget-strip { background: var(--stone-deep); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 36px 0 14px; }
.widget-strip .container { max-width: 1324px; padding: 0 26px; }
.widget-strip .section-head { margin-bottom: 2px; }
.widget-strip .section-head .kicker { margin-bottom: 4px; }
.widget-strip .section-head p { margin-bottom: 0; }

/* ---------- Journey gauge: scroll-driven port-wine glass fill ---------- */
.journey-gauge {
  position: fixed;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 40;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}
@media (max-width: 1620px) { .journey-gauge { display: none; } }
.gauge-bottle {
  width: 60px;
  height: 216px;
  overflow: visible;
  filter: drop-shadow(0 10px 20px rgba(52, 16, 26, 0.35));
}
.wine-grad-a { stop-color: var(--wine-300); }
.wine-grad-b { stop-color: var(--wine-800); }
.gauge-cork { fill: var(--cork); stroke: var(--cork-dark); stroke-width: 1.5; }
.gauge-fill-rect { fill: url(#wineGrad); transition: y 0.1s linear, height 0.1s linear; }
.gauge-sheen { fill: var(--wine-100); transition: y 0.1s linear, opacity 0.15s linear; }
.gauge-outline { fill: none; stroke: var(--wine-700); stroke-width: 2.5; }
.gauge-tick-line {
  stroke: var(--wine-100);
  stroke-width: 1.6;
  stroke-dasharray: 3 3;
  opacity: 0.55;
  transition: stroke 0.2s ease, opacity 0.2s ease;
}
.gauge-tick-line.is-active { stroke: var(--cork); opacity: 0.9; }
.gauge-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--wine-800);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
  box-shadow: var(--shadow);
}

/* ---------- Route text + diagram ---------- */
.route-columns { display: grid; grid-template-columns: 1.5fr 0.8fr; gap: 44px; align-items: center; }
@media (max-width: 860px) { .route-columns { grid-template-columns: 1fr; } }
.route-text { text-align: left; }
.route-text .kicker, .route-text h2, .route-text p { margin-left: 0; }

/* Route diagram: the poster map stands on its own, no card wrapper */
.route-diagram {
  justify-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.route-diagram-heading {
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--wine-800);
  text-align: center;
  max-width: 320px;
}
.route-map-figure { margin: 0; max-width: 320px; }
.route-map-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  box-shadow: 0 12px 26px -10px rgba(52, 16, 26, 0.45);
}
.route-caption {
  margin: 14px 0 0;
  font-size: 0.76rem;
  font-style: italic;
  line-height: 1.5;
  text-align: center;
  color: var(--ink-soft);
}

/* ---------- Comparison table ---------- */
.compare-wrap { overflow-x: auto; margin-top: 30px; }
table.compare { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); min-width: 640px; }
table.compare th, table.compare td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--stone-deep); font-size: 0.95rem; }
table.compare thead th { background: var(--wine-100); color: var(--wine-900); font-family: "Spectral", serif; font-weight: 600; }
table.compare tr:last-child td { border-bottom: none; }
table.compare a.btn-outline { font-size: 0.85rem; padding: 8px 16px; white-space: nowrap; }

/* ---------- Station cards ---------- */
.station-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 30px; }
@media (max-width: 800px) { .station-grid { grid-template-columns: 1fr; } }
.station-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; }
.station-card h3 { color: var(--wine-900); }
.station-card .tag {
  display: inline-block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em;
  background: var(--wine-100); color: var(--wine-700); padding: 3px 10px; border-radius: 999px; margin-bottom: 10px; font-weight: 600;
}
.station-addr { list-style: none; margin: auto 0 0; padding: 14px 0 0; border-top: 1px solid var(--stone-deep); display: flex; flex-direction: column; gap: 8px; }
.station-addr li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.86rem; color: var(--ink-soft); }
.station-addr svg { width: 16px; height: 16px; flex: none; margin-top: 2px; color: var(--cork); }
.station-addr strong { color: var(--ink); }

/* ---------- Transport comparison ---------- */
.transport-compare { display: flex; flex-direction: column; gap: 18px; margin-top: 34px; }
.transport-row { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; }
.transport-row:not(.transport-row--winner) { opacity: 0.82; }
.transport-row--winner {
  position: relative; display: block; background: var(--wine-900); border-color: var(--wine-900);
  box-shadow: var(--shadow); text-decoration: none; cursor: pointer; transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.transport-row--winner:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -14px rgba(52, 16, 26, 0.55); text-decoration: none; }
.transport-badge {
  position: absolute; top: -12px; left: 26px; background: var(--cork); color: var(--white);
  font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; padding: 4px 12px; border-radius: 999px;
}
.transport-row-head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 16px; }
.transport-row-head h3 { display: flex; align-items: center; gap: 10px; margin: 0; font-size: 1.1rem; flex: 1; }
.transport-row--winner h3 { color: var(--white); }
.transport-icon {
  width: 34px; height: 34px; border-radius: 9px; background: var(--wine-100); color: var(--wine-700);
  display: flex; align-items: center; justify-content: center; flex: none;
}
.transport-icon svg { width: 21px; height: 21px; }
.transport-row--winner .transport-icon { background: rgba(255, 250, 242, 0.15); color: var(--white); }
.transport-total { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); background: var(--stone-deep); padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.transport-row--winner .transport-total { background: rgba(255, 250, 242, 0.15); color: var(--white); }
.transport-steps { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.step-chip { background: var(--stone-deep); color: var(--ink-soft); font-size: 0.85rem; padding: 8px 14px; border-radius: 999px; white-space: nowrap; }
.transport-row--winner .step-chip { background: rgba(255, 250, 242, 0.12); color: var(--white); }
.step-arrow { color: var(--line); font-size: 1rem; flex: none; }
.transport-row--winner .step-arrow { color: rgba(255, 250, 242, 0.4); }
.step-chip--cta { background: var(--cork); color: var(--white); font-weight: 600; }
.transport-row--winner:hover .step-chip--cta { background: var(--cork-dark); }
.step-arrow--cta { color: rgba(255, 250, 242, 0.7); }
@media (max-width: 640px) { .transport-row { padding: 20px; } }

/* ---------- Departure city spotlight (Porto) ---------- */
.spotlight { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
@media (max-width: 860px) { .spotlight { grid-template-columns: 1fr; } }
.spotlight-card {
  background: var(--wine-950);
  color: rgba(255, 250, 242, 0.9);
  border-radius: var(--radius);
  padding: 30px 32px;
  box-shadow: var(--shadow);
}
.spotlight-card h3 { color: var(--white); }
.spotlight-card p { color: rgba(255, 250, 242, 0.82); }
.spotlight-facts { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.spotlight-facts li { padding-left: 20px; position: relative; font-size: 0.92rem; }
.spotlight-facts li::before { content: "\2022"; position: absolute; left: 0; color: var(--cork); font-weight: 700; }

/* ---------- Promo banner (mid-page eye-catcher between text-heavy sections) ---------- */
.promo-banner { padding: 56px 0; background: var(--wine-900); }
.promo-banner-inner {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 760px) { .promo-banner-inner { grid-template-columns: 1fr; } }
.promo-banner-media {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(0, 0, 0, 0.45));
}
.promo-banner-content .kicker { color: var(--cork); }
.promo-banner-content h2 { color: var(--white); }
.promo-banner-content p { color: rgba(255, 250, 242, 0.82); max-width: 480px; }
.promo-banner-content .btn { margin-top: 6px; }

/* ---------- Luggage diagram ---------- */
.luggage-layout { display: grid; grid-template-columns: 260px 1fr; gap: 44px; align-items: center; margin-top: 34px; }
@media (max-width: 760px) { .luggage-layout { grid-template-columns: 1fr; } }
.luggage-diagram { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.luggage-svg { width: 100%; max-width: 220px; height: auto; }
.bag-body path, .bag-body rect, .bag-body line { stroke: var(--wine-700); }
.bag-dims line { stroke: var(--cork-dark); }
.bag-dims text { fill: var(--cork-dark); font-family: "Inter", sans-serif; }
.luggage-depth-note { font-size: 0.82rem; color: var(--ink-soft); font-style: italic; }
.fact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.fact-list li { padding-left: 22px; position: relative; color: var(--ink-soft); font-size: 0.95rem; }
.fact-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--cork); }
.fact-list strong { color: var(--ink); }

/* ---------- Feature grid (3-up fact cards, fills the row instead of a narrow list) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 24px; }
@media (max-width: 760px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.feature-card strong {
  display: block;
  font-family: "Spectral", serif;
  font-size: 1.02rem;
  color: var(--wine-900);
  margin-bottom: 6px;
}

/* ---------- Accessibility stepper ---------- */
.stepper { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 36px; }
.stepper::before {
  content: ""; position: absolute; top: 16px; left: 6%; right: 6%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--wine-300) 0 8px, transparent 8px 14px); z-index: 0;
}
@media (max-width: 860px) {
  .stepper { grid-template-columns: 1fr; gap: 26px; }
  .stepper::before { top: 0; bottom: 0; left: 15px; right: auto; width: 2px; height: auto; background: repeating-linear-gradient(180deg, var(--wine-300) 0 8px, transparent 8px 14px); }
}
.stepper-item { position: relative; text-align: center; }
@media (max-width: 860px) { .stepper-item { text-align: left; padding-left: 56px; } }
.stepper-num {
  position: relative; z-index: 1; width: 32px; height: 32px; border-radius: 50%; background: var(--wine-700); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-family: "Spectral", serif; font-weight: 700; font-size: 0.95rem; margin: 0 auto 12px;
}
@media (max-width: 860px) { .stepper-num { position: absolute; left: 0; top: 0; margin: 0; } }
.stepper-icon { color: var(--cork); margin-bottom: 8px; }
.stepper-icon svg { width: 24px; height: 24px; margin: 0 auto; display: block; }
@media (max-width: 860px) { .stepper-icon svg { margin: 0 0 6px; } }
.stepper-item h4 { margin-bottom: 4px; font-size: 1rem; }
.stepper-item p { font-size: 0.87rem; color: var(--ink-soft); margin-bottom: 0; }

/* ---------- Ticket-styled tips card ---------- */
.ticket-card {
  position: relative; display: grid; grid-template-columns: 1fr 240px; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow); margin-top: 34px;
}
.ticket-card::before, .ticket-card::after {
  content: ""; position: absolute; width: 26px; height: 26px; background: var(--stone-deep);
  border-radius: 50%; right: 240px; transform: translateX(-50%);
}
.ticket-card::before { top: -13px; }
.ticket-card::after { bottom: -13px; }
.ticket-main { padding: 30px 34px; display: flex; flex-direction: column; gap: 22px; }
.ticket-row { display: flex; gap: 14px; align-items: flex-start; }
.ticket-row-icon { width: 30px; height: 30px; border-radius: 8px; background: var(--wine-100); color: var(--wine-700); display: flex; align-items: center; justify-content: center; flex: none; }
.ticket-row-icon svg { width: 17px; height: 17px; }
.ticket-row h4 { margin: 0 0 4px; font-size: 1rem; color: var(--wine-900); }
.ticket-row p { margin: 0; font-size: 0.88rem; color: var(--ink-soft); }
.ticket-stub {
  position: relative; background: linear-gradient(165deg, rgba(185, 121, 60, 0.14), rgba(185, 121, 60, 0.05));
  box-shadow: inset 1px 0 0 rgba(143, 90, 38, 0.14); border-left: 2px dashed var(--cork);
  border-radius: 0 var(--radius) var(--radius) 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 12px; padding: 28px 22px;
}
.ticket-stub-label { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; color: var(--cork-dark); }
.ticket-stub .btn { white-space: nowrap; }
.ticket-stub-note { font-size: 0.78rem; color: var(--ink-soft); }
@media (max-width: 720px) {
  .ticket-card { grid-template-columns: 1fr; }
  .ticket-card::before, .ticket-card::after { display: none; }
  .ticket-stub { border-left: none; border-top: 2px dashed var(--cork); border-radius: 0 0 var(--radius) var(--radius); }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 30px auto 0; }
details.faq-item { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 4px 20px; margin-bottom: 12px; }
details.faq-item summary { cursor: pointer; padding: 16px 0; font-weight: 600; color: var(--wine-900); list-style: none; display: flex; justify-content: space-between; gap: 12px; }
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: "+"; font-size: 1.3rem; color: var(--cork); flex: none; }
details.faq-item[open] summary::after { content: "\2212"; }
details.faq-item p { padding-bottom: 16px; color: var(--ink-soft); }

/* ---------- Footer ---------- */
footer { background: var(--wine-950); color: rgba(255, 250, 242, 0.78); padding: 46px 0 30px; font-size: 0.88rem; }
footer .container { max-width: var(--maxw); }
footer a { color: rgba(255, 250, 242, 0.9); text-decoration: underline; }
footer p { margin: 0 0 12px; }
.section-alt { background: var(--stone-deep); }
.muted { color: var(--ink-soft); }
