:root {
  --color-primary: #2c6e49;
  --color-primary-light: #3d8a5c;
  --color-secondary: #f4f1de;
  --color-amber: #d4a84b;
  --color-amber-glow: rgba(212, 168, 75, 0.4);
  --color-frost: rgba(255, 255, 255, 0.12);
  --color-frost-border: rgba(255, 255, 255, 0.25);
  --color-bg-dark: #1a2332;
  --color-bg-mid: #243447;
  --color-text: #e8e6e1;
  --color-text-muted: #a8b2bd;
  --font-primary: 'Poppins', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.15);
  --shadow-glow: 0 0 30px var(--color-amber-glow);
  --transition-fast: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

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

body {
  font-family: var(--font-primary);
  background: linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg-mid) 100%);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

a {
  color: var(--color-amber);
  text-decoration: none;
  transition: color var(--transition-fast), box-shadow var(--transition-fast);
}

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

ul,
ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.page-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: var(--space-md) var(--space-md);
  background: rgba(26, 35, 50, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-frost-border);
  text-align: center;
  transform: translateY(0);
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

.page-header.hidden-on-scroll {
  transform: translateY(-100%);
  opacity: 0.9;
}

.page-header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.brand-link {
  color: inherit;
  text-decoration: none;
}

.brand-link:hover {
  color: var(--color-secondary);
}

.brand-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 600;
  color: var(--color-secondary);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.nav-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--color-frost);
  border: 1px solid var(--color-frost-border);
  border-radius: var(--radius-md);
  color: var(--color-secondary);
  cursor: pointer;
  transition: background var(--transition-fast), box-shadow var(--transition-fast);
  z-index: 101;
  position: relative;
}

.nav-toggle:hover {
  background: var(--color-frost-border);
  box-shadow: var(--shadow-glow);
}

.nav-toggle-icon {
  width: 24px;
  height: 24px;
}

.nav-menu {
  display: none;
  width: 100%;
  flex-direction: column;
  gap: 0;
  padding: var(--space-sm) 0;
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  right: 0;
  z-index: 999;
  background: #0d1219;
  border-bottom: 1px solid var(--color-frost-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7);
  animation: navSlideDown 0.25s ease;
}

@keyframes navSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.nav-menu.is-open {
  display: flex;
}

.nav-menu a {
  display: block;
  padding: 0.85rem var(--space-lg);
  color: var(--color-text);
  font-size: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--transition-fast), color var(--transition-fast);
}

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

.nav-menu a:hover {
  background: rgba(212, 168, 75, 0.1);
  color: var(--color-amber);
}

.nav-menu a.nav-active {
  color: var(--color-amber);
  font-weight: 600;
  background: rgba(212, 168, 75, 0.08);
}

@media (min-width: 1024px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    display: flex;
    flex-direction: row;
    gap: var(--space-xs);
    width: auto;
    padding: 0;
    position: static;
    background: transparent;
    backdrop-filter: none;
    border-bottom: none;
    box-shadow: none;
    animation: none;
  }

  .nav-menu a {
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    border-bottom: none;
    color: var(--color-text);
    font-size: 0.9rem;
  }

  .nav-menu a:hover {
    background: var(--color-frost);
    color: var(--color-amber);
    padding-left: var(--space-md);
  }

  .nav-menu a.nav-active {
    color: var(--color-amber);
    background: var(--color-frost);
  }
}

main {
  flex: 1;
  padding: var(--space-lg) 0;
}

.hero {
  position: relative;
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26, 35, 50, 0.7) 0%, rgba(36, 52, 71, 0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
}

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

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-secondary);
  margin-bottom: var(--space-lg);
  text-align: center;
}

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

.section-cta-wrap {
  margin: 0;
  margin-top: var(--space-md);
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 600px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.frost-card {
  background: var(--color-frost);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-frost-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.frost-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft), 0 0 0 1px var(--color-amber-glow);
  border-color: var(--color-amber);
}

.frost-card img {
  width: 100%;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
}

.frost-card-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.frost-card-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-sm) var(--space-lg);
  font-family: var(--font-primary);
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: background var(--transition-fast), box-shadow var(--transition-fast), color var(--transition-fast);
}

.btn-primary {
  background: var(--color-amber);
  color: var(--color-bg-dark);
}

.btn-primary:hover {
  background: var(--color-secondary);
  box-shadow: var(--shadow-glow);
  color: var(--color-bg-dark);
}

.btn-outline {
  background: transparent;
  color: var(--color-amber);
  border: 1px solid var(--color-amber);
}

.btn-outline:hover {
  background: var(--color-amber-glow);
  box-shadow: var(--shadow-glow);
}

.steps-story {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  max-width: 600px;
  margin: 0 auto;
}

