/* ═══════════════════════════════════════════════════════════
   fotobodas.net — Main Stylesheet
   Aesthetic: Luxury editorial · Dark cream & deep charcoal
   Fonts: Playfair Display + DM Sans
   ═══════════════════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --ink:    #1a1714;
  --ink2:   #2c2925;
  --cream:  #f5f0e8;
  --cream2: #ede6d6;
  --gold:   #b8966a;
  --gold2:  #d4b48a;
  --warm:   #8c7355;
  --muted:  rgba(26,23,20,.45);
  --border: rgba(184,150,106,.18);

  --fh: 'Playfair Display', Georgia, serif;
  --fb: 'DM Sans', system-ui, sans-serif;
  --ease: cubic-bezier(.4,0,.2,1);
  --slow: .6s var(--ease);
  --fast: .25s var(--ease);
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--fb);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: var(--fb); cursor: pointer; }

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800;
  transition: background var(--fast), box-shadow var(--fast);
}
.nav.scrolled {
  background: rgba(245,240,232,.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-wrap {
  max-width: 1240px; margin: 0 auto;
  padding: 0 2rem; height: 68px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--fh);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -.01em;
  display: flex; align-items: baseline; gap: 0;
}
.logo-main { color: var(--ink); }
.logo-main em { font-style: italic; color: var(--gold); }
.logo-net { font-size: .85rem; color: var(--warm); font-family: var(--fb); font-weight: 300; letter-spacing: .02em; }
.nav-links { display: flex; align-items: center; gap: 2.5rem; }
.nav-links a {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--muted); font-weight: 400;
  transition: color var(--fast);
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -.3rem; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform var(--fast);
}
.nav-links a:hover, .nav-links a.on { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.on::after { transform: scaleX(1); }
.nav-btn {
  background: var(--ink) !important; color: var(--cream) !important;
  padding: .5rem 1.4rem; border-radius: 2px;
  transition: background var(--fast) !important;
}
.nav-btn::after { display: none !important; }
.nav-btn:hover { background: var(--ink2) !important; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: .4rem; }
.burger span { display: block; width: 22px; height: 1px; background: var(--ink); transition: all var(--fast); }

/* ── MOBILE MENU ────────────────────────────────────────── */
.mob {
  position: fixed; inset: 0; z-index: 850;
  background: var(--ink);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.77,0,.18,1);
}
.mob.open { transform: translateX(0); }
.mob-x {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; color: rgba(245,240,232,.5);
  transition: color var(--fast);
}
.mob-x:hover { color: var(--cream); }
.mob a {
  font-family: var(--fh); font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400; color: rgba(245,240,232,.7);
  letter-spacing: .04em; transition: color var(--fast);
}
.mob a:hover { color: var(--gold); }
.mob-info { display: flex; flex-direction: column; align-items: center; gap: .5rem; margin-top: 1rem; }
.mob-info a { font-size: .78rem; color: rgba(245,240,232,.35) !important; letter-spacing: .08em; }
.mob-info a:hover { color: var(--gold2) !important; }

