/* ============================================
   Section-by-section styles
   ============================================ */

/* ----------------------------------------
   SECTION 2 — HERO
   ---------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding: 0 var(--gutter) var(--sp-12);
  --hero-gradient-y: 0px;
}

/* Slider layers — crossfade between three backgrounds */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  will-change: opacity;
}
.hero-slide.is-active { opacity: 1; }

/* Oxblood scrim weighted to the LEFT, where the headline sits — keeps
   white text legible on every slide regardless of the image behind it */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg,
      rgba(40, 12, 18, 0.90) 0%,
      rgba(40, 12, 18, 0.68) 26%,
      rgba(40, 12, 18, 0.32) 50%,
      rgba(40, 12, 18, 0.06) 74%,
      transparent 100%),
    linear-gradient(to top, rgba(20, 6, 10, 0.42) 0%, transparent 30%);
  z-index: 1;
  pointer-events: none;
  transform: translateY(var(--hero-gradient-y));
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 192px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  will-change: transform, opacity;
  box-sizing: border-box;
}

/* Text that swaps per slide fades out/in together */
.hero-label,
.hero-headline,
.hero-sub {
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.hero-content.is-swapping .hero-label,
.hero-content.is-swapping .hero-headline,
.hero-content.is-swapping .hero-sub {
  opacity: 0;
  transform: translateY(12px);
}

.hero-label {
  color: var(--rose-light);
  margin-bottom: var(--sp-3);
  display: block;
  text-align: left;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5.6vw, 68px);
  font-weight: 300;
  color: white;
  max-width: 15ch;
  margin: 0 0 var(--sp-3);
  text-align: left;
  line-height: 1.06;
  letter-spacing: var(--ls-tight);
  text-shadow: 0 2px 28px rgba(10, 3, 5, 0.6);
}

.hero-sub {
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 46ch;
  margin: 0 0 var(--sp-5);
  text-align: left;
  line-height: 1.6;
  text-shadow: 0 1px 14px rgba(10, 3, 5, 0.65);
}

.hero-ctas {
  display: flex;
  gap: var(--sp-2);
  justify-content: flex-start;
  flex-wrap: wrap;
}

.hero-trust {
  margin-top: var(--sp-4);
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.62);
  max-width: 52ch;
  text-shadow: 0 1px 10px rgba(10, 3, 5, 0.6);
}

/* Slider dots — aligned to the content's left edge */
.hero-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 1180px;
  padding: 0 var(--gutter);
  box-sizing: border-box;
}
.hero-dot {
  height: 44px;
  width: 44px;
  display: flex;
  align-items: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}
.hero-dot span {
  display: block;
  height: 3px;
  width: 28px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.3s ease, width 0.3s ease;
}
.hero-dot:hover span { background: rgba(255, 255, 255, 0.7); }
.hero-dot.is-active span { background: var(--rose-light); width: 46px; }
.hero-dot:focus-visible { outline: 2px solid var(--rose-light); outline-offset: 4px; border-radius: 4px; }

.scroll-indicator {
  position: absolute;
  bottom: 36px;
  right: var(--gutter);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 1px;
}
.scroll-arrow {
  animation: scrollBounce 1.5s ease-in-out infinite;
  font-size: 16px;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(6px); opacity: 1; }
}

/* Hero entry animation */
.hero-anim {
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 0.8s ease-out forwards;
}
.hero-label.hero-anim { animation-delay: 0.2s; }
.hero-headline.hero-anim { animation-delay: 0.4s; }
.hero-sub.hero-anim { animation-delay: 0.6s; }
.hero-ctas.hero-anim { animation-delay: 0.8s; }
@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ----------------------------------------
   SECTION 3 — ESTIMATOR
   ---------------------------------------- */
.estimator-section {
  background: var(--cream);
  padding: var(--section-pad);
}

.estimator-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--sp-8);
  align-items: start;
}

.estimator-copy {
  align-self: start;
}
.estimator-copy h2 { margin-top: var(--sp-2); }
.estimator-copy .pre-label { display: block; margin-bottom: var(--sp-2); }

.estimator-note {
  color: var(--text-muted);
  font-size: 14px;
  font-style: italic;
  margin-top: var(--sp-3);
}

.wall-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: var(--sp-5);
  box-shadow: 0 8px 30px rgba(44, 24, 16, 0.05);
}

.room-sketch-container {
  margin-bottom: var(--sp-4);
}

#roomSVG {
  width: 100%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto var(--sp-2);
}

.sqft-display {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-secondary);
  margin-top: var(--sp-2);
}
.sqft-display strong {
  color: var(--burgundy);
  font-weight: 600;
}

.slider-group {
  display: grid;
  grid-template-columns: 100px 1fr 70px;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-3);
}
.slider-group label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}
.slider-value {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--burgundy);
  font-weight: 500;
  text-align: right;
}

.custom-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: var(--border);
  outline: none;
  cursor: pointer;
}
.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--burgundy);
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 6px rgba(107, 31, 42, 0.3);
  transition: transform 0.2s;
}
.custom-slider::-webkit-slider-thumb:hover { transform: scale(1.15); }
.custom-slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--burgundy);
  cursor: pointer;
  border: 3px solid white;
  box-shadow: 0 2px 6px rgba(107, 31, 42, 0.3);
}

.custom-size-btn {
  display: block;
  width: 100%;
  background: none;
  border: 1px dashed var(--rose);
  color: var(--burgundy);
  font-family: var(--font-sans);
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 8px;
  margin-bottom: var(--sp-3);
  transition: background 0.3s, color 0.3s;
}
.custom-size-btn:hover { background: var(--rose); color: white; }

