:root {
  --c-bg: #f7f5f0;
  --c-surface: #ffffff;
  --c-dark: #1a1614;
  --c-dark-nav: #161210;
  --c-text: #2d2520;
  --c-text-muted: #6b5e56;
  --c-primary: #d4730a;
  --c-primary-dark: #b35e06;
  --c-primary-light: #f5a84a;
  --c-secondary: #8b5cf6;
  --c-secondary-dark: #7c3aed;
  --c-accent: #e8804a;
  --c-amber: #f59e0b;
  --c-warm: #fdf4e7;
  --c-border: rgba(45, 37, 32, 0.1);

  --mesh-1: radial-gradient(ellipse at 20% 20%, rgba(212, 115, 10, 0.18) 0%, transparent 55%),
            radial-gradient(ellipse at 80% 10%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
            radial-gradient(ellipse at 60% 80%, rgba(232, 128, 74, 0.15) 0%, transparent 55%),
            radial-gradient(ellipse at 10% 70%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
  --mesh-2: radial-gradient(ellipse at 90% 20%, rgba(139, 92, 246, 0.18) 0%, transparent 55%),
            radial-gradient(ellipse at 10% 40%, rgba(212, 115, 10, 0.15) 0%, transparent 50%),
            radial-gradient(ellipse at 70% 90%, rgba(245, 158, 11, 0.12) 0%, transparent 55%);
  --mesh-3: radial-gradient(ellipse at 30% 60%, rgba(232, 128, 74, 0.18) 0%, transparent 55%),
            radial-gradient(ellipse at 80% 30%, rgba(212, 115, 10, 0.14) 0%, transparent 50%),
            radial-gradient(ellipse at 50% 10%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);

  --shadow-sm: 0 1px 3px rgba(26, 22, 20, 0.06), 0 1px 2px rgba(26, 22, 20, 0.04);
  --shadow-md: 0 4px 12px rgba(26, 22, 20, 0.08), 0 2px 6px rgba(26, 22, 20, 0.05);
  --shadow-lg: 0 12px 32px rgba(26, 22, 20, 0.1), 0 4px 12px rgba(26, 22, 20, 0.06);
  --shadow-xl: 0 24px 48px rgba(26, 22, 20, 0.12), 0 8px 24px rgba(26, 22, 20, 0.08);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(0.75rem, 1.5vw, 1rem);
  --space-md: clamp(1rem, 2vw, 1.5rem);
  --space-lg: clamp(1.5rem, 3vw, 2.5rem);
  --space-xl: clamp(2.5rem, 5vw, 4rem);
  --space-2xl: clamp(4rem, 8vw, 7rem);

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

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

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

body {
  font-family: 'Instrument Sans', sans-serif;
  font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
  line-height: 1.65;
  color: var(--c-text);
  background-color: var(--c-bg);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
address { font-style: normal; }

:focus-visible {
  outline: 2.5px solid var(--c-primary);
  outline-offset: 3px;
  border-radius: 4px;
}

.u-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

.u-hidden { display: none !important; }
.u-text-center { text-align: center; }

.c-eyebrow {
  display: inline-block;
  font-size: clamp(0.7rem, 1.2vw, 0.8125rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: 0.75rem;
}

.c-eyebrow--light { color: var(--c-primary-light); }

.c-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  font-weight: 600;
  transition: all var(--transition-base);
  min-height: 48px;
  white-space: nowrap;
}

.c-btn--primary {
  background: var(--c-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(212, 115, 10, 0.3);
}

.c-btn--primary:hover {
  background: var(--c-primary-dark);
  box-shadow: 0 4px 16px rgba(212, 115, 10, 0.4);
  transform: translateY(-1px);
}

.c-btn--ghost {
  background: rgba(255,255,255,0.15);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(8px);
}

.c-btn--ghost:hover {
  background: rgba(255,255,255,0.25);
  border-color: rgba(255,255,255,0.7);
}

.c-btn--outline {
  background: transparent;
  color: var(--c-primary);
  border: 1.5px solid var(--c-primary);
}

.c-btn--outline:hover {
  background: var(--c-primary);
  color: #fff;
}

.c-btn--large {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
}

.c-btn--full { width: 100%; justify-content: center; }

.c-tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  background: var(--c-warm);
  border: 1px solid rgba(212, 115, 10, 0.2);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-primary-dark);
  transition: all var(--transition-base);
}

.c-tag:hover {
  background: var(--c-primary);
  color: #fff;
  border-color: var(--c-primary);
}

.c-link {
  color: var(--c-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition-base), color var(--transition-base);
}

.c-link:hover { color: var(--c-primary-dark); gap: 0.7rem; }



.c-nav {
  background: var(--c-dark-nav);
  position: relative;
  z-index: 100;
}

.c-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.c-nav__logo img { filter: brightness(0) invert(1); }

.c-nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.c-nav__links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.25rem 0;
}

.c-nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--c-primary);
  transition: width var(--transition-base);
}

