:root {
  --color-bg: #faf8f5;
  --color-bg-alt: #f3efe9;
  --color-surface: #ffffff;
  --color-surface-2: #fdf9f4;
  --color-text: #1c1611;
  --color-text-muted: #6b5f52;
  --color-text-light: #9c8f82;
  --color-primary: #c17b3a;
  --color-primary-dark: #a3642a;
  --color-primary-light: #d9945a;
  --color-secondary: #4a7c6f;
  --color-secondary-dark: #386158;
  --color-accent: #e8c47a;
  --color-accent-soft: #f5e5b8;
  --color-border: #e8e0d5;
  --color-border-light: #f0ebe3;

  --blob-amber: rgba(193, 123, 58, 0.18);
  --blob-teal: rgba(74, 124, 111, 0.14);
  --blob-cream: rgba(232, 196, 122, 0.22);
  --blob-rose: rgba(210, 140, 100, 0.12);

  --shadow-xs: 0 1px 3px rgba(28, 22, 17, 0.06), 0 1px 2px rgba(28, 22, 17, 0.04);
  --shadow-sm: 0 2px 8px rgba(28, 22, 17, 0.08), 0 1px 3px rgba(28, 22, 17, 0.05);
  --shadow-md: 0 4px 16px rgba(28, 22, 17, 0.1), 0 2px 6px rgba(28, 22, 17, 0.06);
  --shadow-lg: 0 8px 32px rgba(28, 22, 17, 0.12), 0 4px 12px rgba(28, 22, 17, 0.07);
  --shadow-xl: 0 16px 48px rgba(28, 22, 17, 0.14), 0 6px 18px rgba(28, 22, 17, 0.08);

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  --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(2rem, 4vw, 4rem);
  --space-2xl: clamp(3rem, 6vw, 6rem);
  --space-3xl: clamp(4rem, 8vw, 8rem);

  --nav-height: 72px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

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

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

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

.section {
  padding-block: var(--space-3xl);
  position: relative;
}

.section-eyebrow {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header .section-eyebrow {
  display: block;
}

.section-title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-muted);
  max-width: 560px;
  margin-inline: auto;
}


.blob {
  position: absolute;
  border-radius: var(--radius-full);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

.blob--1 {
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  background: radial-gradient(circle, var(--blob-amber) 0%, transparent 70%);
  filter: blur(80px);
  top: -100px;
  left: -150px;
}

.blob--2 {
  width: clamp(250px, 40vw, 500px);
  height: clamp(250px, 40vw, 500px);
  background: radial-gradient(circle, var(--blob-teal) 0%, transparent 70%);
  filter: blur(100px);
  top: 50px;
  right: -100px;
}

.blob--3 {
  width: clamp(200px, 35vw, 450px);
  height: clamp(200px, 35vw, 450px);
  background: radial-gradient(circle, var(--blob-cream) 0%, transparent 70%);
  filter: blur(90px);
  bottom: -50px;
  left: 30%;
}

.blob--4 {
  width: clamp(300px, 45vw, 550px);
  height: clamp(300px, 45vw, 550px);
  background: radial-gradient(circle, var(--blob-rose) 0%, transparent 70%);
  filter: blur(110px);
  top: 0;
  right: -80px;
}

.blob--5 {
  width: clamp(250px, 40vw, 480px);
  height: clamp(250px, 40vw, 480px);
  background: radial-gradient(circle, var(--blob-amber) 0%, transparent 70%);
  filter: blur(100px);
  bottom: 0;
  left: -100px;
}

.blob--6 {
  width: clamp(200px, 30vw, 400px);
  height: clamp(200px, 30vw, 400px);
  background: radial-gradient(circle, var(--blob-teal) 0%, transparent 70%);
  filter: blur(120px);
  top: 20%;
  right: 10%;
}

.blob--footer {
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  background: radial-gradient(circle, var(--blob-amber) 0%, transparent 70%);
  filter: blur(120px);
  top: -100px;
  right: -100px;
  opacity: 0.5;
}


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 44px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-sm), 0 0 0 0 rgba(193, 123, 58, 0);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: var(--shadow-md), 0 0 0 4px rgba(193, 123, 58, 0.15);
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}

.btn--ghost:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-1px);
}

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

.btn--outline:hover {
  background: var(--color-primary);
  color: #fff;
  transform: translateY(-1px);
}

