@import url('https://fonts.googleapis.com/css2?family=Gabarito:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg-void: #0a0e14;
  --bg-deep: #0f1420;
  --bg-panel: #141b29;
  --bg-panel-alt: #182031;
  --line-soft: rgba(198, 168, 110, 0.14);
  --line-strong: rgba(198, 168, 110, 0.3);

  --gold: #c6a86e;
  --gold-bright: #e0c48c;
  --emerald: #4f8f72;
  --emerald-bright: #6fbf9a;
  --plum: #7d5a8c;

  --text-primary: #eae6dc;
  --text-secondary: #a8afc0;
  --text-muted: #737d94;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --radius-pill: 999px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.35), 0 2px 6px rgba(0,0,0,0.3);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.45), 0 6px 18px rgba(0,0,0,0.35);
  --shadow-glow: 0 0 0 1px rgba(198,168,110,0.2), 0 12px 40px rgba(198,168,110,0.08);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg-void);
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.canvas {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(ellipse 900px 500px at 15% -5%, rgba(125,90,140,0.16), transparent 60%),
    radial-gradient(ellipse 900px 500px at 90% 10%, rgba(79,143,114,0.12), transparent 60%),
    var(--bg-void);
}

main { flex: 1; }

h1, h2, h3, h4, h5 {
  font-family: 'Gabarito', sans-serif;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

p { color: var(--text-secondary); }

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

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

.eyebrow {
  display: inline-block;
  font-family: 'Gabarito', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.8rem;
  border-radius: var(--radius-pill);
  font-family: 'Gabarito', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  min-height: 48px;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1408;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(198,168,110,0.25), var(--shadow-md); }
.btn-outline {
  background: transparent;
  border-color: var(--line-strong);
  color: var(--text-primary);
}
.btn-outline:hover { background: rgba(198,168,110,0.08); border-color: var(--gold); transform: translateY(-3px); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  border-color: var(--line-soft);
  color: var(--text-primary);
}
.btn-ghost:hover { background: rgba(198,168,110,0.12); border-color: var(--gold); }
.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.05rem; }
.btn-block { width: 100%; }


.header-full {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 20, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-soft);
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.header-full.header-hidden { transform: translateY(-110%); opacity: 0; pointer-events: none; }

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand-mark { width: 38px; height: 38px; }
.brand-name { font-family: 'Gabarito', sans-serif; font-weight: 700; font-size: 1.15rem; letter-spacing: -0.01em; }

.nav-links { display: flex; align-items: center; gap: 2rem; flex: 1; justify-content: center; }
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--text-primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.hamburger-trigger {
  display: none;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--line-soft);
  color: var(--text-primary);
  width: 46px; height: 46px;
  border-radius: var(--radius-md);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.hamburger-trigger:hover { background: rgba(198,168,110,0.14); border-color: var(--gold); }


.mini-pill {
  position: fixed;
  top: 1.2rem;
  left: 50%;
  transform: translate(-50%, -140%);
  z-index: 200;
  opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.mini-pill.mini-pill-visible { transform: translate(-50%, 0); opacity: 1; }
.mini-pill-btn {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1408;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(198,168,110,0.35), var(--shadow-md);
  transition: transform 0.3s var(--ease);
}
.mini-pill-btn:hover { transform: scale(1.08); }


.drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: linear-gradient(160deg, #10131c 0%, #1a1424 55%, #14231d 100%);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.03);
  transition: opacity 0.45s var(--ease), visibility 0.45s var(--ease), transform 0.45s var(--ease);
}
.drawer.drawer-open { opacity: 1; visibility: visible; transform: scale(1); }

.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-xl); }
.drawer-logo { width: 42px; height: 42px; }
.drawer-close {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line-soft);
  color: var(--text-primary);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.drawer-close:hover { background: rgba(198,168,110,0.16); transform: rotate(90deg); }

