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

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  
  --color-cream: #faf6f0;
  --color-warm-white: #f5f0e8;
  --color-parchment: #ede6d6;
  --color-wood-light: #c8a96e;
  --color-wood-mid: #a07840;
  --color-wood-dark: #6b4f28;
  --color-bark: #3d2b1a;
  --color-charcoal: #2a2018;
  --color-text-primary: #2a2018;
  --color-text-secondary: #5c4a32;
  --color-text-muted: #8a7560;
  --color-accent: #b8732a;
  --color-accent-hover: #9a5e1e;
  --color-accent-light: #f0dfc0;
  --color-surface: #ffffff;
  --color-surface-warm: #fdfaf5;
  --color-border: #ddd4c0;
  --color-border-light: #ede8dc;

  
  --font-base: 'Commissioner', sans-serif;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: clamp(1.5rem, 3vw, 2rem);
  --text-4xl: clamp(2rem, 4vw, 2.75rem);
  --text-5xl: clamp(2.5rem, 5vw, 3.5rem);
  --text-hero: clamp(3rem, 7vw, 5.5rem);

  
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  
  --shadow-xs: 0 1px 3px rgba(42,32,24,0.08);
  --shadow-sm: 0 2px 8px rgba(42,32,24,0.1), 0 1px 3px rgba(42,32,24,0.06);
  --shadow-md: 0 4px 16px rgba(42,32,24,0.12), 0 2px 6px rgba(42,32,24,0.08);
  --shadow-lg: 0 8px 32px rgba(42,32,24,0.16), 0 4px 12px rgba(42,32,24,0.1);
  --shadow-xl: 0 16px 48px rgba(42,32,24,0.2), 0 8px 20px rgba(42,32,24,0.12);
  --shadow-polaroid: 6px 8px 24px rgba(42,32,24,0.22), 0 2px 6px rgba(42,32,24,0.1);
  --shadow-polaroid-hover: 10px 14px 36px rgba(42,32,24,0.28), 0 4px 10px rgba(42,32,24,0.14);

  
  --nav-height: 72px;
  --mobile-tab-height: 64px;

  
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-base);
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text-primary);
  background-color: var(--color-cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

main {
  flex: 1;
}

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

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-accent-hover);
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--font-base);
  border: none;
  background: none;
}

address {
  font-style: normal;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-base);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
}

.handwrite {
  font-family: 'Segoe Script', 'Bradley Hand', cursive;
  font-weight: 400;
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-surface-warm);
  border-bottom: 1px solid var(--color-border-light);
  box-shadow: 0 2px 8px rgba(42,32,24,0.06);
  transition: box-shadow var(--transition-base);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(42,32,24,0.14), 0 2px 6px rgba(42,32,24,0.08);
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: var(--nav-height);
}

.brand-mark {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  transition: opacity var(--transition-fast);
}

.brand-mark:hover {
  opacity: 0.85;
}

.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-2);
  flex: 1;
  justify-content: center;
}

.nav-item {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-secondary);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  transition: color var(--transition-fast), background var(--transition-fast);
  white-space: nowrap;
}

.nav-item:hover,
.nav-item.active {
  color: var(--color-accent);
  background: var(--color-accent-light);
}

.nav-actions {
  display: none;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}


.primary-action {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.6rem 1.4rem;
  background: var(--color-accent);
  color: var(--color-cream);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-base);
  border: 2px solid transparent;
  transition: background var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
  box-shadow: 0 2px 8px rgba(184,115,42,0.3);
  cursor: pointer;
  white-space: nowrap;
}

.primary-action:hover {
  background: var(--color-accent-hover);
  color: var(--color-cream);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(184,115,42,0.4);
}

.primary-action:active {
  transform: translateY(0);
}

.large-action {
  padding: 0.85rem 2rem;
  font-size: var(--text-base);
}

.action-ghost {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.6rem 1.4rem;
  background: transparent;
  color: var(--color-accent);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-base);
  border: 2px solid var(--color-accent);
  transition: background var(--transition-base), color var(--transition-base), transform var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
}

