/* ==========================================================================
   Page components: hero, trust bar, model cards, timeline, calculators, FAQ
   ========================================================================== */

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--ink); color: #fff; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; opacity: .55; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(9,20,27,.94) 0%, rgba(9,20,27,.78) 42%, rgba(9,20,27,.35) 100%);
}
.hero-inner { position: relative; padding-block: clamp(5rem, 12vw, 9.5rem); max-width: 44rem; }
.hero h1 { font-size: var(--text-3xl); color: #fff; margin-bottom: var(--space-6); }
.hero p { font-size: var(--text-lg); color: rgba(255,255,255,.82); line-height: 1.55; max-width: 40ch; }
.hero .btn-row { margin-top: var(--space-8); }
.hero-tag {
  display: inline-flex; align-items: center; gap: .5rem; margin-bottom: var(--space-6);
  padding: .4375rem .875rem; border: 1px solid rgba(255,255,255,.3); border-radius: 100px;
  font-size: var(--text-xs); font-weight: 600; letter-spacing: .05em; color: rgba(255,255,255,.9);
}
.hero-tag::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.hero-stats { display: flex; flex-wrap: wrap; gap: clamp(1.5rem,4vw,3rem); margin-top: var(--space-12); padding-top: var(--space-8); border-top: 1px solid rgba(255,255,255,.16); }
.hero-stats div strong { display: block; font-family: var(--font-display); font-size: 1.75rem; color: #fff; line-height: 1; }
.hero-stats div span { font-size: var(--text-xs); letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); }

/* Page hero (interior pages) */
.page-hero { background: var(--ink); color: #fff; padding-block: clamp(3.5rem, 8vw, 6rem); }
.page-hero h1 { color: #fff; max-width: 20ch; }
.page-hero p { margin-top: var(--space-5); font-size: var(--text-lg); color: rgba(255,255,255,.75); max-width: 56ch; line-height: 1.55; }

/* ---------- Trust bar ---------- */
.trust-bar { background: var(--ink-soft); color: #fff; padding-block: var(--space-8); }
.trust-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: var(--space-6); }
@media (max-width: 900px) { .trust-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-5); } }
.trust-item { display: flex; gap: var(--space-3); align-items: flex-start; }
.trust-item svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.trust-item strong { display: block; font-size: var(--text-sm); font-weight: 700; }
.trust-item span { font-size: var(--text-xs); color: rgba(255,255,255,.62); line-height: 1.4; }

/* ---------- Model cards ---------- */
.model-card { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; }
.model-card .ratio { border-bottom: 1px solid var(--line-soft); }
.model-card-badge { position: absolute; top: var(--space-3); left: var(--space-3); z-index: 2; }
.model-card-body { padding: var(--space-6); display: flex; flex-direction: column; flex: 1; gap: var(--space-3); }
.model-card h3 { font-family: var(--font-display); font-size: 1.375rem; }
.model-config { font-size: var(--text-xs); font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-muted); }
.model-specs { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.model-specs span { font-size: var(--text-xs); font-weight: 600; padding: .25rem .5625rem; background: var(--surface-2); border-radius: var(--radius-sm); color: var(--ink-soft); }
.model-card p { font-size: var(--text-sm); color: var(--ink-muted); line-height: 1.55; }
.model-best { font-size: var(--text-xs); font-weight: 700; color: var(--sage-deep); }
.model-price { margin-top: auto; padding-top: var(--space-4); border-top: 1px solid var(--line-soft); display: flex; align-items: baseline; gap: var(--space-2); }
.model-price small { font-size: var(--text-xs); color: var(--ink-muted); text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
.model-price strong { font-family: var(--font-display); font-size: 1.625rem; }
.model-card .btn-row { margin-top: var(--space-4); }
.model-card .btn-row .btn { flex: 1; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split-media img { border-radius: var(--radius); }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } .split-media { order: -1; } }

/* ---------- Timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-6); counter-reset: step; }
@media (max-width: 1000px) { .timeline { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 620px)  { .timeline { grid-template-columns: 1fr; } }
.timeline-step { position: relative; padding-top: var(--space-8); }
.timeline-step::before {
  counter-increment: step; content: '0' counter(step);
  position: absolute; top: 0; left: 0;
  font-family: var(--font-display); font-size: var(--text-xs); font-weight: 800;
  letter-spacing: .12em; color: var(--accent);
}
.timeline-step::after { content: ''; position: absolute; top: 1.375rem; left: 0; right: 0; height: 2px; background: var(--line); }
.timeline-step:last-child::after { right: 0; }
.section-dark .timeline-step::after { background: rgba(255,255,255,.18); }
.section-dark .timeline-step::before { color: var(--gold); }
.timeline-step h3 { margin-bottom: var(--space-2); font-size: var(--text-base); }
.timeline-step p { font-size: var(--text-sm); color: var(--ink-muted); line-height: 1.5; }
.section-dark .timeline-step p { color: rgba(255,255,255,.66); }

/* ---------- Why-us cards ---------- */
.why-card { padding: var(--space-8); background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); }
.why-card svg { width: 30px; height: 30px; color: var(--accent); margin-bottom: var(--space-5); }
.why-card h3 { margin-bottom: var(--space-3); }
.why-card p { font-size: var(--text-sm); color: var(--ink-muted); line-height: 1.6; }