.c-nav__links a:hover,
.c-nav__links a.is-active {
  color: #fff;
}

.c-nav__links a:hover::after,
.c-nav__links a.is-active::after {
  width: 100%;
}

.c-nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.c-nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition-base);
}



.c-mobile-sheet {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}

.c-mobile-sheet.is-active {
  pointer-events: all;
}

.c-mobile-sheet__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity var(--transition-slow);
}

.c-mobile-sheet.is-active .c-mobile-sheet__overlay {
  opacity: 1;
}

.c-mobile-sheet__panel {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-surface);
  border-radius: 20px 20px 0 0;
  padding: 0.75rem 1.5rem 2rem;
  transform: translateY(100%);
  transition: transform var(--transition-slow) cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.15);
}

.c-mobile-sheet.is-active .c-mobile-sheet__panel {
  transform: translateY(0);
}

.c-mobile-sheet__handle {
  width: 36px;
  height: 4px;
  background: var(--c-border);
  border-radius: 2px;
  margin: 0 auto 1.5rem;
}

.c-mobile-sheet__nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.c-mobile-sheet__nav a {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1rem;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 500;
  color: var(--c-text);
  transition: background var(--transition-fast), color var(--transition-fast);
  min-height: 52px;
}

.c-mobile-sheet__nav a i {
  width: 20px;
  color: var(--c-primary);
}

.c-mobile-sheet__nav a:hover {
  background: var(--c-warm);
  color: var(--c-primary-dark);
}



.s-hero {
  position: relative;
  background: linear-gradient(135deg, #1a0e06 0%, #2d1810 40%, #1e1030 100%);
  overflow: hidden;
  padding: var(--space-2xl) 0;
  min-height: 90vh;
  display: flex;
  align-items: center;
}

.s-hero__mesh {
  position: absolute;
  inset: 0;
  background: var(--mesh-1);
  pointer-events: none;
}

.s-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.s-hero__content { max-width: 560px; }

.s-hero__title {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #fff;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.s-hero__lead {
  font-size: clamp(1rem, 1.8vw, 1.175rem);
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.s-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.s-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  height: clamp(380px, 55vw, 520px);
}

.s-hero__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

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

.s-hero__img:hover img { transform: scale(1.04); }

.s-hero__img--large {
  grid-column: 1;
  grid-row: 1 / 3;
}

.s-hero__img--small {
  grid-column: 2;
  grid-row: 1;
}

.s-hero__img--medium {
  grid-column: 2;
  grid-row: 2;
}



.s-intro { padding: var(--space-2xl) 0; }

.s-intro__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.s-intro__text h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
  letter-spacing: -0.02em;
}

.s-intro__text p {
  color: var(--c-text-muted);
  margin-bottom: var(--space-sm);
}

.s-intro__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: var(--space-sm);
}