.action-ghost:hover {
  background: var(--color-accent);
  color: var(--color-cream);
  transform: translateY(-1px);
}

.action-ghost:active {
  transform: translateY(0);
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: var(--space-2);
  border-radius: var(--radius-md);
  margin-left: auto;
  transition: background var(--transition-fast);
}

.mobile-toggle:hover {
  background: var(--color-accent-light);
}

.toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}


.mobile-tab-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--color-surface-warm);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 16px rgba(42,32,24,0.1);
  height: var(--mobile-tab-height);
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.mobile-tab-bar.visible {
  transform: translateY(0);
}

.tab-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: var(--space-2) var(--space-1);
  color: var(--color-text-muted);
  font-size: 0.65rem;
  font-weight: 500;
  min-height: 44px;
  transition: color var(--transition-fast);
}

.tab-item i {
  font-size: 1.1rem;
}

.tab-item.active,
.tab-item:hover {
  color: var(--color-accent);
}

.tab-item.active {
  background: var(--color-accent-light);
}

/* =============================================
   LAYOUT CONTAINERS
   ============================================= */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.narrow-container {
  max-width: 820px;
}

.content-section {
  padding: var(--space-20) 0;
}

.visual-break {
  background: var(--color-warm-white);
  position: relative;
}

.visual-break::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.visual-break::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

/* =============================================
   SECTION INTRO
   ============================================= */
.section-intro {
  margin-bottom: var(--space-12);
  max-width: 600px;
}

.section-heading {
  font-size: var(--text-4xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
  color: var(--color-text-primary);
}

.centered-heading {
  text-align: center;
  margin: 0 auto var(--space-4);
}

.section-subtext {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  min-height: 100vh;
  padding-top: calc(var(--nav-height) + var(--space-12));
  padding-bottom: var(--space-16);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--color-cream);
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(200,169,110,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

.hero-content-block {
  max-width: 640px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-5);
  padding: var(--space-2) var(--space-4);
  background: var(--color-accent-light);
  border-radius: var(--radius-full);
  border: 1px solid rgba(184,115,42,0.2);
}

.hero-display-heading {
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
}

.text-mask-fill {
  background: linear-gradient(135deg, var(--color-bark) 0%, var(--color-wood-mid) 50%, var(--color-wood-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.accent-line {
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-wood-light) 60%, #e8b870 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle-line {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--color-text-secondary);
  -webkit-text-fill-color: var(--color-text-secondary);
  margin-top: var(--space-2);
}

.hero-body-text {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-8);
  max-width: 480px;
}

.hero-action-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}


.hero-visual-block {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-atropos {
  width: 100%;
  max-width: 400px;
}

.hero-card-stack {
  position: relative;
  width: 300px;
  height: 360px;
  margin: 0 auto;
}


.polaroid-frame {
  background: #fff;
  padding: 14px 14px 40px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-polaroid);
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);
  display: inline-flex;
  flex-direction: column;
}

.polaroid-frame:hover {
  box-shadow: var(--shadow-polaroid-hover);
}

.polaroid-photo {
  overflow: hidden;
  border-radius: 2px;
  background: var(--color-parchment);
}

.polaroid-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.9) sepia(0.1);
  transition: filter var(--transition-slow), transform var(--transition-slow);
}

.polaroid-frame:hover .polaroid-photo img {
  filter: saturate(1.05) sepia(0.05);
  transform: scale(1.02);
}

.polaroid-caption {
  display: block;
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  padding-top: var(--space-2);
  margin-top: auto;
}


.stack-back {
  position: absolute;
  width: 260px;
  height: 300px;
  transform: rotate(-7deg) translate(-20px, 10px);
  z-index: 1;
}

.stack-back .polaroid-photo {
  height: 220px;
}

.stack-mid {
  position: absolute;
  width: 260px;
  height: 300px;
  transform: rotate(4deg) translate(10px, -5px);
  z-index: 2;
}

