/* ============================================
   THE ITALIAN TABLE — Dark Luxury Design System
   ============================================ */

:root {
  /* Dark palette */
  --color-bg: #0A0A0A;
  --color-bg-elevated: #111111;
  --color-bg-card: #161616;
  --color-bg-glass: rgba(255, 255, 255, 0.04);
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-hover: rgba(255, 255, 255, 0.15);
  --color-text: #F5F2EE;
  --color-text-muted: rgba(255, 255, 255, 0.55);
  --color-text-subtle: rgba(255, 255, 255, 0.35);
  --color-accent: #C2654A;
  --color-accent-hover: #D4785E;
  --color-white: #FFFFFF;
  --color-black: #000000;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Lato', 'Segoe UI', sans-serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;

  /* Layout */
  --max-width: 1280px;
  --nav-height: 72px;

  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 0.4s;
  --duration-fast: 0.2s;
  --duration-slow: 0.8s;
}


/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: all var(--duration-fast) ease; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; color: inherit; }


/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.1;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(3rem, 8vw, 6rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.125rem; }

p {
  font-size: clamp(0.9375rem, 1.2vw, 1.0625rem);
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
p:last-child { margin-bottom: 0; }

.accent-text {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-text-muted);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.eyebrow::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--color-text-subtle);
}

.section-header .eyebrow {
  justify-content: center;
}

.text-italic { font-style: italic; }
.text-bold { font-weight: 700; }


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

.section {
  padding: 7rem 0;
}

.section--elevated {
  background: var(--color-bg-elevated);
}

.section--white {
  background: var(--color-white);
  color: var(--color-black);
}

.section--white h2,
.section--white h3,
.section--white h4 {
  color: var(--color-black);
}

.section--white p {
  color: rgba(0, 0, 0, 0.6);
}

.section--white .eyebrow {
  color: var(--color-accent);
}

.section--white .eyebrow::before {
  background: var(--color-accent);
}

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }


/* === SECTION HEADER === */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}

.section-header h2 { margin-bottom: 1.5rem; }

.section-header .accent-text {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.divider {
  width: 40px;
  height: 1px;
  background: var(--color-accent);
  margin: 1.5rem auto;
  border: none;
}

.divider--left { margin-left: 0; }


/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: all var(--duration) var(--ease);
  min-width: 180px;
  cursor: pointer;
}

.btn--primary {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

.btn--primary:hover {
  background: transparent;
  color: var(--color-white);
  transform: translateY(-1px);
}

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

.btn--secondary:hover {
  border-color: var(--color-white);
  transform: translateY(-1px);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn--accent:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-1px);
}

.btn--large {
  padding: 1rem 2.5rem;
  font-size: 0.875rem;
}

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

/* White section buttons */
.section--white .btn--primary {
  background: var(--color-black);
  color: var(--color-white);
  border-color: var(--color-black);
}

.section--white .btn--primary:hover {
  background: transparent;
  color: var(--color-black);
}

.section--white .btn--secondary {
  color: var(--color-black);
  border-color: rgba(0, 0, 0, 0.2);
}

.section--white .btn--secondary:hover {
  border-color: var(--color-black);
}


/* === CARDS === */
.card {
  background: var(--color-bg-glass);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.card:hover {
  border-color: var(--color-border-hover);
  transform: translateY(-2px);
}

.card__image {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}

.card:hover .card__image {
  transform: scale(1.03);
}

.card__body { padding: 2rem; }

.card__eyebrow {
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.card__text {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.card__link {
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  transition: gap var(--duration-fast) ease;
}

.card__link::after {
  content: '\2192';
  transition: transform var(--duration-fast) ease;
}

.card__link:hover { gap: 1rem; }
.card__link:hover::after { transform: translateX(2px); }


/* === NAVIGATION === */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.nav-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--color-text);
  letter-spacing: 0.05em;
}

.nav-logo span { font-weight: 700; }

.nav-menu { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.8125rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text);
}

.nav-cta { margin-left: 2rem; }

.nav-cta .btn {
  padding: 0.5rem 1.5rem;
  font-size: 0.75rem;
  min-width: auto;
}

.nav-phone {
  display: none;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--color-text-muted);
}

.nav-phone svg { width: 14px; height: 14px; }

/* Hamburger */
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 44px;
  height: 44px;
  gap: 6px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--color-text);
  transition: all 0.3s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.nav-menu--mobile {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.nav-menu--mobile.open { opacity: 1; visibility: visible; }

.nav-menu--mobile a {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  color: var(--color-text-muted);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.nav-menu--mobile.open a {
  opacity: 1;
  transform: translateY(0);
}

.nav-menu--mobile a:nth-child(1) { transition-delay: 0.05s; }
.nav-menu--mobile a:nth-child(2) { transition-delay: 0.1s; }
.nav-menu--mobile a:nth-child(3) { transition-delay: 0.15s; }
.nav-menu--mobile a:nth-child(4) { transition-delay: 0.2s; }
.nav-menu--mobile a:nth-child(5) { transition-delay: 0.25s; }
.nav-menu--mobile a:nth-child(6) { transition-delay: 0.3s; }
.nav-menu--mobile a:nth-child(7) { transition-delay: 0.35s; }

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

.nav-menu--mobile .btn {
  margin-top: 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  transition-delay: 0.4s;
}
.nav-menu--mobile.open .btn { opacity: 1; transform: translateY(0); }


/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero--short { min-height: 60vh; }

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 25s ease-in-out infinite alternate;
}

@keyframes kenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.06); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__eyebrow {
  font-size: 0.625rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  white-space: nowrap;
}