/* ── UTILITIES ──────────────────────────────────────────── */
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 2rem; }
.wrap-sm { max-width: 860px; margin: 0 auto; padding: 0 2rem; }
.wrap-xs { max-width: 680px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 110px 0; }
.section-sm { padding: 70px 0; }
.eyebrow {
  font-size: .65rem; letter-spacing: .4em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: .9rem;
}
.serif { font-family: var(--fh); }
.divider {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin: 1.4rem 0; color: var(--border);
}
.divider::before, .divider::after {
  content: ''; flex: 1; max-width: 80px; height: 1px; background: var(--border);
}
.divider-left { justify-content: flex-start; }
.divider-left::before { display: none; }
.tc { text-align: center; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; } .d4 { transition-delay: .4s; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--fh); font-weight: 400; line-height: 1.1; }
h1 { font-size: clamp(2.8rem, 7vw, 6rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
em { font-style: italic; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2.2rem;
  font-size: .72rem; font-weight: 500; letter-spacing: .18em; text-transform: uppercase;
  border: none; cursor: pointer; font-family: var(--fb);
  transition: all var(--fast);
}
.btn-dark  { background: var(--ink); color: var(--cream); }
.btn-dark:hover  { background: var(--gold); }
.btn-light { background: var(--cream); color: var(--ink); }
.btn-light:hover { background: var(--cream2); }
.btn-outline { background: transparent; border: 1px solid var(--ink); color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--cream); }
.btn-gold  { background: var(--gold); color: var(--cream); }
.btn-gold:hover  { background: var(--ink); }

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center;
  overflow: hidden; background: var(--ink2);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover; background-position: center;
  opacity: .55;
  transform: scale(1.05);
  animation: heroZoom 12s var(--ease) infinite alternate;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,23,20,.65) 0%, rgba(26,23,20,.2) 60%, rgba(26,23,20,.7) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 2rem; max-width: 1240px; margin: 0 auto; width: 100%;
  padding-top: 68px;
}
.hero-label {
  font-size: .62rem; letter-spacing: .5em; text-transform: uppercase;
  color: var(--gold2); display: block; margin-bottom: 1.8rem;
  opacity: 0; animation: fadeUp .8s var(--ease) .3s forwards;
}
.hero-title {
  color: var(--cream); max-width: 700px;
  opacity: 0; animation: fadeUp .9s var(--ease) .5s forwards;
}
.hero-title em { color: var(--gold2); display: block; }
.hero-sub {
  font-family: var(--fh); font-style: italic; font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: rgba(245,240,232,.65); max-width: 480px; margin: 1.5rem 0 3rem;
  opacity: 0; animation: fadeUp .9s var(--ease) .7s forwards;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp .9s var(--ease) .9s forwards;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: rgba(245,240,232,.35); font-size: .58rem; letter-spacing: .3em; text-transform: uppercase;
  animation: bounce 2.5s ease-in-out infinite;
}
.hero-scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, var(--gold2), transparent);
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(8px); } }

/* ── STRIP ──────────────────────────────────────────────── */
.strip {
  background: var(--ink);
  padding: 1.3rem 0;
}
.strip-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: center;
  gap: 2.5rem; flex-wrap: wrap; text-align: center;
}
.strip-label { font-size: .65rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(245,240,232,.4); }
.strip-price { font-family: var(--fh); font-size: 2.2rem; font-weight: 400; color: var(--gold2); line-height: 1; }
.strip-note  { font-size: .72rem; color: rgba(245,240,232,.5); }

/* ── GALLERY GRID ───────────────────────────────────────── */
.g-masonry { columns: 3; column-gap: .5rem; }
.g-masonry .gi { break-inside: avoid; margin-bottom: .5rem; overflow: hidden; cursor: zoom-in; position: relative; }
.g-masonry .gi img { width: 100%; display: block; transition: transform .6s var(--ease); }
.g-masonry .gi:hover img { transform: scale(1.04); }

.g-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: .5rem; }
.g-grid .gi { overflow: hidden; cursor: zoom-in; position: relative; background: var(--ink2); }
.g-grid .gi img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.g-grid .gi:hover img { transform: scale(1.05); }
.g-grid .gi.tall { grid-row: span 2; }
.g-grid .gi.wide { grid-column: span 2; }
.gi-aspect-4-5 { aspect-ratio: 4/5; }
.gi-aspect-3-4 { aspect-ratio: 3/4; }
.gi-aspect-16-9 { aspect-ratio: 16/9; }
.gi-aspect-sq   { aspect-ratio: 1; }