.stack-mid .polaroid-photo {
  height: 220px;
}

.stack-front {
  position: absolute;
  width: 260px;
  height: 300px;
  transform: rotate(-2deg) translate(-5px, -15px);
  z-index: 3;
}

.stack-front .polaroid-photo {
  height: 220px;
}


.hero-scroll-hint {
  position: absolute;
  bottom: var(--space-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounceDown 2s ease-in-out infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =============================================
   BENEFITS SECTION
   ============================================= */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.benefit-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-wood-light);
}

.benefit-card:has(.card-icon-wrap) {
  display: grid;
  grid-template-rows: auto auto 1fr;
}

.card-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--color-accent-light);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
  color: var(--color-accent);
  font-size: 1.25rem;
  transition: background var(--transition-base), transform var(--transition-base);
}

.benefit-card:hover .card-icon-wrap {
  background: var(--color-accent);
  color: var(--color-cream);
  transform: scale(1.05);
}

.card-heading {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--color-text-primary);
}

.card-body {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* =============================================
   FEATURE HIGHLIGHT GRID
   ============================================= */
.feature-highlight-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}

.feature-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.feature-card:has(.feature-card-image) {
  display: grid;
  grid-template-rows: 200px 1fr;
}

.feature-card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: saturate(0.85) sepia(0.08);
  transition: filter var(--transition-slow), transform var(--transition-slow);
}

.feature-card:hover .feature-card-image {
  filter: saturate(1) sepia(0.03);
  transform: scale(1.03);
}

.feature-card-content {
  padding: var(--space-6);
}

.step-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-accent-light);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
}

.feature-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.feature-desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.feature-card.highlighted {
  border-color: var(--color-wood-light);
  box-shadow: 0 4px 20px rgba(200,169,110,0.2), var(--shadow-sm);
}

/* =============================================
   POLAROID GALLERY
   ============================================= */
.polaroid-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  justify-content: center;
  padding: var(--space-6) 0;
}

.gallery-polaroid {
  width: 240px;
  transform: rotate(var(--rotate, -2deg));
  transition: transform var(--transition-slow), box-shadow var(--transition-slow);
  flex-shrink: 0;
}

.gallery-polaroid:hover {
  transform: rotate(0deg) scale(1.04);
  z-index: 5;
}

.gallery-polaroid .polaroid-photo {
  height: 200px;
}

.gallery-polaroid .polaroid-photo img {
  height: 200px;
  width: 100%;
  object-fit: cover;
}

/* =============================================
   CTA SPLIT
   ============================================= */
.cta-split-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-12) var(--space-10);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.cta-heading {
  font-size: var(--text-3xl);
  font-weight: 800;
  margin-bottom: var(--space-4);
  color: var(--color-text-primary);
}

.cta-body {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.cta-action-block {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  justify-content: center;
}

.cta-support-text {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* =============================================
   INFO GRID (benefits, tools)
   ============================================= */
.info-grid {
  display: grid;
  gap: var(--space-6);
}

/* =============================================
   TOOLS GRID
   ============================================= */
.tools-grid {
  grid-template-columns: 1fr;
}

.tool-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-xs);
  display: grid;
  grid-template-rows: auto auto 1fr;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.tool-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.tool-icon {
  font-size: 1.75rem;
  color: var(--color-accent);
  margin-bottom: var(--space-4);
}

.tool-card h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.tool-card p {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* =============================================
   PHILOSOPHY SECTION
   ============================================= */
.philosophy-blocks {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
  margin-top: var(--space-10);
}

.philosophy-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: var(--space-6);
  align-items: start;
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-border-light);
}

.philosophy-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.philosophy-number {
  font-size: 2.5rem;
  color: var(--color-wood-light);
  line-height: 1;
  opacity: 0.7;
}

.philosophy-text h3 {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
}

.philosophy-text p {
  color: var(--color-text-secondary);
  line-height: 1.75;
}

/* =============================================
   TWO COL LAYOUT
   ============================================= */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

.col-text p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-5);
}