.step-item {
  display: flex;
  gap: var(--space-lg);
  align-items: flex-start;
  opacity: 0.6;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.step-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.step-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-frost);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-frost-border);
  transition: box-shadow var(--transition-fast);
}

.step-item:hover .step-icon-wrap {
  box-shadow: 0 0 20px var(--color-amber-glow);
}

.step-content h3 {
  font-size: 1.1rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-xs);
}

.step-content p {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.step-connector {
  width: 2px;
  height: var(--space-lg);
  background: linear-gradient(180deg, var(--color-frost-border), transparent);
  margin-left: 23px;
  animation: lineFlow 2s ease infinite;
}

@keyframes lineFlow {

  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.gallery-item-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-md);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: var(--color-secondary);
  font-size: 0.9rem;
  transform: translateY(100%);
  transition: transform var(--transition-fast);
}

.gallery-item:hover .gallery-item-caption {
  transform: translateY(0);
}

.gallery-light-streak {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  transition: left 0.8s ease;
}

.gallery-item:hover .gallery-light-streak {
  left: 100%;
}

.filters-section-spacer {
  min-height: 4rem;
  width: 100%;
}

.section-filters {
  margin-top: 0;
  padding-top: 2rem;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
  justify-content: center;
}

.filter-btn {
  padding: var(--space-sm) var(--space-md);
  background: var(--color-frost);
  border: 1px solid var(--color-frost-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  cursor: pointer;
  font-size: 0.9rem;
  transition: background var(--transition-fast), border-color var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.is-active {
  background: var(--color-amber-glow);
  border-color: var(--color-amber);
  color: var(--color-secondary);
}

.tutorial-step {
  padding: var(--space-lg) 0;
  border-bottom: 1px solid var(--color-frost-border);
}

.tutorial-step:last-child {
  border-bottom: none;
}

.tutorial-step h3 {
  font-size: 1.2rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.slider-wrap {
  margin: var(--space-md) 0;
}

.slider-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
}

.slider-input {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  appearance: none;
  background: var(--color-frost);
  border-radius: var(--radius-sm);
  outline: none;
}

.slider-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: var(--color-amber);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-glow);
}

.tip-popup {
  padding: var(--space-md);
  background: var(--color-frost);
  border-left: 4px solid var(--color-amber);
  border-radius: var(--radius-md);
  margin-top: var(--space-md);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  animation: tipFade 0.4s ease;
}

@keyframes tipFade {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.planner-preview {
  min-height: 200px;
  background: var(--color-frost);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-frost-border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.planner-glow {
  position: absolute;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--color-amber-glow) 0%, transparent 70%);
  pointer-events: none;
  transition: transform var(--transition-slow);
}

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  background: var(--color-frost);
  border: 1px solid var(--color-frost-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  transition: border-color var(--transition-fast);
}

.form-group select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--font-primary);
  font-size: 1rem;
  background: var(--color-frost);
  border: 1px solid var(--color-frost-border);
  border-radius: var(--radius-md);
  color: var(--color-text);
  cursor: pointer;
}

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

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

.form-checkbox-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: var(--space-sm);
}

.form-checkbox-wrap input {
  width: auto;
  margin-top: 0.25rem;
}

.form-checkbox-wrap label {
  margin-bottom: 0;
  font-size: 0.9rem;
  flex: 1;
  min-width: 0;
}

.form-checkbox-wrap .form-error {
  width: 100%;
}

.form-error {
  font-size: 0.85rem;
  color: #e07a7a;
  margin-top: var(--space-xs);
  display: none;
}

.form-group.has-error .form-error {
  display: block;
}

.form-group.has-error input,
.form-group.has-error textarea {
  border-color: #e07a7a;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-md);
  background: var(--color-frost);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-frost-border);
}

.contact-info-item span {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.contact-info-item a {
  color: var(--color-amber);
}

.map-wrap {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-frost-border);
  margin-top: var(--space-lg);
}

.map-wrap iframe,
.map-iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

.testimonial-cite {
  display: block;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-top: var(--space-sm);
  font-style: normal;
}

@media (max-width: 640px) {
  .map-wrap iframe {
    height: 300px;
  }
}

.product-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 600px) {
  .product-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.product-card {
  background: var(--color-frost);
  border: 1px solid var(--color-frost-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft), 0 0 0 1px var(--color-amber-glow);
}

.product-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.product-card-body {
  padding: var(--space-md);
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-sm);
}

.product-card-desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.product-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-amber);
}

.page-footer {
  margin-top: auto;
  padding: var(--space-lg) var(--space-md);
  background: var(--color-bg-mid);
  border-top: 1px solid var(--color-frost-border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-business {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-sm);
  text-align: center;
}

.footer-business a {
  color: var(--color-amber);
}

.footer-org {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-mid);
  border-top: 1px solid var(--color-frost-border);
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  z-index: 9998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--color-text);
  max-width: 600px;
}