.hero__eyebrow::before {
  content: '';
  width: 1.5rem;
  height: 1px;
  background: var(--color-text-subtle);
  flex-shrink: 0;
}

.hero h1 {
  margin-bottom: 2rem;
  line-height: 1.05;
}

.hero h1 em {
  font-style: italic;
  font-weight: 700;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  color: var(--color-white);
  max-width: 480px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

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

/* Glass stats card */
.hero__stats {
  background: var(--color-bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  padding: 2.5rem;
  display: none;
}

.hero__stat {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.5rem 0;
}

.hero__stat:first-child { padding-top: 0; }
.hero__stat:last-child { padding-bottom: 0; }

.hero__stat + .hero__stat {
  border-top: 1px solid var(--color-border);
}

.hero__stat-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__stat-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-text);
}

.hero__stat-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.hero__stat-label {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-weight: 300;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-subtle);
}

.hero__scroll-text {
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--color-text-subtle), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.2); }
}


/* === TRUST BAR === */
.trust-bar {
  padding: 1.5rem 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.5rem 3rem;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.trust-bar__item svg {
  width: 16px;
  height: 16px;
  color: var(--color-text-subtle);
}

.trust-bar__divider {
  display: none;
  width: 1px;
  height: 20px;
  background: var(--color-border);
}


/* === ABOUT TEASER === */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-teaser__image {
  overflow: hidden;
}

.about-teaser__image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease);
}

.about-teaser__image:hover img {
  transform: scale(1.02);
}

.about-teaser__content { max-width: 520px; }
.about-teaser__content h2 { margin-bottom: 1.5rem; }


/* === MENU TEASER === */
.menu-teaser__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--color-border);
}

.menu-item {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--color-bg);
  transition: background var(--duration-fast) ease;
}

.menu-item:hover {
  background: var(--color-bg-elevated);
}

.menu-item__course {
  font-size: 0.625rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.menu-item__name {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.menu-item__desc {
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}


/* === GALLERY === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.gallery-item {
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease), filter var(--duration) ease;
  filter: brightness(0.85);
}

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

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--duration) ease;
}

.gallery-item:hover .gallery-item__overlay {
  background: rgba(0, 0, 0, 0.15);
}

.gallery-item__icon {
  color: var(--color-white);
  opacity: 0;
  transform: scale(0.8);
  transition: all var(--duration) ease;
}

.gallery-item:hover .gallery-item__icon {
  opacity: 1;
  transform: scale(1);
}

.gallery-item.hidden { display: none; }

/* Gallery Filter */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.gallery-filter__btn {
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  background: transparent;
  cursor: pointer;
  transition: all var(--duration-fast) ease;
}

.gallery-filter__btn:hover,
.gallery-filter__btn.active {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.open { opacity: 1; visibility: visible; }

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}

.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.5rem;
  z-index: 2001;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.lightbox__close:hover { background: rgba(255, 255, 255, 0.2); }

.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 2001;
}

.lightbox__nav:hover { background: rgba(255, 255, 255, 0.2); }
.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }

.lightbox__caption {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-text-muted);
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 0.9375rem;
  max-width: 80%;
  text-align: center;
}


/* === TESTIMONIALS === */
.testimonial {
  text-align: center;
  padding: 2rem 1rem;
}

.testimonial__quote-mark {
  font-family: var(--font-heading);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-accent);
  opacity: 0.4;
  margin-bottom: -0.5rem;
}

.testimonial__text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 1.5rem;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial__author {
  font-weight: 400;
  font-size: 0.875rem;
  color: var(--color-text);
  letter-spacing: 0.05em;
}

.testimonial__event {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.testimonial__stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.testimonial__stars svg {
  width: 14px;
  height: 14px;
  fill: var(--color-accent);
  color: var(--color-accent);
}


/* === HOW IT WORKS === */
.how-it-works {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.how-it-works__step {
  text-align: center;
  position: relative;
}

.how-it-works__number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  color: var(--color-border-hover);
  margin-bottom: 1rem;
  line-height: 1;
}

.how-it-works__step h3 {
  margin-bottom: 0.75rem;
}

.how-it-works__step p {
  max-width: 220px;
  margin: 0 auto;
  font-size: 0.875rem;
}

.how-it-works__connector { display: none; }


/* === CTA SECTION === */
.cta-section {
  position: relative;
  padding: 7rem 0;
  text-align: center;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
}

.cta-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
}

.cta-section__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}

.cta-section h2 { margin-bottom: 1rem; }