.material-selector { margin-bottom: var(--sp-4); }
.material-label {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

/* Searchable dropdown panel used by the material selector */
.select__panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #DDD5CB;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(44, 24, 16, 0.14);
  z-index: 100;
  overflow: hidden;
}
.select__panel[hidden] { display: none; }
.select__panel .select__options {
  position: static;
  border: none;
  box-shadow: none;
  border-radius: 0;
  max-height: 240px;
  padding: 6px;
}
.select__search {
  width: 100%;
  padding: 10px 14px;
  border: none;
  border-bottom: 1px solid #EEE5DA;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--text-primary);
  background: white;
  outline: none;
}
.select__search::placeholder { color: #B0A090; }
.select__empty {
  padding: 18px;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-muted);
}
.select__empty[hidden] { display: none; }

.calculate-btn {
  display: block;
  width: 100%;
  background: var(--burgundy);
  color: white;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  padding: 14px 24px;
  border: none;
  border-radius: 100px;
  transition: all 0.3s;
}
.calculate-btn:hover {
  background: var(--burgundy-dark);
  box-shadow: 0 8px 24px rgba(107, 31, 42, 0.3);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  max-width: 400px;
  width: 100%;
  position: relative;
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 18px;
  color: var(--text-muted);
  width: 44px;   /* 44px minimum touch target */
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.modal-close:hover { background: var(--cream); }
.modal-card h4 { color: var(--burgundy); margin-bottom: var(--sp-3); }
.modal-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-2); margin-bottom: var(--sp-3); }
.modal-field label {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.modal-field input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.modal-field input:focus { border-color: var(--burgundy); }

/* Receipts */
.receipt-results {
  margin-top: var(--sp-5);
  display: none;
}

/* ===================================================
   PAPER WALL SCROLL — receipt unfurl animation
   =================================================== */

.scroll-receipt-wrap {
  position: relative;
  padding: 0 14px; /* breathing room for end-knobs */
  box-sizing: border-box;
  width: 100%;
}

/* ── Lacquered rod ── */
.scroll-rod {
  position: relative;
  height: 16px;
  background: linear-gradient(
    180deg,
    #140303 0%,
    #5C1420 22%,
    #A02F3E 48%,
    #5C1420 74%,
    #140303 100%
  );
  border-radius: 8px;
  box-shadow:
    0 5px 18px rgba(0, 0, 0, 0.55),
    inset 0 2px 3px rgba(255, 255, 255, 0.18),
    inset 0 -1px 2px rgba(0, 0, 0, 0.5);
  z-index: 3;
  transform-origin: center;
}

/* Round end knobs */
.scroll-rod::before,
.scroll-rod::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: radial-gradient(circle at 36% 30%, #B83C50, #360D14);
  box-shadow:
    0 4px 12px rgba(0, 0, 0, 0.6),
    inset 0 2px 4px rgba(255, 255, 255, 0.22),
    inset 0 -2px 3px rgba(0, 0, 0, 0.45);
  transform: translateY(-50%);
}
.scroll-rod::before { left: -14px; }
.scroll-rod::after  { right: -14px; }

/* ── Scroll paper ── */
.scroll-paper {
  overflow: hidden;
  clip-path: inset(0 0 100% 0);        /* hidden until the unfurl fires */
  background: #FAF6EF;
  border-left:   1px solid rgba(175, 148, 110, 0.32);
  border-right:  1px solid rgba(175, 148, 110, 0.32);
  border-bottom: 1px solid rgba(175, 148, 110, 0.45);
  border-radius: 0 0 4px 4px;
  box-shadow:
    5px  0 22px rgba(0, 0, 0, 0.07),
    -5px 0 22px rgba(0, 0, 0, 0.07),
    0   14px 40px rgba(0, 0, 0, 0.09);
  padding: 18px 20px 24px;
  position: relative;
  box-sizing: border-box;
  width: 100%;
}

/* Subtle horizontal grain — like aged paper */
.scroll-paper::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0px,
    transparent 23px,
    rgba(100, 75, 45, 0.035) 24px
  );
  pointer-events: none;
  z-index: 0;
}

/* Every child sits above the grain */
.scroll-paper > * { position: relative; z-index: 1; }

/* Receipt "printed" on the paper — strip card chrome */
.scroll-paper .receipt-colorco {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
}

/* Badge sits flush at top of scroll */
.scroll-paper .receipt-badge {
  margin-bottom: 14px;
  border-radius: 2px;
}

/* Disclaimer + CTA spacing inside paper */
.scroll-paper .receipt-disclaimer { margin-top: 14px; }
.scroll-paper .receipt-cta-wrap   { margin-top: 16px; }

/* ── Wastage rows ── */
.receipt-wastage-row {
  color: var(--text-muted);
  font-size: 11.5px;
  padding: 4px 0 1px;
}
.receipt-wastage-note {
  font-family: var(--font-sans);
  font-size: 10px;
  color: #aaa;
  text-align: right;
  margin-bottom: 6px;
  font-style: italic;
}
.receipt-material-total {
  font-weight: 600;
  border-top: 1px dotted rgba(0,0,0,0.12);
  padding-top: 6px;
  margin-top: 2px;
  font-size: 12.5px;
}

/* ── Installation note ── */
.receipt-install-note {
  background: rgba(107, 31, 42, 0.05);
  border-left: 2px solid var(--burgundy);
  padding: 12px 14px 12px 14px;
  margin: 8px 0 0;
  border-radius: 0 3px 3px 0;
  position: relative;
  overflow: visible;
}
.install-note-label {
  font-family: var(--font-sans);
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--burgundy);
  font-weight: 700;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.receipt-install-note p {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
  padding-right: 68px; /* room for the stamp */
}