.cookie-banner a {
  color: var(--color-amber);
  text-decoration: underline;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm) var(--space-lg);
  margin-bottom: var(--space-md);
}

.footer-menu a {
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.footer-menu a:hover {
  color: var(--color-amber);
}

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

.footer-link-btn {
  background: none;
  border: none;
  color: var(--color-text-muted);
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  text-decoration: underline;
  padding: 0;
}

.footer-link-btn:hover {
  color: var(--color-amber);
}

.privacy-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9998;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

.privacy-overlay.is-open {
  display: flex;
}

.privacy-popup {
  background: var(--color-bg-mid);
  border: 1px solid var(--color-frost-border);
  border-radius: var(--radius-lg);
  max-width: 560px;
  max-height: 80vh;
  overflow-y: auto;
  padding: var(--space-lg);
  box-shadow: var(--shadow-soft);
}

.privacy-popup h2 {
  font-size: 1.25rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.privacy-popup p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-md);
}

.privacy-close {
  margin-top: var(--space-md);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

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

.modal-content {
  background: var(--color-bg-mid);
  border: 1px solid var(--color-frost-border);
  border-radius: var(--radius-lg);
  max-width: 500px;
  width: 100%;
  padding: var(--space-lg);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-content .frost-card-title {
  margin-top: 0;
}

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

.modal-close:hover {
  background: var(--color-frost-border);
}

.snowflake {
  position: absolute;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  pointer-events: none;
  animation: snowFloat 8s linear infinite;
  top: -20px;
  left: 20%;
}

.modal-overlay .snowflake:nth-child(2) {
  left: 50%;
  animation-delay: -2s;
}

.modal-overlay .snowflake:nth-child(3) {
  left: 80%;
  animation-delay: -4s;
}

@keyframes snowFloat {
  0% {
    transform: translateY(-10px) rotate(0deg);
    opacity: 0.6;
  }

  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0.2;
  }
}

.slide-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.slide-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.parallax-layer {
  transition: transform 0.1s linear;
}

.thankyou-message {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.thankyou-message h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.thankyou-message p {
  color: var(--color-text-muted);
  max-width: 500px;
  margin: 0 auto var(--space-lg);
}

.error-page {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.error-page h1 {
  font-size: clamp(2rem, 8vw, 4rem);
  color: var(--color-amber);
  margin-bottom: var(--space-md);
}

.error-page p {
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.legal-page main {
  max-width: 800px;
  margin: 0 auto;
}

.legal-page .section-title {
  text-align: left;
  margin-bottom: var(--space-md);
}

.legal-page p,
.legal-page h3 {
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.legal-page h3 {
  color: var(--color-secondary);
  font-size: 1.1rem;
  margin-top: var(--space-lg);
}

.banner-block {
  position: relative;
  width: 100%;
  min-height: 220px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}

.banner-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.banner-block-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 35, 50, 0.8) 100%);
}

.text-content {
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

.text-content p {
  margin-bottom: var(--space-md);
}

.section-intro .text-content {
  margin-bottom: var(--space-md);
}

.two-col-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .two-col-block {
    grid-template-columns: 1fr 1fr;
  }
}

.two-col-text .btn {
  margin-top: var(--space-md);
}

.discover-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 600px) {
  .discover-links {
    grid-template-columns: repeat(3, 1fr);
  }
}

.discover-card {
  display: block;
  text-align: center;
}

.discover-card:hover {
  color: inherit;
}

.discover-icon {
  font-size: 2rem;
  color: var(--color-amber);
  margin-bottom: var(--space-sm);
  display: block;
}

.icon-snowflake {
  display: inline-block;
  transition: transform 0.5s ease;
}

.icon-snowflake:hover {
  transform: rotate(180deg);
}

.planner-cta {
  margin-top: var(--space-lg);
}

.planner-images {
  margin-top: var(--space-md);
}

.back-to-top {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-frost);
  border: 1px solid var(--color-frost-border);
  border-radius: 50%;
  color: var(--color-secondary);
  cursor: pointer;
  z-index: 100;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.back-to-top:hover {
  background: var(--color-amber);
  color: var(--color-bg-dark);
  transform: translateY(-2px);
}

@media (max-width: 320px) {
  .container {
    padding: 0 var(--space-sm);
  }

  .page-header-inner {
    flex-direction: column;
  }

  .hero {
    min-height: 30vh;
    padding: var(--space-lg) var(--space-sm);
  }

  .frost-card {
    padding: var(--space-md);
  }

  .btn {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.9rem;
  }
}