/* ── ABOUT ──────────────────────────────────────────────── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-imgs { position: relative; }
.about-main { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-float {
  position: absolute; bottom: -2.5rem; right: -2.5rem;
  width: 42%; aspect-ratio: 1; object-fit: cover;
  border: 5px solid var(--cream);
  box-shadow: 0 12px 40px rgba(26,23,20,.15);
}
.about-corner {
  position: absolute; top: -1rem; left: -1rem;
  width: 55%; height: 55%;
  border-top: 1px solid var(--gold); border-left: 1px solid var(--gold);
  pointer-events: none;
}
.stat-row { display: flex; gap: 3.5rem; flex-wrap: wrap; margin: 2.5rem 0; }
.stat-num { font-family: var(--fh); font-size: clamp(2.5rem,5vw,4rem); font-weight: 400; color: var(--gold); line-height: 1; }
.stat-lbl { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); margin-top: .2rem; }

/* ── SERVICES ───────────────────────────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); }
.svc-item {
  background: var(--cream); padding: 2.5rem 2rem;
  transition: background var(--fast);
  position: relative; overflow: hidden;
}
.svc-item::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.svc-item:hover { background: var(--cream2); }
.svc-item:hover::after { transform: scaleX(1); }
.svc-icon { font-size: 2rem; margin-bottom: 1.2rem; display: block; }
.svc-item h3 { font-size: 1.2rem; margin-bottom: .6rem; }
.svc-item p { font-size: .88rem; color: var(--muted); line-height: 1.75; }

/* ── TESTIMONIALS ───────────────────────────────────────── */
.tes-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.tes-card {
  background: var(--cream2); padding: 2.5rem 2rem;
  position: relative; border-bottom: 3px solid transparent;
  transition: border-color var(--fast);
}
.tes-card:hover { border-color: var(--gold); }
.tes-card::before {
  content: '"'; position: absolute; top: 1rem; right: 1.5rem;
  font-family: var(--fh); font-size: 5rem; color: rgba(184,150,106,.15); line-height: 1;
}
.tes-text { font-family: var(--fh); font-style: italic; font-size: .95rem; color: var(--ink2); line-height: 1.8; margin-bottom: 1.5rem; }
.tes-author { font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }

/* ── CTA ────────────────────────────────────────────────── */
.cta-section {
  background: var(--ink2);
  padding: 110px 0; text-align: center;
}
.cta-section h2 { color: var(--cream); }
.cta-section em { color: var(--gold2); }
.cta-section p { color: rgba(245,240,232,.5); }

/* ── LANDING ────────────────────────────────────────────── */
.landing-hero { padding: 160px 0 80px; background: var(--ink2); }
.landing-hero h1 { color: var(--cream); }
.landing-hero em { color: var(--gold2); }
.landing-hero p { color: rgba(245,240,232,.55); }
.landing-body { max-width: 900px; margin: 0 auto; padding: 80px 2rem; }
.landing-body h2 { font-size: clamp(1.5rem,3vw,2.2rem); margin: 2.5rem 0 .8rem; }
.landing-body p { color: var(--muted); line-height: 1.9; margin: .8rem 0; font-size: .97rem; }
.landing-body ul { color: var(--muted); padding-left: 1.2rem; margin: .8rem 0; }
.landing-body li { margin: .4rem 0; font-size: .95rem; }
.landing-body strong { color: var(--ink); font-weight: 500; }
.price-card {
  display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap;
  background: var(--cream2); border-left: 4px solid var(--gold);
  padding: 1.5rem 2rem; margin: 2rem 0;
}
.price-from { font-size: .8rem; color: var(--muted); }
.price-amount { font-family: var(--fh); font-size: 2.8rem; font-weight: 400; color: var(--gold); line-height: 1; }
.price-note { font-size: .75rem; color: var(--muted); }
.city-links { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1rem; }
.city-links a {
  font-size: .72rem; color: var(--muted);
  border: 1px solid var(--border); padding: .3rem .75rem;
  transition: all var(--fast);
}
.city-links a:hover { border-color: var(--gold); color: var(--gold); }