.s-layers {
  position: relative;
  background: linear-gradient(160deg, #1e1030 0%, #2d1810 50%, #1a0e06 100%);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.s-layers__mesh {
  position: absolute;
  inset: 0;
  background: var(--mesh-2);
  pointer-events: none;
}

.s-layers__header {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.s-layers__header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-sm);
}

.s-layers__header p {
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.s-layers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.c-layer-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  backdrop-filter: blur(12px);
  transition: all var(--transition-base);
}

.c-layer-card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.c-layer-card--accent {
  background: rgba(212, 115, 10, 0.15);
  border-color: rgba(212, 115, 10, 0.35);
}

.c-layer-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(212, 115, 10, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
  color: var(--c-primary-light);
}

.c-layer-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
}

.c-layer-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9375rem;
  line-height: 1.65;
  margin-bottom: 0.75rem;
}

.c-layer-card p:last-child { margin-bottom: 0; }



.s-process { padding: var(--space-2xl) 0; }

.s-process__header {
  margin-bottom: var(--space-xl);
  max-width: 480px;
}

.s-process__header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.s-process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  position: relative;
}

.c-step {
  position: relative;
}

.c-step__number {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: rgba(212, 115, 10, 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.04em;
}

.c-step__line {
  position: absolute;
  top: 1.5rem;
  right: -1rem;
  width: calc(100% - 2rem);
  height: 1px;
  background: linear-gradient(90deg, var(--c-primary), transparent);
  z-index: 0;
}

.c-step:last-child .c-step__line { display: none; }

.c-step__body {
  position: relative;
  z-index: 1;
}

.c-step__icon {
  font-size: 1.5rem;
  color: var(--c-primary);
  margin-bottom: var(--space-sm);
}

.c-step h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

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



.s-articles {
  position: relative;
  background: linear-gradient(160deg, #2d1810 0%, #1e1030 60%, #1a0e06 100%);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.s-articles__mesh {
  position: absolute;
  inset: 0;
  background: var(--mesh-3);
  pointer-events: none;
}

.s-articles__header {
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.s-articles__header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.s-articles__header p {
  color: rgba(255,255,255,0.65);
  max-width: 520px;
}

.splide { position: relative; z-index: 1; }

.c-article-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  backdrop-filter: blur(8px);
  transition: all var(--transition-base);
}

.c-article-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.c-article-card__img {
  height: 200px;
  overflow: hidden;
}

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

.c-article-card:hover .c-article-card__img img { transform: scale(1.06); }

.c-article-card__body {
  padding: clamp(1rem, 2vw, 1.5rem);
}

.c-article-card__cat {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-primary-light);
  margin-bottom: 0.5rem;
}

.c-article-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.625rem;
  line-height: 1.35;
}

.c-article-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.splide__arrow {
  background: rgba(255,255,255,0.1) !important;
  border: 1px solid rgba(255,255,255,0.2) !important;
  opacity: 1 !important;
  transition: all var(--transition-base) !important;
}

.splide__arrow:hover {
  background: var(--c-primary) !important;
  border-color: var(--c-primary) !important;
}

.splide__arrow svg { fill: #fff !important; }

.splide__pagination__page {
  background: rgba(255,255,255,0.3) !important;
  transition: background var(--transition-base) !important;
}

.splide__pagination__page.is-active {
  background: var(--c-primary) !important;
  transform: scale(1.2) !important;
}



.s-calculator {
  padding: var(--space-2xl) 0;
  background: var(--c-bg);
}

.s-calculator__header {
  margin-bottom: var(--space-xl);
  max-width: 560px;
}

.s-calculator__header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.s-calculator__header p { color: var(--c-text-muted); }

.c-calc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  background: var(--c-surface);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
}

.c-calc__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.c-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
  margin-bottom: var(--space-sm);
}

.c-form-group label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text);
}

