/* ============================================================
   The Scandinavian Reset — Styles
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --background: #f5edd8;
  --background-secondary: #ebe0c8;
  --surface: #fdf8ed;
  --text: #2a2318;
  --text-muted: #6b5f4d;
  --accent: #c47d2b;
  --accent-dark: #9e6420;
  --accent-light: #d99a4a;
  --border: #d4c4a5;
  --soft-green: #4a6741;
  --soft-green-light: #5c7a52;

  --font-heading: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --max-width: 1200px;
  --section-padding: 6rem 1.5rem;
  --section-padding-mobile: 3.5rem 1rem;
  --radius: 6px;
  --radius-lg: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --transition: 0.25s ease;
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--background);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.15rem; }

p + p { margin-top: 1rem; }

.section-label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-top: 0.75rem;
}

/* --- Layout --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: var(--section-padding);
}

@media (max-width: 768px) {
  section { padding: var(--section-padding-mobile); }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--accent-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

.btn-secondary {
  background-color: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn-secondary:hover {
  background-color: var(--accent);
  color: #fff;
}

.btn-large {
  font-size: 1.1rem;
  padding: 1.05rem 2.5rem;
}

/* --- Announcement Bar --- */
.announcement-bar {
  background-color: var(--text);
  color: var(--background);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* --- Header --- */
.site-header {
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.01em;
}

.logo:hover { color: var(--text); }

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

.nav-desktop a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}

.nav-desktop a:hover {
  color: var(--text);
}

.nav-desktop .btn {
  font-size: 0.85rem;
  padding: 0.6rem 1.4rem;
}

.mobile-menu-btn {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--text);
  position: relative;
  transition: background-color var(--transition);
}

.mobile-menu-btn span::before,
.mobile-menu-btn span::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 2px;
  background-color: var(--text);
  left: 0;
  transition: transform var(--transition);
}

.mobile-menu-btn span::before { top: -7px; }
.mobile-menu-btn span::after { top: 7px; }

.mobile-menu-btn[aria-expanded="true"] span { background-color: transparent; }
.mobile-menu-btn[aria-expanded="true"] span::before { transform: rotate(45deg); top: 0; }
.mobile-menu-btn[aria-expanded="true"] span::after { transform: rotate(-45deg); top: 0; }

.nav-mobile {
  display: none;
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
}

.nav-mobile.open { display: block; }

.nav-mobile a {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.nav-mobile a:last-child { border-bottom: none; }

.nav-mobile .btn {
  margin-top: 1rem;
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .mobile-menu-btn { display: flex; }
}

/* --- Hero --- */
.hero {
  padding: 5rem 1.5rem 4rem;
  background-color: var(--background);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 540px;
}

.hero-pricing {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.price-current {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--text);
}

.price-original {
  font-size: 1.1rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.price-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  background-color: rgba(181, 40, 32, 0.08);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  letter-spacing: 0.03em;
}

.hero-cta-area {
  margin-bottom: 1.5rem;
}

.hero-delivery {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.trust-point {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-icon {
  width: 20px;
  height: 20px;
  color: var(--soft-green);
  flex-shrink: 0;
}

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

.hero-mockup {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
}

/* Hero image */
.hero-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

@media (max-width: 768px) {
  .hero { padding: 3rem 1rem 2.5rem; }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-image { order: -1; }
  .hero-mockup { max-width: 320px; }
}

/* --- Problem Section --- */
.problem {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-inner {
  max-width: 720px;
  margin: 0 auto;
}

.problem h2 {
  margin-bottom: 1.5rem;
  font-style: italic;
}

.problem-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.problem-list {
  margin-bottom: 2rem;
}

.problem-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.9rem;
  color: var(--text);
  font-size: 1rem;
}

.problem-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 2px;
  background-color: var(--accent);
}

.problem-close {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* --- Method Section --- */
.method-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.method-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

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

.method-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--accent);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.method-card h3 {
  margin-bottom: 0.75rem;
}

.method-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .method-cards {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .method-cards { grid-template-columns: 1fr; }
}

/* --- Inside Section --- */
.inside {
  background-color: var(--background-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.inside-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.inside-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: box-shadow var(--transition);
}

.inside-card:hover {
  box-shadow: var(--shadow-md);
}

.inside-card-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--border);
  margin-bottom: 0.5rem;
}

.inside-card h3 {
  margin-bottom: 0.75rem;
}

.inside-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

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

/* --- Preview Section --- */
.preview-gallery {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  margin-top: 2.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.preview-gallery::-webkit-scrollbar {
  height: 6px;
}

.preview-gallery::-webkit-scrollbar-track {
  background: var(--background-secondary);
  border-radius: 3px;
}

.preview-gallery::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

.preview-item {
  flex: 0 0 280px;
  scroll-snap-align: start;
}

.preview-item img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.preview-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
  font-weight: 500;
}

.preview-note {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 1.5rem;
  font-style: italic;
}

/* --- Timeline Section --- */
.timeline {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.timeline-week {
  position: relative;
  padding: 2rem 1.5rem;
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.week-number {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.timeline-week h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.timeline-week p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.timeline-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

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

/* --- Comparison Section --- */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.comparison-col {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.comparison-col.before {
  background: var(--background-secondary);
  border: 1px solid var(--border);
}

.comparison-col.after {
  background: var(--surface);
  border: 1px solid var(--soft-green);
}

.comparison-col h3 {
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
}

.comparison-col.after h3 {
  color: var(--soft-green);
}

.comparison-col li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.comparison-col.before li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-muted);
}

.comparison-col.after li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--soft-green);
  border-bottom: 2px solid var(--soft-green);
  transform: rotate(-45deg);
}

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

/* --- Who For Section --- */
.who-for {
  background-color: var(--background-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.who-for-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

.who-for-yes li,
.who-for-no li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.who-for-yes li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--soft-green);
  border-bottom: 2px solid var(--soft-green);
  transform: rotate(-45deg);
}

.who-for-no li::before {
  content: '×';
  position: absolute;
  left: 2px;
  top: -1px;
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

.who-for-no h3 {
  color: var(--text-muted);
}

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

/* --- Creator Section --- */
.creator-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.creator-image img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.creator-text h2 {
  margin-bottom: 1rem;
}

.creator-text p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.creator-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.25rem;
  font-weight: 600;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .creator-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .creator-image { order: -1; }
  .creator-image img {
    max-width: 220px;
    margin: 0 auto;
  }
}

/* --- Social Proof Section --- */
.social-proof {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.rating-score {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.rating-details {
  text-align: left;
}

.rating-stars {
  color: #c47d2b;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.15rem;
}

.rating-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--background);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}

.review-stars {
  color: #c47d2b;
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 1rem;
  font-style: italic;
}

.review-author {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

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

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

/* --- Offer Section --- */
.offer {
  background-color: var(--background);
}

.offer-card {
  max-width: 600px;
  margin: 2.5rem auto 0;
  background-color: var(--surface);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
}

.offer-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.offer-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-style: italic;
}

.offer-list {
  text-align: left;
  max-width: 360px;
  margin: 0 auto 2rem;
}

.offer-list li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}