/* Stamp floated to the right inside the install note */
.receipt-stamp-inline {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

/* ── Animations ── */

@keyframes rod-appear {
  from { opacity: 0; transform: translateY(-5px) scaleX(0.96); }
  to   { opacity: 1; transform: translateY(0)    scaleX(1); }
}

@keyframes scroll-unfurl {
  0%   { clip-path: inset(0 0 100% 0); }
  100% { clip-path: inset(0 0 0%   0); }
}

.scroll-receipt-wrap.is-shown .scroll-rod {
  animation: rod-appear 0.3s ease-out forwards;
}

.scroll-paper.is-active {
  animation: scroll-unfurl 1.35s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
  animation-delay: 0.22s; /* small pause after the rod appears */
}
.receipts-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
  margin-top: var(--sp-3);
}
.receipts-single {
  grid-template-columns: 1fr;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.receipt {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  padding: 28px 24px 36px;
  position: relative;
}
.receipt-generic {
  background: #F8F6F3;
  border: 1.5px dashed #C0B5A8;
  border-radius: 4px;
  transform: scale(0.88);
  transform-origin: top center;
  opacity: 0.75;
  filter: grayscale(20%);
}
.receipt-stack {
  position: relative;
  z-index: 2;
  transform-origin: top center;
}
.receipt-colorco {
  background: var(--cream);
  border: 2px solid var(--burgundy);
  border-radius: 0 0 4px 4px;
  box-shadow: 0 20px 60px rgba(107, 31, 42, 0.2);
}
.receipt-badge {
  background: var(--burgundy);
  color: white;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 8px 8px 0 0;
  margin-bottom: -4px;
  text-transform: uppercase;
}
.receipt-header { text-align: center; margin-bottom: 8px; }
.receipt-brand {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 1px;
  color: var(--text-primary);
}
.receipt-generic .receipt-brand {
  font-family: 'Courier New', monospace;
  color: #888;
  font-size: 13px;
}
.receipt-colorco .receipt-brand {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 26px;
  color: var(--burgundy);
  letter-spacing: 0;
}
.receipt-location {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}
.receipt-divider {
  text-align: center;
  color: var(--text-muted);
  font-size: 11px;
  margin: 4px 0;
  overflow: hidden;
  white-space: nowrap;
}
.receipt-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 12px;
}
.receipt-total { font-weight: bold; font-size: 14px; color: var(--text-primary); }
.receipt-meta { color: #888; font-size: 11px; }
.receipt-effective {
  margin-top: 4px;
  padding-top: 6px;
  border-top: 1px dotted rgba(0,0,0,0.18);
  color: var(--burgundy);
  font-weight: 600;
  font-size: 12px;
}
.receipt-effective span:last-child { color: var(--burgundy); }
.receipt-generic .receipt-effective span:last-child { color: #c0392b; }
.receipt-tier-label { color: var(--text-muted); font-size: 11px; text-transform: uppercase; letter-spacing: 1px; }
.receipt-tier { padding: 4px 0; }
.tier-highlighted { color: var(--burgundy); font-weight: bold; }
.receipt-stamp {
  position: absolute;
  bottom: 16px;
  right: 16px;
}
.stamp-circle {
  width: 60px;
  height: 60px;
  border: 2px solid var(--rose);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-15deg);
  font-size: 9px;
  color: var(--rose);
  opacity: 0.7;
  line-height: 1.4;
}
.receipt-warning {
  font-size: 11px;
  color: #c0392b;
  margin-top: 8px;
  font-family: var(--font-sans);
}
.receipt-good {
  font-size: 11px;
  color: #27ae60;
  margin-top: 8px;
  font-family: var(--font-sans);
}
.receipt-trust {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--burgundy);
  margin-top: 8px;
}
.receipt-disclaimer {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  margin-top: var(--sp-4);
}
.receipt-cta {
  margin: var(--sp-3) auto 0;
  display: inline-flex;
  max-width: 100%;
  white-space: normal;   /* long label wraps instead of forcing overflow */
  text-align: center;
  box-sizing: border-box;
}
.receipt-cta-wrap { text-align: center; margin-top: var(--sp-2); }

/* ----------------------------------------
   SECTION 4 — BRAND WORK (Sticky stack + Catalogue)
   ---------------------------------------- */
.work-section {
  background: var(--burgundy-dark);
  position: relative;
}

.work-header {
  text-align: center;
  padding: var(--sp-10) var(--gutter) var(--sp-6);
}
.work-header .pre-label { display: block; margin-bottom: var(--sp-3); }
.work-statement {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  color: rgba(255, 255, 255, 0.92);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.4;
}

.stack-section {
  position: relative;
  height: 300vh;
}
.stack-card {
  position: sticky;
  top: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}
.stack-card::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(10, 3, 5, 0.6) 0%, rgba(10, 3, 5, 0.25) 45%, transparent 100%);
  z-index: 5;
  pointer-events: none;
}
.stack-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stack-card img,
.stack-card .img-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.stack-brand-name {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 7px 18px;
  border-radius: 100px;
  z-index: 10;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.stack-counter {
  position: absolute;
  bottom: 24px;
  right: 32px;
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 2px;
  z-index: 10;
}
.stack-caption {
  position: absolute;
  bottom: 64px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 10;
  color: white;
  max-width: 600px;
  width: 90%;
}
.stack-caption .pre-label {
  color: var(--rose-light);
  display: block;
  margin-bottom: 8px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
}
.stack-caption h3 {
  color: white;
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(20px, 2.6vw, 30px);
  line-height: 1.25;
  margin: 0;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.6);
}