.c-form-group input,
.c-form-group select,
.c-form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--c-border);
  border-radius: var(--radius-md);
  font-size: 0.9375rem;
  color: var(--c-text);
  background: var(--c-bg);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 48px;
}

.c-form-group input:focus,
.c-form-group select:focus,
.c-form-group textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(212, 115, 10, 0.15);
}

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

.c-form-group--check { flex-direction: row; align-items: flex-start; gap: 0; }

.c-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.5;
}

.c-checkbox input { position: absolute; opacity: 0; width: 0; height: 0; }

.c-checkbox__box {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--c-border);
  border-radius: 4px;
  background: var(--c-bg);
  transition: all var(--transition-fast);
  position: relative;
  top: 1px;
}

.c-checkbox input:checked + .c-checkbox__box {
  background: var(--c-primary);
  border-color: var(--c-primary);
}

.c-checkbox input:checked + .c-checkbox__box::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

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

.c-calc__result {
  background: linear-gradient(135deg, #1a0e06 0%, #2d1810 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.c-calc__result::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--mesh-1);
  opacity: 0.6;
}

.c-calc__result-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem;
}

.c-calc__result-inner i {
  font-size: 2.5rem;
  color: var(--c-primary-light);
  margin-bottom: 1rem;
  display: block;
}

.c-calc__hint {
  color: rgba(255,255,255,0.6);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.c-calc__output {
  color: #fff;
}

.c-calc__output h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--c-primary-light);
}

.c-calc__layer {
  background: rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
}

.c-calc__layer h4 {
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-primary-light);
  margin-bottom: 0.25rem;
}

.c-calc__layer .c-calc__lm {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.c-calc__layer p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.25rem;
}



.s-comparison {
  position: relative;
  background: linear-gradient(160deg, #1a0e06 0%, #2d1810 50%, #1e1030 100%);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.s-comparison__mesh {
  position: absolute;
  inset: 0;
  background: var(--mesh-3);
  pointer-events: none;
}

.s-comparison__header {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.s-comparison__header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.s-comparison__header p {
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto;
}

.s-comparison__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.c-compare-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  backdrop-filter: blur(8px);
  transition: all var(--transition-base);
  position: relative;
}

.c-compare-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.c-compare-card--featured {
  background: rgba(212, 115, 10, 0.12);
  border-color: rgba(212, 115, 10, 0.4);
}

.c-compare-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.875rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.c-compare-card__icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 115, 10, 0.15);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  color: var(--c-primary-light);
  margin-bottom: var(--space-md);
}

.c-compare-card h3 {
  font-size: 1.1875rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.625rem;
}

.c-compare-card > p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.c-compare-card__list {
  margin-bottom: var(--space-lg);
}

.c-compare-card__list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.c-compare-card__list li i {
  color: var(--c-primary-light);
  font-size: 0.75rem;
  flex-shrink: 0;
}



.s-natural { padding: var(--space-2xl) 0; }

.s-natural__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.s-natural__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}

