/* ════════════════════════════════════════════
   VILCHIK GROUP — OUR STORY (הסיפור שלנו)
   Story page + homepage teaser band
   Reuses :root tokens from style.css
═══════════════════════════════════════════════ */

/* ── Page shell ── */
.story-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(28px, 6vw, 60px) var(--pad-x) clamp(56px, 8vw, 100px);
}

/* ── Intro (centered) ── */
.story-intro { text-align: center; max-width: 780px; margin: 0 auto clamp(32px, 5vw, 56px); }
.story-eyebrow {
  font-family: var(--sans);
  font-size: 0.84rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-text);
}
.story-intro h1 {
  font-family: var(--he-display);
  font-weight: 300;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.06;
  color: var(--ink);
  margin: 16px 0 10px;
}
.story-intro .story-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  color: var(--gold-text);
  letter-spacing: .01em;
}
.story-lead {
  font-family: var(--he-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  line-height: 1.4;
  color: var(--ink);
  max-width: 24ch;
  margin: clamp(28px, 4vw, 44px) auto 0;
}

/* ── Feature image (compact editorial portrait) ── */
.story-feature { margin: clamp(28px, 4vw, 48px) 0; }
.story-feature figure { margin: 0 auto; max-width: 540px; }
.story-feature img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 75%;
  display: block;
}
.story-cap {
  margin-top: 12px;
  font-family: var(--sans);
  font-size: 0.9rem;
  letter-spacing: .04em;
  color: var(--ink-4);
  text-align: center;
}

/* ── Body prose (inherits .prose from blog.css) ── */
.story-body { max-width: 68ch; margin: 0 auto; }
.story-body .prose { max-width: none; }

/* ── Inline journey figure inside prose ── */
.story-figure { margin: clamp(28px, 4vw, 44px) 0; }
.story-figure img { width: 100%; display: block; aspect-ratio: 16 / 10; object-fit: cover; }

/* ── Gallery: "moments from the road" ── */
.story-gallery { margin: clamp(48px, 7vw, 88px) 0 0; }
.story-gallery-head { text-align: center; margin-bottom: clamp(28px, 4vw, 44px); }
.story-gallery-head .sg-eyebrow {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-text);
}
.story-gallery-head h2 {
  font-family: var(--he-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  color: var(--ink);
  margin-top: 10px;
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(10px, 1.4vw, 18px);
}
/* Journey gallery — clean 4-up filmstrip of real photos */
.story-gallery .story-grid { grid-template-columns: repeat(4, 1fr); }
.story-grid figure { margin: 0; overflow: hidden; }
.story-grid img {
  width: 100%; height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease-default, cubic-bezier(.2,.7,.2,1));
}
.story-grid a:hover img, .story-grid figure:hover img { transform: scale(1.05); }
.story-grid .sg-tall { grid-row: span 2; aspect-ratio: auto; }
.story-grid .sg-wide { grid-column: span 2; }
.story-grid .sg-wide img { aspect-ratio: 16 / 10; }

/* Placeholder tile (until real photos are added) */
.story-ph {
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--bone);
  border: 1px dashed var(--line);
  color: var(--ink-4);
  font-family: var(--sans);
  font-size: 0.86rem;
  letter-spacing: .06em;
  padding: 16px;
}
.story-ph.sg-wide { aspect-ratio: 16 / 10; }

/* ── Golden Visa moment ── */
.story-gv {
  margin-top: clamp(48px, 7vw, 88px);
  padding-top: clamp(40px, 5vw, 64px);
  border-top: 1px solid var(--line);
  text-align: center;
}
.story-gv .sg-eyebrow {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-text);
}
.story-gv h2 {
  font-family: var(--he-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.6vw, 2.6rem);
  color: var(--ink);
  margin: 10px auto 12px;
}
.story-gv p { color: var(--ink-3); max-width: 52ch; margin: 0 auto clamp(28px, 4vw, 40px); line-height: 1.7; }

/* GV hero — the residency-cards moment (centered portrait) */
.story-gv-hero { margin: 0 auto clamp(14px, 2vw, 22px); max-width: 460px; }
.story-gv-hero img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
/* GV band — the celebration (full-width landscape) */
.story-gv-band { margin: 0 auto; max-width: 860px; }
.story-gv-band img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 34%;
  display: block;
}
/* GV video — the celebration reel (cropped to 3:4, no letterbox) */
.story-gv-video { max-width: 430px; margin: clamp(10px, 1.6vw, 18px) auto 0; }
.story-gv-video video {
  width: 100%;
  aspect-ratio: 3 / 4;
  display: block;
  background: #000;
  object-fit: cover;
}