.btn--nav {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  font-size: 0.85rem;
  padding: 0.6rem 1.25rem;
}

.btn--nav:hover {
  background: var(--color-primary-dark);
  border-color: var(--color-primary-dark);
  box-shadow: var(--shadow-sm);
}

.btn--sm {
  font-size: 0.82rem;
  padding: 0.55rem 1.1rem;
  min-height: 38px;
}

.btn--full {
  width: 100%;
}


.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-border-light);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

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

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

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

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text-muted);
  padding: 0.25rem 0;
  position: relative;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--color-text);
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--radius-xs);
  transition: background var(--transition);
}

.nav__burger:hover {
  background: var(--color-bg-alt);
}

.nav__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all var(--transition);
}

.nav__burger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__burger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav__mobile {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--color-bg);
  padding: var(--space-lg) clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  z-index: 99;
  overflow-y: auto;
}

.nav__mobile.open {
  transform: translateX(0);
  height: fit-content;
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.nav__mobile-links .nav__link {
  font-size: 1.1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border-light);
  display: block;
}

@media (min-width: 900px) {
  .nav__links {
    display: flex;
  }
  .nav__burger {
    display: none;
  }
}


.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.hero__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

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

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-accent-soft);
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(193, 123, 58, 0.2);
}

.hero__heading {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.hero__heading em {
  font-style: normal;
  color: var(--color-primary);
  position: relative;
}

.hero__desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-muted);
  max-width: 480px;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--color-border);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero__stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.hero__stat-label {
  font-size: 0.78rem;
  color: var(--color-text-light);
  font-weight: 500;
}

.hero__image-wrap {
  position: relative;
}

.hero__image-frame {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
  border: 1px solid var(--color-border-light);
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero__image-frame:hover .hero__image {
  transform: scale(1.03);
}

.hero__accent-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-light);
  min-width: 180px;
}

.hero__accent-card i {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.hero__accent-card strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
}

.hero__accent-card span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

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

  .hero__image-frame {
    aspect-ratio: 3/4;
  }
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 45fr 55fr;
  }
}


.page-hero {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.page-hero__title {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.page-hero__desc {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  color: var(--color-text-muted);
  line-height: 1.7;
}


.features {
  background: var(--color-bg-alt);
  overflow: hidden;
}

.features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  position: relative;
  z-index: 1;
}

.features__col {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.feature-item {
  display: flex;
  gap: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-light);
  background: var(--color-surface);
  transition: all var(--transition);
  box-shadow: var(--shadow-xs);
}

.feature-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-border);
  transform: translateY(-2px);
}

.feature-item--highlight {
  background: linear-gradient(135deg, var(--color-accent-soft) 0%, var(--color-surface) 100%);
  border-color: rgba(193, 123, 58, 0.2);
}

.feature-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-accent-soft), var(--color-bg-alt));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.1rem;
  border: 1px solid rgba(193, 123, 58, 0.15);
}

.feature-item__body h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.feature-item__body p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.features__image-block {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
}

.features__img {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 16/9;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-light);
}

.features__image-tag {
  position: absolute;
  bottom: -16px;
  right: -8px;
  background: var(--color-secondary);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 500;
  box-shadow: var(--shadow-md);
}

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


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

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

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

.product-card__img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__img {
  transform: scale(1.05);
}

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

.product-card__body h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.product-card__body p {
  font-size: 0.87rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}


.schedule {
  background: var(--color-bg-alt);
  overflow: hidden;
}

.schedule__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.schedule__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.schedule__desc {
  font-size: clamp(0.95rem, 1.5vw, 1.05rem);
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

.schedule__points {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.schedule__point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.schedule__point i {
  color: var(--color-secondary);
  font-size: 1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}

.schedule__image {
  position: relative;
}

.schedule__img {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border-light);
}

.schedule__float-card {
  position: absolute;
  top: -16px;
  right: -8px;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border-light);
}

.schedule__float-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--color-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.schedule__float-card strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-text);
}

.schedule__float-card span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

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


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

.milk__card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
}

.milk__card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-3px);
}

.milk__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.milk__card:hover .milk__img {
  transform: scale(1.04);
}

.milk__card--cow {
  background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-accent-soft) 100%);
}

.milk__card--goat {
  background: linear-gradient(180deg, var(--color-surface) 0%, rgba(74, 124, 111, 0.08) 100%);
}