.s-natural__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.s-natural__content h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.s-natural__content p {
  color: var(--c-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.s-natural__content .c-btn { margin-top: var(--space-sm); }



.s-cta {
  position: relative;
  background: linear-gradient(135deg, #1e1030 0%, #2d1810 100%);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.s-cta__mesh {
  position: absolute;
  inset: 0;
  background: var(--mesh-2);
  pointer-events: none;
}

.s-cta__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 1;
}

.s-cta__text h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}

.s-cta__text p {
  color: rgba(255,255,255,0.65);
  font-size: 1.0625rem;
}

.s-cta__action {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.s-cta__sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
}



.s-about-story { padding: var(--space-2xl) 0; }

.s-about-story__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.s-about-story__content h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.s-about-story__content p {
  color: var(--c-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.s-about-story__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}

.s-about-story__img img { width: 100%; height: 100%; object-fit: cover; }

.s-methodology {
  position: relative;
  background: linear-gradient(135deg, #1a0e06 0%, #2d1810 100%);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.s-methodology__mesh {
  position: absolute;
  inset: 0;
  background: var(--mesh-1);
  pointer-events: none;
}

.s-methodology__header {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.s-methodology__header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.s-methodology__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.c-method-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  backdrop-filter: blur(8px);
  transition: all var(--transition-base);
}

.c-method-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.c-method-item i {
  font-size: 1.75rem;
  color: var(--c-primary-light);
  margin-bottom: var(--space-sm);
  display: block;
}

.c-method-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.c-method-item p {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}

.s-articles-list { padding: var(--space-2xl) 0; }

.s-articles-list__header {
  margin-bottom: var(--space-xl);
}

.s-articles-list__header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.s-articles-list__grid {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.c-article-row {
  display: grid;
  grid-template-columns: 140px 1fr 100px;
  gap: var(--space-md);
  align-items: start;
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--c-border);
  transition: background var(--transition-fast);
}

.c-article-row:first-child { border-top: 1px solid var(--c-border); }

.c-article-row:hover { background: var(--c-warm); border-radius: var(--radius-sm); }

.c-article-row__cat {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-primary);
  padding-top: 0.25rem;
}

.c-article-row__body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
  line-height: 1.35;
}

.c-article-row__body p {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.c-article-row__meta {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  padding-top: 0.25rem;
  text-align: right;
}



.s-workshop-info { padding: var(--space-2xl) 0; }

.s-workshop-info__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.c-workshop-detail {
  padding: clamp(1.25rem, 2vw, 1.75rem);
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
}

.c-workshop-detail:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.c-workshop-detail i {
  font-size: 1.5rem;
  color: var(--c-primary);
  margin-bottom: var(--space-sm);
  display: block;
}

.c-workshop-detail h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.c-workshop-detail p {
  font-size: 0.875rem;
  color: var(--c-text-muted);
  line-height: 1.6;
}

.s-workshop-types {
  position: relative;
  background: linear-gradient(160deg, #2d1810 0%, #1e1030 100%);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.s-workshop-types__mesh {
  position: absolute;
  inset: 0;
  background: var(--mesh-2);
  pointer-events: none;
}

.s-workshop-types__header {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.s-workshop-types__header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.s-workshop-types__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.c-workshop-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  backdrop-filter: blur(8px);
  transition: all var(--transition-base);
}

.c-workshop-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}

.c-workshop-card--featured {
  background: rgba(212, 115, 10, 0.12);
  border-color: rgba(212, 115, 10, 0.4);
}

.c-workshop-card__num {
  width: 44px;
  height: 44px;
  background: rgba(212, 115, 10, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--c-primary-light);
  margin-bottom: var(--space-md);
}

.c-workshop-card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.c-workshop-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: var(--space-md);
}

.c-workshop-card ul {
  margin-bottom: var(--space-lg);
}

.c-workshop-card li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.c-workshop-card li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--c-primary-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.s-booking-form { padding: var(--space-2xl) 0; }

.s-booking-form__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}

.s-booking-form__info h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.s-booking-form__info p {
  color: var(--c-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.c-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  margin-bottom: var(--space-md);
}

.c-info-item i {
  width: 40px;
  height: 40px;
  background: var(--c-warm);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  flex-shrink: 0;
  font-size: 1rem;
}

.c-info-item div {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.c-info-item strong {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-text);
}

.c-info-item span, .c-info-item a {
  font-size: 0.9375rem;
  color: var(--c-text-muted);
  transition: color var(--transition-fast);
}

.c-info-item a:hover { color: var(--c-primary); }

.c-form {
  background: var(--c-surface);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-border);
}



.s-plants-intro { padding: var(--space-2xl) 0; }

.s-plants-intro__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.s-plants-intro__content h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.s-plants-intro__content p {
  color: var(--c-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.s-plants-intro__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-xl);
}

.s-plants-intro__img img { width: 100%; height: 100%; object-fit: cover; }

