/* ==========================================================================
   Patna City Marriage Hall — DESIGN 2: Cinematic Luxury Wedding Experience
   Ivory · champagne gold · charcoal · deep green. Slow, editorial, emotional.
   ========================================================================== */

:root {
  --ivory: #f7f3ec;
  --cream: #efe8db;
  --beige: #e3d9c6;
  --champagne: #c6a664;
  --champagne-soft: #d9c08b;
  --charcoal: #2b2b28;
  --charcoal-soft: #52504a;
  --green: #1f3d2b;
  --green-deep: #142a1d;
  --white: #fffdf9;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Jost", "Segoe UI", sans-serif;
  --ease-slow: cubic-bezier(0.16, 1, 0.3, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.75;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.12;
  color: var(--charcoal);
}

.wrap { width: min(1240px, 90%); margin-inline: auto; }
.wrap-narrow { width: min(760px, 88%); margin-inline: auto; }

/* --- Small-caps kicker ----------------------------------------------------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--champagne);
}
.kicker::before, .kicker.lined::after {
  content: "";
  width: 44px;
  height: 1px;
  background: var(--champagne);
  opacity: 0.7;
}
.kicker.center::before { display: inline-block; }

/* --- Buttons: understated, luxurious --------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 42px;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border: 1px solid var(--champagne);
  color: var(--charcoal);
  background: transparent;
  cursor: pointer;
  transition: background 0.6s var(--ease-slow), color 0.6s var(--ease-slow), border-color 0.6s;
  white-space: nowrap;
}
.btn:hover { background: var(--champagne); color: var(--white); }
.btn.solid { background: var(--champagne); color: var(--white); }
.btn.solid:hover { background: var(--charcoal); border-color: var(--charcoal); }
.btn.on-dark { color: var(--ivory); border-color: rgba(247, 243, 236, 0.55); }
.btn.on-dark:hover { background: var(--ivory); color: var(--charcoal); border-color: var(--ivory); }
.btn.gold-dark { background: var(--champagne); border-color: var(--champagne); color: var(--green-deep); }
.btn.gold-dark:hover { background: transparent; color: var(--champagne); }

/* ==========================================================================
   Navigation — transparent, then solid
   ========================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 26px 0;
  transition: background 0.7s var(--ease-slow), padding 0.5s, box-shadow 0.7s;
}
.nav .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.nav .logo {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  color: var(--ivory);
  line-height: 1.1;
}
.nav .logo small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.56rem;
  font-weight: 400;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--champagne-soft);
  margin-top: 3px;
}
.nav .links { display: none; }
.nav .call-link {
  display: none;
}
.nav.solid {
  background: rgba(247, 243, 236, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 15px 0;
  box-shadow: 0 1px 0 rgba(43, 43, 40, 0.08);
}
.nav.solid .logo { color: var(--charcoal); }
.nav.solid .logo small { color: var(--champagne); }

@media (min-width: 920px) {
  .nav .links { display: flex; gap: 38px; }
  .nav .links a {
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(247, 243, 236, 0.85);
    transition: color 0.4s;
    position: relative;
    padding-bottom: 5px;
  }
  .nav .links a::after {
    content: "";
    position: absolute;
    left: 50%; bottom: 0;
    width: 0; height: 1px;
    background: var(--champagne);
    transition: width 0.5s var(--ease-slow), left 0.5s var(--ease-slow);
  }
  .nav .links a:hover { color: var(--white); }
  .nav .links a:hover::after { width: 100%; left: 0; }
  .nav.solid .links a { color: var(--charcoal-soft); }
  .nav.solid .links a:hover { color: var(--charcoal); }
  .nav .call-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.74rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--champagne-soft);
  }
  .nav.solid .call-link { color: var(--green); }
  .nav .call-link svg { width: 15px; height: 15px; }
}

/* ==========================================================================
   Chapter 1 — cinematic hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background: var(--green-deep);
}
.hero .media, .hero .media img, .hero .media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .media video { display: none; }
@media (min-width: 920px) {
  .hero .media video { display: block; }
  .hero .media img.m-only { display: none; }
}
.hero .veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(20, 42, 29, 0.18) 0%, rgba(20, 42, 29, 0.62) 100%),
    linear-gradient(to top, rgba(20, 20, 16, 0.55), rgba(20, 20, 16, 0.12) 50%, rgba(20, 20, 16, 0.35));
}
.hero .inner {
  position: relative;
  z-index: 2;
  padding: 130px 24px 90px;
  max-width: 880px;
}
.hero .kicker { color: var(--champagne-soft); justify-content: center; }
.hero .kicker::before, .hero .kicker::after {
  content: ""; width: 44px; height: 1px; background: var(--champagne-soft); opacity: 0.8;
}
.hero h1 {
  margin-top: 28px;
  font-size: clamp(2.6rem, 7.5vw, 5.2rem);
  font-weight: 400;
  color: var(--white);
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--champagne-soft); }
.hero .venue-name {
  margin-top: 26px;
  font-size: 0.8rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--champagne-soft);
}
.hero p.lede {
  margin: 22px auto 0;
  max-width: 52ch;
  color: rgba(247, 243, 236, 0.82);
  font-size: clamp(0.98rem, 2.2vw, 1.08rem);
  font-weight: 300;
}
.hero .cta {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.hero .scroll-hint {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(247, 243, 236, 0.65);
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero .scroll-hint::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--champagne-soft), transparent);
  animation: drop 2.6s var(--ease-slow) infinite;
}
@keyframes drop {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  56% { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==========================================================================
   Chapter 2 — emotional statement
   ========================================================================== */
.statement {
  padding: clamp(110px, 16vw, 200px) 0;
  text-align: center;
}
.statement h2 {
  margin-top: 30px;
  font-size: clamp(2.1rem, 6vw, 4.2rem);
  font-weight: 400;
  max-width: 20ch;
  margin-inline: auto;
  text-wrap: balance;
}
.statement h2 em { font-style: italic; color: var(--champagne); }
.statement .flourish {
  margin: 44px auto 0;
  width: 1px;
  height: 90px;
  background: linear-gradient(to bottom, var(--champagne), transparent);
}

/* Full-bleed emotional image band with parallax feel */
.image-band {
  position: relative;
  height: clamp(420px, 72vh, 700px);
  overflow: hidden;
}
.image-band img {
  width: 100%;
  height: 118%;
  object-fit: cover;
  will-change: transform;
}
.image-band .caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 90px 24px 46px;
  background: linear-gradient(to top, rgba(20, 20, 16, 0.6), transparent);
  text-align: center;
}
.image-band .caption span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.25rem, 3vw, 1.8rem);
  color: var(--ivory);
}