/* ── CONTACT ────────────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 6rem; align-items: start; }
.contact-info h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.contact-info p { color: var(--muted); font-size: .95rem; line-height: 1.8; margin-bottom: 2rem; }
.cinfo-row { display: flex; align-items: center; gap: .8rem; margin-bottom: 1rem; font-size: .9rem; }
.cinfo-row svg { color: var(--gold); flex-shrink: 0; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--cream2); border: 1px solid var(--border);
  color: var(--ink); padding: .78rem 1rem;
  font-size: .9rem; font-family: var(--fb); outline: none;
  transition: border-color var(--fast); box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-ok { display: none; background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.3); color: #16a34a; padding: 1rem; font-size: .88rem; margin-top: .8rem; }

/* ── GALERIA page ───────────────────────────────────────── */
.page-hero { padding: 150px 0 70px; background: var(--ink2); text-align: center; }
.page-hero h1 { color: var(--cream); }
.page-hero em { color: var(--gold2); }
.page-hero p { color: rgba(245,240,232,.55); max-width: 520px; margin: 1rem auto 0; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer { background: var(--ink); color: var(--cream); }
.footer-top {
  max-width: 1240px; margin: 0 auto;
  padding: 5rem 2rem 3rem;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 4rem;
}
.footer-logo { font-family: var(--fh); font-size: 1.4rem; font-weight: 400; margin-bottom: 1.2rem; }
.footer-logo em { font-style: italic; color: var(--gold); }
.footer-logo span { color: var(--warm); font-family: var(--fb); font-size: .95rem; font-weight: 300; }
.footer-brand p { font-size: .85rem; color: rgba(245,240,232,.45); line-height: 1.75; max-width: 280px; margin-bottom: 1.5rem; }
.footer-contacts { display: flex; flex-direction: column; gap: .5rem; }
.footer-contacts a { font-size: .82rem; color: rgba(245,240,232,.35); transition: color var(--fast); }
.footer-contacts a:hover { color: var(--gold2); }
.footer-col h4 { font-size: .62rem; letter-spacing: .28em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; font-family: var(--fb); font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .65rem; }
.footer-col a { font-size: .85rem; color: rgba(245,240,232,.4); transition: color var(--fast); }
.footer-col a:hover { color: var(--gold2); }
.footer-seo {
  max-width: 1240px; margin: 0 auto; padding: 0 2rem 2rem;
  border-top: 1px solid rgba(245,240,232,.05);
}
.seo-toggle {
  background: none; border: none; color: rgba(245,240,232,.2);
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  display: flex; align-items: center; gap: .5rem;
  padding: 1rem 0; cursor: pointer; font-family: var(--fb);
  transition: color var(--fast);
}
.seo-toggle:hover { color: rgba(245,240,232,.4); }
.seo-toggle svg { transition: transform .3s var(--ease); }
.seo-panel {
  max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height .4s var(--ease), opacity .3s var(--ease);
  display: flex; flex-wrap: wrap; gap: .35rem .9rem; padding-top: .5rem;
}
.seo-panel a { font-size: .68rem; color: rgba(245,240,232,.22); transition: color var(--fast); }
.seo-panel a:hover { color: rgba(245,240,232,.5); }
.footer-bottom {
  max-width: 1240px; margin: 0 auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid rgba(245,240,232,.05);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .72rem; color: rgba(245,240,232,.25);
  flex-wrap: wrap; gap: .5rem;
}
.footer-bottom a { color: rgba(245,240,232,.25); transition: color var(--fast); }
.footer-bottom a:hover { color: var(--gold); }

/* ── LIGHTBOX ───────────────────────────────────────────── */
.lb {
  display: none; position: fixed; inset: 0; z-index: 980;
  background: rgba(26,23,20,.97);
  align-items: center; justify-content: center;
}
.lb.open { display: flex; }
.lb img { max-height: 90vh; max-width: 90vw; object-fit: contain; }
#lb-x { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: rgba(245,240,232,.4); font-size: 1.3rem; transition: color var(--fast); }
#lb-x:hover { color: var(--gold2); }
#lb-p, #lb-n {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(245,240,232,.05); border: 1px solid rgba(245,240,232,.1);
  color: rgba(245,240,232,.5); width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; transition: all var(--fast);
}
#lb-p { left: 1.5rem; }
#lb-n { right: 1.5rem; }
#lb-p:hover, #lb-n:hover { background: rgba(245,240,232,.1); color: var(--cream); }