.drawer-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-content: center;
}
.drawer-grid a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 2.2rem 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  color: var(--text-primary);
  font-family: 'Gabarito', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  min-height: 44px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.drawer-grid a i { font-size: 1.6rem; color: var(--gold); }
.drawer-grid a:hover { background: rgba(198,168,110,0.14); border-color: var(--gold); transform: translateY(-4px); }


.stage {
  position: relative;
  padding: var(--space-xl) 1.5rem;
  overflow: hidden;
}
.stage-split {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  min-height: 560px;
}
.stage-half {
  border-radius: var(--radius-xl);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 1rem;
  border: 1px solid var(--line-soft);
  min-height: 380px;
}
.stage-half-problem {
  background: linear-gradient(160deg, rgba(60,30,30,0.35), rgba(15,18,26,0.9));
}
.stage-half-solution {
  background: linear-gradient(160deg, rgba(30,60,45,0.35), rgba(15,18,26,0.9));
}
.stage-tag {
  align-self: flex-start;
  font-family: 'Gabarito', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(210,110,90,0.18);
  color: #e8a48e;
  border: 1px solid rgba(210,110,90,0.3);
}
.stage-tag-alt { background: rgba(79,143,114,0.2); color: var(--emerald-bright); border-color: rgba(79,143,114,0.35); }
.stage-half h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
.stage-half p { font-size: 0.98rem; }
.stage-list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.stage-list li { display: flex; align-items: center; gap: 0.6rem; font-size: 0.92rem; color: var(--text-secondary); }
.stage-list i { width: 20px; text-align: center; }
.stage-half-problem .stage-list i { color: #e8a48e; }
.stage-half-solution .stage-list i { color: var(--emerald-bright); }

.stage-heading-wrap {
  grid-column: 1 / -1;
  text-align: center;
  max-width: 900px;
  margin: -3rem auto 0;
  padding: var(--space-lg) var(--space-md);
  background: rgba(15,20,32,0.85);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 5;
}
.stage-heading {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 1rem;
}
.stage-heading span { color: var(--gold); }
.stage-sub {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  max-width: 640px;
  margin: 0 auto 1.8rem;
}
.stage-cta-row { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }


.gallery { padding: var(--space-2xl) 1.5rem; }
.gallery-inner { max-width: 1280px; margin: 0 auto; }
.section-head { max-width: 720px; margin-bottom: var(--space-lg); }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0.9rem; }
.section-head p { font-size: 1.05rem; }


.shelf-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1.25rem;
}
.spotlight-lg { grid-column: span 2; grid-row: span 2; }
.tile-wide { grid-column: span 2; }

.spotlight {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.spotlight:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.spotlight img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.spotlight:hover img { transform: scale(1.06); }
.spotlight-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 30%, rgba(6,8,12,0.92) 100%);
}
.spotlight-overlay h4 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.spotlight-overlay p { font-size: 0.9rem; color: rgba(234,230,220,0.85); }

.tile {
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.6rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.tile:hover { transform: translateY(-5px); border-color: var(--line-strong); box-shadow: var(--shadow-md); }
.tile i { font-size: 1.5rem; color: var(--gold); }
.tile h4 { font-size: 1.05rem; }
.tile p { font-size: 0.9rem; }


.shelf-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.card {
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 1.9rem 1.6rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.card:hover { transform: translateY(-8px); border-color: var(--gold); box-shadow: var(--shadow-glow); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(198,168,110,0.2), rgba(198,168,110,0.05));
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  color: var(--gold);
}
.card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.card p { font-size: 0.92rem; }


.stat-band {
  padding: var(--space-xl) 1.5rem;
  background: linear-gradient(135deg, rgba(198,168,110,0.06), rgba(79,143,114,0.06));
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.stat-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item { display: flex; flex-direction: column; align-items: center; }
.stat-number {
  font-family: 'Gabarito', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
}
.stat-suffix { font-family: 'Gabarito', sans-serif; font-size: 1.5rem; color: var(--gold-bright); font-weight: 700; }
.stat-item p { margin-top: 0.6rem; font-size: 0.9rem; }


.shelf-photos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1.1rem;
}
.photo-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  display: block;
  position: relative;
}
.photo-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s var(--ease), filter 0.55s var(--ease); }
.photo-item:hover img { transform: scale(1.08); filter: brightness(1.08); }
.photo-tall { grid-row: span 2; }
.photo-wide { grid-column: span 2; }


