* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --clr-bg: #F8F6F1;
  --clr-bg-alt: #EFEDE6;
  --clr-surface: #FFFFFF;
  --clr-text: #2E2B26;
  --clr-text-muted: #6D675E;
  --clr-primary: #7B9E87;
  --clr-primary-hover: #6A8B74;
  --clr-secondary: #C8AD86;
  --clr-secondary-hover: #B89B74;
  --clr-accent: #94B1BD;
  --clr-accent-hover: #7FA0AE;
  --clr-border: #DBD7CF;
  --clr-error: #C47070;
  --clr-overlay: rgba(46, 43, 38, 0.55);
  --clr-glass: rgba(248, 246, 241, 0.88);
  --ff-heading: 'Sora', sans-serif;
  --ff-body: 'DM Sans', sans-serif;
  --fs-2xs: 0.625rem;
  --fs-xs: 0.6875rem;
  --fs-sm: 0.8125rem;
  --fs-base: 0.875rem;
  --fs-md: 1rem;
  --fs-lg: 1.125rem;
  --fs-xl: 1.375rem;
  --fs-2xl: 1.75rem;
  --fs-3xl: 2.25rem;
  --fs-4xl: 2.75rem;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --lh-tight: 1.2;
  --lh-snug: 1.35;
  --lh-normal: 1.6;
  --lh-relaxed: 1.75;
  --space-2xs: 0.125rem;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --radius-xs: 0.1875rem;
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 50%;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.10);
  --shadow-xl: 0 16px 40px rgba(0,0,0,0.12);
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  --max-width: 68rem;
  --header-h: 5.5rem;
}

html {
  scroll-behavior: smooth;
  font-size: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-regular);
  line-height: var(--lh-normal);
  color: var(--clr-text);
  background: var(--clr-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--clr-primary);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--clr-primary-hover);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-heading);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  color: var(--clr-text);
}

h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }
h5 { font-size: var(--fs-md); }
h6 { font-size: var(--fs-base); }

p {
  margin-bottom: var(--space-sm);
}

.content-wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: var(--space-md) 0;
  transition: transform var(--transition-base), background var(--transition-base), box-shadow var(--transition-base);
  background: transparent;
}

.site-header.scrolled {
  background: var(--clr-glass);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

.site-header.hidden-up {
  transform: translateY(-100%);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
}

.brand-logo {
  font-family: var(--ff-heading);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  color: var(--clr-text);
  letter-spacing: -0.02em;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.brand-logo:hover {
  color: var(--clr-primary);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-link {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  color: var(--clr-text-muted);
  text-decoration: none;
  padding: var(--space-2xs) 0;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--clr-primary);
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.burger-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-xs);
  color: var(--clr-text);
  font-size: var(--fs-lg);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--clr-overlay);
  z-index: 999;
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: 75%;
  max-width: 18rem;
  height: 100%;
  background: var(--clr-surface);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform var(--transition-base);
  padding: var(--space-2xl) var(--space-lg);
  display: none;
  flex-direction: column;
  gap: var(--space-md);
}

.mobile-nav-panel.open {
  transform: translateX(0);
}

.mobile-nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  cursor: pointer;
  font-size: var(--fs-lg);
  color: var(--clr-text);
  padding: var(--space-xs);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.mobile-nav-links a {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--clr-border);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.mobile-nav-links a:hover {
  color: var(--clr-primary);
}

.hero-section {
  padding: calc(var(--header-h) + var(--space-2xl)) 0 var(--space-3xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Split hero variant: text left, image right */
.hero-section.hero-split {
  padding: calc(var(--header-h) + var(--space-3xl)) 0 var(--space-4xl);
  text-align: left;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(123, 158, 135, 0.06) 0%, rgba(200, 173, 134, 0.04) 50%, rgba(148, 177, 189, 0.05) 100%);
  pointer-events: none;
}

.hero-split-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 56rem) {
  .hero-split-inner {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--space-3xl);
  }
}