.col-text p:last-child {
  margin-bottom: 0;
}

.col-text .section-heading {
  margin-bottom: var(--space-6);
}

.col-visual {
  display: flex;
  justify-content: center;
}

.large-polaroid {
  width: 300px;
}

.large-polaroid .polaroid-photo {
  height: 240px;
}

.large-polaroid .polaroid-photo img {
  height: 240px;
  width: 100%;
  object-fit: cover;
}

/* =============================================
   INCLUDED GRID
   ============================================= */
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-top: var(--space-10);
}

.included-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  text-align: center;
  box-shadow: var(--shadow-xs);
}

.included-item i {
  font-size: 1.5rem;
  color: var(--color-accent);
}

.included-item p {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  font-weight: 500;
}

/* =============================================
   PACKAGES PAGE
   ============================================= */
.packages-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.package-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.package-card.package-featured {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 2px rgba(184,115,42,0.15), var(--shadow-md);
}

.package-card-header {
  padding: var(--space-8) var(--space-8) var(--space-6);
  border-bottom: 1px solid var(--color-border-light);
  background: linear-gradient(135deg, var(--color-warm-white), var(--color-cream));
}

.package-tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: var(--color-parchment);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
}

.featured-tag {
  background: var(--color-accent);
  color: var(--color-cream);
}

.package-name {
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: var(--space-2);
}

.package-tagline {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
}

.package-card-body {
  padding: var(--space-8);
  flex: 1;
}

.package-features {
  margin-bottom: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.package-features li {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.package-features li i {
  color: var(--color-accent);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.package-desc {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.75;
}

.package-card-footer {
  padding: var(--space-6) var(--space-8) var(--space-8);
}

/* =============================================
   FAQ PAGE
   ============================================= */
.faq-category {
  margin-bottom: var(--space-12);
}

.faq-category-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-accent-light);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.faq-item {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item[open] {
  border-color: var(--color-wood-light);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  transition: background var(--transition-fast);
  user-select: none;
}

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

.faq-question::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--color-accent);
  font-size: 0.9rem;
  transition: transform var(--transition-base);
  flex-shrink: 0;
  margin-left: var(--space-4);
}

.faq-item[open] .faq-question::after {
  transform: rotate(180deg);
}

.faq-question:hover {
  background: var(--color-warm-white);
}

.faq-answer {
  padding: 0 var(--space-6) var(--space-5);
}

.faq-answer p {
  color: var(--color-text-secondary);
  line-height: 1.8;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: start;
}

.contact-form-block {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-8);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.contact-form-block .section-heading {
  margin-bottom: var(--space-8);
}


.wizard-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: var(--space-8);
}

.wizard-step-indicator {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-parchment);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-base), color var(--transition-base);
}

.step-label-text {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  display: none;
  transition: color var(--transition-base);
}

.wizard-step-indicator.active .step-number {
  background: var(--color-accent);
  color: var(--color-cream);
  box-shadow: 0 2px 8px rgba(184,115,42,0.35);
}

.wizard-step-indicator.active .step-label-text {
  color: var(--color-accent);
}

.wizard-step-indicator.completed .step-number {
  background: var(--color-wood-mid);
  color: var(--color-cream);
}

.wizard-connector {
  flex: 1;
  height: 2px;
  background: var(--color-border);
  margin: 0 var(--space-2);
  transition: background var(--transition-base);
}

.wizard-connector.completed {
  background: var(--color-wood-mid);
}

.wizard-panel {
  display: none;
}

.wizard-panel.active {
  display: block;
  animation: fadeSlideIn 0.3s ease;
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--space-6);
  gap: var(--space-4);
}


.form-field-group {
  margin-bottom: var(--space-5);
}

.field-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-primary);
  margin-bottom: var(--space-2);
}

