/* ============================================================
   style.css — Domilú Studio Events design system
   Fonts: DM Serif Display (headings) + Manrope (body/UI)
   ============================================================ */

/* === Reset & Global === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Manrope, system-ui, sans-serif;
  background: linear-gradient(180deg, var(--cream), #fffaf6 52%, var(--cream));
  color: #6c554b;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* Scrollbar */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--sand); border-radius: 3px; }

/* Body background texture */
body::before {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(124,91,75,.035) 1px, transparent 1px);
  background-size: 42px 42px;
  animation: sparkleDrift 18s ease-in-out infinite alternate;
  opacity: .22;
}
body::after {
  content: '';
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(124,91,75,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,91,75,.018) 1px, transparent 1px),
    radial-gradient(ellipse at 25% 35%, rgba(240,210,188,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 65%, rgba(240,220,200,.12) 0%, transparent 55%);
  background-size: 42px 42px, 42px 42px, 100% 100%, 100% 100%;
  mix-blend-mode: multiply;
}

/* === Variables === */
:root {
  --cream:      #fbf5ef;
  --ivory:      #fffdf8;
  --mist:       #f6ece5;
  --sand:       #ead6ca;
  --blush:      #e6bfae;
  --rose:       #c99582;
  --clay:       #a86f5c;
  --cocoa:      #3e2f29;
  --taupe:      #8a6e61;
  --champagne:  #fff1da;
  --line:       rgba(146,108,91,.22);
  --shadow:     0 28px 70px rgba(105,71,56,.12);
}

/* === Typography === */
h1, h2, h3 {
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  letter-spacing: -.035em;
  margin: 0;
}
p { color: #6c554b; line-height: 1.75; }

/* === Layout === */
.container {
  width: min(1180px, calc(100% - 44px));
  margin: auto;
  position: relative;
  z-index: 1;
}
section { padding: 88px 0; }

.grid    { display: grid; gap: 22px; }
.grid-2  { grid-template-columns: repeat(2, 1fr); }
.grid-3  { grid-template-columns: repeat(3, 1fr); }
.grid-4  { grid-template-columns: repeat(4, 1fr); }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}
.section-head h2 { max-width: 780px; }
.section-head p  { max-width: 390px; margin: 0; }

/* === Eyebrow === */
.eyebrow {
  font-family: Manrope, sans-serif;
  font-size: 11px;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 800;
  display: block;
  margin-bottom: 16px;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 27px;
  font-family: Manrope, sans-serif;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
  transition: .25s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn.primary {
  background: var(--cocoa);
  color: white;
  box-shadow: 0 18px 36px rgba(62,47,41,.17);
}
.btn.primary:hover { transform: translateY(-2px); background: #251c18; }
.btn.outline {
  border: 1px solid var(--line);
  background: rgba(255,253,248,.55);
  color: var(--cocoa);
}
.btn.outline:hover { background: white; transform: translateY(-2px); }

/* === Header / Nav === */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  padding: 20px 0;
  background: rgba(251,245,239,.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: padding .3s, box-shadow .3s;
}
header.scrolled {
  padding: 14px 0;
  box-shadow: 0 2px 24px rgba(62,47,41,.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand / Logo */
.brand {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
  text-decoration: none;
  flex-shrink: 0;
}
.brand small {
  font-family: "DM Serif Display", serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: .08em;
  line-height: .88;
  color: var(--cocoa);
  animation: logoBreath 7s ease-in-out infinite;
}
.brand strong {
  font-family: Manrope, sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .42em;
  text-transform: uppercase;
  color: var(--taupe);
  display: flex;
  align-items: center;
  gap: 5px;
}
.brand strong::before,
.brand strong::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(138,110,97,.45), transparent);
  animation: lineShimmer 6s ease-in-out infinite;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-family: Manrope, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #6c554b;
  transition: color .25s;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width .3s;
}
.nav-links a:hover { color: var(--cocoa); }
.nav-links a:hover::after { width: 100%; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  border-radius: 2px;
  background: var(--cocoa);
  transition: all .3s;
  display: block;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Drawer */
.nav-drawer {
  position: fixed; top: 0; right: -100%;
  width: min(300px, 85vw); height: 100vh;
  background: var(--ivory);
  border-left: 1px solid var(--line);
  z-index: 899; padding: 5.5rem 2rem 2rem;
  display: flex; flex-direction: column; gap: .25rem;
  transition: right .4s cubic-bezier(.4,0,.2,1);
}
.nav-drawer.open { right: 0; box-shadow: -10px 0 40px rgba(62,47,41,.12); }
.nav-drawer a {
  font-family: Manrope, sans-serif;
  font-size: 12px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: #6c554b;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
  transition: color .25s, padding-left .25s;
  text-decoration: none;
}
.nav-drawer a:hover { color: var(--cocoa); padding-left: .5rem; }
.nav-drawer .btn { margin-top: 1.5rem; width: 100%; justify-content: center; }
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(62,47,41,.35);
  z-index: 898; opacity: 0; pointer-events: none;
  transition: opacity .4s;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

/* === Hero (homepage) === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 50px 0 96px;
}
#balloon-canvas { position: absolute; inset: 0; z-index: 0; }
.hero-inner {
  position: relative; z-index: 2;
  text-align: center;
  padding-top: 72px;
  max-width: 860px;
  margin: 0 auto;
}
.hero h1 {
  font-size: clamp(54px, 8vw, 98px);
  line-height: .88;
}
.hero p.lead {
  font-size: 18px;
  color: #6c554b;
  margin: 24px auto 0;
  max-width: 540px;
}
.hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* Location pill */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: rgba(255,253,248,.62);
  border-radius: 999px;
  padding: 10px 15px;
  margin-bottom: 26px;
  box-shadow: 0 14px 28px rgba(105,71,56,.06);
  font-family: Manrope, sans-serif;
  font-size: 12px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--taupe);
}
.dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--rose);
}