/* ---------- Video feature ---------- */
.video-frame { position: relative; border-radius: var(--radius); overflow: hidden; background: #000; cursor: pointer; }
.video-frame video { width: 100%; display: block; }
.video-frame .video-poster { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .3s var(--ease); }
.video-frame .play-btn {
  position: absolute; inset: 0; margin: auto; width: 82px; height: 82px; border-radius: 50%;
  background: rgba(255,255,255,.95); border: none; display: grid; place-items: center; cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease);
}
.video-frame:hover .play-btn { transform: scale(1.07); }
.video-frame .play-btn svg { width: 28px; height: 28px; color: var(--ink); margin-left: 4px; }
.video-frame.playing .video-poster, .video-frame.playing .play-btn { opacity: 0; pointer-events: none; }
.video-badge {
  position: absolute; top: var(--space-4); left: var(--space-4); z-index: 3;
  background: rgba(9,20,27,.82); color: #fff; padding: .375rem .75rem; border-radius: var(--radius-sm);
  font-size: var(--text-xs); font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}

/* ---------- Testimonials ---------- */
.quote-card { padding: var(--space-8); background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); display: flex; flex-direction: column; gap: var(--space-4); }
.stars { display: flex; gap: 2px; color: var(--gold); }
.stars svg { width: 16px; height: 16px; }
.quote-card blockquote { font-size: var(--text-base); line-height: 1.6; color: var(--ink-soft); }
.quote-card cite { margin-top: auto; font-style: normal; font-size: var(--text-sm); font-weight: 700; }
.quote-card cite span { display: block; font-weight: 400; color: var(--ink-muted); font-size: var(--text-xs); }