.process-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.process-step {
  background: var(--bg-panel-alt);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: transform 0.4s var(--ease);
}
.process-step:hover { transform: translateY(-6px); }
.process-num {
  display: inline-block;
  font-family: 'Gabarito', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 0.7rem;
}
.process-step h4 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.9rem; }


.cta-band {
  margin: 0 1.5rem var(--space-2xl);
  padding: var(--space-xl) var(--space-md);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(198,168,110,0.14), rgba(79,143,114,0.1));
  border: 1px solid var(--line-strong);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-band-inner { max-width: 640px; margin: 0 auto; }
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 0.8rem; }
.cta-band p { margin-bottom: 1.6rem; }


.footer-cards {
  background: linear-gradient(160deg, #0d1119, #171226 60%, #101a16);
  padding: var(--space-xl) 1.5rem var(--space-md);
  border-top: 1px solid var(--line-soft);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 1.25rem;
}
.card-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.card-block:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.card-block h4 { font-size: 1rem; color: var(--gold); margin-bottom: 0.3rem; letter-spacing: 0.02em; }
.card-block a { color: var(--text-secondary); font-size: 0.92rem; transition: color 0.3s var(--ease); }
.card-block a:hover { color: var(--gold-bright); }
.footer-logo { width: 40px; height: 40px; margin-bottom: 0.4rem; }
.card-block-about p { font-size: 0.9rem; }
.card-block-contact p { font-size: 0.9rem; display: flex; gap: 0.6rem; align-items: flex-start; color: var(--text-secondary); }
.card-block-contact i { color: var(--gold); margin-top: 0.2rem; }
.footer-bottom {
  max-width: 1280px;
  margin: var(--space-lg) auto 0;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-top: var(--space-md);
  border-top: 1px solid var(--line-soft);
}


.page-hero { padding: var(--space-2xl) 1.5rem var(--space-lg); text-align: center; }
.page-hero-inner { max-width: 760px; margin: 0 auto; }
.page-hero h1 { font-size: clamp(2rem, 4.5vw, 3.2rem); margin-bottom: 1rem; }
.page-hero p { font-size: 1.05rem; }
.page-hero-legal { padding-top: var(--space-xl); }


.story-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center; }
.story-image img { border-radius: var(--radius-xl); border: 1px solid var(--line-soft); box-shadow: var(--shadow-lg); }
.story-text h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.story-text p { margin-bottom: 1rem; }


.method-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: var(--space-xl);
}
.method-row-rev .method-image { order: 2; }
.method-row-rev .method-text { order: 1; }
.method-image img { border-radius: var(--radius-lg); border: 1px solid var(--line-soft); box-shadow: var(--shadow-md); }
.method-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--emerald-bright);
  background: rgba(79,143,114,0.14);
  border: 1px solid rgba(79,143,114,0.3);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.9rem;
}
.method-text h2 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: 0.8rem; }
.method-text p { margin-bottom: 0.8rem; }


.shelf-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}
.price-card {
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card-featured {
  background: linear-gradient(160deg, rgba(198,168,110,0.12), var(--bg-panel));
  border-color: var(--gold);
  box-shadow: var(--shadow-glow);
  transform: scale(1.03);
}
.price-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #1a1408;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.price-card h3 { font-size: 1.3rem; margin-bottom: 0.6rem; }
.price-value { font-family: 'Gabarito', sans-serif; font-size: 1.8rem; font-weight: 800; color: var(--gold-bright); margin-bottom: 0.6rem; }
.price-desc { font-size: 0.92rem; margin-bottom: 1.2rem; }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.6rem; flex: 1; }
.price-card li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--text-secondary); }
.price-card li i { color: var(--emerald-bright); margin-top: 0.2rem; }
.price-note { text-align: center; margin-top: 2rem; font-size: 0.88rem; color: var(--text-muted); }