.field-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-lg);
  font-family: var(--font-base);
  font-size: var(--text-base);
  color: var(--color-text-primary);
  background: var(--color-warm-white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.field-input:focus {
  border-color: var(--color-accent);
  background: var(--color-surface);
  box-shadow: 0 0 0 3px rgba(184,115,42,0.12);
}

.form-field-group:has(.field-input:focus) .field-label {
  color: var(--color-accent);
}

.field-select {
  cursor: pointer;
  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='%238a7560' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.field-textarea {
  resize: vertical;
  min-height: 120px;
}

.privacy-group {
  margin-top: var(--space-4);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  cursor: pointer;
}

.checkbox-custom {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-warm-white);
  margin-top: 2px;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.checkbox-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: white;
  font-size: 0.65rem;
}

.checkbox-text {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.checkbox-text a {
  color: var(--color-accent);
  text-decoration: underline;
}


.contact-info-block .section-heading {
  margin-bottom: var(--space-6);
}

.contact-detail-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.contact-detail-item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.contact-detail-item > i {
  width: 40px;
  height: 40px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.95rem;
}

.contact-detail-item strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text-primary);
  margin-bottom: var(--space-1);
}

.contact-detail-item p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.contact-detail-item a {
  color: var(--color-text-secondary);
}

.contact-detail-item a:hover {
  color: var(--color-accent);
}

.map-embed-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}


.contact-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  margin-top: var(--space-10);
}

.contact-timeline::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent), var(--color-parchment));
}

.timeline-item {
  display: flex;
  gap: var(--space-6);
  align-items: flex-start;
  padding-bottom: var(--space-10);
  position: relative;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-icon {
  width: 56px;
  height: 56px;
  background: var(--color-surface);
  border: 2px solid var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  z-index: 1;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition-base), color var(--transition-base);
}

.timeline-item:hover .timeline-icon {
  background: var(--color-accent);
  color: var(--color-cream);
}

.timeline-title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-2);
}

.timeline-content p {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-warm-white) 100%);
  padding-top: calc(var(--nav-height) + var(--space-16));
  padding-bottom: var(--space-12);
  border-bottom: 1px solid var(--color-border-light);
}

.page-hero-heading {
  font-size: var(--text-5xl);
  font-weight: 800;
  margin-bottom: var(--space-5);
}

.page-hero-body {
  font-size: var(--text-lg);
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 560px;
}

/* =============================================
   THANKS PAGE
   ============================================= */
.thanks-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-section {
  padding: var(--space-24) var(--space-6);
  text-align: center;
  width: 100%;
}

.thanks-inner {
  max-width: 560px;
  margin: 0 auto;
}

.thanks-icon-wrap {
  font-size: 4rem;
  color: var(--color-wood-light);
  margin-bottom: var(--space-8);
  opacity: 0.7;
}

.thanks-heading {
  font-size: var(--text-5xl);
  font-weight: 800;
  margin-bottom: var(--space-5);
  background: linear-gradient(135deg, var(--color-bark), var(--color-wood-mid));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.thanks-subtext {
  font-size: var(--text-xl);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-12);
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-layout {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + var(--space-12)) var(--space-6) var(--space-16);
  gap: var(--space-12);
}

.legal-sidebar {
  display: none;
}

.legal-toc-title {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.legal-toc-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.legal-toc-list li a,
.legal-toc-list a,
.cookies-toc a {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-md);
  display: block;
  transition: color var(--transition-fast), background var(--transition-fast);
  border-left: 2px solid transparent;
}

.legal-toc-list li a:hover,
.legal-toc-list a:hover,
.cookies-toc a:hover {
  color: var(--color-accent);
  background: var(--color-accent-light);
  border-left-color: var(--color-accent);
}

.cookies-toc {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.legal-doc-header {
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-8);
  border-bottom: 2px solid var(--color-border);
}

.legal-doc-header h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-3);
}