.s-plants-guide {
  position: relative;
  background: linear-gradient(135deg, #1a0e06 0%, #2d1810 100%);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.s-plants-guide__mesh {
  position: absolute;
  inset: 0;
  background: var(--mesh-1);
  pointer-events: none;
}

.s-plants-guide__header {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
  z-index: 1;
}

.s-plants-guide__header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
}

.s-plants-guide__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  position: relative;
  z-index: 1;
}

.c-plant-topic {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  backdrop-filter: blur(8px);
  transition: all var(--transition-base);
}

.c-plant-topic:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}

.c-plant-topic__num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-primary-light);
  margin-bottom: 0.5rem;
}

.c-plant-topic h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.625rem;
}

.c-plant-topic p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  margin-bottom: 0.625rem;
}

.s-plants-integration { padding: var(--space-2xl) 0; }

.s-plants-integration__inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.s-plants-integration__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}

.s-plants-integration__img img { width: 100%; height: 100%; object-fit: cover; }

.s-plants-integration__content h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.s-plants-integration__content p {
  color: var(--c-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.s-plants-faq { padding: var(--space-2xl) 0; background: var(--c-warm); }

.s-plants-faq__header {
  margin-bottom: var(--space-xl);
}

.s-plants-faq__header h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.s-plants-faq__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.c-faq-item {
  background: var(--c-surface);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2vw, 1.75rem);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-sm);
}

.c-faq-item h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.625rem;
  color: var(--c-text);
}

.c-faq-item p {
  font-size: 0.9375rem;
  color: var(--c-text-muted);
  line-height: 1.65;
}



.s-consultation { padding: var(--space-2xl) 0; }

.s-consultation__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}

.s-consultation__content h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.s-consultation__content p {
  color: var(--c-text-muted);
  margin-bottom: var(--space-sm);
  line-height: 1.7;
}

.s-consultation__details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: var(--space-md);
  padding: var(--space-md);
  background: var(--c-warm);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 115, 10, 0.15);
}

.c-consult-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--c-text-muted);
}

.c-consult-item i { color: var(--c-primary); width: 16px; }

.s-consultation__img {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-xl);
}

.s-consultation__img img { width: 100%; height: 100%; object-fit: cover; }

.s-contact-split { padding: var(--space-2xl) 0; background: var(--c-warm); }

.s-contact-split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.s-contact-split__map-info {
  margin-bottom: var(--space-md);
}

.s-contact-split__map-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.s-contact-split__map-info p {
  color: var(--c-text-muted);
  margin-bottom: var(--space-sm);
}

.c-info-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--c-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-bottom: 0.5rem;
  transition: color var(--transition-fast);
}

.c-info-link:hover { color: var(--c-primary-dark); }

.s-contact-split__form h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}



.s-thanks {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a0e06 0%, #2d1810 50%, #1e1030 100%);
  padding: var(--space-2xl) 0;
  overflow: hidden;
}

.s-thanks__mesh {
  position: absolute;
  inset: 0;
  background: var(--mesh-1);
  pointer-events: none;
}

.s-thanks__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.c-quote-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  backdrop-filter: blur(12px);
  margin-bottom: var(--space-xl);
}

.c-quote-card__icon {
  font-size: 2rem;
  color: var(--c-primary-light);
  margin-bottom: var(--space-md);
  opacity: 0.7;
}

.c-quote-card blockquote p {
  font-size: clamp(1.125rem, 2.5vw, 1.375rem);
  color: rgba(255,255,255,0.9);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: var(--space-md);
}

.c-quote-card cite {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.s-thanks__message h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: var(--space-sm);
}

.s-thanks__message p {
  color: rgba(255,255,255,0.65);
  font-size: 1.0625rem;
  margin-bottom: var(--space-lg);
}

.s-thanks__icon {
  font-size: 3rem;
  color: var(--c-primary-light);
  display: block;
  margin-bottom: var(--space-md);
}



