/* =========================================================
   Festive Space Interiors — Vanilla CSS
   Brand: Terracotta #C06543 · Sand #F2E3D5 · Deep Green #2F4F4F
          Cream #FFF8F2 · Dark Brown #3E2C23
========================================================= */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Outfit", system-ui, sans-serif;
  background: #FFF8F2;
  color: #3E2C23;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: #C06543; color: #FFF8F2; }

/* ----------- LAYOUT ----------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
@media (min-width: 768px) { .section { padding: 128px 0; } }
.bg-sand { background: rgba(242,227,213,.4); }

/* ----------- TYPOGRAPHY ----------- */
.display { font-family: "Playfair Display", Georgia, serif; font-weight: 500; line-height: 1.05; letter-spacing: -.02em; color: #3E2C23; font-size: clamp(32px, 5vw, 60px); }
.display.sm { font-size: clamp(26px, 3.5vw, 38px); }
.display.xl { font-size: clamp(36px, 6vw, 64px); }
.display em { font-style: italic; color: #C06543; font-weight: 400; }
.display .block { display: block; color: #F2E3D5; }
h2, h3, h4, h5, h6 { font-family: "Playfair Display", serif; font-weight: 500; }
.italic { font-style: italic; }
.lead { font-size: 17px; color: rgba(62,44,35,.75); max-width: 540px; margin-top: 24px; line-height: 1.7; }
.muted { color: rgba(62,44,35,.7); }
.muted-light { color: rgba(255,248,242,.7); }
.muted.small, .muted-light.small, p.small { font-size: 14px; }
.tiny { font-size: 11px; color: rgba(62,44,35,.55); margin-top: 10px; }
.tiny.center { text-align: center; }
.overline { text-transform: uppercase; font-size: 11px; letter-spacing: .28em; font-weight: 500; color: #C06543; }
.overline.cream { color: #F2E3D5; }
.overline.gold { color: #E0B071; }
.gold { color: #E0B071; }

/* ----------- BUTTONS ----------- */
.btn-primary, .btn-cream, .btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px; font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; font-weight: 500; transition: all .3s ease;
  border: 1px solid transparent;
}
.btn-primary { background: #C06543; color: #FFF8F2; border-color: #C06543; }
.btn-primary:hover { background: #A85536; transform: translateY(-2px); box-shadow: 0 18px 40px -16px rgba(192,101,67,.5); }
.btn-primary:disabled { opacity: .5; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-cream { background: #FFF8F2; color: #2F4F4F; border-color: #FFF8F2; }
.btn-cream:hover { background: transparent; color: #FFF8F2; }
.btn-outline { background: transparent; color: #3E2C23; border-color: rgba(62,44,35,.3); }
.btn-outline:hover { background: #3E2C23; color: #FFF8F2; }

.link-arrow { font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: rgba(62,44,35,.85); }
.link-arrow:hover { color: #C06543; }

/* ----------- INPUTS ----------- */
.input-line {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(62,44,35,.25); padding: 12px 0;
  font: inherit; color: #3E2C23; outline: none; transition: border-color .25s;
}
.input-line:focus { border-bottom-color: #C06543; }
.input-line::placeholder { color: rgba(62,44,35,.4); }

.input-dark {
  width: 100%; background: transparent; border: none;
  border-bottom: 1px solid rgba(255,255,255,.18); padding: 10px 0;
  color: #FFF8F2; outline: none; font: inherit; font-size: 14px;
}
.input-dark:focus { border-bottom-color: #E0B071; }
.input-dark option { background: #1a1411; color: #FFF8F2; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; }
.form-grid .span-2 { grid-column: span 2; }

/* ----------- NAVBAR ----------- */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; transition: all .4s; background: transparent; }
.nav.scrolled { background: rgba(255,248,242,.85); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(62,44,35,.08); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 96px; }
.brand img { height: 64px; width: auto; }
.nav.scrolled .brand img { height: 52px; }
.nav-links { display: none; gap: 36px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a { font-size: 14px; color: rgba(62,44,35,.8); transition: color .25s; }
.nav-links a:hover { color: #C06543; }
.nav-cta { display: none; }
@media (min-width: 1024px) { .nav-cta { display: inline-flex; padding: 14px 24px; } }
.menu-toggle { display: block; font-size: 22px; color: #3E2C23; padding: 8px; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.mobile-menu { display: none; flex-direction: column; gap: 18px; padding: 28px 24px; background: #FFF8F2; border-top: 1px solid rgba(62,44,35,.1); }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: "Playfair Display", serif; font-size: 22px; color: #3E2C23; }

/* ----------- HERO ----------- */
.hero { padding: 144px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 64px; padding: 16px 24px; } }
.hero-text .display { margin-top: 20px; }
.hero-ctas { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; margin-top: 36px; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr 1fr; max-width: 460px; margin-top: 48px; border-top: 1px solid rgba(62,44,35,.12); border-bottom: 1px solid rgba(62,44,35,.12); }
.hero-stats > div { padding: 16px; border-right: 1px solid rgba(62,44,35,.12); }
.hero-stats > div:last-child { border-right: none; }
.hero-stats .num { font-family: "Playfair Display", serif; font-size: 30px; font-weight: 500; }
.hero-stats .lbl { text-transform: uppercase; font-size: 10.5px; letter-spacing: .18em; color: rgba(62,44,35,.6); margin-top: 4px; }

.hero-image { position: relative; border-radius: 28px; overflow: hidden; aspect-ratio: 4/5; background: #F2E3D5; box-shadow: 0 40px 80px -30px rgba(62,44,35,.35); }
@media (min-width: 1024px) { .hero-image { aspect-ratio: auto; height: 640px; } }
.hero-image > img { width: 100%; height: 100%; object-fit: cover; transition: opacity .7s; }
.est-pin { position: absolute; top: 20px; right: 20px; background: rgba(255,248,242,.9); backdrop-filter: blur(8px); border-radius: 999px; padding: 8px 16px; font-size: 10.5px; text-transform: uppercase; letter-spacing: .22em; color: #3E2C23; }
.hero-tabs { position: absolute; bottom: 20px; left: 20px; right: 20px; display: flex; flex-wrap: wrap; gap: 8px; }
.hero-tabs button { background: rgba(255,248,242,.7); backdrop-filter: blur(8px); border: 1px solid rgba(255,248,242,.4); padding: 8px 16px; border-radius: 999px; font-size: 11px; text-transform: uppercase; letter-spacing: .18em; color: #3E2C23; transition: all .3s; }
.hero-tabs button:hover { background: rgba(255,248,242,.95); }
.hero-tabs button.active { background: #C06543; color: #FFF8F2; border-color: #C06543; }

/* ----------- ABOUT ----------- */
.about-head { display: grid; grid-template-columns: 1fr; gap: 48px; margin-bottom: 80px; }
@media (min-width: 1024px) { .about-head { grid-template-columns: 5fr 7fr; } }
.about-body p { color: rgba(62,44,35,.8); font-size: 17px; line-height: 1.75; margin-bottom: 24px; }
.two-col { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .two-col { grid-template-columns: 1fr 1fr; } }
.bordered { padding-left: 20px; border-left: 2px solid; }
.bordered.orange { border-color: #C06543; }
.bordered.green { border-color: #2F4F4F; }
.bordered h4 { font-size: 20px; margin-bottom: 8px; }
.bordered p { font-size: 15px; line-height: 1.65; }

/* Process timeline */
.process { margin-top: 48px; }
.process h3 { margin-top: 12px; margin-bottom: 48px; }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; position: relative; }
@media (min-width: 768px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(7, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .process-grid::before { content: ""; position: absolute; top: 42px; left: 0; right: 0; height: 1px; background: linear-gradient(to right, transparent, rgba(192,101,67,.4), transparent); } }
.step { position: relative; }
.step-circle { height: 84px; width: 84px; border-radius: 50%; background: #FFF8F2; border: 1px solid rgba(192,101,67,.3); display: flex; align-items: center; justify-content: center; font-size: 26px; color: #C06543; margin-bottom: 20px; box-shadow: 0 8px 24px -12px rgba(192,101,67,.4); position: relative; z-index: 2; }
.step-num { font-family: "Playfair Display", serif; font-size: 24px; color: #C06543; }
.step h5 { font-size: 17px; margin: 4px 0 8px; line-height: 1.25; }
.step p { font-size: 13px; color: rgba(62,44,35,.65); line-height: 1.55; }

.strength-grid { margin-top: 96px; display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .strength-grid { grid-template-columns: 1fr 1fr; } }
.card-sand, .card-dark { padding: 40px; border-radius: 24px; }
.card-sand { background: #F2E3D5; border: 1px solid rgba(62,44,35,.05); }
.card-sand h4 { font-size: 24px; margin: 16px 0 24px; }
.card-sand ul { list-style: none; }
.card-sand li { padding: 6px 0; color: rgba(62,44,35,.85); font-size: 15px; }
.card-dark { background: #2F4F4F; color: #FFF8F2; }
.card-dark h4 { font-size: 24px; margin: 16px 0 20px; }
.card-dark p { opacity: .85; font-size: 15px; line-height: 1.7; }

/* ----------- CALLOUT (Design Call) ----------- */
.callout { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; background: #FFF8F2; border: 1px solid rgba(62,44,35,.1); border-radius: 28px; padding: 40px; box-shadow: 0 30px 80px -50px rgba(62,44,35,.3); }
@media (min-width: 1024px) { .callout { grid-template-columns: 5fr 7fr; padding: 56px; } }
.callout h2 { margin: 16px 0 20px; }

/* ----------- HEAD ROW (used by Services & Trust) ----------- */
.head-row { display: grid; gap: 24px; margin-bottom: 56px; align-items: end; }
@media (min-width: 1024px) { .head-row { grid-template-columns: 7fr 5fr; } }

/* ----------- SERVICES ----------- */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 768px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service { background: #FFF8F2; border: 1px solid rgba(62,44,35,.08); border-radius: 24px; overflow: hidden; transition: transform .45s, box-shadow .45s; }
.service:hover { transform: translateY(-6px); box-shadow: 0 24px 60px -28px rgba(62,44,35,.22); }
.service .img-wrap { height: 240px; overflow: hidden; }
.service img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s; }
.service:hover img { transform: scale(1.06); }
.service h3 { padding: 28px 28px 12px; font-size: 22px; line-height: 1.2; }
.service p { padding: 0 28px 28px; font-size: 14px; color: rgba(62,44,35,.7); line-height: 1.65; }

/* ----------- ESTIMATE CALCULATOR ----------- */
.calc { background: #2F4F4F; color: #FFF8F2; border-radius: 28px; overflow: hidden; display: grid; grid-template-columns: 1fr; }
@media (min-width: 1024px) { .calc { grid-template-columns: 4fr 8fr; } }
.calc-left { padding: 40px; border-bottom: 1px solid rgba(255,248,242,.1); }
@media (min-width: 1024px) { .calc-left { border-bottom: none; border-right: 1px solid rgba(255,248,242,.1); } }
.calc-left .display em { color: #C06543; }
.calc-right { padding: 40px; }
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: 1fr 1fr; } }
.calc-output { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; padding-top: 24px; border-top: 1px solid rgba(255,248,242,.15); }
@media (min-width: 640px) { .calc-output { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.calc-num { font-family: "Playfair Display", serif; font-size: 44px; margin-top: 8px; }
input[type="range"] { width: 100%; accent-color: #C06543; margin-top: 16px; }

/* ----------- PROJECT SECTIONS ----------- */
.project-section { padding: 96px 0; }
.project-section.dark { background: #2F4F4F; color: #FFF8F2; }
.project-section.dark .overline { color: #E0B071; }
.video-wrap { border-radius: 28px; overflow: hidden; position: relative; box-shadow: 0 24px 60px -30px rgba(0,0,0,.4); }
.video-wrap video { width: 100%; height: clamp(320px, 50vw, 600px); object-fit: cover; background: #000; }
.slider { position: relative; }
.slider .slides { display: flex; overflow: hidden; border-radius: 28px; }
.slider .slides img { flex: 0 0 100%; width: 100%; height: clamp(320px, 50vw, 600px); object-fit: cover; transition: transform .8s; }
.slider-ctrl { display: flex; align-items: center; justify-content: space-between; margin-top: 20px; }
.dots { display: flex; gap: 6px; }
.dots span { display: block; width: 24px; height: 3px; background: rgba(62,44,35,.2); transition: all .5s; cursor: pointer; }
.dots span.active { width: 48px; background: #C06543; }
.arrows { display: flex; gap: 8px; }
.arrows button { width: 44px; height: 44px; border: 1px solid rgba(62,44,35,.15); border-radius: 50%; font-size: 22px; line-height: 1; transition: all .3s; color: inherit; }
.arrows button:hover { background: #3E2C23; color: #FFF8F2; }
.dark .arrows button { border-color: rgba(255,255,255,.2); }
.dark .arrows button:hover { background: #FFF8F2; color: #2F4F4F; }
.dark .dots span { background: rgba(255,255,255,.2); }
.dark .dots span.active { background: #E0B071; }

.project-head { display: grid; grid-template-columns: 1fr; gap: 32px; align-items: end; margin: 48px 0; }
@media (min-width: 1024px) { .project-head { grid-template-columns: 7fr 5fr; } }
.project-head h3 { margin-top: 12px; }
.project-head p.italic { margin-top: 12px; font-size: 18px; }
.snapshot { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (min-width: 640px) { .snapshot { grid-template-columns: repeat(3, 1fr); } }
.snapshot span { padding: 12px 16px; border-radius: 12px; background: #F2E3D5; border: 1px solid rgba(62,44,35,.05); display: flex; flex-direction: column; gap: 4px; font-size: 14px; }
.snapshot.dark span { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); color: #FFF8F2; }
.snapshot b { font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: #C06543; font-weight: 500; }
.snapshot.dark b { color: #E0B071; }

.project-body { display: grid; grid-template-columns: 1fr; gap: 48px; margin-top: 56px; }
@media (min-width: 1024px) { .project-body { grid-template-columns: 7fr 5fr; gap: 64px; } }
.project-body p { font-size: 16px; line-height: 1.8; color: rgba(62,44,35,.85); margin-top: 12px; }
.dark .project-body p { color: rgba(255,248,242,.85); }
.csr-grid { display: grid; grid-template-columns: 1fr; gap: 20px; margin-top: 32px; }
@media (min-width: 768px) { .csr-grid { grid-template-columns: 1fr 1fr 1fr; } }
.csr { padding: 24px; border-radius: 16px; background: rgba(242,227,213,.6); border: 1px solid rgba(62,44,35,.08); }
.dark .csr { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.1); }
.csr b { font-family: "Playfair Display", serif; font-size: 24px; color: #C06543; }
.csr h6 { font-size: 17px; margin: 8px 0; }
.csr p { font-size: 13.5px; line-height: 1.6; }
.kv { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 12px; }
@media (min-width: 640px) { .kv { grid-template-columns: 1fr 1fr; } }
.kv span { display: block; border-bottom: 1px solid rgba(62,44,35,.1); padding-bottom: 12px; font-size: 14px; }
.dark .kv span { border-color: rgba(255,255,255,.1); color: rgba(255,248,242,.9); }
.kv b { display: block; font-size: 10px; text-transform: uppercase; letter-spacing: .2em; color: #C06543; font-weight: 500; margin-bottom: 4px; }
.dark .kv b { color: #E0B071; }
.testimonial { margin-top: 32px; padding: 28px; border-radius: 16px; background: #FFF8F2; border: 1px solid rgba(192,101,67,.2); font-family: "Playfair Display", serif; font-size: 18px; font-style: italic; line-height: 1.45; color: #3E2C23; }
.dark .testimonial { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.1); color: #FFF8F2; }
.testimonial cite { display: block; margin-top: 12px; font-style: normal; font-family: "Outfit", sans-serif; font-size: 11px; text-transform: uppercase; letter-spacing: .2em; color: rgba(62,44,35,.6); }
.dark .testimonial cite { color: rgba(255,248,242,.6); }

/* ----------- TOOLS ----------- */
.tools-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 1024px) { .tools-grid { grid-template-columns: 1fr 1fr; } }
.tool { background: #FFF8F2; border: 1px solid rgba(62,44,35,.1); border-radius: 24px; padding: 28px; }
.tool-head { display: flex; align-items: center; gap: 14px; font-size: 22px; margin-bottom: 24px; }
.tool-head h4 { font-size: 20px; }

.dropzone { display: block; border: 1px dashed rgba(62,44,35,.25); border-radius: 16px; padding: 28px; text-align: center; cursor: pointer; transition: border-color .25s; position: relative; }
.dropzone:hover { border-color: #C06543; }
.dropzone input { position: absolute; inset: 0; opacity: 0; cursor: pointer; }
#roomPreview { max-height: 180px; margin: 0 auto; border-radius: 12px; }
#dropPlaceholder { padding: 12px 0; font-size: 14px; color: rgba(62,44,35,.8); }

.vastu { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.vastu label { grid-column: span 2; }
.vastu label span { display: block; margin-bottom: 6px; }
.vastu select { width: 100%; background: transparent; border: none; border-bottom: 1px solid rgba(62,44,35,.25); padding: 10px 0; font: inherit; outline: none; }
.vastu input.input-line { grid-column: span 1; }
.score-block { grid-column: span 2; background: #2F4F4F; color: #FFF8F2; border-radius: 16px; padding: 20px; display: flex; align-items: flex-end; justify-content: space-between; margin: 12px 0 4px; }
.score { font-family: "Playfair Display", serif; font-size: 44px; line-height: 1; margin-top: 4px; }
.score small { font-size: 22px; opacity: .6; margin-left: 4px; }
.score-block .tiny { color: rgba(255,248,242,.85); max-width: 180px; text-align: right; }

/* ----------- TESTIMONIALS ----------- */
.testi { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: center; }
@media (min-width: 1024px) { .testi { grid-template-columns: 4fr 8fr; } }
.stars { color: #C06543; font-size: 16px; margin-top: 16px; }
.stars .muted { color: rgba(62,44,35,.65); margin-left: 8px; font-size: 14px; }
.testi-card { position: relative; background: rgba(242,227,213,.5); border: 1px solid rgba(62,44,35,.1); border-radius: 24px; padding: 40px; min-height: 260px; }
.quote-mark { font-family: "Playfair Display", serif; font-size: 64px; color: #C06543; line-height: .5; opacity: .8; }
.t-name { font-weight: 500; margin-top: 24px; font-size: 14px; }
.testi-ctrl { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; }
.testi-ctrl .arrows button { width: 36px; height: 36px; font-size: 18px; }

/* ----------- TRUST ----------- */
.trust-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(5, 1fr); } }
.trust-stat { background: rgba(242,227,213,.6); border: 1px solid rgba(62,44,35,.08); border-radius: 16px; padding: 28px; }
.trust-stat .num { font-family: "Playfair Display", serif; font-size: clamp(28px, 3vw, 36px); font-weight: 500; }
.trust-stat .lbl { text-transform: uppercase; font-size: 12px; letter-spacing: .2em; color: rgba(62,44,35,.65); margin-top: 8px; }

/* ----------- FINAL CTA ----------- */
.final-cta { background: #2F4F4F; color: #FFF8F2; padding: 128px 0; text-align: center; position: relative; overflow: hidden; }
.final-cta .display { color: #FFF8F2; }
.final-cta p { color: rgba(255,248,242,.75); font-size: 18px; max-width: 560px; margin: 28px auto; line-height: 1.7; }
.final-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 16px; }
.final-cta .link-arrow { color: rgba(255,248,242,.8); }
.final-cta .link-arrow:hover { color: #FFF8F2; }
.grain::after {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

/* ----------- FOOTER ----------- */
.footer { background: #FFF8F2; border-top: 1px solid rgba(62,44,35,.1); padding: 64px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 4fr 4fr 2fr 2fr; gap: 32px; } }
.footer-logo { height: 72px; margin-bottom: 24px; }
.contact-list { list-style: none; }
.contact-list li { padding: 6px 0; font-size: 14px; }
.links { list-style: none; }
.links li { padding: 4px 0; font-size: 14px; }
.socials { display: flex; gap: 12px; }
.socials a { width: 40px; height: 40px; border: 1px solid rgba(62,44,35,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 600; transition: all .3s; }
.socials a:hover { background: #C06543; color: #FFF8F2; border-color: #C06543; }
.footer-bottom { display: flex; flex-direction: column; gap: 8px; margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(62,44,35,.08); font-size: 12px; color: rgba(62,44,35,.55); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* ----------- FLOATING BUTTONS ----------- */
.floating { position: fixed; bottom: 80px; right: 16px; z-index: 200; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
@media (min-width: 640px) { .floating { bottom: 96px; right: 24px; } }
.float-cta { position: relative; display: inline-flex; align-items: center; gap: 8px; background: #C06543; color: #FFF8F2; padding: 14px 22px; border-radius: 999px; font-size: 12px; letter-spacing: .18em; text-transform: uppercase; box-shadow: 0 18px 40px -12px rgba(192,101,67,.6); transition: all .3s; }
.float-cta::before { content: ""; position: absolute; inset: 0; border-radius: 999px; background: #C06543; opacity: .5; animation: ping 2s cubic-bezier(0,0,.2,1) infinite; z-index: -1; }
.float-cta:hover { background: #A85536; transform: scale(1.04); }
.float-wa { position: relative; width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 14px 32px -8px rgba(37,211,102,.6); animation: bounce 3s ease-in-out infinite; transition: background .3s; }
.float-wa:hover { background: #1EBE5A; }
.float-wa::before { content: ""; position: absolute; inset: 0; border-radius: 50%; background: #25D366; opacity: .4; animation: ping 2s cubic-bezier(0,0,.2,1) infinite; z-index: -1; }
.float-wa .tooltip { position: absolute; right: calc(100% + 14px); top: 50%; transform: translateY(-50%); background: #3E2C23; color: #FFF8F2; padding: 8px 14px; border-radius: 999px; font-size: 11px; text-transform: uppercase; letter-spacing: .18em; white-space: nowrap; opacity: 0; pointer-events: none; transition: opacity .25s; }
.float-wa:hover .tooltip { opacity: 1; }
@media (max-width: 640px) { .float-wa .tooltip { display: none; } }
@keyframes ping { 75%, 100% { transform: scale(1.6); opacity: 0; } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 25% { transform: translateY(-6px); } 50% { transform: translateY(-3px); } }

/* ----------- MODALS ----------- */
.modal { position: fixed; inset: 0; z-index: 110; display: none; align-items: center; justify-content: center; padding: 16px; }
.modal.open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(62,44,35,.55); }
.modal-backdrop.blur { background: rgba(26,20,17,.7); backdrop-filter: blur(8px); }
.modal-card { position: relative; width: 100%; max-width: 520px; background: #FFF8F2; border-radius: 24px; padding: 36px; border: 1px solid rgba(62,44,35,.1); box-shadow: 0 60px 120px -30px rgba(0,0,0,.35); animation: popIn .5s cubic-bezier(.22,1,.36,1); max-height: 90vh; overflow: auto; }
.modal-card.luxury { background: linear-gradient(180deg, #1a1411 0%, #0f0c0b 100%); color: #FFF8F2; border-color: rgba(255,255,255,.1); }
.modal-card.luxury .display { color: #FFF8F2; }
.modal-card.luxury .display em { color: #E0B071; }
.modal-close { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border-radius: 50%; font-size: 22px; line-height: 1; background: rgba(62,44,35,.08); transition: background .2s; color: #3E2C23; }
.modal-close.light { background: rgba(255,255,255,.08); color: #FFF8F2; }
.modal-close:hover { background: rgba(62,44,35,.15); }
.modal-card.luxury .overline { letter-spacing: .28em; }
.modal-card.luxury p { color: rgba(255,248,242,.65); }
.trust-row { font-size: 11px; color: rgba(255,248,242,.6); margin: 18px 0 24px; }
.file-pill { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1px solid rgba(255,255,255,.15); border-radius: 999px; font-size: 12px; cursor: pointer; transition: all .2s; }
.file-pill:hover { border-color: #E0B071; color: #E0B071; }
@keyframes popIn { from { opacity: 0; transform: translateY(20px) scale(.96); } to { opacity: 1; transform: translateY(0) scale(1); } }

/* ----------- TOAST ----------- */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(40px); background: #2F4F4F; color: #FFF8F2; padding: 14px 22px; border-radius: 999px; font-size: 13px; opacity: 0; pointer-events: none; transition: all .35s; z-index: 300; box-shadow: 0 18px 40px -12px rgba(47,79,79,.5); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ----------- REVEAL ON SCROLL ----------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