/* ---------- FAQ accordion ---------- */
.acc-item { border-bottom: 1px solid var(--line); }
.acc-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: var(--space-4);
  padding: var(--space-5) 0; background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-body); font-size: var(--text-base); font-weight: 700; color: var(--ink);
}
.acc-trigger:hover { color: var(--accent); }
.acc-icon { flex-shrink: 0; width: 20px; height: 20px; position: relative; }
.acc-icon::before, .acc-icon::after { content: ''; position: absolute; background: currentColor; transition: transform .25s var(--ease); }
.acc-icon::before { top: 9px; left: 0; width: 20px; height: 2px; }
.acc-icon::after  { top: 0; left: 9px; width: 2px; height: 20px; }
.acc-item.open .acc-icon::after { transform: scaleY(0); }
.acc-panel { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.acc-item.open .acc-panel { max-height: 42rem; }
.acc-panel > div { padding-bottom: var(--space-6); color: var(--ink-muted); line-height: 1.65; max-width: 68ch; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--accent); color: #fff; text-align: center; }
.cta-band h2 { color: #fff; max-width: 22ch; margin-inline: auto; }
.cta-band p { margin: var(--space-5) auto 0; max-width: 52ch; color: rgba(255,255,255,.88); font-size: var(--text-lg); }
.cta-band .btn-row { justify-content: center; margin-top: var(--space-8); }
.cta-band .btn-dark { background: var(--ink); }
.cta-band .btn-ghost-light:hover { color: var(--accent); }

/* ---------- Gallery ---------- */
.gallery-grid { columns: 3; column-gap: var(--space-4); }
@media (max-width: 900px) { .gallery-grid { columns: 2; } }
@media (max-width: 560px) { .gallery-grid { columns: 1; } }
.gallery-grid figure { break-inside: avoid; margin-bottom: var(--space-4); position: relative; border-radius: var(--radius); overflow: hidden; cursor: zoom-in; background: var(--surface-2); }
.gallery-grid img { width: 100%; transition: transform .5s var(--ease); }
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: var(--space-8) var(--space-4) var(--space-4);
  background: linear-gradient(to top, rgba(9,20,27,.88), transparent);
  color: #fff; font-size: var(--text-sm); font-weight: 600;
  opacity: 0; transform: translateY(8px); transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.gallery-grid figure:hover figcaption { opacity: 1; transform: none; }

#lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(9,20,27,.95); display: none; place-items: center; padding: var(--space-8); }
#lightbox.open { display: grid; }
#lightbox img { max-width: min(94vw, 1400px); max-height: 82vh; object-fit: contain; border-radius: var(--radius-sm); }
#lightbox .lb-caption { color: rgba(255,255,255,.8); text-align: center; margin-top: var(--space-4); font-size: var(--text-sm); }
#lightbox button { position: absolute; background: rgba(255,255,255,.12); border: none; color: #fff; width: 48px; height: 48px; border-radius: 50%; cursor: pointer; display: grid; place-items: center; transition: background .2s var(--ease); }
#lightbox button:hover { background: rgba(255,255,255,.28); }
#lightbox button svg { width: 22px; height: 22px; }
.lb-close { top: var(--space-6); right: var(--space-6); }
.lb-prev { left: var(--space-6); top: 50%; transform: translateY(-50%); }
.lb-next { right: var(--space-6); top: 50%; transform: translateY(-50%); }
@media (max-width: 640px) { .lb-prev { left: var(--space-3); } .lb-next { right: var(--space-3); } }

/* ---------- Comparison table ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
table.data { width: 100%; border-collapse: collapse; min-width: 640px; }
table.data th, table.data td { padding: var(--space-4) var(--space-5); text-align: left; border-bottom: 1px solid var(--line-soft); font-size: var(--text-sm); }
table.data thead th { background: var(--surface-2); font-size: var(--text-xs); letter-spacing: .08em; text-transform: uppercase; color: var(--ink-muted); font-weight: 700; white-space: nowrap; }
table.data tbody tr:last-child td { border-bottom: none; }
table.data td strong { font-weight: 700; }

/* ---------- Sticky mobile action bar ---------- */
.mobile-bar { display: none; }
@media (max-width: 720px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-2);
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: var(--space-3) var(--space-4) calc(var(--space-3) + env(safe-area-inset-bottom));
    background: rgba(251,249,245,.96); backdrop-filter: blur(12px); border-top: 1px solid var(--line);
  }
  .mobile-bar .btn { padding: .8125rem 1rem; font-size: var(--text-sm); }
  body { padding-bottom: 4.75rem; }
}

/* ---------- Range inputs ---------- */
input[type=range] { -webkit-appearance: none; appearance: none; width: 100%; height: 4px; border-radius: 4px; background: var(--line); outline: none; cursor: pointer; }
.section-dark input[type=range] { background: rgba(255,255,255,.22); }
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--accent); border: 3px solid #fff; box-shadow: 0 1px 6px rgba(16,32,42,.28); cursor: grab;
  transition: transform .15s var(--ease);
}
input[type=range]::-webkit-slider-thumb:hover { transform: scale(1.1); }
input[type=range]::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%; background: var(--accent);
  border: 3px solid #fff; box-shadow: 0 1px 6px rgba(16,32,42,.28); cursor: grab;
}
input[type=range]:focus-visible::-webkit-slider-thumb { outline: 2px solid var(--gold); outline-offset: 2px; }

