/* ============================================================
   Paws and Paint â€” Main Stylesheet
   Palette: cream #FDF6EC Â· amber #E8935A Â· brown #3D1F0D
            gold #C9A84C Â· white #FFFFFF
   ============================================================ */

/* Reset and Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --page-max: 1200px;
  --page-gutter: clamp(1rem, 2.8vw, 2rem);
  --section-space: clamp(4rem, 7vw, 6.5rem);
  --section-space-tight: clamp(2rem, 4vw, 3rem);
  --card-gap: clamp(1rem, 2vw, 1.5rem);
  --grid-12: repeat(12, minmax(0, 1fr));
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Nunito', sans-serif;
  background-color: #FDF6EC;
  color: #3D1F0D;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

/* Utility */
.container {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: 0;
}

.hidden { display: none !important; }

section {
  scroll-margin-top: 5.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-lg { padding: 1rem 2.25rem; font-size: 1.1rem; }

.btn-primary {
  background: #E8935A;
  color: #fff;
  border-color: #E8935A;
  box-shadow: 0 4px 18px rgba(232,147,90,0.35);
}
.btn-primary:hover {
  background: #d47a42;
  border-color: #d47a42;
  box-shadow: 0 6px 24px rgba(232,147,90,0.45);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: #3D1F0D;
  border-color: rgba(61,31,13,0.25);
}
.btn-ghost:hover {
  background: rgba(61,31,13,0.06);
  border-color: rgba(61,31,13,0.4);
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Spinner */
.spinner {
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}

/* Pet loading animation */
.pet-stage {
  position: relative;
  height: 160px;
  margin-bottom: 1.25rem;
}
.pet-stage-clip {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.pet-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  height: 100%;
}
.pet-sil { flex-shrink: 0; color: #3D1F0D; }
.pet-cat    { width: 54px; height: 84px; opacity: 0.75; }
.pet-rabbit { width: 66px; height: 108px; }
.pet-cat-r  { transform: scaleX(-1); }

@keyframes pet-bob   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@keyframes pet-bob-r { 0%,100%{transform:scaleX(-1) translateY(0)} 50%{transform:scaleX(-1) translateY(-6px)} }
.pet-anim-1 { animation: pet-bob   2.6s ease-in-out infinite 0s; }
.pet-anim-2 { animation: pet-bob   2.6s ease-in-out infinite 0.45s; }
.pet-anim-3 { animation: pet-bob-r 2.6s ease-in-out infinite 0.9s; }

.scan-beam {
  position: absolute;
  left: -5%;
  width: 110%;
  height: 5px;
  background: linear-gradient(90deg, transparent, #E8935A 25%, #F4D98A 50%, #E8935A 75%, transparent);
  box-shadow: 0 0 14px 6px rgba(232,147,90,0.45), 0 0 28px 10px rgba(232,147,90,0.18);
  border-radius: 3px;
  animation: scan-sweep 2.6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes scan-sweep {
  0%   { top: 0;               opacity: 0; }
  6%   {                        opacity: 1; }
  94%  {                        opacity: 1; }
  100% { top: calc(100% - 5px); opacity: 0; }
}

.progress-bar-wrap {
  position: relative;
  width: 100%;
  height: 8px;
  background: rgba(232,147,90,0.15);
  border-radius: 4px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #E8935A, #F4D98A);
  border-radius: 4px;
  transition: width 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.progress-pct {
  position: absolute;
  right: 0;
  top: -1.4rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(61,31,13,0.5);
}
.fact-wrap {
  /* Fixed height so layout never shifts when text wraps */
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 0;
}
.loading-fact {
  font-family: 'Nunito', sans-serif;
  font-size: 0.85rem;
  color: rgba(61,31,13,0.7);
  margin: 0;
  padding: 0.35rem 0.9rem;
  background: rgba(232,147,90,0.1);
  border: 1px solid rgba(232,147,90,0.22);
  border-radius: 20px;
  transition: opacity 0.4s ease, transform 0.4s ease;
  white-space: nowrap;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(253,246,236,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: box-shadow 0.2s;
}

.nav-container {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: 0;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #3D1F0D;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.nav-logo em { font-style: italic; color: #E8935A; }
.paw-icon { font-size: 1.4rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-weight: 600;
  color: #3D1F0D;
  opacity: 0.85;
  transition: opacity 0.2s;
  font-size: 0.95rem;
}
.nav-links a:hover { opacity: 1; }

.nav-cta {
  background: #E8935A;
  color: #fff !important;
  opacity: 1 !important;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: #d47a42; transform: translateY(-1px); }

/* â”€â”€ Hero â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  min-height: 100vh;
  padding-top: 64px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #FDF6EC 0%, #FBE9D2 50%, #F7DCC0 100%);
}

.hero-shell {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  min-height: calc(100vh - 64px);
  display: grid;
  grid-template-columns: var(--grid-12);
  align-items: center;
  gap: clamp(1.5rem, 3vw, 3rem);
  padding-block: clamp(2.5rem, 6vw, 5rem);
  position: relative;
  z-index: 1;
}

.hero-bg-paw {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
  max-width: 700px;
  color: #E8935A;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  grid-column: span 6;
  max-width: 100%;
  padding: 0;
  min-width: 0;
}

.hero-eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #E8935A;
  background: rgba(232,147,90,0.12);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}

.hero-headline {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #3D1F0D;
  margin-bottom: 1.25rem;
}
.hero-headline em {
  font-style: italic;
  color: #E8935A;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(61,31,13,0.72);
  max-width: 480px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(61,31,13,0.6);
  font-weight: 600;
}

.hero-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-proof-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  background: rgba(61,31,13,0.06);
  border: 1px solid rgba(61,31,13,0.1);
  color: rgba(61,31,13,0.78);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.hero-image-wrap {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 4rem 2rem 2rem;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .hero { flex-direction: column; }
  .hero-image-wrap { padding: 0 1.5rem 3rem; }
}

.hero-image-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(61,31,13,0.15), 0 4px 16px rgba(61,31,13,0.08);
  padding: 2rem;
  width: 280px;
  text-align: center;
  transform: rotate(2deg);
  transition: transform 0.3s;
}
.hero-image-card:hover { transform: rotate(0deg) scale(1.02); }

.hero-image-inner {
  background: linear-gradient(135deg, #FBE9D2, #F7DCC0);
  border-radius: 16px;
  padding: 1.5rem;
  margin-bottom: 1rem;
}

.hero-dog-svg { width: 100%; max-width: 180px; margin: 0 auto; }

.hero-image-label {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(61,31,13,0.55);
  font-size: 0.95rem;
}

/* â”€â”€ Section Shared â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.section-eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 0.6rem;
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #3D1F0D;
  margin-bottom: 0.75rem;
}

.section-header p {
  color: rgba(61,31,13,0.65);
  font-size: 1.05rem;
}

/* â”€â”€ How It Works â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.how-it-works {
  padding: var(--section-space) 0;
  background: #fff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.35rem;
}

.step-card {
  position: relative;
  background: #FDF6EC;
  border-radius: 24px;
  padding: 1.35rem 1.35rem 1.4rem;
  text-align: center;
  border: 1px solid rgba(201,168,76,0.18);
  box-shadow: 0 18px 40px rgba(61,31,13,0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  display: grid;
  grid-template-rows: auto auto minmax(8.6rem, auto) 1fr;
  min-height: 100%;
  overflow: hidden;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(61,31,13,0.12);
  border-color: rgba(232,147,90,0.28);
}

.step-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.step-icon { font-size: 2.25rem; margin-bottom: 1rem; }

.step-card h3 {
  font-size: 1.15rem;
  color: #3D1F0D;
  margin-bottom: 0.6rem;
}

.step-copy {
  display: grid;
  align-content: start;
  min-height: 8.6rem;
}

.step-card p {
  color: rgba(61,31,13,0.65);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.step-connector {
  display: none;
}

@media (max-width: 1100px) {
  .steps-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .step-card {
    grid-template-rows: auto auto auto 1fr;
  }
  .step-copy {
    min-height: 0;
  }
}

/* â”€â”€ What's in the Box â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.box-contents {
  padding: var(--section-space) 0;
  background: linear-gradient(180deg, #FBE9D2 0%, #FDF6EC 100%);
}

.box-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.box-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(61,31,13,0.07);
  border: 1px solid rgba(201,168,76,0.12);
  transition: transform 0.25s, box-shadow 0.25s;
}
.box-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(61,31,13,0.12);
}

.box-card-addon {
  border: 2px solid rgba(201,168,76,0.35);
  background: linear-gradient(135deg, #fff 0%, #FFFBF3 100%);
}

.box-card-icon { font-size: 2.5rem; margin-bottom: 1rem; }

.box-card h3 {
  font-size: 1.05rem;
  color: #3D1F0D;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.box-card p { color: rgba(61,31,13,0.65); font-size: 0.92rem; }

.addon-badge {
  background: #C9A84C;
  color: #fff;
  font-size: 0.7rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
}

.addon-price {
  margin-top: 0.75rem;
  font-weight: 700;
  color: #C9A84C;
  font-size: 1rem;
}

.price-banner {
  background: linear-gradient(135deg, #3D1F0D 0%, #5C2E0F 100%);
  border-radius: 24px;
  padding: 2.5rem;
  color: #fff;
}

.price-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.price-from {
  display: block;
  font-size: 0.95rem;
  opacity: 0.7;
  margin-bottom: 0.25rem;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: #C9A84C;
}

/* â”€â”€ Order Section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.order-section {
  padding: var(--section-space) 0;
  background: #fff;
}

/* â”€â”€ Progress Steps â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.progress-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
  gap: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}

.progress-step-dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(61,31,13,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: rgba(61,31,13,0.4);
  background: #fff;
  transition: all 0.3s;
}

.progress-step span {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(61,31,13,0.4);
  white-space: nowrap;
  transition: color 0.3s;
}

.progress-step.active .progress-step-dot {
  background: #E8935A;
  border-color: #E8935A;
  color: #fff;
  box-shadow: 0 4px 14px rgba(232,147,90,0.4);
}
.progress-step.active span { color: #E8935A; }

.progress-step.completed .progress-step-dot {
  background: #C9A84C;
  border-color: #C9A84C;
  color: #fff;
}
.progress-step.completed span { color: #C9A84C; }

.progress-line {
  flex: 1;
  min-width: 30px;
  max-width: 80px;
  height: 2px;
  background: rgba(61,31,13,0.12);
  margin: 0 0.5rem;
  margin-bottom: 1.4rem;
  transition: background 0.3s;
}

/* â”€â”€ Form Card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-card {
  background: #FDF6EC;
  border-radius: 24px;
  padding: 2.5rem;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(61,31,13,0.1);
  border: 1px solid rgba(201,168,76,0.15);
  position: relative;
  overflow: hidden;
}

@media (max-width: 600px) { .form-card { padding: 1.75rem 1.25rem; } }

.step-title {
  font-size: 1.5rem;
  color: #3D1F0D;
  margin-bottom: 0.4rem;
}

.step-subtitle {
  color: rgba(61,31,13,0.6);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

/* ── Background generation indicator ─────────────────────────────────────── */
.bg-gen-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50px;
  padding: 0.45rem 1rem;
  font-size: 0.83rem;
  font-weight: 600;
  color: #6b4226;
  margin-bottom: 1.5rem;
  width: fit-content;
}
.bg-gen-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C9A84C;
  animation: bg-gen-pulse 1.4s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes bg-gen-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.75); }
}
.bg-gen-indicator.ready {
  background: rgba(39,174,96,0.1);
  border-color: rgba(39,174,96,0.35);
  color: #1e6b38;
}
.bg-gen-indicator.ready .bg-gen-dot {
  background: #27ae60;
  animation: none;
}
.bg-gen-indicator.error {
  background: rgba(192,57,43,0.08);
  border-color: rgba(192,57,43,0.25);
  color: #8b1a1a;
}
.bg-gen-indicator.error .bg-gen-dot {
  background: #c0392b;
  animation: none;
}

/* â”€â”€ Form Fields â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.form-group-full { grid-column: 1 / -1; }

@media (max-width: 600px) { .form-grid { grid-template-columns: 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }

.form-group label {
  font-weight: 700;
  font-size: 0.9rem;
  color: #3D1F0D;
}

.required { color: #E8935A; }

.form-group input,
.form-group select {
  padding: 0.75rem 1rem;
  border: 2px solid rgba(61,31,13,0.12);
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: #3D1F0D;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233D1F0D' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group input:focus,
.form-group select:focus {
  border-color: #E8935A;
  box-shadow: 0 0 0 3px rgba(232,147,90,0.15);
}
.form-group input::placeholder { color: rgba(61,31,13,0.35); }

.form-hint {
  font-size: 0.82rem;
  color: rgba(61,31,13,0.5);
}

/* â”€â”€ Dropzone â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.dropzone {
  border: 2.5px dashed rgba(232,147,90,0.4);
  border-radius: 16px;
  background: #fff;
  padding: 2.5rem 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  position: relative;
  margin-bottom: 1.25rem;
}
.dropzone:hover, .dropzone.drag-over {
  border-color: #E8935A;
  background: rgba(232,147,90,0.04);
}
.dropzone.drag-over { box-shadow: 0 0 0 4px rgba(232,147,90,0.15); }

.dropzone-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }

.dropzone-text {
  font-size: 1.05rem;
  font-weight: 600;
  color: #3D1F0D;
  margin-bottom: 0.3rem;
}

.dropzone-sub {
  font-size: 0.95rem;
  color: rgba(61,31,13,0.55);
  margin-bottom: 0.5rem;
}

.dropzone-link {
  color: #E8935A;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.dropzone-limit {
  font-size: 0.8rem;
  color: rgba(61,31,13,0.4);
}

/* â”€â”€ Photo Previews â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.photo-previews {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.photo-preview-item {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(61,31,13,0.15);
  animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.photo-preview-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-remove-btn {
  position: absolute;
  top: 4px; right: 4px;
  width: 22px; height: 22px;
  background: rgba(61,31,13,0.75);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 0.7rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.photo-remove-btn:hover { background: #c0392b; }

.photo-count {
  font-size: 0.85rem;
  color: rgba(61,31,13,0.55);
  margin-bottom: 1.25rem;
  font-weight: 600;
}

/* â”€â”€ Photo Tips â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.photo-tips {
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1.5rem;
}

.photo-tips h4 {
  font-size: 0.92rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  color: #3D1F0D;
  margin-bottom: 0.6rem;
}

.photo-tips ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.photo-tips li {
  font-size: 0.88rem;
  color: rgba(61,31,13,0.7);
  padding-left: 1.2rem;
  position: relative;
}
.photo-tips li::before {
  content: 'âœ“';
  position: absolute;
  left: 0;
  color: #C9A84C;
  font-weight: 700;
}

/* â”€â”€ Loading Overlay â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.loading-overlay {
  position: absolute;
  inset: 0;
  background: rgba(253,246,236,0.96);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  border-radius: 24px;
}

.loading-card {
  text-align: center;
  padding: 2rem;
  width: 100%;
  max-width: 420px;
}
.loading-status {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #3D1F0D;
  margin: 0 0 0.75rem;
}

/* â”€â”€ Model Viewer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.model-viewer-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #1a0f08;
  margin-bottom: 1.75rem;
  height: 380px;
}

#model-canvas {
  width: 100%;
  height: 100%;
  display: block;
  touch-action: none;
}

.model-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  gap: 0.5rem;
}

/* â”€â”€ Viewer Stage + Floating Controls â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.viewer-stage {
  position: relative;
  margin-bottom: 1.5rem;
}
.viewer-stage .model-viewer-wrap {
  margin-bottom: 0;
}

.viewer-controls {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none; /* let click-through to canvas except on buttons */
}
.viewer-controls-left {
  display: flex;
  gap: 0.375rem;
  pointer-events: all;
}

.viewer-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.75rem;
  background: rgba(20, 10, 4, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s;
  pointer-events: all;
  white-space: nowrap;
}
.viewer-btn:hover { background: rgba(201,168,76,0.7); }
.viewer-btn svg { flex-shrink: 0; }

.viewer-unpainted-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.75rem;
  background: rgba(20, 10, 4, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  pointer-events: all;
}
.viewer-unpainted-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #fff;
}
.viewer-unpainted-toggle .toggle-switch {
  width: 36px;
  height: 20px;
}
.viewer-unpainted-toggle .toggle-slider {
  border-radius: 20px;
  background: rgba(255,255,255,0.3);
}
.viewer-unpainted-toggle .toggle-slider::before {
  width: 14px;
  height: 14px;
  top: 3px;
  left: 3px;
}
.viewer-unpainted-toggle input:checked + .toggle-slider { background: #C9A84C; }
.viewer-unpainted-toggle input:checked + .toggle-slider::before { transform: translateX(16px); }

/* â”€â”€ Photo Guide â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.photo-guide { margin: 1.25rem 0; }
.photo-guide-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(61,31,13,0.65);
  margin-bottom: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.photo-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-bottom: 0.75rem;
}
.guide-card {
  border-radius: 10px;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}
.guide-skeleton {
  background: linear-gradient(90deg, #f0e8d8 25%, #e8dcc8 50%, #f0e8d8 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite;
}
@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
.guide-card-tip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.3rem 0.5rem;
  background: rgba(0,0,0,0.52);
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.photo-guide-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
}
.chip-do, .chip-dont {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 20px;
}
.chip-do  { background: rgba(80,160,80,0.12); color: #2d7a2d; }
.chip-dont { background: rgba(200,60,60,0.10); color: #b03030; }

/* â”€â”€ What's Next strip â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.whats-next {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(61,31,13,0.55);
  padding: 0.75rem 0 0.25rem;
  line-height: 1.7;
}

/* â”€â”€ Order Options â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.order-options { margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }

.nameplate-option {
  background: #fff;
  border: 2px solid rgba(61,31,13,0.08);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.nameplate-label { cursor: default; }
.nameplate-name {
  font-weight: 700;
  color: #3D1F0D;
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
}
.nameplate-desc {
  font-size: 0.88rem;
  color: rgba(61,31,13,0.6);
  display: block;
}
.nameplate-input {
  padding: 0.75rem 1rem;
  border: 2px solid rgba(61,31,13,0.12);
  border-radius: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: #3D1F0D;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.nameplate-input:focus {
  border-color: #E8935A;
  box-shadow: 0 0 0 3px rgba(232,147,90,0.15);
}
.nameplate-input::placeholder { color: rgba(61,31,13,0.35); }

.plinth-option {
  background: #fff;
  border: 2px solid rgba(201,168,76,0.25);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  transition: border-color 0.2s;
}
.plinth-option:has(#add-plinth:checked) {
  border-color: #C9A84C;
  background: rgba(201,168,76,0.05);
}

.plinth-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 1rem;
}

.plinth-name {
  font-weight: 700;
  color: #3D1F0D;
  display: block;
  margin-bottom: 0.15rem;
}

.plinth-desc {
  font-size: 0.88rem;
  color: rgba(61,31,13,0.6);
}

.plinth-toggle-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.plinth-price {
  font-weight: 700;
  color: #C9A84C;
  font-size: 1rem;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(61,31,13,0.15);
  border-radius: 26px;
  cursor: pointer;
  transition: background 0.25s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px; height: 20px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.25s;
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.toggle-switch input:checked + .toggle-slider { background: #C9A84C; }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(22px); }

/* â”€â”€ Price Summary â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.price-summary {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(61,31,13,0.08);
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: rgba(61,31,13,0.7);
  padding: 0.3rem 0;
}

.price-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #3D1F0D;
  border-top: 2px solid rgba(61,31,13,0.1);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
}

#total-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #E8935A;
}

/* â”€â”€ Payment â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.payment-summary {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(61,31,13,0.08);
  margin-bottom: 1.5rem;
}

.payment-summary h4 {
  font-size: 1rem;
  color: #3D1F0D;
  margin-bottom: 1rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
  color: rgba(61,31,13,0.7);
  padding: 0.3rem 0;
}

.summary-divider {
  border-top: 1px solid rgba(61,31,13,0.1);
  margin: 0.75rem 0;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  color: #3D1F0D;
}

.summary-shipping {
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: rgba(61,31,13,0.5);
}

.payment-label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  color: #3D1F0D;
  margin-bottom: 0.5rem;
}

.card-element-wrap {
  background: #fff;
  border: 2px solid rgba(61,31,13,0.12);
  border-radius: 12px;
  padding: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 0.75rem;
}
.card-element-wrap.focused {
  border-color: #E8935A;
  box-shadow: 0 0 0 3px rgba(232,147,90,0.15);
}

.card-error {
  color: #c0392b;
  font-size: 0.88rem;
  min-height: 1.2em;
  margin-bottom: 0.5rem;
}

.payment-security {
  text-align: center;
  font-size: 0.82rem;
  color: rgba(61,31,13,0.5);
  margin-top: 0.75rem;
}

/* â”€â”€ Form Actions â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* â”€â”€ Form Error â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.form-error {
  color: #c0392b;
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.2);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  min-height: 0;
  transition: all 0.2s;
}
.form-error:empty { display: none; }

/* â”€â”€ Success State â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.success-container {
  text-align: center;
  padding: 1rem 0;
}

.success-icon { font-size: 4rem; margin-bottom: 1rem; animation: bounce 0.6s ease; }

@keyframes bounce {
  0%   { transform: scale(0.5); opacity: 0; }
  70%  { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

.success-title {
  font-size: 2rem;
  color: #3D1F0D;
  margin-bottom: 0.75rem;
}

.success-subtitle {
  color: rgba(61,31,13,0.7);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.success-details {
  background: #fff;
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  text-align: left;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(61,31,13,0.08);
}

.success-next {
  color: rgba(61,31,13,0.6);
  font-size: 0.92rem;
  margin-bottom: 1.75rem;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

/* â”€â”€ Gallery â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.gallery-section {
  padding: var(--section-space) 0;
  background: #fff8f0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(61,31,13,0.10);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(61,31,13,0.16);
}

.gallery-img-wrap {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f2ece4;
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.gallery-card:hover .gallery-img-wrap img {
  transform: scale(1.05);
}

.gallery-caption {
  padding: 0.65rem 0.9rem;
  font-size: 0.9rem;
  color: rgba(61,31,13,0.7);
  font-style: italic;
}

.gallery-empty {
  text-align: center;
  padding: 2rem;
  color: rgba(61,31,13,0.5);
  font-size: 1.05rem;
}

/* â”€â”€ Footer â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer {
  background: #3D1F0D;
  color: rgba(253,246,236,0.8);
  padding: var(--section-space-tight) 0 2rem;
}

.footer-top {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.footer-brand { flex: 1; min-width: 200px; }

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #FDF6EC;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.6;
  max-width: 260px;
}

.footer-links {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 130px;
}

.footer-col h4 {
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #C9A84C;
  margin-bottom: 0.3rem;
}

.footer-col a {
  font-size: 0.92rem;
  color: rgba(253,246,236,0.7);
  transition: color 0.2s;
}
.footer-col a:hover { color: #FDF6EC; }

.footer-bottom {
  border-top: 1px solid rgba(253,246,236,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(253,246,236,0.45);
}

/* â”€â”€ Mobile hamburger nav â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  z-index: 110;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: #3D1F0D;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* â”€â”€ Responsive tweaks â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 900px) {
  .nav-hamburger { display: flex; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-links .nav-cta { display: inline-flex; }

  .navbar.nav-open .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(253,246,236,0.97);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 0.5rem 1.5rem 1.25rem;
    box-shadow: 0 8px 32px rgba(61,31,13,0.12);
    z-index: 99;
  }
  .navbar.nav-open .nav-links a:not(.nav-cta) {
    display: block;
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(61,31,13,0.07);
    font-size: 1rem;
    opacity: 0.85;
  }
  .navbar.nav-open .nav-links a:not(.nav-cta):last-of-type { border-bottom: none; }
  .navbar.nav-open .nav-links .nav-cta {
    display: flex;
    margin-top: 0.85rem;
    text-align: center;
    justify-content: center;
  }
  /* Keep hamburger pinned in the navbar when the dropdown is open */
  .navbar.nav-open .nav-links .nav-hamburger {
    position: fixed;
    right: 1.5rem;
    top: 0;
    height: 64px;
    display: flex;
    align-items: center;
    z-index: 200;
  }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .btn-lg { width: 100%; justify-content: center; }
  .form-actions { flex-direction: column-reverse; }
  .form-actions .btn { width: 100%; justify-content: center; }
  .price-banner-inner { flex-direction: column; text-align: center; }
  .footer-top { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 960px) {
  .hero {
    min-height: auto;
  }
  .hero-content {
    padding: 3.25rem 1.25rem 2rem;
    text-align: center;
  }
  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
  }
  .hero-media {
    padding: 0 1rem 2.5rem;
  }
  .hero-photo-stack {
    width: min(78vw, 290px);
    height: min(90vw, 350px);
  }
  .hero-photo-front {
    width: min(66vw, 240px);
    height: min(81vw, 295px);
    left: 6px;
  }
  .hero-photo-back {
    width: min(60vw, 220px);
    height: min(73vw, 270px);
    right: 0;
  }
  .trust-bar {
    padding: 0.85rem 1rem;
  }
  .trust-bar-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.2rem 0.5rem;
  }
  .trust-item {
    justify-content: center;
    padding: 0.4rem 0.25rem;
  }
  .steps-infographic {
    display: none;
  }
  .step-sample-crop {
    aspect-ratio: 4 / 3;
  }
  .story-teaser {
    padding: 5rem 1.25rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }
  .how-it-works,
  .box-contents,
  .order-section,
  .showcase-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .progress-steps {
    justify-content: flex-start;
    gap: 0.4rem;
    margin-bottom: 2rem;
    padding: 0 0 0.75rem;
    scrollbar-width: none;
  }
  .progress-steps::-webkit-scrollbar {
    display: none;
  }
  .progress-line {
    min-width: 22px;
    margin-left: 0;
    margin-right: 0;
  }
  .price-banner {
    padding: 1.6rem 1.25rem;
  }
  .price-amount {
    font-size: 2.35rem;
  }
  .urgency-banner {
    border-radius: 20px;
    padding: 0.8rem 1rem;
    align-items: flex-start;
  }
  .promo-input-wrap {
    flex-direction: column;
  }
  .promo-apply-btn {
    width: 100%;
  }
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 180px;
    gap: 0.8rem;
  }
  .showcase-card-tall,
  .showcase-card-wide {
    grid-row: span 1;
    grid-column: span 1;
  }
  .story-teaser-inner {
    gap: 2rem;
  }
  .story-teaser-images {
    width: min(82vw, 280px);
    height: 305px;
  }
  .story-img-card-1 {
    width: 56vw;
    max-width: 190px;
    height: 225px;
  }
  .story-img-card-2 {
    width: 54vw;
    max-width: 180px;
    height: 215px;
  }
}

@media (max-width: 768px) {
  /* Hide the nav CTA on smaller screens — the page has prominent CTAs already */
  .nav-links .nav-cta {
    display: none;
  }
  .navbar.nav-open .nav-links .nav-cta {
    display: flex;
    margin-top: 0.85rem;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .nav-container {
    padding: 0 1rem;
  }
  .nav-logo {
    font-size: 1.1rem;
  }
  /* nav-cta already hidden by 768px rule above */
  .navbar.nav-open .nav-links .nav-hamburger {
    right: 1rem;
  }
  .hero-content {
    padding-top: 2.75rem;
  }
  .hero-headline {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }
  .hero-sub {
    font-size: 1rem;
    line-height: 1.55;
  }
  .hero-photo-stack {
    width: 250px;
    height: 295px;
  }
  .hero-photo-front {
    width: 205px;
    height: 245px;
    left: 0;
  }
  .hero-photo-back {
    width: 185px;
    height: 225px;
    top: 32px;
  }
  .trust-bar-inner {
    grid-template-columns: 1fr;
  }
  .section-header {
    margin-bottom: 2.2rem;
  }
  .hero-proof-row {
    gap: 0.55rem;
  }
  .hero-proof-pill {
    width: 100%;
    padding-inline: 1rem;
    font-size: 0.84rem;
  }
  .form-card {
    border-radius: 18px;
    padding: 1.35rem 1rem;
  }
  .step-title {
    font-size: 1.3rem;
  }
  .form-group label,
  .form-hint,
  .step-subtitle {
    font-size: 0.88rem;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 230px;
  }
  .whats-next,
  .payment-security,
  .success-next {
    font-size: 0.88rem;
    line-height: 1.5;
  }
}

/* â”€â”€ Scroll animations â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* â”€â”€ Promo code â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.promo-row { margin-top: 1.25rem; }
.promo-input-wrap {
  display: flex;
  gap: 8px;
}
.promo-input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid rgba(61,31,13,0.15);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  color: #3D1F0D;
  background: #fff;
  transition: border-color 0.2s;
}
.promo-input:focus {
  outline: none;
  border-color: #C9A84C;
}
.promo-input:disabled { background: #f9f4ec; color: rgba(61,31,13,0.4); }
.promo-apply-btn {
  padding: 10px 18px;
  background: #3D1F0D;
  color: #F4D98A;
  border: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}
.promo-apply-btn:hover:not(:disabled) { background: #5a2e10; }
.promo-apply-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.promo-status {
  margin-top: 6px;
  font-size: 0.82rem;
  min-height: 1.2em;
}
.promo-status.ok  { color: #2d8a4e; }
.promo-status.err { color: #c0392b; }

/* ============================================================
   NEW SECTIONS â€” Animations, Hero overhaul, Showcase, Stats,
   Ticker, Story teaser
   ============================================================ */

/* â”€â”€ Scroll reveal â€” only hides when JS is ready, so content is
      always visible if JS is slow or fails                     */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1),
              transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.js-ready .reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* â”€â”€ Navbar scrolled shadow â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.navbar-scrolled {
  box-shadow: 0 4px 24px rgba(61,31,13,0.12);
}

/* â”€â”€ Hero overhaul â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  min-height: 100vh;
  padding-top: 64px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2A1206 0%, #3D1F0D 40%, #5C2E0F 70%, #7A3E18 100%);
}
.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero-bg-paw { display: none; }
.hero-content {
  flex: 1;
  max-width: 580px;
  padding: 5rem 2rem 5rem 5rem;
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) {
  .hero-content { padding: 4rem 1.5rem 3rem; max-width: 100%; }
}
.hero-eyebrow {
  color: #C9A84C;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
}
.hero-headline { color: #FDF6EC; }
.hero-headline em { color: #E8935A; }
.hero-sub { color: rgba(253,246,236,0.72); }
.hero-stars { color: #C9A84C; font-size: 1rem; letter-spacing: 0.05em; }
.hero-trust { color: rgba(253,246,236,0.55); }
.hero-proof-pill {
  background: rgba(253,246,236,0.09);
  border-color: rgba(253,246,236,0.16);
  color: rgba(253,246,236,0.92);
}

.btn-ghost-light {
  background: transparent;
  color: rgba(253,246,236,0.88);
  border: 2px solid rgba(253,246,236,0.3);
}
.btn-ghost-light:hover {
  background: rgba(253,246,236,0.1);
  border-color: rgba(253,246,236,0.6);
  color: #FDF6EC;
}

/* hero photo stack */
.hero-media {
  grid-column: 8 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  position: relative;
  z-index: 1;
}
@media (max-width: 960px) {
  .hero-shell {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 2.5rem 3rem;
  }
  .hero-content,
  .hero-media {
    grid-column: auto;
  }
  .hero-content {
    text-align: center;
  }
  .hero-sub {
    margin-inline: auto;
  }
  .hero-actions,
  .hero-trust,
  .hero-proof-row {
    justify-content: center;
  }
  .hero-media { width: 100%; justify-content: center; }
}
.hero-photo-stack {
  position: relative;
  width: 280px;
  height: 340px;
  transition: transform 0.1s ease-out;
}
.hero-photo {
  position: absolute;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 4px 16px rgba(0,0,0,0.3);
  overflow: hidden;
}
.hero-photo-back {
  width: 220px;
  height: 270px;
  top: 40px;
  right: -10px;
  transform: rotate(5deg);
  z-index: 1;
}
.hero-photo-front {
  width: 240px;
  height: 295px;
  top: 0;
  left: 0;
  transform: rotate(-2deg);
  z-index: 2;
}
.hero-photo-crop {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 18px;
}
.hero-photo-crop img {
  width: 100%;
  height: 111.5%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-photo-name {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(61,31,13,0.55);
  z-index: 3;
  pointer-events: none;
}

/* â”€â”€ Ticker strip â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.ticker-strip {
  background: #2A1206;
  color: rgba(253,246,236,0.65);
  overflow: hidden;
  padding: 0.8rem 0;
  white-space: nowrap;
  border-top: 1px solid rgba(201,168,76,0.15);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.ticker-inner {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  animation: ticker-scroll 42s linear infinite;
  will-change: transform;
}
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-item {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex-shrink: 0;
}
.ticker-dot {
  color: #E8935A;
  font-size: 1.1rem;
  flex-shrink: 0;
  opacity: 0.5;
}

/* â”€â”€ How It Works â€” enhanced â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.steps-infographic {
  margin-bottom: -4rem;
  overflow: visible;
  pointer-events: none;
}
.steps-path-svg {
  width: 100%;
  height: 60px;
  display: block;
}
.step-icon-wrap {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, rgba(232,147,90,0.15), rgba(201,168,76,0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  border: 1.5px solid rgba(232,147,90,0.25);
}
.step-sample {
  margin-top: 1.2rem;
  flex: 1;
  display: flex;
}
.step-sample-crop {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.72), rgba(255,255,255,0)) 0 0 / 100% 35% no-repeat,
    linear-gradient(180deg, #f8efe3 0%, #ecdcc8 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.75),
    0 14px 30px rgba(61,31,13,0.1);
}
.step-sample-crop::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255,255,255,0.55);
  pointer-events: none;
}
.step-sample-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: saturate(1.04) contrast(1.02) brightness(1.03);
  transition: transform 0.45s ease, filter 0.45s ease;
}
.step-card:hover .step-sample-crop img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04) brightness(1.06);
}
.step-photo-1 .step-sample-crop img { object-position: center 34%; }
.step-photo-2 .step-sample-crop img { object-position: center 42%; }
.step-photo-3 .step-sample-crop img { object-position: center 44%; }
.step-photo-4 .step-sample-crop img { object-position: center 38%; }
.step-connector {
  display: none;
}

/* â”€â”€ Stats section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.stats-section {
  background: linear-gradient(135deg, #2A1206 0%, #3D1F0D 60%, #5C2E0F 100%);
  padding: var(--section-space-tight) 0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  flex: 1;
  min-width: 160px;
  text-align: center;
  padding: 1.5rem 1rem;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #C9A84C;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(253,246,236,0.5);
}
.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(253,246,236,0.12);
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .stat-divider { display: none; }
  .stat-item { min-width: 45%; }
}

/* â”€â”€ Showcase section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.showcase-section {
  padding: var(--section-space) 0;
  background: #fff8f0;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  gap: 1rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .showcase-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; }
}
@media (max-width: 600px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}
.showcase-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(61,31,13,0.12);
  transition: box-shadow 0.35s ease, transform 0.35s ease;
  background: #2A1206;
  will-change: transform;
}
.showcase-card-tall { grid-row: span 2; }
.showcase-card-wide { grid-column: span 2; }
.showcase-crop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.showcase-crop img {
  width: 100%;
  height: 111.5%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.showcase-card:hover .showcase-crop img { transform: scale(1.07); }
.showcase-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(20,6,2,0.72) 100%);
  z-index: 1;
  transition: opacity 0.3s ease;
}
.showcase-card:hover {
  box-shadow: 0 12px 48px rgba(61,31,13,0.28);
}
.showcase-label {
  position: absolute;
  bottom: 12px;
  left: 14px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  color: rgba(253,246,236,0.92);
  z-index: 2;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}
.showcase-card:hover .showcase-label { transform: translateY(-4px); }
.showcase-cta { text-align: center; }

/* â”€â”€ Story teaser â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.story-teaser {
  padding: var(--section-space) 0;
  background: linear-gradient(135deg, #2A1206 0%, #3D1F0D 100%);
  overflow: hidden;
}
.story-teaser-inner {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
  margin: 0 auto;
}
@media (max-width: 900px) {
  .story-teaser-inner { grid-template-columns: 1fr; gap: 3rem; }
}
.story-teaser-text .section-eyebrow { color: #C9A84C; }
.story-teaser-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #FDF6EC;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}
.story-teaser-text p {
  color: rgba(253,246,236,0.68);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 520px;
}
.btn-outline-dark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  background: transparent;
  color: #C9A84C;
  border: 2px solid #C9A84C;
  cursor: pointer;
  transition: all 0.22s ease;
  margin-top: 0.5rem;
  text-decoration: none;
}
.btn-outline-dark:hover {
  background: #C9A84C;
  color: #3D1F0D;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(201,168,76,0.35);
}
.story-teaser-images {
  flex: 0 0 auto;
  position: relative;
  width: 300px;
  height: 360px;
}
.story-img-card {
  position: absolute;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.story-img-card-1 {
  width: 210px; height: 260px;
  top: 0; left: 0;
  transform: rotate(-3deg);
  z-index: 1;
}
.story-img-card-2 {
  width: 200px; height: 250px;
  bottom: 0; right: 0;
  transform: rotate(4deg);
  z-index: 2;
}
.story-img-crop { width: 100%; height: 100%; overflow: hidden; }
.story-img-crop img {
  width: 100%;
  height: 111.5%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.faq-section {
  padding: var(--section-space) 0;
  background: #fffdf9;
}

.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(143, 84, 39, 0.12);
  border-radius: 18px;
  padding: 0 1.2rem;
  box-shadow: 0 12px 30px rgba(60, 38, 15, 0.05);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 0;
  font-weight: 700;
  color: #3D1F0D;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  padding: 0 0 1.15rem;
  color: rgba(61,31,13,0.72);
  line-height: 1.7;
}

.seo-landing-section {
  padding: var(--section-space-tight) 0 var(--section-space);
  background: linear-gradient(180deg, #fffdf9 0%, #f8f2e8 100%);
}

.seo-landing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.seo-landing-card {
  display: block;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(143, 84, 39, 0.12);
  border-radius: 22px;
  padding: 1.5rem;
  box-shadow: 0 14px 34px rgba(60, 38, 15, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.seo-landing-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(60, 38, 15, 0.1);
  border-color: rgba(143, 84, 39, 0.26);
}

.seo-landing-card h3 {
  color: #3D1F0D;
  margin-bottom: 0.6rem;
  font-size: 1.18rem;
}

.seo-landing-card p {
  color: rgba(61,31,13,0.72);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .seo-landing-grid {
    grid-template-columns: 1fr;
  }
}

/* â”€â”€ Hero CSS-only entrance animations (no JS dependency) â”€â”€â”€â”€ */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-anim {
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.4,0,0.2,1) forwards;
  animation-delay: calc(var(--hi, 0) * 110ms + 80ms);
}

/* â”€â”€ Trust bar (replaces ticker) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.trust-bar {
  background: #2A1206;
  border-bottom: 1px solid rgba(201,168,76,0.15);
  padding: 1.1rem 0;
}
.trust-bar-inner {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 2rem;
  flex-shrink: 0;
}
.trust-icon { font-size: 1.1rem; }
.trust-text {
  font-size: 0.88rem;
  color: rgba(253,246,236,0.7);
  white-space: nowrap;
}
.trust-text strong { color: #C9A84C; }
.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(253,246,236,0.12);
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .trust-divider { display: none; }
  .trust-item { padding: 0.3rem 1rem; }
}

/* â”€â”€ Step card slide-in from sides â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeScale {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

/* Step cards: alternate directions */
.js-ready .step-card:nth-child(1) { opacity: 0; }
.js-ready .step-card:nth-child(3) { opacity: 0; }
.js-ready .step-card:nth-child(5) { opacity: 0; }
.js-ready .step-card.step-animated:nth-child(1) {
  animation: slideInLeft 0.7s cubic-bezier(0.4,0,0.2,1) forwards;
}
.js-ready .step-card.step-animated:nth-child(3) {
  animation: fadeScale 0.7s cubic-bezier(0.4,0,0.2,1) 0.15s forwards;
}
.js-ready .step-card.step-animated:nth-child(5) {
  animation: slideInRight 0.7s cubic-bezier(0.4,0,0.2,1) 0.3s forwards;
}

/* â”€â”€ Showcase cards staggered pop-in â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes cardPop {
  from { opacity: 0; transform: scale(0.88) translateY(20px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.js-ready .showcase-card { opacity: 0; }
.js-ready .showcase-card.card-animated {
  animation: cardPop 0.55s cubic-bezier(0.34,1.36,0.64,1) forwards;
}

/* â”€â”€ Section header fade-up â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@keyframes headerFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.js-ready .section-header.revealed {
  animation: headerFadeUp 0.6s cubic-bezier(0.4,0,0.2,1) forwards;
}

/* â”€â”€ Urgency banner â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.urgency-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: rgba(232,147,90,0.10);
  border: 1px solid rgba(232,147,90,0.28);
  border-radius: 50px;
  padding: 0.6rem 1.5rem;
  font-size: 0.9rem;
  color: #3D1F0D;
  max-width: 520px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.urgency-icon { font-size: 1.1rem; }

/* â”€â”€ Sticky mobile CTA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sticky-cta { display: none; }

@media (max-width: 768px) {
  .sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    background: rgba(253,246,236,0.96);
    backdrop-filter: blur(8px);
    padding: 0.85rem 1.25rem;
    box-shadow: 0 -2px 20px rgba(61,31,13,0.12);
    border-top: 1px solid rgba(201,168,76,0.18);
    justify-content: center;
    transition: transform 0.3s ease;
  }
  .sticky-cta.hidden { transform: translateY(110%); }
  .sticky-cta-btn {
    width: 100%;
    max-width: 420px;
    justify-content: center;
  }
  body { padding-bottom: 72px; }
}