.legal-updated {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.legal-intro {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.8;
  max-width: 700px;
}

.legal-content section {
  margin-bottom: var(--space-10);
  padding-bottom: var(--space-8);
  border-bottom: 1px solid var(--color-border-light);
}

.legal-content section:last-child {
  border-bottom: none;
}

.legal-content h2 {
  font-size: var(--text-2xl);
  font-weight: 700;
  margin-bottom: var(--space-5);
  color: var(--color-text-primary);
}

.legal-content p {
  font-size: var(--text-base);
  color: var(--color-text-secondary);
  line-height: 1.85;
  margin-bottom: var(--space-4);
}

.legal-content p:last-child {
  margin-bottom: 0;
}

.legal-content a {
  color: var(--color-accent);
  text-decoration: underline;
}

.cookie-table-wrap {
  overflow-x: auto;
  margin: var(--space-5) 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
}

.cookie-detail-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}

.cookie-detail-table th {
  background: var(--color-warm-white);
  padding: var(--space-3) var(--space-4);
  text-align: left;
  font-weight: 600;
  color: var(--color-text-primary);
  border-bottom: 1px solid var(--color-border);
}

.cookie-detail-table td {
  padding: var(--space-3) var(--space-4);
  color: var(--color-text-secondary);
  border-bottom: 1px solid var(--color-border-light);
}

.cookie-detail-table tr:last-child td {
  border-bottom: none;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--color-bark);
  color: var(--color-parchment);
  margin-top: auto;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-16) var(--space-6) var(--space-10);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

.footer-brand-block img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
  margin-bottom: var(--space-3);
}

.footer-tagline {
  font-size: var(--text-sm);
  color: rgba(237,230,214,0.6);
}

.footer-group-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-wood-light);
  margin-bottom: var(--space-4);
}

.footer-nav-list,
.footer-legal-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-nav-list a,
.footer-legal-list a {
  font-size: var(--text-sm);
  color: rgba(237,230,214,0.75);
  transition: color var(--transition-fast);
}

.footer-nav-list a:hover,
.footer-legal-list a:hover {
  color: var(--color-wood-light);
}

.footer-address p {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-size: var(--text-sm);
  color: rgba(237,230,214,0.75);
  margin-bottom: var(--space-3);
}

.footer-address p:last-child {
  margin-bottom: 0;
}

.footer-address i {
  color: var(--color-wood-light);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-address a {
  color: rgba(237,230,214,0.75);
}

.footer-address a:hover {
  color: var(--color-wood-light);
}

.footer-bottom-bar {
  border-top: 1px solid rgba(237,230,214,0.1);
  padding: var(--space-6) var(--space-6);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.footer-copy {
  font-size: var(--text-sm);
  color: rgba(237,230,214,0.45);
  text-align: center;
}

/* =============================================
   COOKIE CONSENT
   ============================================= */
.cookie-trigger-link {
  position: fixed;
  bottom: var(--space-5);
  left: var(--space-5);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  background: var(--color-surface);
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.cookie-trigger-link:hover {
  color: var(--color-accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.cookie-trigger-link.pulse {
  animation: cookiePulse 2s ease-in-out 3;
}

@keyframes cookiePulse {
  0%, 100% { box-shadow: var(--shadow-sm); }
  50% { box-shadow: 0 0 0 4px rgba(184,115,42,0.2), var(--shadow-md); }
}

.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(42,32,24,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
}

.cookie-modal-overlay[hidden] {
  display: none;
}

.cookie-modal-panel {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border);
  animation: modalIn 0.25s ease;
}

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

.cookie-modal-close {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--color-text-muted);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.cookie-modal-close:hover {
  background: var(--color-warm-white);
  color: var(--color-text-primary);
}

.cookie-modal-title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-3);
  padding-right: var(--space-8);
}

.cookie-modal-intro {
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
  margin-bottom: var(--space-6);
  line-height: 1.7;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-4);
  background: var(--color-warm-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border-light);
}

.cookie-option-info strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-1);
}