/* ============================================
   Studio Book — Editorial preview section
   ============================================ */
.catalogue-trigger {
  padding: clamp(64px, 9vw, 120px) 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(196, 83, 106, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 40% at 85% 100%, rgba(255, 255, 255, 0.04), transparent 60%),
    linear-gradient(180deg, var(--burgundy-dark) 0%, #3d1018 100%);
  color: var(--cream);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  overflow: hidden;
  transition: opacity 0.5s ease, max-height 0.6s ease, padding 0.6s ease;
}
.catalogue-trigger.is-hidden {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  pointer-events: none;
  border: 0;
}

.catalogue-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}

/* CTA column — single download button, right-aligned */
.catalogue-cta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Lede with no sibling below it — drop the bottom margin */
.catalogue-lede--solo {
  margin-bottom: 0;
}

/* Hero-sized download button override */
.catalogue-dl-hero {
  padding: 17px 32px;
  font-size: 15px;
  white-space: nowrap;
}

/* ===== Copy column ===== */
.catalogue-copy {
  max-width: 540px;
}
.catalogue-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--rose-light);
  padding: 6px 12px;
  border: 1px solid rgba(232, 160, 176, 0.35);
  border-radius: 999px;
  margin-bottom: var(--sp-4);
}
.catalogue-headline {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #FAF6F1;
  margin: 0 0 var(--sp-3);
}
.catalogue-lede {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: rgba(250, 246, 241, 0.78);
  margin: 0 0 var(--sp-5);
}

/* Table of contents */
.catalogue-contents {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.catalogue-contents li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(250, 246, 241, 0.86);
  letter-spacing: 0.005em;
}
.catalogue-contents .num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 13px;
  color: var(--rose-light);
  min-width: 24px;
  letter-spacing: 0.04em;
}

/* Meta chip row */
.catalogue-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: var(--sp-5);
}
.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(250, 246, 241, 0.78);
}
.meta-chip svg { color: var(--rose-light); flex-shrink: 0; }

/* Action buttons */
.catalogue-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.catalogue-open-btn {
  background: var(--cream);
  color: var(--burgundy-dark);
  padding: 15px 28px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 0 rgba(0,0,0,0.05), 0 8px 22px rgba(0, 0, 0, 0.25);
}
.catalogue-open-btn:hover {
  background: #FFFFFF;
  color: var(--burgundy-dark);
  transform: translateY(-2px);
  box-shadow: 0 2px 0 rgba(0,0,0,0.05), 0 16px 36px rgba(0, 0, 0, 0.35);
}
.catalogue-open-btn svg { transition: transform 0.3s ease; }
.catalogue-open-btn:hover svg { transform: translateY(2px); }

.catalogue-download-btn {
  background: transparent;
  color: rgba(250, 246, 241, 0.9);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  padding: 14px 22px;
  font-weight: 500;
  font-size: 14px;
}
.catalogue-download-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: #FFFFFF;
  transform: translateY(-2px);
}

/* ===== Preview column ===== */
.catalogue-preview {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.preview-stack {
  position: relative;
  width: 100%;
  max-width: 520px;
  aspect-ratio: 1.414 / 1;
  perspective: 1400px;
}
.preview-card {
  position: absolute;
  inset: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 0;
  padding: 0;
  background: var(--cream);
  cursor: pointer;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.6s ease;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 28px 60px -20px rgba(0, 0, 0, 0.55),
    0 12px 24px -8px rgba(0, 0, 0, 0.4);
}
.preview-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.preview-card-back {
  transform: translate(-14%, -6%) rotate(-7deg) scale(0.92);
  filter: brightness(0.85);
  z-index: 1;
  cursor: pointer;
}
.preview-card-mid {
  transform: translate(14%, -3%) rotate(5deg) scale(0.95);
  filter: brightness(0.92);
  z-index: 2;
  cursor: pointer;
}
.preview-card-front {
  transform: translateY(2%) rotate(-1deg);
  z-index: 3;
}

.preview-stack:hover .preview-card-back {
  transform: translate(-22%, -9%) rotate(-10deg) scale(0.9);
}
.preview-stack:hover .preview-card-mid {
  transform: translate(22%, -6%) rotate(8deg) scale(0.94);
}
.preview-stack:hover .preview-card-front {
  transform: translateY(-4%) rotate(0deg) scale(1.02);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.05) inset,
    0 40px 80px -20px rgba(0, 0, 0, 0.65),
    0 20px 30px -8px rgba(0, 0, 0, 0.5);
}

.preview-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(44, 24, 16, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #FAF6F1;
}
.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #6BCB7B;
  box-shadow: 0 0 0 0 rgba(107, 203, 123, 0.6);
  animation: dotPulse 2.2s ease-out infinite;
}
@keyframes dotPulse {
  0% { box-shadow: 0 0 0 0 rgba(107, 203, 123, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(107, 203, 123, 0); }
  100% { box-shadow: 0 0 0 0 rgba(107, 203, 123, 0); }
}

.preview-caption {
  margin: var(--sp-4) 0 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 14px;
  color: rgba(250, 246, 241, 0.6);
}

/* Mobile */
@media (max-width: 880px) {
  .catalogue-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
    text-align: center;
  }
  .catalogue-copy { margin: 0 auto; }
  .catalogue-eyebrow { margin-left: auto; margin-right: auto; }
  .catalogue-cta { justify-content: center; }
}