.hero-split-content {
  max-width: 32rem;
}

.hero-split .hero-subtitle {
  margin-left: 0;
  margin-right: 0;
}

.hero-split .hero-actions {
  justify-content: flex-start;
}

.hero-split-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-split .hero-image-wrap {
  margin: 0;
  max-width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-compact {
  padding: calc(var(--header-h) + var(--space-xl)) 0 var(--space-2xl);
}

.hero-badge {
  display: inline-block;
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-primary);
  background: rgba(123, 158, 135, 0.1);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-2xl);
  margin-bottom: var(--space-md);
}

.hero-section h1 {
  margin-bottom: var(--space-md);
}

.hero-split h1 {
  font-size: clamp(var(--fs-2xl), 4vw, var(--fs-4xl));
}

.hero-subtitle {
  font-size: var(--fs-base);
  color: var(--clr-text-muted);
  max-width: 36rem;
  margin: 0 auto var(--space-xl);
  line-height: var(--lh-relaxed);
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-image-wrap {
  margin-top: var(--space-xl);
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
}

.page-section {
  padding: var(--space-3xl) 0;
}

.page-section.alt-bg {
  background: var(--clr-bg-alt);
}

.section-label {
  font-size: var(--fs-2xs);
  font-weight: var(--fw-semibold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--clr-primary);
  margin-bottom: var(--space-sm);
}

.section-title {
  margin-bottom: var(--space-md);
}

.section-desc {
  color: var(--clr-text-muted);
  max-width: 40rem;
  line-height: var(--lh-relaxed);
  font-size: var(--fs-sm);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--transition-fast);
  line-height: 1.4;
}

.btn-primary {
  background: var(--clr-primary);
  color: var(--clr-surface);
  border-color: var(--clr-primary);
}

.btn-primary:hover {
  background: var(--clr-primary-hover);
  border-color: var(--clr-primary-hover);
  color: var(--clr-surface);
}

.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}

.btn-outline:hover {
  background: var(--clr-primary);
  color: var(--clr-surface);
}

.btn-secondary {
  background: var(--clr-secondary);
  color: var(--clr-surface);
  border-color: var(--clr-secondary);
}

.btn-secondary:hover {
  background: var(--clr-secondary-hover);
  border-color: var(--clr-secondary-hover);
  color: var(--clr-surface);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: var(--space-lg);
}

.card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(123, 158, 135, 0.1);
  border-radius: var(--radius-md);
  color: var(--clr-primary);
  font-size: var(--fs-md);
  margin-bottom: var(--space-md);
}

.card h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
}

.card p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  margin-bottom: 0;
}

.product-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.product-icon {
  font-size: var(--fs-3xl);
  color: var(--clr-primary);
  margin-bottom: var(--space-md);
}

.product-card h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
}

.product-card .product-desc {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
  line-height: var(--lh-relaxed);
}

.product-price {
  font-family: var(--ff-heading);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  margin-bottom: var(--space-md);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: var(--space-lg);
}

.testimonial-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xs);
  border-left: 3px solid var(--clr-primary);
}

.testimonial-text {
  font-size: var(--fs-sm);
  font-style: italic;
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
  line-height: var(--lh-relaxed);
}

.testimonial-author {
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-text);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: start;
}

.contact-form-wrap {
  max-width: 100%;
}

.form-field {
  margin-bottom: var(--space-md);
}

.form-field label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-xs);
  color: var(--clr-text);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  color: var(--clr-text);
  background: var(--clr-surface);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(123, 158, 135, 0.15);
}

.form-field textarea {
  resize: vertical;
  min-height: 6rem;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.form-check input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--clr-primary);
  flex-shrink: 0;
}

.form-check label {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  line-height: var(--lh-normal);
}

.form-error {
  font-size: var(--fs-xs);
  color: var(--clr-error);
  margin-top: var(--space-xs);
  display: none;
}