.offer-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 10px;
  height: 6px;
  border-left: 2px solid var(--soft-green);
  border-bottom: 2px solid var(--soft-green);
  transform: rotate(-45deg);
}

.offer-pricing {
  margin-bottom: 1.5rem;
}

.offer-pricing .price-original {
  font-size: 1.3rem;
  display: block;
  margin-bottom: 0.25rem;
}

.offer-pricing .price-current {
  font-size: 2.8rem;
}

.offer-pricing .price-label {
  display: inline-block;
  margin-top: 0.5rem;
}

.offer-checkout-info {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* --- FAQ Section --- */
.faq {
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.faq-list {
  max-width: 720px;
  margin: 2.5rem auto 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  gap: 1rem;
}

.faq-question:hover {
  color: var(--accent);
}

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--text-muted);
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 0 1.25rem;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Final CTA --- */
.final-cta {
  text-align: center;
  background-color: var(--background-secondary);
  border-top: 1px solid var(--border);
}

.final-cta h2 {
  margin-bottom: 0.75rem;
}

.final-cta .section-subtitle {
  margin: 0 auto 2rem;
}

.final-cta .hero-delivery {
  margin-top: 1rem;
}

/* --- Footer --- */
.site-footer {
  background-color: var(--text);
  color: var(--background-secondary);
  padding: 3rem 1.5rem 1.5rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}

.footer-brand .logo {
  color: var(--background);
  font-size: 1.2rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(247, 240, 227, 0.6);
  margin-top: 0.5rem;
  max-width: 300px;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: rgba(247, 240, 227, 0.7);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--background);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 240, 227, 0.15);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(247, 240, 227, 0.5);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-links { flex-direction: column; gap: 0.75rem; align-items: center; }
}

/* --- Mobile Sticky Purchase Bar --- */
.mobile-purchase-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--surface);
  border-top: 1px solid var(--border);
  padding: 0.75rem 1rem;
  z-index: 90;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.1);
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.mobile-purchase-bar.visible {
  display: flex;
}

.mobile-bar-info h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.1rem;
}

.mobile-bar-info .price-current {
  font-size: 1.1rem;
}

.mobile-bar-close {
  position: absolute;
  top: -12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 769px) {
  .mobile-purchase-bar { display: none !important; }
}

/* --- Modal (optional, disabled by default) --- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open {
  display: flex;
}

.modal-content {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 460px;
  width: 100%;
  text-align: center;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  background: var(--background);
  cursor: pointer;
}

.modal-close:hover {
  color: var(--text);
}

.modal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.modal-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* --- Cookie Consent (only when analytics enabled) --- */
.cookie-consent {
  display: none;
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  max-width: 420px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  z-index: 150;
}

.cookie-consent.visible {
  display: block;
}

.cookie-consent p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.cookie-consent-actions {
  display: flex;
  gap: 0.75rem;
}

.cookie-consent .btn {
  font-size: 0.8rem;
  padding: 0.5rem 1.2rem;
}

/* --- Legal Pages --- */
.legal-page {
  padding: 4rem 1.5rem;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 0.5rem;
}

.legal-content .legal-updated {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

.legal-content p {
  color: var(--text-muted);
  line-height: 1.75;
}

.legal-content ul {
  margin: 0.75rem 0 0.75rem 1.25rem;
  list-style: disc;
}

.legal-content ul li {
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

/* --- Contact Page --- */
.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.contact-form {
  text-align: left;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  outline: none;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

/* Honeypot */
.form-hp { display: none !important; }

/* --- Success Page --- */
.success-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.success-content h1 {
  margin-bottom: 1rem;
}

.success-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin: 0 auto;
}

.success-content .btn {
  margin-top: 2rem;
}

/* --- 404 Page --- */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}

.error-content h1 {
  font-size: 5rem;
  color: var(--border);
  margin-bottom: 0.5rem;
}

.error-content h2 {
  margin-bottom: 1rem;
}

.error-content p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

.text-center { text-align: center; }