.catalogue-wrapper {
  background: var(--burgundy-dark);
  padding: var(--sp-8) var(--sp-4) var(--sp-6);
  position: relative;
  display: none;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s ease;
}
.catalogue-wrapper.open {
  display: block;
  max-height: 4000px;
  animation: catalogueSlideDown 0.5s ease forwards;
}
@keyframes catalogueSlideDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.catalogue-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  padding: 6px 10px;
  transition: color 0.2s;
  letter-spacing: 1px;
  z-index: 5;
}
.catalogue-close:hover { color: white; }

.brochure-viewer {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  padding: var(--sp-4) 0 0;
}
.brochure-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 0;
}
.brochure-track::-webkit-scrollbar { display: none; }
.brochure-slide {
  flex: 0 0 100%;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.brochure-slide img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.brochure-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-4);
  max-width: 1100px;
  margin: var(--sp-4) auto 0;
}
.brochure-indicator {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 2px;
  min-width: 110px;
  text-align: center;
}
.brochure-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brochure-nav:hover:not(:disabled) {
  background: white;
  color: var(--burgundy);
  border-color: white;
}
.brochure-nav:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

/* ----------------------------------------
   SECTION 5 — MARQUEE
   ---------------------------------------- */
.marquee-section {
  padding: var(--sp-10) 0;
  background: var(--cream-dark);
  overflow: hidden;
  text-align: center;
}
.marquee-section .pre-label {
  display: block;
  margin-bottom: var(--sp-5);
}
.marquee-wrapper { overflow: hidden; }
.marquee-track {
  display: flex;
  width: 100%;
  overflow: hidden;
  margin: var(--sp-2) 0;
}
.marquee-content {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-secondary);
  letter-spacing: 1px;
}
.marquee-left .marquee-content {
  animation: marqueeLeft 30s linear infinite;
}
.marquee-right .marquee-content {
  animation: marqueeRight 30s linear infinite;
}
.marquee-sep {
  color: var(--burgundy);
  font-size: 10px;
  opacity: 0.45;
  flex-shrink: 0;
}
.marquee-logo {
  height: 44px;
  width: auto;
  flex-shrink: 0;
  display: block;
}
@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes marqueeRight {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}
.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

/* ----------------------------------------
   SECTION 5B — MOST CHOSEN BY CORPORATE HOUSES
   ---------------------------------------- */
.chosen-section {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(196, 83, 106, 0.06), transparent 65%),
    var(--cream);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.chosen-section::before,
.chosen-section::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(107, 31, 42, 0.18), transparent);
}
.chosen-section::before { top: 0; height: 56px; }
.chosen-section::after  { bottom: 0; height: 56px; }

.chosen-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: var(--sp-6);
  text-align: center;
}
.chosen-mark {
  font-family: var(--font-serif);
  font-size: 14px;
  color: var(--rose);
  letter-spacing: 0;
}
.chosen-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--burgundy);
}

.chosen-quote {
  margin: 0 auto var(--sp-10);
  max-width: 820px;
  text-align: center;
  padding: 0 var(--sp-3);
}
.chosen-quote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(26px, 3.6vw, 44px);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--burgundy);
  margin: 0 0 var(--sp-4);
  position: relative;
}
.chosen-quote p::before,
.chosen-quote p::after {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 1.3em;
  color: var(--rose);
  line-height: 0;
  position: relative;
  top: 0.18em;
  opacity: 0.55;
}
.chosen-quote p::before { content: '“'; margin-right: 0.06em; }
.chosen-quote p::after  { content: '”'; margin-left: 0.06em; }

.chosen-quote footer {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.chosen-attribution {
  font-family: var(--font-script);
  font-style: normal;
  text-transform: none;
  font-size: 17px;
  letter-spacing: 0;
  color: var(--burgundy);
}
.chosen-divider {
  width: 28px;
  height: 1px;
  background: var(--border);
  display: inline-block;
}
.chosen-context { color: var(--text-secondary); }

.chosen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 3vw, 40px);
  max-width: 1100px;
  margin: 0 auto;
}
.chosen-card {
  background: var(--white);
  border: 1px solid rgba(107, 31, 42, 0.08);
  border-radius: 6px;
  padding: clamp(24px, 3vw, 36px);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s ease,
              border-color 0.5s ease;
}
.chosen-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px -16px rgba(107, 31, 42, 0.18);
  border-color: rgba(107, 31, 42, 0.2);
}
.chosen-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 300;
  font-size: 36px;
  color: var(--rose);
  line-height: 1;
  margin-bottom: var(--sp-3);
}
.chosen-card-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 21px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--burgundy);
  margin: 0 0 var(--sp-2);
}
.chosen-card-body {
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

@media (max-width: 880px) {
  .chosen-grid { grid-template-columns: 1fr; gap: 16px; }
  .chosen-quote footer {
    flex-direction: column;
    gap: 8px;
  }
  .chosen-divider { width: 40px; }
}

/* ----------------------------------------
   SECTION 6 — VENDOR TRUST
   ---------------------------------------- */
.trust-section {
  background: var(--burgundy-dark);
  padding: var(--section-pad);
  color: white;
}
.trust-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
  margin-bottom: var(--sp-12);
}
.trust-photo .img-placeholder {
  width: 100%;
  min-height: 500px;
  border-radius: 8px;
}
.trust-photo {
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4 / 5;
  width: 100%;
  max-width: 440px;
  margin-inline: auto;
}
.trust-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.trust-content .pre-label { display: block; margin-bottom: var(--sp-4); }
.sarika-statement p {
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-sans);
  font-size: 17px;
  font-style: normal;
  line-height: 1.8;
  margin-bottom: var(--sp-3);
}
.sarika-signature { margin-top: var(--sp-4); }
.signature-name {
  font-family: var(--font-script);
  font-size: clamp(24px, 6vw, 32px);
  color: var(--rose-light);
  display: block;
  line-height: 1;
}
.signature-title {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 1px;
  margin-top: 4px;
  display: block;
}
.signature-creds {
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.04em;
  margin-top: 8px;
  display: block;
  line-height: 1.5;
}