.shelf-faq { display: flex; flex-direction: column; gap: 1rem; max-width: 820px; }
.faq-item {
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  transition: border-color 0.3s var(--ease);
}
.faq-item[open] { border-color: var(--line-strong); }
.faq-item summary {
  cursor: pointer;
  font-family: 'Gabarito', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.8rem;
  color: var(--gold);
  transition: transform 0.3s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(180deg); }
.faq-item p { margin-top: 0.8rem; font-size: 0.92rem; }


.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 2.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.info-card {
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease);
}
.info-card:hover { transform: translateY(-4px); border-color: var(--line-strong); }
.info-card i { font-size: 1.3rem; color: var(--gold); margin-top: 0.2rem; }
.info-card h4 { font-size: 1rem; margin-bottom: 0.3rem; }
.info-card p { font-size: 0.92rem; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line-soft); box-shadow: var(--shadow-md); }

.contact-form {
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-xl);
  padding: 2.2rem;
  box-shadow: var(--shadow-md);
}
.contact-form h3 { font-size: 1.3rem; margin-bottom: 1.4rem; }
.form-row { margin-bottom: 1.2rem; display: flex; flex-direction: column; gap: 0.5rem; }
.form-row label { font-size: 0.9rem; font-weight: 500; color: var(--text-secondary); }
.form-row input[type="text"], .form-row input[type="email"], .form-row input[type="tel"], .form-row textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  min-height: 48px;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.form-row textarea { min-height: 120px; resize: vertical; }
.form-row input:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(198,168,110,0.15);
}
.form-row-check { flex-direction: row; align-items: flex-start; gap: 0.7rem; }
.form-row-check input { width: 20px; height: 20px; margin-top: 0.15rem; accent-color: var(--gold); flex-shrink: 0; }
.form-row-check label { font-size: 0.85rem; }
.form-row-check a { color: var(--gold); }


.legal-inner { max-width: 880px; }
.accordion-legal { display: flex; flex-direction: column; gap: 0.9rem; }
.acc-item {
  background: var(--bg-panel);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.5rem;
  transition: border-color 0.3s var(--ease);
}
.acc-item[open] { border-color: var(--line-strong); }
.acc-item summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Gabarito', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary i { color: var(--gold); transition: transform 0.3s var(--ease); font-size: 0.85rem; }
.acc-item[open] summary i { transform: rotate(180deg); }
.acc-body { padding-top: 1rem; }
.acc-body p { font-size: 0.95rem; }


.thanks-stage {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) 1.5rem;
}
.thanks-box {
  max-width: 560px;
  text-align: center;
  background: var(--bg-panel);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  padding: var(--space-xl) var(--space-lg);
  box-shadow: var(--shadow-glow);
}
.thanks-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  color: #1a1408;
  margin: 0 auto 1.5rem;
}
.thanks-box h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.thanks-box p { margin-bottom: 1rem; }
.thanks-redirect { font-size: 0.9rem; color: var(--gold-bright); }
.thanks-redirect span { font-weight: 700; }
.thanks-box .btn { margin-top: 1rem; }