/* ── PRESUPUESTO (chatbot) ──────────────────────────────── */
.q-wrap { min-height: 100vh; padding: 100px 1.5rem 3rem; display: flex; flex-direction: column; align-items: center; background: var(--ink2); }
.q-head { text-align: center; margin-bottom: 3rem; max-width: 600px; }
.q-head h1 { color: var(--cream); font-size: clamp(2rem,5vw,3.5rem); }
.q-head h1 em { color: var(--gold2); }
.q-head p { color: rgba(245,240,232,.45); font-size: .9rem; margin-top: .8rem; }
.q-card { background: var(--cream); max-width: 680px; width: 100%; overflow: hidden; }
.q-prog-track { height: 3px; background: rgba(184,150,106,.15); }
.q-prog-bar { height: 3px; background: linear-gradient(to right, var(--gold), var(--gold2)); transition: width .5s var(--ease); width: 0; }
.q-body { padding: 2.5rem; }
.step { display: none; animation: stepIn .3s var(--ease); }
.step.active { display: block; }
@keyframes stepIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.step-num { font-size: .6rem; letter-spacing: .35em; text-transform: uppercase; color: var(--gold); margin-bottom: .8rem; display: block; }
.step-q { font-family: var(--fh); font-size: clamp(1.2rem,3vw,1.9rem); font-weight: 400; margin-bottom: 1.5rem; line-height: 1.15; color: var(--ink); }
/* Type cards */
.type-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: .5rem; margin-bottom: 1.2rem; }
.type-card {
  background: var(--cream2); border: 2px solid transparent;
  padding: 1.2rem .8rem; text-align: center; cursor: pointer;
  transition: all var(--fast); position: relative;
}
.type-card:hover { border-color: rgba(184,150,106,.4); }
.type-card.sel { border-color: var(--gold); background: rgba(184,150,106,.06); }
.type-emoji { font-size: 1.8rem; display: block; margin-bottom: .4rem; line-height: 1.2; }
.type-name { font-size: .82rem; font-weight: 500; color: var(--ink); display: block; }
.type-price { font-size: .72rem; color: var(--gold); font-weight: 500; display: block; margin-top: .25rem; }
/* Option cards */
.opt-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(140px,1fr)); gap: .5rem; margin-bottom: 1.2rem; }
.opt-card {
  background: var(--cream2); border: 2px solid transparent;
  padding: 1rem .8rem; text-align: center; cursor: pointer;
  transition: all var(--fast);
}
.opt-card:hover { border-color: rgba(184,150,106,.35); }
.opt-card.sel { border-color: var(--gold); background: rgba(184,150,106,.06); }
.opt-emoji { font-size: 1.5rem; display: block; margin-bottom: .3rem; line-height: 1.2; }
.opt-text  { font-size: .82rem; font-weight: 500; display: block; color: var(--ink); }
.opt-sub   { font-size: .68rem; color: var(--muted); display: block; margin-top: .15rem; }
.opt-extra { font-size: .7rem; color: var(--gold); font-weight: 500; display: block; margin-top: .25rem; }
/* Date */
.date-inp {
  width: 100%; background: var(--cream2); border: 2px solid var(--border);
  color: var(--ink); padding: .9rem 1rem; font-size: 1rem;
  font-family: var(--fb); outline: none; box-sizing: border-box;
  transition: border-color var(--fast); margin-bottom: 1rem; cursor: pointer;
}
.date-inp:focus { border-color: var(--gold); }
.date-status {
  padding: .65rem 1rem; font-size: .82rem; border-left: 3px solid;
  margin-bottom: 1rem; display: none;
}
.ds-ok   { background: rgba(22,163,74,.06); border-color: #16a34a; color: #15803d; }
.ds-busy { background: rgba(220,38,38,.06); border-color: #dc2626; color: #b91c1c; }
/* Nav row */
.q-nav { display: flex; justify-content: space-between; align-items: center; padding-top: 1.2rem; border-top: 1px solid var(--border); }
.q-back {
  background: none; border: 1px solid var(--border); color: var(--muted);
  padding: .55rem 1.3rem; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer; font-family: var(--fb); transition: all var(--fast);
}
.q-back:hover { border-color: var(--gold); color: var(--gold); }
.q-fwd {
  background: var(--ink); color: var(--cream);
  padding: .6rem 1.6rem; font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  border: none; cursor: pointer; font-family: var(--fb);
  transition: all var(--fast); display: none; align-items: center;
}
.q-fwd:hover { background: var(--gold); }
.q-fwd.show { display: inline-flex; }
/* Price bar */
.q-price-bar { background: var(--ink); padding: 1rem 2.5rem; display: none; align-items: center; justify-content: space-between; }
.q-price-bar.show { display: flex; }
.qpb-label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(245,240,232,.35); }
.qpb-val { font-family: var(--fh); font-size: 1.9rem; font-weight: 400; color: var(--gold2); line-height: 1; }
.qpb-iva { font-size: .7rem; color: rgba(245,240,232,.35); margin-top: .1rem; }
/* Video step */
.vid-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: 1.2rem; }
.vid-card {
  background: var(--cream2); border: 2px solid transparent;
  padding: 1.5rem 1rem; text-align: center; cursor: pointer;
  transition: all var(--fast); position: relative; overflow: hidden;
}
.vid-card:hover { border-color: rgba(184,150,106,.35); }
.vid-card.sel { border-color: var(--gold); background: rgba(184,150,106,.06); }
.vid-badge { position: absolute; top: .6rem; right: .6rem; background: var(--gold); color: var(--cream); font-size: .55rem; font-weight: 600; letter-spacing: .1em; padding: .15rem .45rem; }
/* Summary */
.sum-item { display: flex; justify-content: space-between; align-items: baseline; padding: .5rem 0; border-bottom: 1px solid var(--border); font-size: .85rem; }
.sum-item:last-child { border: none; }
.sum-q { color: var(--muted); }
.sum-right { text-align: right; }
.sum-a { font-weight: 500; color: var(--ink); display: block; }
.sum-p { font-size: .72rem; color: var(--gold); }
.final-box {
  background: var(--ink2); color: var(--cream);
  padding: 1.5rem; text-align: center; margin: 1.2rem 0;
}
.final-label { font-size: .6rem; letter-spacing: .25em; text-transform: uppercase; color: rgba(245,240,232,.35); margin-bottom: .4rem; }
.final-val { font-family: var(--fh); font-size: 3.2rem; font-weight: 400; color: var(--gold2); line-height: 1; }
.final-iva { font-family: var(--fh); font-size: 1.3rem; color: rgba(245,240,232,.4); margin-top: .3rem; }
/* Compare toggle */
.cmp-wrap { background: var(--cream2); padding: 1rem; margin-bottom: 1rem; }
.cmp-label { font-size: .6rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: .6rem; }
.cmp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem; }
.cmp-card { padding: .9rem; border: 2px solid var(--border); text-align: center; cursor: pointer; transition: all var(--fast); }
.cmp-card.active { border-color: var(--gold); background: rgba(184,150,106,.06); }
.cmp-emoji { font-size: 1.2rem; display: block; margin-bottom: .2rem; }
.cmp-name { font-size: .7rem; font-weight: 500; color: var(--ink); display: block; }
.cmp-price { font-family: var(--fh); font-size: 1.4rem; color: var(--gold); display: block; margin-top: .2rem; line-height: 1; }
.cmp-iva { font-size: .62rem; color: var(--muted); display: block; }
/* Form inside chatbot */
.qfg { margin-bottom: .9rem; }
.qfg label { display: block; font-size: .62rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-bottom: .4rem; }
.qfg input { width: 100%; background: var(--cream2); border: 1px solid var(--border); color: var(--ink); padding: .7rem 1rem; font-size: .9rem; font-family: var(--fb); outline: none; transition: border-color var(--fast); box-sizing: border-box; }
.qfg input:focus { border-color: var(--gold); }
.q-err { display: none; background: rgba(220,38,38,.06); border-left: 3px solid #dc2626; color: #b91c1c; padding: .6rem .9rem; font-size: .8rem; margin: .7rem 0; }

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 960px) {
  .g-masonry { columns: 2; }
  .g-grid { grid-template-columns: repeat(2,1fr); }
  .g-grid .gi.wide { grid-column: span 2; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-float { display: none; }
  .svc-grid { grid-template-columns: repeat(2,1fr); }
  .tes-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .type-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .g-masonry { columns: 1; }
  .g-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr; }
  .tes-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 70px 0; }
  .hero-content { padding: 0 1.5rem; padding-top: 68px; }
  .vid-grid { grid-template-columns: 1fr 1fr; }
  .type-grid { grid-template-columns: repeat(3,1fr); }
  .q-body { padding: 1.5rem; }
}