/* ════════════════════════════════════════════
   HOMEPAGE TEASER BAND — "why we built this"
═══════════════════════════════════════════════ */
.story-teaser {
  background: var(--sand);
  padding: clamp(56px, 9vw, 120px) var(--pad-x);
}
.story-teaser-inner {
  max-width: var(--container-max, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}
.story-teaser-img { position: relative; }
.story-teaser-img img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 28%;
  display: block;
}
.story-teaser-body .st-eyebrow {
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-text);
}
.story-teaser-body h2 {
  font-family: var(--he-display);
  font-weight: 300;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  line-height: 1.18;
  color: var(--ink);
  margin: 16px 0 20px;
}
.story-teaser-body h2 em { font-style: italic; color: var(--azure-deep); }
.story-teaser-body p {
  color: var(--ink-2);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 42ch;
  margin-bottom: clamp(24px, 3vw, 34px);
}
.story-teaser-btn {
  display: inline-block;
  background: var(--ink);
  color: var(--off);
  padding: 16px 40px;
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  transition: background var(--tr), color var(--tr), border-color var(--tr);
}
.story-teaser-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.story-teaser-btn span { display: inline-block; transition: transform var(--tr); }
.story-teaser-btn:hover span { transform: translateX(-6px); }

/* ── Responsive ── */
@media (max-width: 860px) {
  .story-teaser-inner { grid-template-columns: 1fr; }
  .story-teaser-img { max-width: 440px; margin: 0 auto; }
}
@media (max-width: 620px) {
  .story-grid { grid-template-columns: 1fr 1fr; }
  .story-grid .sg-tall { grid-row: auto; }
  .story-grid .sg-wide { grid-column: span 2; }
}

@media (prefers-reduced-motion: reduce) {
  .story-grid img, .story-teaser-btn span { transition: none; }
}

/* ════════════════════════════════════════════
   WHY-GREECE — premium: hero, band, gold-numbered accordion on warm sand
═══════════════════════════════════════════════ */
.why-hero { margin: clamp(28px, 4vw, 48px) auto; max-width: 1000px; }
.why-hero img { width: 100%; aspect-ratio: 16 / 7; object-fit: cover; display: block; }
.why-band { margin: clamp(24px, 3.5vw, 40px) 0; }
.why-band img { width: 100%; aspect-ratio: 16 / 8; object-fit: cover; display: block; }

.why-faq {
  max-width: 860px;
  margin: clamp(28px, 4vw, 44px) auto 0;
  padding: clamp(24px, 4vw, 52px) clamp(20px, 4vw, 56px);
  background: var(--bone);
  border-top: 3px solid var(--gold);
  counter-reset: whyc;
}
.why-faq > h2 {
  font-family: var(--he-display);
  font-weight: 300;
  text-align: center;
  margin-bottom: clamp(14px, 2vw, 22px);
}
.why-faq details.faq-item { counter-increment: whyc; border-bottom: 1px solid var(--line); }
.why-faq details.faq-item:last-of-type { border-bottom: 0; }
.why-faq .faq-q { align-items: baseline; }
.why-faq .faq-q > span:first-child {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex: 1;
}
.why-faq .faq-q > span:first-child::before {
  content: counter(whyc, decimal-leading-zero);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
  font-size: 1.9em;
  line-height: .9;
  flex-shrink: 0;
  min-width: 1.4em;
}
.why-faq details[open] { background: rgba(176, 143, 63, .06); }
.why-faq details[open] .faq-q > span:first-child,
.why-faq details[open] .faq-q > span:first-child::before { color: var(--gold-text); }
.why-faq .faq-a { padding-inline-start: calc(1.9em + 16px); }

.why-disclaimer {
  margin-top: clamp(26px, 4vw, 38px);
  font-family: var(--sans);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-4);
  text-align: center;
  max-width: 60ch;
  margin-inline: auto;
}
@media (max-width: 620px) {
  .why-faq .faq-q > span:first-child::before { font-size: 1.6em; }
  .why-faq .faq-a { padding-inline-start: calc(1.6em + 12px); }
}