.cookie-pill {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(0);
  z-index: 500;
  background: rgba(15,20,32,0.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-pill);
  padding: 0.7rem 0.8rem 0.7rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  max-width: calc(100vw - 2rem);
  transition: all 0.5s var(--ease);
}
.cookie-pill.cookie-modal {
  flex-direction: column;
  align-items: stretch;
  border-radius: var(--radius-xl);
  padding: 1.6rem;
  width: min(480px, calc(100vw - 2rem));
  bottom: 1.5rem;
}
.cookie-pill p { font-size: 0.85rem; color: var(--text-secondary); margin: 0; }
.cookie-pill .cookie-actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
.cookie-pill.cookie-modal .cookie-actions { flex-direction: column; margin-top: 1rem; }
.cookie-btn {
  border: none;
  border-radius: var(--radius-pill);
  padding: 0.55rem 1.1rem;
  font-family: 'Gabarito', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
  min-height: 40px;
  white-space: nowrap;
}
.cookie-accept { background: linear-gradient(135deg, var(--gold-bright), var(--gold)); color: #1a1408; }
.cookie-accept:hover { transform: translateY(-2px); }
.cookie-customize { background: rgba(255,255,255,0.08); color: var(--text-primary); }
.cookie-customize:hover { background: rgba(255,255,255,0.14); }

.cookie-categories { display: flex; flex-direction: column; gap: 0.9rem; margin: 1rem 0; }
.cookie-cat { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 0.7rem 0; border-bottom: 1px solid var(--line-soft); }
.cookie-cat:last-child { border-bottom: none; }
.cookie-cat-info h5 { font-size: 0.9rem; color: var(--text-primary); margin-bottom: 0.2rem; }
.cookie-cat-info p { font-size: 0.78rem; }
.switch { position: relative; width: 44px; height: 24px; flex-shrink: 0; }
.switch input { opacity: 0; width: 0; height: 0; }
.switch-slider {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background 0.3s var(--ease);
}
.switch-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s var(--ease);
}
.switch input:checked + .switch-slider { background: var(--gold); }
.switch input:checked + .switch-slider::before { transform: translateX(20px); }
.switch input:disabled + .switch-slider { opacity: 0.5; cursor: not-allowed; }


@media (max-width: 1024px) {
  .shelf-bento { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .spotlight-lg { grid-column: span 2; grid-row: span 1; min-height: 260px; }
  .shelf-cards { grid-template-columns: repeat(2, 1fr); }
  .shelf-photos { grid-template-columns: repeat(2, 1fr); }
  .photo-tall { grid-row: span 1; }
  .photo-wide { grid-column: span 2; }
  .process-row { grid-template-columns: repeat(2, 1fr); }
  .stat-inner { grid-template-columns: repeat(2, 1fr); }
  .story-grid, .contact-grid { grid-template-columns: 1fr; }
  .method-row, .method-row-rev { grid-template-columns: 1fr; }
  .method-row-rev .method-image, .method-row-rev .method-text { order: initial; }
  .footer-inner { grid-template-columns: repeat(2, 1fr); }
  .shelf-pricing { grid-template-columns: 1fr; }
  .price-card-featured { transform: none; }
}

@media (max-width: 768px) {
  .nav-links, .header-cta { display: none; }
  .hamburger-trigger { display: inline-flex; align-items: center; justify-content: center; }
  .header-inner { padding: 1rem 1.2rem; }
  .stage-split { grid-template-columns: 1fr; min-height: auto; }
  .stage-heading-wrap { margin-top: -1.5rem; }
  .drawer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .gallery { padding: var(--space-xl) 1.2rem; }
  .stage { padding: var(--space-lg) 1rem; }
  .shelf-bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .spotlight-lg { grid-column: span 1; min-height: 240px; }
  .tile-wide { grid-column: span 1; }
  .shelf-cards { grid-template-columns: 1fr; }
  .shelf-photos { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
  .photo-wide { grid-column: span 2; }
  .process-row { grid-template-columns: 1fr; }
  .stat-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; }
  .drawer-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .drawer-grid a { padding: 1.6rem 0.8rem; }
  .cookie-pill { flex-direction: column; align-items: stretch; text-align: center; padding: 1rem; }
  .cookie-pill .cookie-actions { flex-direction: column; }
  .stage-cta-row { flex-direction: column; align-items: stretch; }
}