/* ---------- Segmented + chip controls ---------- */
.seg { display: inline-flex; background: var(--surface-2); border-radius: var(--radius-sm); padding: 3px; gap: 3px; }
.section-dark .seg { background: rgba(255,255,255,.09); }
.seg button {
  border: none; background: none; padding: .5rem 1rem; border-radius: 5px; cursor: pointer;
  font-size: var(--text-sm); font-weight: 600; color: var(--ink-muted);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.section-dark .seg button { color: rgba(255,255,255,.65); }
.seg button:hover { color: var(--ink); }
.section-dark .seg button:hover { color: #fff; }
.seg button.on { background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm); }
.section-dark .seg button.on { background: var(--white); color: var(--ink); }

.chips { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.chips button {
  padding: .5rem .875rem; border-radius: 100px; cursor: pointer;
  border: 1.5px solid var(--line); background: transparent; color: var(--ink-muted);
  font-size: var(--text-sm); font-weight: 600;
  transition: border-color .18s var(--ease), background .18s var(--ease), color .18s var(--ease);
}
.section-dark .chips button { border-color: rgba(255,255,255,.28); color: rgba(255,255,255,.72); }
.chips button:hover { border-color: var(--accent); color: var(--accent); }
.section-dark .chips button:hover { border-color: var(--gold); color: var(--gold); }
.chips button.on { background: var(--accent); border-color: var(--accent); color: #fff; }
.section-dark .chips button.on { background: var(--gold); border-color: var(--gold); color: var(--ink); }

/* ---------- Mini designer ---------- */
.mini-builder { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); padding: var(--space-6); display: grid; gap: var(--space-5); }
.mini-row { display: grid; gap: var(--space-3); }
.mini-label { font-size: var(--text-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); }
.mini-label b { color: var(--gold); font-family: var(--font-display); font-size: var(--text-sm); letter-spacing: 0; margin-left: .375rem; }
.mini-total { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: var(--space-3); padding-top: var(--space-5); border-top: 1px solid rgba(255,255,255,.14); }
.mini-total span { display: block; font-size: var(--text-xs); letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: .25rem; }
.mini-total strong { font-family: var(--font-display); font-size: 2.25rem; color: #fff; line-height: 1; }
.mini-range { font-size: var(--text-sm); color: rgba(255,255,255,.62); }

/* ---------- Mini rental calculator ---------- */
.rental-mini { display: grid; grid-template-columns: 1.35fr 1fr; gap: clamp(1.5rem,4vw,3rem); background: var(--white); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: clamp(1.5rem,3vw,2.5rem); }
@media (max-width: 820px) { .rental-mini { grid-template-columns: 1fr; } }
.rm-controls { display: grid; gap: var(--space-6); align-content: start; }
.rm-field { display: grid; gap: var(--space-3); }
.rm-field label { font-size: var(--text-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-muted); }
.rm-field label b { color: var(--accent); font-family: var(--font-display); font-size: var(--text-sm); letter-spacing: 0; margin-left: .375rem; }
.rm-results { display: grid; gap: var(--space-4); align-content: center; background: var(--surface-2); border-radius: var(--radius-sm); padding: var(--space-6); }
.rm-stat span { display: block; font-size: var(--text-xs); font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: .25rem; }
.rm-stat strong { font-family: var(--font-display); font-size: 1.875rem; line-height: 1; }
.rm-stat:first-child strong { color: var(--ink); }
.rm-stat:nth-child(2) strong { color: var(--accent); }
.mini-row .seg, .mini-row .chips { justify-self: start; }

/* ---------- Process list ---------- */
.proc { display: grid; gap: clamp(2rem, 4vw, 3rem); max-width: 60rem; }
.proc-step { display: grid; grid-template-columns: 5.5rem 1fr; gap: var(--space-6); padding-bottom: clamp(2rem,4vw,3rem); border-bottom: 1px solid var(--line-soft); }
.proc-step:last-child { border-bottom: none; padding-bottom: 0; }
@media (max-width: 620px) { .proc-step { grid-template-columns: 1fr; gap: var(--space-3); } }
.proc-num { font-family: var(--font-display); font-size: 2.75rem; line-height: 1; color: var(--line); }
.proc-body h2 { font-size: clamp(1.375rem, 2.4vw, 1.75rem); }
.proc-when { margin-top: .375rem; font-size: var(--text-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
.proc-body p:not(.proc-when) { margin-top: var(--space-4); color: var(--ink-muted); line-height: 1.65; max-width: 60ch; }
.proc-body .btn { margin-top: var(--space-5); }

/* ---------- Check / X lists ---------- */
.check-list, .x-list { display: grid; gap: var(--space-4); }
.check-list li, .x-list li { position: relative; padding-left: 2rem; color: var(--ink-muted); line-height: 1.6; }
.check-list li b, .x-list li b { color: var(--ink); }
.check-list li::before {
  content: ''; position: absolute; left: 0; top: .3rem; width: 18px; height: 18px; border-radius: 50%;
  background: var(--sage) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
}
.x-list li::before {
  content: ''; position: absolute; left: 0; top: .3rem; width: 18px; height: 18px; border-radius: 50%;
  background: var(--surface-2) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7A85' stroke-width='4' stroke-linecap='round'%3E%3Cpath d='M18 6 6 18M6 6l12 12'/%3E%3C/svg%3E") center/10px no-repeat;
  border: 1px solid var(--line);
}

/* ---------- Fee card ---------- */
.fee-card { display: grid; grid-template-columns: 20rem 1fr; gap: clamp(2rem,4vw,3.5rem); align-items: center; background: var(--white); border: 1.5px solid var(--accent); border-radius: var(--radius); padding: clamp(1.75rem,4vw,3rem); }
@media (max-width: 780px) { .fee-card { grid-template-columns: 1fr; } }
.fee-amt { font-family: var(--font-display); font-size: clamp(2.75rem, 6vw, 3.75rem); line-height: 1; color: var(--accent); margin-top: .375rem; }
.fee-note { margin-top: var(--space-3); font-size: var(--text-sm); color: var(--ink-muted); line-height: 1.55; }
.fee-credit p { color: var(--ink-muted); line-height: 1.65; }

/* ---------- Journey strip ---------- */
.journey { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); margin-top: clamp(2rem,4vw,3rem); }
@media (max-width: 820px) { .journey { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .journey { grid-template-columns: 1fr; } }
.jour { padding: var(--space-5); border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius-sm); }
.jour span { font-family: var(--font-display); font-size: 1.5rem; color: rgba(255,255,255,.35); }
.jour h3 { font-size: var(--text-lg); margin-top: .375rem; color: #fff; }
.jour p { font-size: var(--text-sm); color: rgba(255,255,255,.6); margin-top: .5rem; line-height: 1.5; }
.jour-on { border-color: var(--gold); background: rgba(200,162,74,.1); }
.jour-on span { color: var(--gold); }
.rail-list, .check-list, .x-list { list-style: none; padding-left: 0; }

/* ---------- FAQ accordion ---------- */
.faq { display: grid; gap: var(--space-3); max-width: 52rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); overflow: hidden; transition: border-color .2s ease, box-shadow .2s ease; }
.faq-item[open] { border-color: var(--sage); box-shadow: var(--shadow-sm); }
.faq-item > summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
  padding: var(--space-5) var(--space-6); cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: clamp(1rem, 1.6vw, 1.125rem); font-weight: 600; color: var(--ink);
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::marker { content: ''; }
.faq-item > summary::after {
  content: ''; flex-shrink: 0; width: .625rem; height: .625rem;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(45deg) translateY(-2px); transition: transform .2s ease;
}
.faq-item[open] > summary::after { transform: rotate(-135deg) translateY(-2px); }
.faq-item > summary:hover { background: var(--surface); }
.faq-item > summary:focus-visible { outline: 2px solid var(--accent); outline-offset: -2px; }
.faq-item > div { padding: 0 var(--space-6) var(--space-5); }
.faq-item > div p { color: var(--ink-muted); line-height: 1.7; max-width: 62ch; }
.faq-item > div p + p { margin-top: var(--space-4); }
@media (max-width: 620px) {
  .faq-item > summary { padding: var(--space-4) var(--space-5); }
  .faq-item > div { padding: 0 var(--space-5) var(--space-4); }
}

/* ---------- Real-build photo band ---------- */
.photo-band {
  margin-top: 3rem; display: grid; gap: var(--space-4);
  grid-template-columns: repeat(4, 1fr); align-items: start;
}
.pb-item {
  position: relative; display: block; overflow: hidden; border-radius: var(--radius);
  background: var(--surface-2); text-decoration: none; line-height: 0;
}
.pb-item { aspect-ratio: 4/3; }
.pb-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.6,.2,1); }
.pb-wide { grid-column: span 2; aspect-ratio: 64/23; }
.pb-item:hover img { transform: scale(1.05); }
.pb-item span {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 2.25rem .875rem .75rem;
  font-family: var(--font-body); font-size: var(--text-xs); font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: #fff; line-height: 1.4;
  background: linear-gradient(to top, rgba(16,32,42,.82), rgba(16,32,42,0));
}
.pb-item:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
@media (max-width: 860px) {
  .photo-band { grid-template-columns: repeat(2, 1fr); }
  .pb-wide { grid-column: span 2; aspect-ratio: 16/9; }
}
@media (max-width: 480px) {
  .photo-band { grid-template-columns: 1fr; }
  .pb-wide { grid-column: span 1; aspect-ratio: 4/3; }
}