.s-legal {
  padding: var(--space-2xl) 0;
  min-height: 70vh;
}

.s-legal__header {
  margin-bottom: var(--space-xl);
  max-width: 680px;
}

.s-legal__header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.s-legal__date {
  color: var(--c-text-muted);
  font-size: 0.9rem;
}

.s-legal__body {
  max-width: 760px;
}

.s-legal__body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: var(--space-lg) 0 var(--space-sm);
  color: var(--c-text);
}

.s-legal__body p {
  color: var(--c-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
}

.s-legal__body strong { color: var(--c-text); }



.s-page-hero {
  position: relative;
  background: linear-gradient(135deg, #1a0e06 0%, #2d1810 50%, #1e1030 100%);
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
}

.s-page-hero__mesh {
  position: absolute;
  inset: 0;
  background: var(--mesh-1);
  pointer-events: none;
}

.s-page-hero .u-container {
  position: relative;
  z-index: 1;
}

.s-page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: var(--space-md);
  max-width: 700px;
}

.s-page-hero p {
  font-size: clamp(1rem, 1.8vw, 1.175rem);
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  line-height: 1.7;
}



.c-footer {
  background: var(--c-dark);
  color: rgba(255,255,255,0.7);
  padding-top: var(--space-2xl);
  margin-top: auto;
}

.c-footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.c-footer__brand img { filter: brightness(0) invert(1); margin-bottom: 1rem; }

.c-footer__brand p {
  font-size: 0.875rem;
  line-height: 1.65;
  margin-bottom: var(--space-md);
  color: rgba(255,255,255,0.55);
}

.c-footer__brand address {
  font-size: 0.875rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}

.c-footer__brand address a {
  color: rgba(255,255,255,0.6);
  transition: color var(--transition-fast);
}

.c-footer__brand address a:hover { color: var(--c-primary-light); }

.c-footer__nav h4,
.c-footer__legal h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}

.c-footer__nav ul,
.c-footer__legal ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.c-footer__nav a,
.c-footer__legal a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}

.c-footer__nav a:hover,
.c-footer__legal a:hover {
  color: var(--c-primary-light);
}

.c-footer__bottom {
  padding: var(--space-md) 0;
}

.c-footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}



.c-back-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition-base);
  pointer-events: none;
  z-index: 90;
}

.c-back-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.c-back-top:hover {
  background: var(--c-primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-xl);
}



.c-cookie-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(22, 18, 16, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 0.875rem clamp(1rem, 4vw, 2rem);
  transform: translateY(-100%);
  transition: transform var(--transition-slow) cubic-bezier(0.32, 0.72, 0, 1);
}

.c-cookie-banner.is-visible {
  transform: translateY(0);
}

.c-cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.c-cookie-banner__text {
  flex: 1;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  min-width: 200px;
}

.c-cookie-banner__text a {
  color: var(--c-primary-light);
  text-decoration: underline;
}

.c-cookie-banner__actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.c-cookie-btn {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-fast);
  min-height: 36px;
  white-space: nowrap;
}

.c-cookie-btn--accept {
  background: var(--c-primary);
  color: #fff;
  border: 1.5px solid var(--c-primary);
}

.c-cookie-btn--accept:hover { background: var(--c-primary-dark); }

.c-cookie-btn--reject {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(255,255,255,0.2);
}

.c-cookie-btn--reject:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.c-cookie-btn--customize {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1.5px solid rgba(255,255,255,0.2);
}

.c-cookie-btn--customize:hover {
  border-color: rgba(255,255,255,0.5);
  color: #fff;
}

.c-cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.c-cookie-modal.is-visible {
  opacity: 1;
  pointer-events: all;
}

.c-cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.c-cookie-modal__panel {
  position: relative;
  background: var(--c-surface);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 520px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  max-height: 90vh;
  overflow-y: auto;
}