.form-error.visible {
  display: block;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--clr-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xs);
}

.contact-info-item i {
  color: var(--clr-primary);
  font-size: var(--fs-md);
  margin-top: 0.1rem;
  flex-shrink: 0;
}

.contact-info-item span,
.contact-info-item a {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-wrap iframe {
  width: 100%;
  height: 16rem;
  border: 0;
}

.faq-list {
  max-width: 40rem;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--clr-border);
  padding: var(--space-md) 0;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  font-weight: var(--fw-medium);
  color: var(--clr-text);
  padding: var(--space-xs) 0;
  gap: var(--space-sm);
}

.faq-question i {
  font-size: var(--fs-xs);
  transition: transform var(--transition-fast);
  color: var(--clr-primary);
  flex-shrink: 0;
}

.faq-item.open .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-item.open .faq-answer {
  max-height: 20rem;
}

.faq-answer p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
  padding-top: var(--space-sm);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: var(--space-md);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.feature-item i {
  color: var(--clr-primary);
  font-size: var(--fs-sm);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.feature-item span {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: var(--lh-relaxed);
}

.site-footer {
  background: var(--clr-bg-alt);
  padding: var(--space-lg) 0;
  border-top: 1px solid var(--clr-border);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.footer-copy {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-links a {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--clr-primary);
}

.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: var(--clr-surface);
  box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
  padding: var(--space-md) var(--space-lg);
  z-index: 2000;
  transform: translateY(100%);
  transition: transform var(--transition-base);
}

.cookie-bar.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.cookie-text {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  flex: 1;
  min-width: 12rem;
}

.cookie-text a {
  color: var(--clr-primary);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: var(--space-sm);
}

.cookie-accept,
.cookie-decline {
  font-family: var(--ff-body);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  transition: all var(--transition-fast);
}

.cookie-accept {
  background: var(--clr-primary);
  color: var(--clr-surface);
}

.cookie-accept:hover {
  background: var(--clr-primary-hover);
}

.cookie-decline {
  background: transparent;
  color: var(--clr-text-muted);
  border-color: var(--clr-border);
}

.cookie-decline:hover {
  border-color: var(--clr-text-muted);
}

.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  gap: var(--space-md);
}

.value-card {
  text-align: center;
  padding: var(--space-lg);
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.value-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.value-card i {
  font-size: var(--fs-xl);
  color: var(--clr-primary);
  margin-bottom: var(--space-sm);
}

.value-card h4 {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-xs);
}

.value-card p {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-bottom: 0;
}

.season-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: var(--space-md);
}

.season-card {
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.season-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.season-card i {
  font-size: var(--fs-2xl);
  color: var(--clr-secondary);
  margin-bottom: var(--space-sm);
}

.season-card h4 {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-xs);
}

.season-card p {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-bottom: 0;
}

.checklist {
  max-width: 32rem;
  margin: 0 auto;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--clr-border);
}

.checklist-item i {
  color: var(--clr-primary);
  margin-top: 0.15rem;
  font-size: var(--fs-sm);
  flex-shrink: 0;
}

.checklist-item span {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  gap: var(--space-md);
}

.ingredient-item {
  text-align: center;
  padding: var(--space-md);
}

.ingredient-item i {
  font-size: var(--fs-xl);
  color: var(--clr-secondary);
  margin-bottom: var(--space-sm);
}

.ingredient-item h4 {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-xs);
}

.ingredient-item p {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-bottom: 0;
}

.cta-section {
  text-align: center;
  padding: var(--space-3xl) 0;
  background: linear-gradient(135deg, rgba(123, 158, 135, 0.08), rgba(200, 173, 134, 0.08));
}

.cta-section h2 {
  margin-bottom: var(--space-md);
}

.cta-section p {
  color: var(--clr-text-muted);
  max-width: 28rem;
  margin: 0 auto var(--space-xl);
  font-size: var(--fs-sm);
}