/* ==========================================================================
   Chapter 3 — alternating showcase
   ========================================================================== */
.showcase { padding: clamp(90px, 12vw, 170px) 0 0; }
.chapter-head { text-align: center; margin-bottom: clamp(60px, 9vw, 110px); }
.chapter-head h2 {
  margin-top: 26px;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  font-weight: 400;
}
.chapter-head p {
  margin: 16px auto 0;
  max-width: 56ch;
  color: var(--charcoal-soft);
}

.duet {
  display: grid;
  gap: 40px;
  align-items: center;
  margin-bottom: clamp(80px, 11vw, 150px);
}
.duet .photo {
  overflow: hidden;
}
.duet .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  transform: scale(1.06);
  transition: transform 1.8s var(--ease-slow);
}
.duet.in .photo img { transform: scale(1); }
.duet .words .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--champagne);
  letter-spacing: 0.14em;
}
.duet .words h3 {
  margin-top: 14px;
  font-size: clamp(1.7rem, 3.6vw, 2.5rem);
  font-weight: 400;
  max-width: 16ch;
}
.duet .words p {
  margin-top: 18px;
  color: var(--charcoal-soft);
  max-width: 46ch;
}
.duet .words .link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--green);
  border-bottom: 1px solid var(--champagne);
  padding-bottom: 6px;
  transition: gap 0.5s var(--ease-slow);
}
.duet .words .link:hover { gap: 20px; }