.c-cookie-modal__panel h2 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.c-cookie-modal__panel p {
  font-size: 0.9rem;
  color: var(--c-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.c-cookie-cat {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--c-border);
}

.c-cookie-cat:last-of-type { border-bottom: none; }

.c-cookie-cat__info h3 {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.c-cookie-cat__info p {
  font-size: 0.8125rem;
  color: var(--c-text-muted);
  margin-bottom: 0;
  line-height: 1.5;
}

.c-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.c-toggle input { opacity: 0; width: 0; height: 0; }

.c-toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--c-border);
  border-radius: 100px;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.c-toggle__slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.c-toggle input:checked + .c-toggle__slider { background: var(--c-primary); }
.c-toggle input:checked + .c-toggle__slider::before { transform: translateX(20px); }
.c-toggle input:disabled + .c-toggle__slider { opacity: 0.5; cursor: not-allowed; }

.c-cookie-modal__footer {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}



@media (max-width: 1024px) {
  .s-hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .s-hero__grid { height: 320px; }
  .s-hero__content { max-width: 100%; }

  .s-process__steps { grid-template-columns: repeat(2, 1fr); }
  .c-step__line { display: none; }

  .s-workshop-info__grid { grid-template-columns: repeat(2, 1fr); }
  .s-workshop-types__grid { grid-template-columns: repeat(2, 1fr); }
  .c-workshop-card:last-child { grid-column: 1 / -1; max-width: 460px; margin: 0 auto; width: 100%; }

  .s-layers__grid { grid-template-columns: 1fr; }
  .s-comparison__cards { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

  .s-intro__inner { grid-template-columns: 1fr; }
  .s-about-story__inner { grid-template-columns: 1fr; }
  .s-natural__inner { grid-template-columns: 1fr; }
  .s-cta__inner { grid-template-columns: 1fr; gap: 2rem; }

  .s-booking-form__inner { grid-template-columns: 1fr; }
  .s-plants-intro__inner { grid-template-columns: 1fr; }
  .s-plants-integration__inner { grid-template-columns: 1fr; }
  .s-plants-faq__list { grid-template-columns: 1fr; }
  .s-consultation__inner { grid-template-columns: 1fr; }
  .s-contact-split__inner { grid-template-columns: 1fr; }

  .c-article-row { grid-template-columns: 120px 1fr; }
  .c-article-row__meta { display: none; }

  .s-methodology__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .c-nav__links { display: none; }
  .c-nav__burger { display: flex; }
  .c-mobile-sheet { display: block; }

  .s-hero__grid {
    grid-template-columns: 1fr 1fr;
    height: 240px;
  }
  .s-hero__img--large { grid-column: 1; grid-row: 1; }
  .s-hero__img--small { grid-column: 2; grid-row: 1; }
  .s-hero__img--medium { display: none; }

  .c-calc { grid-template-columns: 1fr; }
  .c-calc__row { grid-template-columns: 1fr; }

  .c-footer__inner { grid-template-columns: 1fr; gap: 2rem; }

  .s-process__steps { grid-template-columns: 1fr; }
  .s-workshop-info__grid { grid-template-columns: 1fr; }
  .s-workshop-types__grid { grid-template-columns: 1fr; }
  .c-workshop-card:last-child { grid-column: auto; max-width: 100%; }

  .c-article-row { grid-template-columns: 1fr; gap: 0.5rem; }
  .c-article-row__cat { margin-bottom: 0.25rem; }

  .c-cookie-banner__inner { flex-direction: column; align-items: flex-start; }
  .c-cookie-banner__actions { width: 100%; }
  .c-cookie-btn { flex: 1; text-align: center; justify-content: center; }

  .s-hero__actions { flex-direction: column; }
  .c-btn { justify-content: center; }
}

@media (max-width: 480px) {
  .s-hero__grid { display: none; }
  .s-hero { min-height: auto; padding: var(--space-xl) 0; }

  .c-back-top { bottom: 1rem; right: 1rem; }
}