.milk__card-body {
  padding: var(--space-lg);
}

.milk__card-body h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.6rem;
}

.milk__card-body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

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


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

.contact-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: all var(--transition);
}

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

.contact-card__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-accent-soft), var(--color-bg-alt));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.3rem;
  margin: 0 auto var(--space-sm);
  border: 1px solid rgba(193, 123, 58, 0.15);
}

.contact-card h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.contact-card__link {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 0.3rem;
  transition: color var(--transition);
}

.contact-card__link:hover {
  color: var(--color-primary-dark);
}

.contact-card p {
  font-size: 0.82rem;
  color: var(--color-text-light);
}

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


.about-story__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-story__img {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border-light);
}

.about-story__content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

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

@media (min-width: 900px) {
  .about-story__inner {
    grid-template-columns: 1fr 1fr;
  }
}


.equipment {
  background: var(--color-bg-alt);
  overflow: hidden;
}

.equipment__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

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

.equipment__item {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition);
}

.equipment__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--color-border);
}

.equipment__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-accent-soft), var(--color-bg-alt));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
  border: 1px solid rgba(193, 123, 58, 0.15);
}

.equipment__item h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.equipment__item p {
  font-size: 0.87rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}


.approach__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.approach__content h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.approach__content p {
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.approach__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.approach__point {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.approach__point i {
  color: var(--color-secondary);
  font-size: 0.9rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.approach__img {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--color-border-light);
}

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


.classes {
  overflow: hidden;
}

.classes__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.classes__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2xl);
  position: relative;
  z-index: 1;
}

.class-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-md);
  transition: box-shadow var(--transition);
}

.class-card:hover {
  box-shadow: var(--shadow-xl);
}

.class-card__image {
  position: relative;
  overflow: hidden;
}

.class-card__img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.class-card:hover .class-card__img {
  transform: scale(1.04);
}

.class-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--color-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.05em;
}

.class-card__body {
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.class-card__body h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.2;
}

.class-card__desc {
  color: var(--color-text-muted);
  line-height: 1.7;
  font-size: 0.95rem;
}

.class-card__details {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-top: 1px solid var(--color-border-light);
  border-bottom: 1px solid var(--color-border-light);
}

.class-detail {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.class-detail i {
  color: var(--color-primary);
  font-size: 0.85rem;
}

.class-card__program h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.6rem;
}

.class-card__program ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.class-card__program ul li {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding-left: 1rem;
  position: relative;
  line-height: 1.5;
}

.class-card__program ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
}

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

  .class-card--reverse .class-card__image {
    order: 2;
  }

  .class-card--reverse .class-card__body {
    order: 1;
  }

  .class-card__img {
    aspect-ratio: auto;
    height: 100%;
    min-height: 350px;
  }
}


.contact-main__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

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

.contact-form-card h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 0.4rem;
}

.contact-form-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-lg);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
}

.form-input {
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  width: 100%;
  min-height: 44px;
  transition: all var(--transition);
  outline: none;
}

.form-input:focus {
  border-color: var(--color-primary);
  background: var(--color-surface);
  box-shadow: 0 0 0 3px rgba(193, 123, 58, 0.12);
}

.form-input::placeholder {
  color: var(--color-text-light);
}

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

.form-group--checkbox {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

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

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

.form-checkbox__mark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--color-border);
  border-radius: 5px;
  background: var(--color-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  margin-top: 1px;
}

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

.form-checkbox input:checked + .form-checkbox__mark::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  display: block;
}

.form-checkbox a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-main__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.contact-info-block {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
}

.contact-info-block h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-border-light);
}

.contact-info-item {
  display: flex;
  gap: var(--space-sm);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--color-border-light);
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-xs);
  background: var(--color-accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

.contact-info-item > div {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact-info-item strong {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-info-item span,
.contact-info-item a {
  font-size: 0.92rem;
  color: var(--color-text);
  font-weight: 500;
  transition: color var(--transition);
}

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

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 900px) {
  .contact-main__inner {
    grid-template-columns: 1fr 1fr;
  }
}


.thanks-main {
  min-height: calc(100svh - var(--nav-height));
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  position: relative;
  overflow: hidden;
}

.thanks-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 5vw, 4rem);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-xl);
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.thanks-icon {
  font-size: 3.5rem;
  color: var(--color-secondary);
  margin-bottom: var(--space-md);
}