.thankyou-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
}

.thankyou-icon {
  font-size: var(--fs-4xl);
  color: var(--clr-primary);
  margin-bottom: var(--space-lg);
}

.thankyou-wrap h1 {
  margin-bottom: var(--space-md);
}

.thankyou-wrap p {
  color: var(--clr-text-muted);
  max-width: 28rem;
  margin-bottom: var(--space-xl);
  font-size: var(--fs-sm);
}

.error-wrap {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
}

.error-code {
  font-family: var(--ff-heading);
  font-size: 6rem;
  font-weight: var(--fw-bold);
  color: var(--clr-border);
  line-height: 1;
  margin-bottom: var(--space-md);
}

.error-wrap h1 {
  margin-bottom: var(--space-md);
}

.error-wrap p {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-xl);
  font-size: var(--fs-sm);
}

.legal-content {
  max-width: 44rem;
  margin: 0 auto;
  padding: calc(var(--header-h) + var(--space-2xl)) var(--space-lg) var(--space-3xl);
}

.legal-content h1 {
  margin-bottom: var(--space-lg);
}

.legal-content h2 {
  font-size: var(--fs-lg);
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.legal-content p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
  line-height: var(--lh-relaxed);
}

.legal-content ul {
  padding-left: var(--space-lg);
  margin-bottom: var(--space-md);
}

.legal-content ul li {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-xs);
  list-style: disc;
  line-height: var(--lh-relaxed);
}

.legal-date {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-bottom: var(--space-xl);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-themed-box {
  background: linear-gradient(135deg, rgba(123, 158, 135, 0.08), rgba(148, 177, 189, 0.08));
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
}

.contact-themed-box i {
  font-size: var(--fs-2xl);
  color: var(--clr-primary);
  margin-bottom: var(--space-md);
}

.contact-themed-box h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--space-sm);
}

.contact-themed-box p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  margin-bottom: 0;
}

.usage-steps {
  counter-reset: step-counter;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
  gap: var(--space-md);
}

.usage-step {
  counter-increment: step-counter;
  background: var(--clr-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-xs);
  position: relative;
}

.step-num {
  font-family: var(--ff-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--clr-primary);
  opacity: 0.3;
  margin-bottom: var(--space-sm);
}

.usage-step h4 {
  font-size: var(--fs-sm);
  margin-bottom: var(--space-xs);
}

.usage-step p {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-bottom: 0;
}

.text-center { text-align: center; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }

@media (max-width: 64rem) {
  h1 { font-size: var(--fs-2xl); }
  h2 { font-size: var(--fs-xl); }
  .split-layout {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 48rem) {
  .main-nav {
    display: none;
  }
  .burger-toggle {
    display: block;
  }
  .mobile-nav-panel {
    display: flex;
  }
  .mobile-nav-overlay {
    display: block;
  }
  .header-inner {
    flex-direction: row;
    justify-content: space-between;
  }
  .hero-section {
    padding-top: calc(var(--header-h) + var(--space-lg));
  }
  .hero-compact {
    padding-top: calc(var(--header-h) + var(--space-md));
  }
  .card-grid {
    grid-template-columns: 1fr;
  }
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
  .page-section {
    padding: var(--space-2xl) 0;
  }
  .cta-section {
    padding: var(--space-2xl) 0;
  }
}

@media (max-width: 20rem) {
  :root {
    --fs-3xl: 1.5rem;
    --fs-2xl: 1.25rem;
    --fs-xl: 1.125rem;
  }
  .content-wrap {
    padding: 0 var(--space-md);
  }
  .header-inner {
    padding: 0 var(--space-md);
  }
  .hero-section {
    padding-top: calc(var(--header-h) + var(--space-md));
  }
  .cookie-inner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-actions {
    justify-content: center;
  }
  .error-code {
    font-size: 3.5rem;
  }
}