@media (min-width: 880px) {
  .duet { grid-template-columns: 1.05fr 0.95fr; gap: clamp(50px, 7vw, 110px); }
  .duet.flip .photo { order: 2; }
  .duet .words { padding-inline: 10px; }
}

/* ==========================================================================
   Chapter 4 — magazine gallery
   ========================================================================== */
.magazine { padding: clamp(90px, 12vw, 160px) 0; background: var(--cream); }
.mag-layout {
  display: grid;
  gap: 18px;
}
.mag-layout figure { position: relative; overflow: hidden; margin: 0; }
.mag-layout img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-slow);
}
.mag-layout figure:hover img { transform: scale(1.045); }
.mag-layout figcaption {
  position: absolute;
  left: 22px; bottom: 18px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--ivory);
  text-shadow: 0 1px 22px rgba(20, 20, 16, 0.65);
}
.mag-hero { aspect-ratio: 16 / 10; }
.mag-a { aspect-ratio: 3 / 4; }
.mag-b { aspect-ratio: 3 / 4; }
.mag-wide { aspect-ratio: 16 / 7; }
@media (min-width: 880px) {
  .mag-layout {
    grid-template-columns: repeat(12, 1fr);
  }
  .mag-hero { grid-column: 1 / 9; aspect-ratio: auto; }
  .mag-a { grid-column: 9 / 13; }
  .mag-b { grid-column: 1 / 5; }
  .mag-wide { grid-column: 5 / 13; aspect-ratio: auto; }
}
.mag-cta { text-align: center; margin-top: clamp(50px, 7vw, 80px); }
.mag-cta p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--charcoal-soft);
  margin-bottom: 26px;
}

/* ==========================================================================
   Chapter 5 — the experience (story list)
   ========================================================================== */
.experience {
  background: var(--green-deep);
  color: var(--ivory);
  padding: clamp(100px, 13vw, 180px) 0;
}
.experience .chapter-head h2 { color: var(--ivory); }
.experience .chapter-head p { color: rgba(247, 243, 236, 0.66); }
.exp-list { max-width: 860px; margin-inline: auto; }
.exp-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 26px;
  align-items: baseline;
  padding: 34px 6px;
  border-bottom: 1px solid rgba(198, 166, 100, 0.25);
}
.exp-item:first-child { border-top: 1px solid rgba(198, 166, 100, 0.25); }
.exp-item .n {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--champagne);
  font-size: 1.05rem;
  min-width: 2.4em;
}
.exp-item h3 {
  color: var(--ivory);
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 400;
}
.exp-item p {
  margin-top: 8px;
  color: rgba(247, 243, 236, 0.62);
  font-size: 0.95rem;
  max-width: 56ch;
}
.exp-cta { text-align: center; margin-top: clamp(50px, 7vw, 76px); }

/* ==========================================================================
   Chapter 6 — guest rooms
   ========================================================================== */