/* LinkedIn button — founder section */
.btn-linkedin-sarika {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--sp-5);
  padding: 11px 22px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 40px;
  color: rgba(255, 255, 255, 0.82);
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
  cursor: pointer;
}
.btn-linkedin-sarika:hover,
.btn-linkedin-sarika:focus-visible {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  outline: none;
}

.testimonials-section {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--sp-8);
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s ease;
  will-change: transform;
}
.testimonial-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 28px 24px;
  border-left: 3px solid var(--rose);
  position: relative;
  min-width: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 64px;
  color: var(--rose-light);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: var(--sp-2);
  height: 28px;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.6;
}
.testimonial-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: auto 0 var(--sp-3);
}
.testimonial-author {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 14px;
  color: white;
}
.testimonial-role {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}
.testimonials-controls {
  display: flex;
  justify-content: flex-end;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}
.testimonial-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: white;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.testimonial-btn:hover {
  background: var(--rose);
  border-color: var(--rose);
}
/* keep legacy selector working in case anything references it */
.testimonial-next { /* inherits from .testimonial-btn */ }

/* --- Verdict-pass additions --- */

/* Estimator trust micro-list (fills the left column) */
.estimator-trustlist {
  list-style: none;
  padding: 0;
  margin: var(--sp-4) 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.estimator-trustlist li {
  position: relative;
  padding-left: 26px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.4;
}
.estimator-trustlist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 3px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--burgundy);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}

/* CTA subline under the headline */
.cta-subline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
  margin: var(--sp-3) auto var(--sp-6);
  max-width: 540px;
}

/* Testimonial client attribution */
.testimonial-client {
  display: flex;
  align-items: center;
  gap: 10px;
}
.client-logo-box {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 3px;
  flex-shrink: 0;
}
.testimonial-author--bold {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

/* ----------------------------------------
   SECTION 7 — STAKEHOLDER
   ---------------------------------------- */
.stakeholder-section {
  background: var(--cream);
  padding: var(--section-pad);
}
.stakeholder-section .pre-label { display: block; margin-bottom: var(--sp-2); }
.stakeholder-intro {
  font-family: var(--font-sans);
  color: var(--text-secondary);
  font-size: 18px;
}
.stakeholder-tabs {
  display: flex;
  gap: var(--sp-2);
  margin: var(--sp-6) 0;
  border-bottom: 2px solid var(--border);
}
.tab-btn {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: 12px 24px;
  position: relative;
  transition: color 0.3s;
}
.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--burgundy);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.tab-btn.active { color: var(--burgundy); }
.tab-btn.active::after { transform: scaleX(1); }

.tab-panel { animation: tabFadeIn 0.4s ease; }
@keyframes tabFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.desk-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.desk-image .img-placeholder {
  border-radius: 12px;
  min-height: 400px;
  width: 100%;
}
.desk-wall-quote {
  font-family: var(--font-serif);
  font-size: 24px;
  font-style: italic;
  color: var(--burgundy);
  line-height: 1.4;
  margin-bottom: var(--sp-4);
  padding-left: var(--sp-3);
  border-left: 3px solid var(--rose);
}
.desk-body {
  color: var(--text-secondary);
  font-size: 16px;
  line-height: 1.7;
}
.stakeholder-cta {
  margin-top: var(--sp-8);
  text-align: center;
}
.stakeholder-cta p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  color: var(--text-secondary);
  margin-bottom: var(--sp-3);
}

/* ----------------------------------------
   SECTION 8 — RENTED (Triptych)
   ---------------------------------------- */
.rented-section {
  background: var(--cream-dark);
}
.triptych-container {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.triptych-img {
  width: 100%;
  display: block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.6s ease;
}
.triptych-img.reveal-start { clip-path: inset(0 66% 0 0); }
.triptych-img.reveal-mid   { clip-path: inset(0 33% 0 0); }
.triptych-img.reveal-full  { clip-path: inset(0 0% 0 0); }

.rented-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px var(--gutter);
}
.rented-col-left,
.rented-col-right { min-width: 0; }
.rented-content .pre-label { display: block; margin-bottom: var(--sp-2); }
.rented-statement {
  font-family: var(--font-serif);
  font-size: 26px;
  font-style: italic;
  color: var(--burgundy);
  margin: var(--sp-4) 0 var(--sp-6);
  line-height: 1.4;
}
.tick-points { display: flex; flex-direction: column; gap: var(--sp-3); }
.tick-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}
.tick {
  color: var(--burgundy);
  font-weight: bold;
  flex-shrink: 0;
  margin-top: 2px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 1.5px solid var(--rose);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
}
.tick-text strong {
  display: block;
  color: var(--text-primary);
  font-weight: 600;
  margin-bottom: 2px;
}
.tick-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.rented-question { margin: 0; }
.question-mark {
  display: block;
  font-family: var(--font-serif);
  font-size: 36px;
  font-style: italic;
  color: var(--burgundy);
  line-height: 1.3;
  margin-bottom: var(--sp-3);
}
.rented-question p {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .rented-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .question-mark { font-size: 28px; }
}

/* ----------------------------------------
   SECTION 9 — POST INSTALL (WhatsApp)
   ---------------------------------------- */