/* Meta chips */
.meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; justify-content: center; }
.meta span {
  border: 1px solid var(--line);
  background: rgba(255,253,248,.45);
  border-radius: 999px;
  padding: 10px 14px;
  font-family: Manrope, sans-serif;
  font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--taupe); font-weight: 800;
}

/* === Page Hero (inner pages) === */
.page-hero {
  padding: 42px 0 56px;
  padding-top: calc(88px + 62px);
}
.page-hero h1 {
  font-size: clamp(54px, 8vw, 98px);
  line-height: .88;
  margin-top: 16px;
  max-width: 820px;
}
.page-hero p:not(.eyebrow) {
  font-size: 18px;
  margin-top: 20px;
  max-width: 560px;
}

/* === Cards / Panels / Steps === */
.card, .panel, .step {
  background: rgba(255,253,248,.72);
  border: 1px solid rgba(234,214,202,.88);
  border-radius: 38px;
  padding: 34px;
  box-shadow: 0 20px 46px rgba(105,71,56,.07);
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(124,91,75,.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(124,91,75,.02) 1px, transparent 1px);
  background-size: 26px 26px;
}
.card.featured { background: linear-gradient(145deg, #ead6ca, #fff4ec); }
.card h3 { font-size: 31px; }
.card p  { margin-top: 12px; }

/* Number label on cards */
.number {
  display: block;
  font-family: Manrope, sans-serif;
  font-size: 11px; letter-spacing: .25em;
  text-transform: uppercase; color: var(--taupe); font-weight: 800;
  margin-bottom: 25px;
}

/* Price */
.price {
  font-family: "DM Serif Display", serif;
  font-size: 31px; font-weight: 400; color: var(--cocoa);
}

/* List inside cards */
.list { list-style: none; margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.list li {
  font-family: Manrope, sans-serif; font-size: 14px; color: #6c554b;
  display: flex; align-items: flex-start; gap: 8px;
}
.list li::before { content: '—'; color: var(--rose); flex-shrink: 0; }

/* === Statement Box (dark) === */
.statement-box {
  border-radius: 52px;
  background: var(--cocoa);
  color: white;
  padding: 60px;
  position: relative; overflow: hidden;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 44px;
  align-items: center;
}
.statement-box h2 { color: white; font-size: clamp(40px, 5.2vw, 64px); line-height: .95; }
.statement-box p  { color: #ead6ca; font-size: 18px; margin: 0; }
.statement-box .eyebrow { color: rgba(234,214,202,.7); }

/* === Banner (CTA strip) === */
.banner {
  border-radius: 48px;
  background: #f3e8df;
  border: 1px solid #ead6ca;
  padding: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative; overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(124,91,75,.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(124,91,75,.02) 1px, transparent 1px);
  background-size: 26px 26px;
  background-color: #f3e8df;
}
.banner h2 { font-size: 46px; }
.banner p  { margin-top: 8px; }

/* === Gallery tiles === */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 156px;
  gap: 16px;
}
.tile {
  border-radius: 36px; padding: 24px;
  display: flex; align-items: end;
  font-family: "DM Serif Display", serif;
  font-size: 29px;
  background: #fff; border: 1px solid #ead6ca;
  position: relative; overflow: hidden;
}
.t1 { grid-column: span 2; grid-row: span 2; background: #dfb8a6; }
.t2 { grid-column: span 2; background: #fff8f4; }
.t3 { grid-column: span 2; grid-row: span 2; background: #ead6ca; }
.t4 { grid-column: span 2; background: #c99582; color: white; }
.t5 { grid-column: span 2; background: #f5e9e1; }
.t6 { grid-column: span 2; background: #fff; }

/* === CTA Section === */
.cta { text-align: center; padding: 104px 0; }
.cta h2 { font-size: clamp(52px, 7vw, 84px); line-height: .93; }
.cta p  { max-width: 650px; margin: 24px auto 34px; font-size: 18px; }
.service-line {
  font-family: Manrope, sans-serif;
  font-size: 14px; font-weight: 700; color: #80675c;
  margin-top: 20px;
}

/* === Footer === */
footer {
  border-top: 1px solid #ead6ca;
  padding: 30px 0;
  text-align: center;
  color: #80675c;
  font-family: Manrope, sans-serif;
  font-size: 13px; letter-spacing: .05em;
  position: relative; z-index: 1;
}

/* === Ticker === */
.ticker {
  overflow: hidden; white-space: nowrap;
  background: var(--cocoa);
  padding: .75rem 0;
  position: relative; z-index: 3;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 28s linear infinite;
}
.ticker-track span {
  font-family: Manrope, sans-serif;
  font-weight: 800; font-size: 11px;
  letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,253,248,.75);
  padding: 0 2rem;
}
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* === Homepage: Services grid === */
.svc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.svc-card { transition: transform .3s, box-shadow .3s; }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.svc-card h3 { margin-top: 0; }
.svc-link {
  font-family: Manrope, sans-serif;
  font-size: 12px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--clay);
  display: inline-flex; align-items: center; gap: .4rem;
  transition: gap .25s; margin-top: 20px; text-decoration: none;
}
.svc-link:hover { gap: .75rem; }

/* === Homepage: Split section === */
.s-split { display: grid; grid-template-columns: 1fr 1fr; }
.split-panel {
  padding: 7rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
  min-height: 60vh;
}
.split-panel::before {
  content: attr(data-num);
  position: absolute; right: -1rem; top: 50%; transform: translateY(-50%);
  font-family: "DM Serif Display", serif;
  font-size: 14rem; line-height: 1;
  opacity: .08; color: white; pointer-events: none;
}
.split-warm { background: linear-gradient(135deg, #c99582, #e6bfae); }
.split-dark  { background: var(--cocoa); }
.split-panel h2 { color: white; font-size: clamp(2.2rem, 3.5vw, 3.2rem); line-height: 1.1; }
.split-panel p  { color: rgba(255,255,255,.82); line-height: 1.75; margin: 16px 0 28px; max-width: 380px; }
.btn-split {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: Manrope, sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.4);
  color: white; padding: 15px 27px; border-radius: 999px;
  transition: background .3s, transform .2s;
  width: fit-content;
}
.btn-split:hover { background: rgba(255,255,255,.28); transform: translateY(-2px); }

/* === Homepage: Stats === */
.s-stats { background: var(--cocoa); position: relative; overflow: hidden; }
.s-stats::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,253,248,.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center; position: relative; z-index: 1;
}
.stat-num {
  font-family: "DM Serif Display", serif;
  font-size: clamp(3rem, 6vw, 5rem);
  color: white; line-height: 1; margin-bottom: .35rem;
}
.stat-lbl {
  font-family: Manrope, sans-serif;
  font-size: 11px; font-weight: 800;
  letter-spacing: .25em; text-transform: uppercase;
  color: rgba(255,253,248,.6);
}

/* === Homepage: Process steps === */
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3rem; margin-top: 4rem; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 38px;
  left: calc(16.67% + 1.5rem);
  right: calc(16.67% + 1.5rem);
  height: 1px;
  background: linear-gradient(to right, var(--sand), var(--rose), var(--sand));
  opacity: .6; z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 76px; height: 76px; border-radius: 50%;
  background: var(--ivory);
  border: 1px solid var(--sand);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: "DM Serif Display", serif;
  font-size: 28px; color: var(--cocoa);
  position: relative; z-index: 1;
  box-shadow: 0 8px 24px rgba(105,71,56,.1);
}
.step h3 { font-size: 24px; margin-bottom: .65rem; }
.step p  { font-size: 15px; max-width: 280px; margin: 0 auto; }

/* === Kids Parties: Packages === */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.pkg-card {
  transition: transform .35s, box-shadow .35s;
}
.pkg-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.pkg-emoji { font-size: 2.4rem; display: block; margin-bottom: 1.25rem; }
.pkg-card h3 { font-size: 31px; }
.pkg-card .pkg-desc { margin-top: 12px; }
.pkg-includes {
  list-style: none; margin-top: 20px;
  display: flex; flex-direction: column; gap: 8px;
}
.pkg-includes li {
  font-family: Manrope, sans-serif; font-size: 14px; color: #6c554b;
  display: flex; align-items: flex-start; gap: 8px;
}
.pkg-includes li::before { content: '—'; color: var(--rose); flex-shrink: 0; }
.pkg-link {
  font-family: Manrope, sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--clay);
  display: inline-flex; align-items: center; gap: .4rem;
  transition: gap .25s; margin-top: 22px; text-decoration: none;
}
.pkg-link:hover { gap: .75rem; }

/* === Kids / Weddings: Gallery grids === */
.kgal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 1.1rem;
}
.kgal-grid .g-tall { grid-row: span 2; }

.wgal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px 215px;
  gap: 1.25rem;
}
.wgal-grid .g-tall { grid-row: span 2; }

.g-item { border-radius: 36px; overflow: hidden; position: relative; cursor: pointer; }
.g-inner { width: 100%; height: 100%; transition: transform .55s; }
.g-item:hover .g-inner { transform: scale(1.05); }
.g-hover {
  position: absolute; inset: 0; opacity: 0; transition: opacity .3s;
  background: rgba(62,47,41,.4);
  display: flex; align-items: center; justify-content: center;
}
.g-hover span { font-family: "DM Serif Display", serif; font-size: 22px; color: white; }
.g-item:hover .g-hover { opacity: 1; }

/* Gallery gradient placeholders */
.kg1 { background: linear-gradient(145deg, #dfb8a6, #c99582 50%, #a86f5c); }
.kg2 { background: linear-gradient(145deg, #f5e9e1, #ead6ca 55%, #e6bfae); }
.kg3 { background: linear-gradient(145deg, #e6bfae, #c99582 50%, #dfb8a6); }
.kg4 { background: linear-gradient(145deg, #a86f5c, #c99582 55%, #e6bfae); }
.kg5 { background: linear-gradient(145deg, #ead6ca, #f5e9e1); }

.wg1 { background: linear-gradient(145deg, #f5e9e1, #ead6ca 50%, #c99582); }
.wg2 { background: linear-gradient(145deg, #e6bfae, #c99582 55%, #a86f5c); }
.wg3 { background: linear-gradient(145deg, #fffdf8, #f5e9e1 55%, #ead6ca); }
.wg4 { background: linear-gradient(145deg, #3e2f29, #8a6e61 60%, #c99582); }
.wg5 { background: linear-gradient(145deg, #fbf5ef, #ead6ca 55%, #c99582); }

/* === Kids: Facts === */
.facts-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; margin-top: 3.5rem;
}
.fact-card {
  text-align: center; border-radius: 38px; padding: 2.5rem 1.5rem;
  background: rgba(255,253,248,.72);
  border: 1px solid rgba(234,214,202,.88);
  transition: transform .3s, box-shadow .3s;
}
.fact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.fact-num {
  font-family: "DM Serif Display", serif;
  font-size: 3.4rem; line-height: 1; color: var(--cocoa); margin-bottom: .35rem;
}
.fact-card h4 {
  font-family: Manrope, sans-serif; font-size: 11px; font-weight: 800;
  letter-spacing: .25em; text-transform: uppercase; color: var(--taupe);
}

/* === Weddings: Services === */
.weddings-svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.weddings-svc-card { transition: transform .4s, box-shadow .4s; }
.weddings-svc-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.svc-num {
  font-family: "DM Serif Display", serif;
  font-size: 3.8rem; line-height: 1;
  color: rgba(201,149,130,.18); margin-bottom: 1.25rem;
}
.svc-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; margin-bottom: 2rem; }
.svc-list li {
  font-family: Manrope, sans-serif; font-size: 14px; color: #6c554b;
  display: flex; align-items: flex-start; gap: .65rem;
}
.svc-list li::before { content: '—'; color: var(--rose); flex-shrink: 0; margin-top: .05rem; }

/* === Weddings: Testimonials === */
.test-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.test-card {
  background: rgba(255,253,248,.72);
  border: 1px solid rgba(234,214,202,.88);
  border-radius: 38px; padding: 34px;
  position: relative;
  background-image:
    linear-gradient(90deg, rgba(124,91,75,.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(124,91,75,.02) 1px, transparent 1px);
  background-size: 26px 26px;
}
.test-card::before {
  content: '\201C';
  font-family: "DM Serif Display", serif;
  font-size: 5rem; line-height: 1;
  color: rgba(201,149,130,.2);
  position: absolute; top: 1.25rem; left: 2rem;
}
.test-card p {
  font-family: Manrope, sans-serif;
  font-size: 15px; line-height: 1.78; color: var(--cocoa);
  font-style: italic; position: relative; z-index: 1; margin-bottom: 1.5rem;
}
.test-name {
  font-family: Manrope, sans-serif; font-size: 11px; font-weight: 800;
  letter-spacing: .25em; text-transform: uppercase; color: var(--taupe);
  display: block;
}
.test-event {
  font-family: Manrope, sans-serif; font-size: 13px; color: #80675c;
  margin-top: 4px; display: block;
}

/* === Contact page === */
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 44px;
  align-items: start;
}
.main-wrap {
  max-width: 1160px; margin: 0 auto;
  padding: 5rem 22px 7rem;
}
.side-col { display: flex; flex-direction: column; gap: 22px; position: sticky; top: 110px; }

.form-box {
  background: rgba(255,253,248,.72);
  border: 1px solid rgba(234,214,202,.88);
  border-radius: 38px; padding: 42px;
  box-shadow: 0 20px 46px rgba(105,71,56,.07);
  background-image:
    linear-gradient(90deg, rgba(124,91,75,.025) 1px, transparent 1px),
    linear-gradient(0deg, rgba(124,91,75,.02) 1px, transparent 1px);
  background-size: 26px 26px;
  background-color: rgba(255,253,248,.72);
}
.form-title { font-family: "DM Serif Display", serif; font-size: 38px; color: var(--cocoa); margin-bottom: .35rem; }
.form-sub   { font-family: Manrope, sans-serif; font-size: 15px; color: #6c554b; margin-bottom: 2rem; line-height: 1.6; }

.form-section-label {
  font-family: Manrope, sans-serif; font-size: 11px; font-weight: 800;
  letter-spacing: .25em; text-transform: uppercase; color: var(--taupe);
  margin-bottom: .5rem;
}
.form-divider { height: 1px; background: var(--line); margin: .5rem 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.quote-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: .5rem; }
.form-group label {
  font-family: Manrope, sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase; color: var(--taupe);
}

input, textarea, select {
  width: 100%;
  border: 1px solid #ead6ca;
  background: rgba(255,255,255,.75);
  border-radius: 18px;
  padding: 15px 16px;
  font-family: Manrope, sans-serif;
  font-size: 15px; color: var(--cocoa);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  -webkit-appearance: none; appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(201,149,130,.12);
}
textarea { min-height: 145px; resize: vertical; }
input::placeholder, textarea::placeholder { color: rgba(62,47,41,.32); }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(138,110,97,.6)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1.1rem center;
  padding-right: 2.5rem; cursor: pointer;
}
.form-group select option { background: var(--ivory); color: var(--cocoa); }

.btn-submit {
  font-family: Manrope, sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: white; background: var(--cocoa);
  border: none; border-radius: 999px; cursor: pointer;
  padding: 15px 27px;
  box-shadow: 0 18px 36px rgba(62,47,41,.17);
  transition: box-shadow .25s, transform .25s, background .25s;
  width: 100%; margin-top: .4rem;
}
.btn-submit:hover { box-shadow: 0 24px 48px rgba(62,47,41,.22); transform: translateY(-2px); background: #251c18; }
.btn-submit:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.form-note { font-family: Manrope, sans-serif; font-size: 12px; color: #80675c; text-align: center; margin-top: .5rem; }

/* Side cards */
.side-card {
  background: rgba(255,253,248,.72);
  border: 1px solid rgba(234,214,202,.88);
  border-radius: 38px; padding: 34px;
  box-shadow: 0 20px 46px rgba(105,71,56,.07);
}
.side-card-ttl { font-family: "DM Serif Display", serif; font-size: 28px; color: var(--cocoa); margin-bottom: 1.25rem; }

.contact-items { display: flex; flex-direction: column; gap: 1.1rem; }
.contact-item  { display: flex; align-items: flex-start; gap: .9rem; }
.ci-icon {
  width: 42px; height: 42px; border-radius: 14px;
  background: var(--mist); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.ci-text  { display: flex; flex-direction: column; gap: .2rem; }
.ci-lbl {
  font-family: Manrope, sans-serif; font-size: 11px; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase; color: rgba(62,47,41,.45);
}
.ci-val { font-family: Manrope, sans-serif; font-size: 14px; color: var(--cocoa); }
.ci-val a { transition: color .2s; }
.ci-val a:hover { color: var(--rose); }

.promise-card {
  background: var(--mist);
  border: 1px solid var(--sand);
  border-radius: 38px; padding: 30px;
}
.promise-icon { font-size: 2rem; margin-bottom: .75rem; }
.promise-ttl  { font-family: "DM Serif Display", serif; font-size: 24px; color: var(--cocoa); margin-bottom: .5rem; }
.promise-body { font-family: Manrope, sans-serif; font-size: 14px; color: #6c554b; line-height: 1.72; }

.review-list { display: flex; flex-direction: column; gap: 14px; }
.review-item {
  background: rgba(255,255,255,.5); border: 1px solid var(--line);
  border-radius: 20px; padding: 16px 18px;
}
.review-stars { font-size: 13px; margin-bottom: .35rem; color: var(--rose); }
.review-text  { font-family: Manrope, sans-serif; font-size: 13px; color: #6c554b; line-height: 1.65; font-style: italic; margin-bottom: .45rem; }
.review-name  { font-family: Manrope, sans-serif; font-size: 11px; font-weight: 800; letter-spacing: .1em; color: var(--taupe); }

/* Promise row (contact hero) */
.promise-row { display: flex; justify-content: center; flex-wrap: wrap; gap: .75rem; margin-top: 2.5rem; }
.chip {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: Manrope, sans-serif; font-size: 12px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--taupe);
  background: rgba(255,253,248,.62);
  border: 1px solid var(--line);
  padding: 10px 15px; border-radius: 999px;
}
.chip-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rose); flex-shrink: 0; }

/* === Reveal animation === */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* === Keyframes === */
@keyframes sparkleDrift {
  0%   { transform: translateY(0);    opacity: .22; }
  50%  { transform: translateY(-2px); opacity: .42; }
  100% { transform: translateY(2px);  opacity: .3;  }
}
@keyframes logoBreath {
  0%, 100% { letter-spacing: .08em; opacity: 1;   }
  50%       { letter-spacing: .092em; opacity: .96; }
}
@keyframes lineShimmer {
  0%, 100% { opacity: .45; transform: scaleX(.86); }
  50%      { opacity: .9;  transform: scaleX(1);   }
}

/* === Responsive === */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links  { display: none; }
  .nav > .btn { display: none; }
  .nav-hamburger { display: flex; }

  .hero-grid, .statement-box, .about-wrap { grid-template-columns: 1fr; }
  .section-head { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .s-split  { grid-template-columns: 1fr; }
  .gallery  { grid-template-columns: 1fr 1fr; }
  .tile     { grid-column: span 1 !important; grid-row: span 1 !important; }
  .banner   { flex-direction: column; }
  .container { width: min(calc(100% - 34px), 1180px); }
  section   { padding: 64px 0; }
  .statement-box { padding: 38px; }
  .hero h1, .page-hero h1 { font-size: 52px; }
  .kgal-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .kgal-grid .g-tall { grid-row: span 1; }
  .wgal-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .wgal-grid .g-tall { grid-row: span 1; }
  .weddings-svc-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .pkg-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .side-col { position: static; }
  .form-row { grid-template-columns: 1fr; }
  .split-panel { padding: 5rem 2.5rem; }
}
@media (max-width: 580px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .main-wrap { padding: 3.5rem 17px 5rem; }
  .form-box  { padding: 28px 20px; }
  .cta { padding: 72px 0; }
}