.rooms { padding: clamp(100px, 13vw, 170px) 0; }
.rooms-grid {
  display: grid;
  gap: 18px;
  margin-top: clamp(44px, 6vw, 70px);
}
.rooms-grid figure { overflow: hidden; margin: 0; }
.rooms-grid img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.6s var(--ease-slow);
}
.rooms-grid figure:hover img { transform: scale(1.045); }
.room-main { aspect-ratio: 4 / 3; }
.room-s { aspect-ratio: 1; }
@media (min-width: 880px) {
  .rooms-grid { grid-template-columns: repeat(4, 1fr); }
  .room-main { grid-column: 1 / 3; grid-row: 1 / 3; aspect-ratio: auto; }
}
.rooms .note {
  margin-top: 34px;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--charcoal-soft);
}
.rooms .cta-row {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* ==========================================================================
   Chapter 7 — events, large cards
   ========================================================================== */
.events {
  background: var(--cream);
  padding: clamp(100px, 13vw, 170px) 0;
}
.event-cards {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 680px) { .event-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1020px) { .event-cards { grid-template-columns: repeat(3, 1fr); } }
.ev-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: flex-end;
  background: var(--green-deep);
}
.ev-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 2s var(--ease-slow), opacity 0.8s;
}
.ev-card:hover img { transform: scale(1.06); opacity: 0.95; }
.ev-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 26, 18, 0.82), rgba(18, 26, 18, 0.06) 55%);
}
.ev-card .txt {
  position: relative;
  z-index: 2;
  padding: 30px 28px;
}
.ev-card .txt small {
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--champagne-soft);
}
.ev-card .txt h3 {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  font-weight: 400;
  margin-top: 6px;
}
.ev-card .txt p {
  color: rgba(247, 243, 236, 0.75);
  font-size: 0.88rem;
  margin-top: 6px;
  max-width: 34ch;
}
.ev-card.span2 { aspect-ratio: 16/9; }
@media (min-width: 1020px) {
  .ev-card.span2 { grid-column: span 2; aspect-ratio: auto; }
}

/* ==========================================================================
   Chapter 8 — fullscreen carousel
   ========================================================================== */
.carousel {
  position: relative;
  height: clamp(480px, 92vh, 860px);
  overflow: hidden;
  background: var(--charcoal);
}
.carousel .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2.2s var(--ease-slow);
}
.carousel .slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 8s linear;
}
.carousel .slide.active { opacity: 1; z-index: 2; }
.carousel .slide.active img { transform: scale(1.12); }
.carousel .slide .cap {
  position: absolute;
  inset: auto 0 0 0;
  padding: 110px 24px 54px;
  background: linear-gradient(to top, rgba(20, 20, 16, 0.62), transparent);
  text-align: center;
}
.carousel .slide .cap span {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.2rem, 2.8vw, 1.7rem);
  color: var(--ivory);
}
.carousel .dots {
  position: absolute;
  bottom: 22px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 12px;
}
.carousel .dots button {
  width: 34px; height: 2px;
  border: 0;
  background: rgba(247, 243, 236, 0.35);
  cursor: pointer;
  transition: background 0.5s;
  padding: 0;
}
.carousel .dots button.active { background: var(--champagne-soft); }

/* ==========================================================================
   Chapter 9 — testimonials over imagery
   ========================================================================== */
.voices {
  position: relative;
  padding: clamp(110px, 15vw, 190px) 0;
  overflow: hidden;
}
.voices .bg { position: absolute; inset: 0; }
.voices .bg img { width: 100%; height: 100%; object-fit: cover; }
.voices .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 22, 0.78);
}
.voices .wrap { position: relative; z-index: 2; }
.voices .chapter-head h2 { color: var(--ivory); }
.voice-cards {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr;
}
@media (min-width: 880px) { .voice-cards { grid-template-columns: repeat(3, 1fr); } }
.voice {
  background: rgba(247, 243, 236, 0.07);
  border: 1px solid rgba(198, 166, 100, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 40px 32px;
  text-align: center;
}
.voice .q {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 0.4;
  color: var(--champagne);
  display: block;
  margin-bottom: 22px;
}
.voice blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--ivory);
  line-height: 1.6;
}
.voice .who {
  margin-top: 24px;
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--champagne-soft);
}
.voices .more { text-align: center; margin-top: 46px; }

/* ==========================================================================
   Chapter 10 — location
   ========================================================================== */
.place { padding: clamp(100px, 13vw, 170px) 0 0; }
.place .map-frame {
  margin-top: clamp(44px, 6vw, 70px);
  border: 1px solid var(--beige);
  padding: 12px;
  background: var(--white);
}
.place iframe {
  width: 100%;
  height: clamp(380px, 55vh, 540px);
  border: 0;
  display: block;
  filter: sepia(0.22) saturate(0.85);
}
.place .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  padding: clamp(44px, 6vw, 64px) 0 clamp(90px, 12vw, 140px);
}
.place address {
  margin-top: 26px;
  text-align: center;
  font-style: normal;
  color: var(--charcoal-soft);
  font-size: 0.95rem;
}