.postinstall-section {
  background: var(--cream);
  padding: var(--section-pad);
}
.postinstall-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  align-items: center;
}
.postinstall-copy .pre-label { display: block; margin-bottom: var(--sp-2); }
.postinstall-copy h2 { margin-bottom: var(--sp-3); }
.postinstall-copy p {
  color: var(--text-secondary);
  font-size: 17px;
  line-height: 1.7;
}
.postinstall-scenarios { margin-top: var(--sp-4); }
.scenario {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--text-secondary);
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--border);
}
.scenario:last-child { border-bottom: none; }

.phone-mockup-wrapper {
  display: flex;
  justify-content: center;
}
.phone-mockup {
  width: 320px;
  background: #E5DDD5;
  border-radius: 40px;
  border: 8px solid #1a1a1a;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25),
              inset 0 0 0 2px #333;
  overflow: hidden;
  position: relative;
}
.phone-mockup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 26px;
  background: #1a1a1a;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}
.phone-screen {
  height: 580px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.wa-header {
  background: #075E54;
  padding: 36px 16px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  color: white;
  font-size: 16px;
}
.wa-name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  color: white;
}
.wa-status {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
}
.wa-messages {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background:
    linear-gradient(rgba(229, 221, 213, 0.94), rgba(229, 221, 213, 0.94)),
    repeating-linear-gradient(45deg, transparent 0 8px, rgba(0, 0, 0, 0.03) 8px 9px);
}
.wa-date {
  text-align: center;
  font-family: var(--font-sans);
  font-size: 11px;
  color: #888;
  background: rgba(255, 255, 255, 0.6);
  padding: 4px 12px;
  border-radius: 8px;
  align-self: center;
  margin: 8px 0;
}
.wa-bubble {
  max-width: 75%;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.4;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateY(8px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.wa-bubble.client {
  background: white;
  align-self: flex-start;
  border-radius: 0 8px 8px 8px;
  color: var(--text-primary);
}
.wa-bubble.sarika {
  background: #DCF8C6;
  align-self: flex-end;
  border-radius: 8px 0 8px 8px;
  color: var(--text-primary);
}
.wa-typing {
  display: none;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  background: white;
  border-radius: 0 8px 8px 8px;
  width: fit-content;
  align-self: flex-start;
}
.wa-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #888;
  animation: typing 1.2s infinite;
}
.wa-typing span:nth-child(2) { animation-delay: 0.2s; }
.wa-typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* ----------------------------------------
   SECTION 10 — FINAL CTA
   ---------------------------------------- */
.cta-section {
  background: var(--burgundy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: var(--sp-16) 0;
}
.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-headline {
  font-family: var(--font-serif);
  font-size: var(--text-h1);
  font-weight: 300;
  color: white;
  margin-bottom: var(--sp-5);
  line-height: 1.1;
}
.cta-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-10);
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
}
.cta-contact a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color 0.3s;
}
.cta-contact a:hover { color: white; }
.cta-sep { color: var(--rose-light); opacity: 0.5; }

.cta-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  max-width: 900px;
  margin: 0 auto var(--sp-6);
}
.envelope-group {
  position: relative;
  padding-top: 8px;
}
.envelope {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.envelope-body {
  position: absolute;
  inset: 0;
  background: #F5F0EB;
  border-radius: 4px;
  border: 1.5px solid #DDD5CB;
  opacity: 1;
  z-index: 0;
}
.envelope-flap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  background: #EDE7DF;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  border: 1.5px solid #DDD5CB;
  border-bottom: none;
  opacity: 1;
  z-index: 2;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.12));
}
.cta-card {
  position: relative;
  z-index: 1;
  margin: 8px;
  margin-top: 12px;
  background: #FFFFFF;
  border: none;
  border-radius: 12px;
  padding: var(--sp-5) var(--sp-4);
  padding-top: var(--sp-6);
  backdrop-filter: none;
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: left;
}
.cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}
.card-category {
  font-family: var(--font-sans);
  font-size: var(--text-micro);
  font-weight: 500;
  letter-spacing: var(--ls-widest);
  color: var(--burgundy);
  margin-bottom: var(--sp-2);
  text-transform: uppercase;
}
.card-statement {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: var(--sp-4);
}
.card-btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--rose);
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}
.card-btn:hover {
  color: var(--burgundy);
  transform: translateX(2px);
}
.cta-response {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  margin-top: var(--sp-2);
}

/* ----------------------------------------
   FOOTER
   ---------------------------------------- */
.site-footer { background: var(--burgundy-dark); }
.footer-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
  padding: var(--sp-10) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;     /* logo, tagline + icons centered relative to each other */
  text-align: center;
  width: fit-content;      /* group hugs its content so it sits left under the header logo */
}
.footer-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: var(--sp-2);
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: var(--sp-3);
  justify-content: center;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;   /* 44px minimum touch target */
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.footer-socials a:hover {
  background: rgba(255, 255, 255, 0.18);
  color: white;
  transform: translateY(-2px);
}
.footer-contact-col .footer-contact-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.5;
  transition: color 0.3s;
  margin-bottom: 8px;
}
.footer-contact-col .footer-contact-link svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--rose);
  opacity: 0.85;
}
.footer-contact-col a.footer-contact-link:hover { color: white; }
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.footer-col-title {
  font-family: var(--font-sans);
  font-size: var(--text-micro);
  font-weight: 600;
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: white;
  margin-bottom: var(--sp-1);
}
.footer-col a {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col a:hover { color: rgba(255, 255, 255, 0.95); }
.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 var(--gutter);
}
.footer-bottom {
  padding: var(--sp-4) var(--gutter);
  max-width: var(--container);
  margin: 0 auto;
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
.footer-contact a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-contact a:hover { color: rgba(255, 255, 255, 0.9); }
.footer-sep { color: var(--rose); opacity: 0.4; font-size: 8px; }
.footer-copyright {
  background: rgba(0, 0, 0, 0.2);
  padding: var(--sp-2) 0;
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-align: center;
}
.footer-copyright-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

/* Giraffe Partners — PNG badge */
.giraffe-img-link {
  display: inline-block;
  flex-shrink: 0;
  text-decoration: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.giraffe-img-link:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}
.giraffe-badge-img {
  display: block;
  width: 140px;
  height: auto;
  border-radius: 8px;
}

/* ----------------------------------------
   SECTION 4B — LIGHTING TOGGLE
   ---------------------------------------- */
.lighting {
  background: var(--burgundy);
  color: white;
  padding: 96px 0;
}
.lighting__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.lighting__copy h2 { color: white; margin-bottom: 24px; }
.lighting__copy p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  max-width: 460px;
}
.lighting__note {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-family: var(--font-sans);
}
.pre-label--white { color: rgba(255, 255, 255, 0.7); }

