/* =========================================================================
   Shivansh Studios — luxury wedding photography
   Design system + all page styles. Plain CSS, no build step.
   Palette : ink #14110d · ivory #f7f2ea · brass #b89160 · taupe #8c8178
   Type    : Cormorant Garamond (display serif) + Jost (sans)
   ========================================================================= */

:root {
  --ink:        #14110d;
  --ink-soft:   #211c16;
  --ink-90:     rgba(20, 17, 13, 0.9);
  --ivory:      #f7f2ea;
  --ivory-dim:  #ece4d6;
  --brass:      #b89160;
  --brass-deep: #9c7846;
  --taupe:      #8c8178;
  --line:       rgba(184, 145, 96, 0.28);
  --line-soft:  rgba(20, 17, 13, 0.12);

  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans:  "Jost", "Segoe UI", system-ui, sans-serif;

  --maxw: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.65;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- typography helpers ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.08; }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--brass-deep);
  display: inline-block;
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section-head h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 18px 0 0;
}
.section-head p { color: var(--taupe); margin-top: 18px; font-size: 1.05rem; }
.rule { width: 64px; height: 1px; background: var(--brass); margin: 22px auto 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
section { padding: clamp(72px, 11vw, 140px) 0; position: relative; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans);
  font-size: 0.74rem; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 16px 34px; border: 1px solid var(--brass);
  color: var(--ink); background: transparent;
  transition: background .5s var(--ease), color .5s var(--ease), border-color .5s var(--ease);
}
.btn:hover { background: var(--brass); color: #fff; border-color: var(--brass); }
.btn--solid { background: var(--brass); color: #fff; }
.btn--solid:hover { background: var(--brass-deep); border-color: var(--brass-deep); }
.btn--ghost-light { color: #fff; border-color: rgba(255,255,255,.6); }
.btn--ghost-light:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* =========================================================================
   NAVIGATION
   ========================================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 40px;
  transition: background .5s var(--ease), padding .5s var(--ease), box-shadow .5s var(--ease);
}
.nav.scrolled {
  background: var(--ink-90);
  backdrop-filter: blur(10px);
  padding: 16px 40px;
  box-shadow: 0 1px 0 rgba(255,255,255,.06);
}
.brand { display: flex; flex-direction: column; line-height: 1; color: #fff; }
.brand .mark { font-family: var(--serif); font-size: 1.7rem; letter-spacing: .04em; font-weight: 500; }
.brand .sub { font-size: .58rem; letter-spacing: .42em; text-transform: uppercase; color: var(--brass); margin-top: 4px; padding-left: 2px; }

.nav-links { display: flex; align-items: center; gap: 38px; }
.nav-links a {
  color: #fff; font-size: .76rem; letter-spacing: .18em; text-transform: uppercase;
  position: relative; padding: 4px 0; opacity: .92;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--brass); transition: width .4s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  border: 1px solid var(--brass); color: #fff;
  padding: 11px 22px; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.nav-cta:hover { background: var(--brass); }

.burger { display: none; width: 30px; height: 20px; position: relative; z-index: 110; }
.burger span { position: absolute; left: 0; width: 100%; height: 1.5px; background: #fff; transition: .35s var(--ease); }
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 9px; }
.burger span:nth-child(3) { top: 18px; }
body.menu-open .burger span:nth-child(1) { top: 9px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2) { opacity: 0; }
body.menu-open .burger span:nth-child(3) { top: 9px; transform: rotate(-45deg); }

/* =========================================================================
   HERO
   ========================================================================= */
.hero { position: relative; height: 100vh; min-height: 640px; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; overflow: hidden; }
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.08);
  transition: opacity 1.8s ease-in-out, transform 7s linear;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,17,13,.55) 0%, rgba(20,17,13,.30) 35%, rgba(20,17,13,.65) 100%);
}
.hero-inner { position: relative; z-index: 2; max-width: 920px; padding: 0 28px; }
.hero .eyebrow { color: #e7cfa6; }
.hero h1 {
  font-size: clamp(2.2rem, 6vw, 4.6rem); margin: 22px 0 0; font-weight: 500;
  white-space: nowrap;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero h1 em { font-style: italic; color: #ecd2a8; }
.hero p { font-size: clamp(1rem, 2vw, 1.22rem); color: rgba(255,255,255,.9); margin: 26px auto 0; max-width: 620px; font-weight: 300; }
.hero-cta { margin-top: 42px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.scroll-cue { position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,.8); font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.scroll-cue::after { content: ""; width: 1px; height: 46px; background: linear-gradient(rgba(255,255,255,.8), transparent); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 50.1% { transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* =========================================================================
   ABOUT
   ========================================================================= */
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; }
.about-figure { position: relative; }
.about-figure img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.about-figure::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--line); z-index: -1; }
.about-copy h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin: 16px 0 0; }
.about-copy > p { color: #4a4239; margin-top: 24px; font-size: 1.06rem; }
.about-lead { font-family: var(--serif); font-size: 1.5rem !important; font-style: italic; color: var(--ink) !important; line-height: 1.4; }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 48px; border-top: 1px solid var(--line-soft); padding-top: 36px; }
.stat .num { font-family: var(--serif); font-size: clamp(2.2rem, 4vw, 3rem); color: var(--brass-deep); line-height: 1; }
.stat .lbl { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--taupe); margin-top: 10px; }

/* =========================================================================
   WHY CHOOSE US
   ========================================================================= */
.why { background: var(--ink); color: var(--ivory); }
.why .section-head h2 { color: var(--ivory); }
.why .section-head p { color: rgba(247,242,234,.6); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(184,145,96,.18); border: 1px solid rgba(184,145,96,.18); }
.why-card { background: var(--ink); padding: 48px 38px; transition: background .5s var(--ease); }
.why-card:hover { background: var(--ink-soft); }
.why-card .ic { width: 40px; height: 40px; color: var(--brass); margin-bottom: 22px; }
.why-card .ic svg { width: 100%; height: 100%; }
.why-card h3 { font-size: 1.5rem; color: var(--ivory); }
.why-card p { color: rgba(247,242,234,.62); margin-top: 12px; font-size: .98rem; font-weight: 300; }

/* =========================================================================
   PORTFOLIO TILES
   ========================================================================= */
.port-grid { display: grid; grid-template-columns: repeat(6, 1fr); grid-auto-rows: 260px; gap: 16px; }
.tile { position: relative; overflow: hidden; display: block; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,17,13,0) 35%, rgba(20,17,13,.78) 100%); transition: background .5s var(--ease); }
.tile:hover img { transform: scale(1.07); }
.tile:hover::after { background: linear-gradient(180deg, rgba(20,17,13,.15) 0%, rgba(20,17,13,.82) 100%); }
.tile-cap { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 30px; color: #fff; }
.tile-cap .k { font-size: .64rem; letter-spacing: .28em; text-transform: uppercase; color: #e7cfa6; }
.tile-cap h3 { font-size: 1.7rem; margin-top: 6px; }
.tile-cap .view { display: inline-flex; align-items: center; gap: 8px; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; margin-top: 12px; opacity: 0; transform: translateY(8px); transition: .5s var(--ease); }
.tile:hover .tile-cap .view { opacity: 1; transform: translateY(0); }
/* size variants */
.tile.lg { grid-column: span 3; grid-row: span 2; }
.tile.md { grid-column: span 3; grid-row: span 1; }
.tile.sm { grid-column: span 2; grid-row: span 1; }

/* =========================================================================
   PROCESS TIMELINE
   ========================================================================= */
.process { background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-dim) 100%); }
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; position: relative; }
.timeline::before { content: ""; position: absolute; top: 19px; left: 8%; right: 8%; height: 1px; background: var(--line); }
.step { text-align: center; position: relative; }
.step .dot { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--brass); background: var(--ivory); color: var(--brass-deep); font-family: var(--serif); font-size: 1.1rem; display: grid; place-items: center; margin: 0 auto 24px; position: relative; z-index: 1; transition: .5s var(--ease); }
.step:hover .dot { background: var(--brass); color: #fff; }
.step h3 { font-size: 1.35rem; }
.step p { color: var(--taupe); font-size: .92rem; margin-top: 8px; }

/* =========================================================================
   TESTIMONIALS MARQUEE
   ========================================================================= */
.reviews { background: var(--ink); color: var(--ivory); overflow: hidden; }
.reviews .section-head h2 { color: var(--ivory); }
.reviews .section-head p { color: rgba(247,242,234,.6); }
.marquee { position: relative; width: 100%; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.marquee-track { display: flex; gap: 28px; width: max-content; animation: scroll 60s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes scroll { to { transform: translateX(-50%); } }
.review-card { width: 380px; flex: 0 0 auto; background: var(--ink-soft); border: 1px solid rgba(184,145,96,.16); padding: 34px; }
.review-stars { color: var(--brass); letter-spacing: 3px; font-size: .9rem; }
.review-card p { color: rgba(247,242,234,.82); font-style: italic; font-family: var(--serif); font-size: 1.18rem; line-height: 1.5; margin: 16px 0 22px; }
.review-who { display: flex; align-items: center; gap: 14px; }
.review-who .av { width: 46px; height: 46px; border-radius: 50%; background: var(--brass); color: #fff; display: grid; place-items: center; font-family: var(--serif); font-size: 1.2rem; }
.review-who .nm { font-size: .92rem; letter-spacing: .04em; }
.review-who .mt { font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; color: var(--taupe); margin-top: 2px; }

/* =========================================================================
   CTA BAND
   ========================================================================= */
.cta-band { position: relative; text-align: center; color: #fff; background: var(--ink); }
.cta-band .bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: .42; }
.cta-band::after { content: ""; position: absolute; inset: 0; background: rgba(20,17,13,.45); }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 { font-size: clamp(2.2rem, 5.5vw, 4rem); max-width: 880px; margin: 0 auto; }
.cta-band h2 em { font-style: italic; color: #ecd2a8; }
.cta-band p { color: rgba(255,255,255,.85); margin: 22px auto 0; font-size: 1.1rem; }
.cta-band .btn { margin-top: 38px; }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 6vw, 88px); }
.contact-info h2 { font-size: clamp(2rem, 4.4vw, 3.1rem); margin: 14px 0 0; }
.contact-info > p { color: var(--taupe); margin-top: 18px; max-width: 440px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0; }
.action-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 24px; font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; border: 1px solid var(--line-soft); transition: .4s var(--ease); }
.action-btn svg { width: 18px; height: 18px; }
.action-btn.wa { background: #25623f; color: #fff; border-color: #25623f; }
.action-btn.wa:hover { background: #1d4e32; }
.action-btn.em:hover, .action-btn.cl:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.contact-list { display: grid; gap: 22px; margin-top: 8px; }
.ci { display: flex; gap: 16px; align-items: flex-start; }
.ci .ic { flex: 0 0 auto; width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--brass-deep); }
.ci .ic svg { width: 16px; height: 16px; }
.ci .lbl { font-size: .66rem; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe); }
.ci .val { font-size: 1.02rem; color: var(--ink); margin-top: 3px; }

.contact-form { background: #fff; border: 1px solid var(--line-soft); padding: clamp(28px, 4vw, 46px); }
.contact-form h3 { font-size: 1.7rem; }
.contact-form .fnote { color: var(--taupe); font-size: .88rem; margin: 8px 0 26px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--taupe); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; font-family: var(--sans); font-size: .95rem; font-weight: 300;
  border: 1px solid var(--line-soft); background: var(--ivory); color: var(--ink);
  transition: border-color .3s var(--ease);
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--brass); }
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-submit { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 6px; }
.form-submit .btn { flex: 1; justify-content: center; min-width: 180px; }

.map-wrap { margin-top: 0; }
.map-wrap iframe { width: 100%; height: 260px; border: 0; filter: grayscale(.3) contrast(1.05); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { background: #0d0b08; color: rgba(247,242,234,.7); padding: 84px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer .brand { color: #fff; }
.footer-about p { margin-top: 20px; max-width: 320px; font-size: .94rem; }
.footer h4 { font-family: var(--sans); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--brass); margin-bottom: 20px; }
.footer-links a, .footer-contact a, .footer-contact span { display: block; font-size: .95rem; margin-bottom: 12px; transition: color .3s var(--ease); }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-socials { display: flex; gap: 14px; margin-top: 22px; }
.footer-socials a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; display: grid; place-items: center; color: rgba(247,242,234,.8); transition: .4s var(--ease); }
.footer-socials a svg { width: 17px; height: 17px; }
.footer-socials a:hover { background: var(--brass); color: #fff; border-color: var(--brass); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; font-size: .8rem; color: rgba(247,242,234,.45); flex-wrap: wrap; gap: 10px; }

/* =========================================================================
   FLOATING WHATSAPP
   ========================================================================= */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 90; width: 56px; height: 56px; border-radius: 50%; background: #25d366; color: #fff; display: grid; place-items: center; box-shadow: 0 8px 26px rgba(0,0,0,.28); transition: transform .3s var(--ease); }
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* =========================================================================
   SCROLL REVEAL
   ========================================================================= */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .1s; }
.reveal.d2 { transition-delay: .2s; }
.reveal.d3 { transition-delay: .3s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide { transition: opacity 1.2s ease-in-out; transform: none; }
  .marquee-track { animation: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================================
   GALLERY (portfolio category pages)
   ========================================================================= */
.page-hero { position: relative; height: 64vh; min-height: 440px; display: flex; align-items: center; justify-content: center; text-align: center; color: #fff; overflow: hidden; }
.page-hero .bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero::after { content: ""; position: absolute; inset: 0; background: rgba(20,17,13,.5); }
.page-hero .inner { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); margin-top: 16px; }
.page-hero .eyebrow { color: #e7cfa6; }
.breadcrumb { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--taupe); margin-bottom: 8px; }
.breadcrumb a:hover { color: var(--brass-deep); }
.masonry { column-count: 3; column-gap: 16px; }
.masonry .ph { break-inside: avoid; margin-bottom: 16px; cursor: zoom-in; position: relative; overflow: hidden; }
.masonry .ph img { width: 100%; transition: transform 1s var(--ease), opacity .8s var(--ease); }
.masonry .ph:hover img { transform: scale(1.04); }
.gallery-nav { text-align: center; margin-top: 64px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(12,10,8,.96); display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 86vh; object-fit: contain; box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lb-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 54px; height: 54px; border-radius: 50%; background: rgba(255,255,255,.08); color: #fff; display: grid; place-items: center; font-size: 1.6rem; transition: background .3s var(--ease); }
.lb-btn:hover { background: var(--brass); }
.lb-prev { left: 24px; }
.lb-next { right: 24px; }
.lb-close { position: absolute; top: 24px; right: 28px; width: 48px; height: 48px; color: #fff; font-size: 1.8rem; background: rgba(255,255,255,.08); border-radius: 50%; transition: background .3s var(--ease); }
.lb-close:hover { background: var(--brass); }
.lb-count { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: .78rem; letter-spacing: .2em; }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .port-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 220px; }
  .tile.lg { grid-column: span 2; grid-row: span 2; }
  .tile.md, .tile.sm { grid-column: span 2; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .timeline::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  .nav-links { position: fixed; inset: 0; flex-direction: column; justify-content: center; gap: 30px; background: var(--ink-90); backdrop-filter: blur(14px); transform: translateX(100%); transition: transform .5s var(--ease); }
  body.menu-open .nav-links { transform: none; }
  .nav-links a { font-size: 1rem; }
  .burger { display: block; }
  .nav, .nav.scrolled { padding: 18px 24px; }
  .container { padding: 0 24px; }
  .about-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .masonry { column-count: 2; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .field-row { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .why-grid { grid-template-columns: 1fr; }
  .port-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .tile.lg, .tile.md, .tile.sm { grid-column: span 1; grid-row: span 1; }
  .timeline { grid-template-columns: 1fr; }
  .masonry { column-count: 1; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 280px; justify-content: center; }
  .hero h1 { white-space: normal; }
}

/* ---------- films (Instagram embeds) ---------- */
.films-grid {
  column-count: 3;
  column-gap: 24px;
}
.films-grid .instagram-media {
  min-width: 0 !important;
  width: 100% !important;
  margin: 0 0 24px !important;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
}
.films-cta { text-align: center; margin-top: 52px; }
@media (max-width: 980px) { .films-grid { column-count: 2; } }
@media (max-width: 620px) {
  .films-grid { column-count: 1; max-width: 420px; margin: 0 auto; }
}