.thanks-card h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: var(--space-sm);
}

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

.thanks-sub {
  font-size: 0.88rem;
}

.thanks-sub a {
  color: var(--color-primary);
  font-weight: 500;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-lg);
}


.legal-hero {
  padding-top: calc(var(--nav-height) + var(--space-xl));
  padding-bottom: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.legal-hero__inner {
  position: relative;
  z-index: 1;
}

.legal-hero__inner h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 0.5rem;
}

.legal-hero__inner p {
  font-size: 0.88rem;
  color: var(--color-text-light);
}

.legal-content {
  padding-top: 0;
}

.legal-body {
  max-width: 760px;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--color-border-light);
  box-shadow: var(--shadow-sm);
}

.legal-body h2 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--color-border-light);
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-top: var(--space-md);
  margin-bottom: 0.5rem;
}

.legal-body p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-sm);
}

.legal-body a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}


.footer {
  background: var(--color-text);
  color: rgba(250, 248, 245, 0.85);
  position: relative;
  overflow: hidden;
}

.footer__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  padding: var(--space-2xl) 0 var(--space-xl);
  position: relative;
  z-index: 1;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer__logo {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(250, 248, 245, 0.6);
  line-height: 1.6;
  max-width: 280px;
}

.footer__address {
  font-size: 0.82rem;
  color: rgba(250, 248, 245, 0.6);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer__address i {
  color: var(--color-primary-light);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.footer__phone,
.footer__email {
  font-size: 0.85rem;
  color: rgba(250, 248, 245, 0.75);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color var(--transition);
}

.footer__phone:hover,
.footer__email:hover {
  color: var(--color-accent);
}

.footer__phone i,
.footer__email i {
  color: var(--color-primary-light);
  font-size: 0.8rem;
}

.footer__nav-group h5 {
  font-family: 'Manrope', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: rgba(250, 248, 245, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-sm);
}

.footer__nav-group ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__nav-group ul li a {
  font-size: 0.88rem;
  color: rgba(250, 248, 245, 0.7);
  transition: color var(--transition);
}

.footer__nav-group ul li a:hover {
  color: var(--color-accent);
}

.footer__bottom {
  border-top: 1px solid rgba(250, 248, 245, 0.1);
  padding: var(--space-md) 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 1;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(250, 248, 245, 0.4);
}

@media (min-width: 640px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .footer__top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  box-shadow: 0 -4px 24px rgba(28, 22, 17, 0.12);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

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

.cookie-banner__inner {
  max-width: 1200px;
  margin-inline: auto;
  padding: var(--space-md) clamp(1rem, 4vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__text strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.cookie-banner__text p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  max-width: 560px;
  line-height: 1.5;
}

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

.cookie-modal {
  border-top: 1px solid var(--color-border-light);
  background: var(--color-bg-alt);
  padding: var(--space-lg) clamp(1rem, 4vw, 2rem);
}

.cookie-modal__inner {
  max-width: 600px;
}

.cookie-modal__inner h3 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: var(--space-md);
}

.cookie-option {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border-light);
}

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

.cookie-option p {
  font-size: 0.8rem;
  color: var(--color-text-light);
  margin-top: 0.3rem;
  padding-left: 52px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
}

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

.cookie-toggle__slider {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  transition: background var(--transition);
  flex-shrink: 0;
}

.cookie-toggle__slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition);
}

.cookie-toggle input:checked + .cookie-toggle__slider {
  background: var(--color-primary);
}

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

.cookie-toggle input:disabled + .cookie-toggle__slider {
  background: var(--color-secondary);
  opacity: 0.7;
}

.cookie-toggle__label {
  font-size: 0.88rem;
  color: var(--color-text);
}

.cookie-modal__actions {
  display: flex;
  gap: 0.5rem;
  margin-top: var(--space-md);
}


[data-animate] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate="fade-left"] {
  transform: translateX(24px);
}

[data-animate="fade-right"] {
  transform: translateX(-24px);
}

[data-animate].animated {
  opacity: 1;
  transform: none;
}


::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--color-bg-alt);
}

::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-text-light);
}


::selection {
  background: var(--color-accent-soft);
  color: var(--color-primary-dark);
}


:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 3px;
}