.lighting__widget {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 24px;
  overflow: hidden;
  background: #2C1020;
}
.lighting__image {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background-size: cover;
  background-position: center;
}
.lighting__image--photo span { display: none; }
.light-morning   { background-image: url('../images/light-morning.webp'); }
.light-afternoon { background-image: url('../images/light-afternoon.webp'); }
.light-evening   { background-image: url('../images/light-evening.webp'); }
.light-night     { background-image: url('../images/light-night.webp'); }

.lighting__buttons {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 24px;
}
.light-btn {
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: none;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}
.light-btn:hover { background: rgba(255, 255, 255, 0.25); }
.light-btn.is-active { background: white; color: var(--burgundy); }

@media (max-width: 900px) {
  .lighting__inner { grid-template-columns: 1fr; gap: 40px; }
  .lighting { padding: 64px 0; }
}

/* ----------------------------------------
   CONTACT FORM POPUP
   ---------------------------------------- */
.form-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.form-modal {
  background: white;
  border-radius: 16px;
  padding: 40px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s ease;
}
.form-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 20px;
  color: #888;
  cursor: pointer;
  width: 44px;   /* 44px minimum touch target */
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
.form-close:hover { background: #f0f0f0; }

.form-header {
  margin-bottom: 28px;
  padding-right: 24px;
}
.form-header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: #6B1F2A;
  margin-bottom: 6px;
}
.form-header p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #8C7B6B;
}

.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #2C1810;
  margin-bottom: 6px;
}
.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #DDD5CB;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #2C1810;
  background: white;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
  appearance: none;
  color-scheme: light only;
  -webkit-tap-highlight-color: transparent;
}
.form-field select:focus,
.form-field select:active {
  background: white;
  color: #2C1810;
}
.form-field select option {
  background: white;
  color: #2C1810;
}
.form-field input:focus,
.form-field select:focus {
  border-color: #6B1F2A;
  box-shadow: 0 0 0 3px rgba(107, 31, 42, 0.08);
}
.form-field input::placeholder { color: #B0A090; }

/* Custom dropdown — replaces native <select> to avoid OS dark-mode flash */
.select { position: relative; width: 100%; }
.select__trigger {
  width: 100%;
  padding: 12px 44px 12px 16px;
  border: 1.5px solid #DDD5CB;
  border-radius: 8px;
  background: white;
  color: #2C1810;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative;
}
.select__trigger:focus-visible { outline: none; }
.select.is-open .select__trigger,
.select__trigger:focus {
  outline: none;
  border-color: #6B1F2A;
  box-shadow: 0 0 0 3px rgba(107, 31, 42, 0.08);
}
.select__value { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.select__value.is-placeholder { color: #B0A090; }
.select__arrow {
  width: 12px;
  height: 8px;
  flex-shrink: 0;
  margin-left: 12px;
  color: #8C7B6B;
  transition: transform 0.2s ease;
}
.select.is-open .select__arrow { transform: rotate(180deg); }

.select__options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 6px;
  list-style: none;
  background: white;
  border: 1px solid #DDD5CB;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(44, 24, 16, 0.14);
  z-index: 10001;
  max-height: 260px;
  overflow-y: auto;
}
.select__options[hidden] { display: none; }
.select__options li {
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  color: #2C1810;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.4;
}
.select__options li:hover,
.select__options li.is-highlighted { background: #F5F0EB; }
.select__options li.is-selected { background: #F5F0EB; color: #6B1F2A; font-weight: 500; }

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
}
.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: #6B1F2A;
  flex-shrink: 0;
  cursor: pointer;
}
.form-checkbox label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: #8C7B6B;
  line-height: 1.6;
  cursor: pointer;
}
.form-checkbox a {
  color: #6B1F2A;
  text-decoration: underline;
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: #6B1F2A;
  color: white;
  border: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.form-submit:hover {
  background: #4A1520;
  transform: translateY(-1px);
}

.form-success {
  text-align: center;
  padding: 20px 0;
}
.success-icon {
  width: 60px;
  height: 60px;
  background: #6B1F2A;
  color: white;
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.form-success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: #6B1F2A;
  margin-bottom: 10px;
}
.form-success p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #8C7B6B;
  line-height: 1.6;
  margin-bottom: 28px;
}
.form-close-btn {
  padding: 12px 32px;
  background: #6B1F2A;
  color: white;
  border: none;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.3s;
}
.form-close-btn:hover { background: #4A1520; }

@media (max-width: 768px) {
  .form-modal { padding: 28px 20px; }
  .form-header h3 { font-size: 22px; }
}