/* --- House rules — quiet elegance ------------------------------------------ */
.etiquette {
  background: var(--cream);
  padding: clamp(80px, 10vw, 120px) 0;
  text-align: center;
}
.etiquette h2 {
  margin-top: 24px;
  font-size: clamp(1.7rem, 3.6vw, 2.4rem);
  font-weight: 400;
}
.etiquette .rules {
  margin: 46px auto 0;
  max-width: 900px;
  display: grid;
  gap: 30px;
  grid-template-columns: 1fr;
}
@media (min-width: 720px) { .etiquette .rules { grid-template-columns: repeat(3, 1fr); } }
.etiquette .rule .glyph {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--champagne);
}
.etiquette .rule h3 { font-size: 1.08rem; font-weight: 500; margin-top: 10px; font-family: var(--font-sans); letter-spacing: 0.06em; }
.etiquette .rule p { color: var(--charcoal-soft); font-size: 0.88rem; margin-top: 6px; }
.etiquette .fine {
  margin-top: 40px;
  font-size: 0.82rem;
  color: var(--charcoal-soft);
  font-style: italic;
  font-family: var(--font-serif);
}

/* ==========================================================================
   Footer — large & luxurious
   ========================================================================== */
.footer {
  background: var(--green-deep);
  color: rgba(247, 243, 236, 0.75);
  padding: clamp(80px, 11vw, 130px) 0 0;
}
.footer .fbrand {
  text-align: center;
  margin-bottom: clamp(60px, 8vw, 90px);
}
.footer .fbrand .logo {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 4.5vw, 2.9rem);
  color: var(--ivory);
}
.footer .fbrand small {
  display: block;
  margin-top: 10px;
  font-size: 0.62rem;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--champagne-soft);
}
.footer .cols {
  display: grid;
  gap: 44px;
  padding-bottom: clamp(60px, 8vw, 90px);
}
@media (min-width: 880px) { .footer .cols { grid-template-columns: 1.3fr 1fr 1fr; } }
.footer h4 {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 22px;
}
.footer ul { list-style: none; display: grid; gap: 12px; }
.footer a { transition: color 0.4s; }
.footer a:hover { color: var(--champagne-soft); }
.footer .big-contact a.tel {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3.4vw, 2.1rem);
  color: var(--ivory);
  display: inline-block;
}
.footer .big-contact p { margin-top: 14px; font-size: 0.94rem; max-width: 34ch; }
.footer .socials { display: flex; gap: 22px; margin-top: 24px; }
.footer .socials a {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(198, 166, 100, 0.5);
  padding-bottom: 4px;
}
.footer .base {
  border-top: 1px solid rgba(198, 166, 100, 0.22);
  padding: 26px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(247, 243, 236, 0.5);
}

/* ==========================================================================
   Sticky mobile contact buttons
   ========================================================================== */
.stick-contact {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stick-contact a {
  width: 56px; height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  box-shadow: 0 10px 30px -8px rgba(20, 20, 16, 0.45);
  transition: transform 0.4s var(--ease-slow);
}
.stick-contact a:active { transform: scale(0.92); }
.stick-contact a svg { width: 24px; height: 24px; }
.stick-contact .wa { background: #128c4b; }
.stick-contact .ph { background: var(--green); }
@media (min-width: 920px) { .stick-contact { display: none; } }

/* ==========================================================================
   Reveal animations — slow, cinematic
   ========================================================================== */
.rv {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1.3s var(--ease-slow), transform 1.3s var(--ease-slow);
}
.rv.in { opacity: 1; transform: none; }
.rv.d1 { transition-delay: 0.15s; }
.rv.d2 { transition-delay: 0.3s; }
.rv.d3 { transition-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  .rv, .duet .photo img { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .carousel .slide, .carousel .slide img { transition: none; }
}