.cta-section .accent-text {
  margin-bottom: 2.5rem;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.cta-section__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.cta-section__phone {
  color: var(--color-text-muted);
  font-size: 0.9375rem;
  font-weight: 300;
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-section__phone:hover { color: var(--color-white); }


/* === FORM === */
.form-wrapper { max-width: 680px; margin: 0 auto; }

.form-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

.form-progress__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.form-progress__dot {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
}

.form-progress__step.active .form-progress__dot {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-white);
}

.form-progress__step.completed .form-progress__dot {
  border-color: var(--color-accent);
  background: var(--color-accent);
  color: var(--color-white);
}

.form-progress__label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.form-progress__step.active .form-progress__label {
  color: var(--color-text);
}

.form-progress__line {
  width: 60px;
  height: 1px;
  background: var(--color-border);
  margin: 0 0.75rem;
  margin-bottom: 1.5rem;
}

.form-progress__line.filled { background: var(--color-accent); }

.form-step { display: none; }
.form-step.active {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.form-group label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 0.625rem;
}

.form-group label .optional {
  font-weight: 300;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 0;
  border: none;
  border-bottom: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text);
  font-size: 1rem;
  font-weight: 300;
  transition: border-color var(--duration-fast) ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-text-subtle);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 center;
  padding-right: 1.5rem;
}

.form-group select option {
  background: var(--color-bg-elevated);
  color: var(--color-text);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
  border: 1px solid var(--color-border);
  padding: 1rem;
}

.form-group textarea:focus {
  border-color: var(--color-accent);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-bottom-color: #D32F2F;
}

.form-group .error-message {
  color: #EF5350;
  font-size: 0.75rem;
  margin-top: 0.5rem;
  display: none;
}

.form-group .error-message.visible { display: block; }

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--color-text-muted);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-accent);
}

.form-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.form-actions .btn-back {
  font-size: 0.8125rem;
  font-weight: 300;
  color: var(--color-text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.form-actions .btn-back:hover { color: var(--color-text); }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}


/* === FOOTER === */
.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

.footer-col p {
  color: var(--color-text-subtle);
  font-size: 0.875rem;
}

.footer-col a {
  color: var(--color-text-subtle);
  font-size: 0.875rem;
  font-weight: 300;
}

.footer-col a:hover { color: var(--color-text); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 14px;
  height: 14px;
  color: var(--color-text-subtle);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  border-color: var(--color-text);
}

.footer-social svg { width: 14px; height: 14px; }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 1.5rem 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--color-text-subtle);
}

.footer-logo {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 300;
  color: var(--color-text);
  margin-bottom: 1rem;
  display: block;
  letter-spacing: 0.05em;
}

.footer-logo span { font-weight: 700; }


/* === ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--duration-slow) var(--ease), transform var(--duration-slow) var(--ease);
}

.fade-up.is-visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.15s; }
.fade-up:nth-child(4) { transition-delay: 0.2s; }


/* === ABOUT PAGE === */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image { overflow: hidden; }

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

.about-content h2 { margin-bottom: 1.5rem; }

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

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

.credential-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.credential-item h4 { margin-bottom: 0.25rem; }
.credential-item p { font-size: 0.875rem; margin-bottom: 0; }


/* === SERVICES === */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--color-border);
}

.service-card {
  background: var(--color-bg);
  overflow: hidden;
  transition: all var(--duration) var(--ease);
}

.service-card:hover { background: var(--color-bg-elevated); }

.service-card__image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: brightness(0.9);
  transition: all var(--duration-slow) var(--ease);
}

.service-card:hover .service-card__image {
  filter: brightness(1);
  transform: scale(1.02);
}

.service-card__body { padding: 2rem; }

.service-card__price {
  font-size: 0.6875rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.service-card h3 { margin-bottom: 1rem; }
.service-card p { font-size: 0.9375rem; margin-bottom: 1.5rem; }

.dietary-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.dietary-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--color-border);
  font-size: 0.75rem;
  color: var(--color-text-muted);
}


/* === TESTIMONIALS PAGE === */
.testimonials-aggregate {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonials-aggregate__score {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-text);
  font-weight: 400;
}

.testimonials-aggregate__count {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.testimonial-card {
  border-bottom: 1px solid var(--color-border);
  padding: 2.5rem 0;
}

.testimonial-card:first-child { padding-top: 0; }
.testimonial-card:last-child { border-bottom: none; }

.testimonial-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--color-text-muted);
}

.testimonial-card__meta { flex: 1; }
.testimonial-card__name { font-size: 0.875rem; color: var(--color-text); }
.testimonial-card__event { font-size: 0.75rem; color: var(--color-text-muted); }

.testimonial-card__text {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}


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

.error-page h1 {
  font-size: clamp(5rem, 15vw, 10rem);
  color: var(--color-border);
  line-height: 1;
  margin-bottom: 1rem;
}

.error-page h2 { margin-bottom: 1rem; }
.error-page p { margin-bottom: 2.5rem; max-width: 400px; margin-left: auto; margin-right: auto; }

.error-page__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}


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

.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-0 { margin-bottom: 0; }