.cookie-option-info p {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.toggle-switch {
  flex-shrink: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}

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

.toggle-track {
  width: 44px;
  height: 24px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  position: relative;
  transition: background var(--transition-base);
}

.toggle-track::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform var(--transition-base);
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .toggle-track {
  background: var(--color-accent);
}

.toggle-switch input:checked + .toggle-track::after {
  transform: translateX(20px);
}

.toggle-switch.disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.toggle-switch.disabled .toggle-track {
  background: var(--color-wood-mid);
}

.cookie-modal-actions {
  display: flex;
  gap: var(--space-3);
  justify-content: flex-end;
}

/* =============================================
   SCROLL REVEAL ANIMATION
   ============================================= */
.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE — TABLET (640px+)
   ============================================= */
@media (min-width: 640px) {
  .benefits-grid {
    grid-template-columns: 1fr 1fr;
  }

  .tools-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-highlight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .included-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .packages-grid {
    grid-template-columns: 1fr;
  }

  .hero-card-stack {
    width: 340px;
    height: 400px;
  }
}

/* =============================================
   RESPONSIVE — DESKTOP (768px+)
   ============================================= */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-actions {
    display: flex;
  }

  .mobile-toggle {
    display: none;
  }

  .mobile-tab-bar {
    display: none !important;
  }

  .hero-inner {
    grid-template-columns: 1fr 1fr;
  }

  .two-col-layout {
    grid-template-columns: 1fr 1fr;
  }

  .cta-split-inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .contact-layout {
    grid-template-columns: 1fr 1fr;
  }

  .footer-container {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .step-label-text {
    display: block;
  }
}

/* =============================================
   RESPONSIVE — LARGE (1024px+)
   ============================================= */
@media (min-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .tools-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .feature-highlight-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .packages-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .legal-layout {
    grid-template-columns: 260px 1fr;
    align-items: start;
  }

  .legal-sidebar {
    display: block;
    position: sticky;
    top: calc(var(--nav-height) + var(--space-8));
    background: var(--color-surface);
    border-radius: var(--radius-lg);
    padding: var(--space-6);
    border: 1px solid var(--color-border-light);
    box-shadow: var(--shadow-xs);
  }

  .hero-card-stack {
    width: 380px;
    height: 440px;
  }

  .stack-back, .stack-mid, .stack-front {
    width: 280px;
    height: 320px;
  }

  .stack-back .polaroid-photo,
  .stack-mid .polaroid-photo,
  .stack-front .polaroid-photo {
    height: 240px;
  }
}

/* =============================================
   MOBILE-ONLY (max 767px)
   ============================================= */
@media (max-width: 767px) {
  body {
    padding-bottom: var(--mobile-tab-height);
  }

  .mobile-tab-bar {
    display: flex;
  }

  .cookie-trigger-link {
    bottom: calc(var(--mobile-tab-height) + var(--space-4));
  }

  .cta-split-inner {
    padding: var(--space-8) var(--space-6);
  }

  .contact-form-block {
    padding: var(--space-6) var(--space-5);
  }

  .package-card-header,
  .package-card-body,
  .package-card-footer {
    padding-left: var(--space-5);
    padding-right: var(--space-5);
  }

  .philosophy-item {
    grid-template-columns: 48px 1fr;
    gap: var(--space-4);
  }

  .hero-card-stack {
    width: 280px;
    height: 320px;
  }

  .stack-back, .stack-mid, .stack-front {
    width: 220px;
    height: 260px;
  }

  .stack-back .polaroid-photo,
  .stack-mid .polaroid-photo,
  .stack-front .polaroid-photo {
    height: 190px;
  }

  .gallery-polaroid {
    width: 200px;
  }

  .gallery-polaroid .polaroid-photo,
  .gallery-polaroid .polaroid-photo img {
    height: 160px;
  }

  .contact-timeline::before {
    left: 23px;
  }

  .timeline-icon {
    width: 48px;
    height: 48px;
    font-size: 0.95rem;
  }
}

/* =============================================
   PRINT
   ============================================= */
@media print {
  .site-header, .mobile-tab-bar, .cookie-trigger-link, .cookie-modal-overlay {
    display: none !important;
  }

  body {
    padding: 0;
  }

  main {
    padding-top: 0;
  }
}