/* ============================================
   ТЕСТО — Artisan Bakery Landing
   Fonts: Cormorant Garamond (headings), Nunito (body), Caveat (script)
   Palette: deep brown, warm cream, golden accent, wheat
   ============================================ */

:root {
  --brown: #3D2B1F;
  --brown-light: #5C4033;
  --cream: #FDF6EC;
  --cream-deep: #F5EBDA;
  --accent: #C8956C;
  --accent-dark: #A87650;
  --wheat: #E8D5B7;
  --wheat-light: #F0E4D0;
  --text: #3D2B1F;
  --text-light: #7A6555;
  --white: #FFFCF7;
  --shadow: rgba(61, 43, 31, 0.08);
  --shadow-md: rgba(61, 43, 31, 0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

/* GRAIN OVERLAY */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px;
}

/* FLOUR CANVAS */
#flourCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
}

/* ---- TYPOGRAPHY ---- */
.section-label {
  display: inline-block;
  font-family: 'Caveat', cursive;
  font-size: 1.25rem;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.15;
  color: var(--brown);
  margin-bottom: 1.5rem;
}

.section-title em {
  font-style: italic;
  color: var(--accent-dark);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--accent {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200, 149, 108, 0.3);
}
.btn--accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200, 149, 108, 0.4);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

.btn--sm { padding: 0.55rem 1.5rem; font-size: 0.85rem; }
.btn--lg { padding: 0.9rem 2.2rem; font-size: 1rem; }

/* ---- HEADER ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s ease;
}

.header--scrolled {
  background: rgba(253, 246, 236, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px var(--shadow);
  padding: 0.6rem 0;
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--white);
  transition: color var(--transition);
}

.header--scrolled .header__brand { color: var(--brown); }

.header__icon { transition: color var(--transition); }

.header__logo {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.header__nav {
  display: flex;
  gap: 2rem;
}

.header__nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.header--scrolled .header__nav a { color: var(--text-light); }
.header__nav a:hover { color: var(--accent); }

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
  border-radius: 1px;
}
.header__nav a:hover::after { width: 100%; }

.header .btn--accent {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease;
}
.header--scrolled .btn--accent {
  opacity: 1;
  transform: translateY(0);
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.header--scrolled .burger span { background: var(--brown); }
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* MOBILE NAV */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--cream);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  gap: 1.5rem;
  transition: right 0.4s ease;
  box-shadow: -10px 0 40px rgba(0,0,0,0.1);
}
.mobile-nav.active { right: 0; }
.mobile-nav a {
  text-decoration: none;
  color: var(--brown);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--wheat);
}

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

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

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero:hover .hero__bg img {
  transform: scale(1);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(61, 43, 31, 0.55) 0%,
    rgba(61, 43, 31, 0.3) 40%,
    rgba(61, 43, 31, 0.65) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 2rem;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero__title-line {
  display: block;
  font-size: clamp(2.5rem, 7vw, 5rem);
  line-height: 1.1;
}

.hero__title-line--accent {
  color: var(--wheat);
  font-weight: 500;
}

.hero__title-line--script {
  font-family: 'Caveat', cursive;
  font-size: clamp(2rem, 6vw, 4.5rem);
  color: var(--accent);
  margin-top: 0.2em;
}

.hero__sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

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

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* HERO PARTICLES */
.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero__particles span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 252, 247, 0.3);
  border-radius: 50%;
  animation: floatParticle 8s ease-in-out infinite;
}

.hero__particles span:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; animation-duration: 7s; }
.hero__particles span:nth-child(2) { top: 40%; left: 80%; animation-delay: 1s; animation-duration: 9s; width: 6px; height: 6px; }
.hero__particles span:nth-child(3) { top: 60%; left: 30%; animation-delay: 2s; animation-duration: 6s; }
.hero__particles span:nth-child(4) { top: 30%; left: 60%; animation-delay: 3s; animation-duration: 10s; width: 3px; height: 3px; }
.hero__particles span:nth-child(5) { top: 70%; left: 70%; animation-delay: 4s; animation-duration: 8s; }
.hero__particles span:nth-child(6) { top: 15%; left: 50%; animation-delay: 2.5s; animation-duration: 11s; width: 5px; height: 5px; }
.hero__particles span:nth-child(7) { top: 80%; left: 20%; animation-delay: 1.5s; animation-duration: 7s; }
.hero__particles span:nth-child(8) { top: 50%; left: 90%; animation-delay: 3.5s; animation-duration: 9s; width: 3px; height: 3px; }

@keyframes floatParticle {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
  25% { transform: translate(20px, -30px) scale(1.5); opacity: 0.6; }
  50% { transform: translate(-10px, -60px) scale(1); opacity: 0.4; }
  75% { transform: translate(15px, -20px) scale(1.3); opacity: 0.5; }
}

/* ---- MARQUEE ---- */
.marquee {
  background: var(--brown);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  gap: 0;
  animation: marqueeScroll 25s linear infinite;
}

.marquee__track span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--wheat);
  letter-spacing: 0.05em;
  padding: 0 1rem;
}

.marquee__dot {
  color: var(--accent) !important;
  font-size: 1.5rem !important;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- ABOUT ---- */
.about {
  padding: 7rem 0;
  background: var(--cream);
}

.about__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about__image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.6s ease;
}

.about__image:hover img {
  transform: scale(1.03);
}

.about__image-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--accent);
  color: var(--white);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(200, 149, 108, 0.4);
  animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.about__image-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.about__image-badge-text {
  font-size: 0.7rem;
  text-align: center;
  line-height: 1.2;
  opacity: 0.9;
}

.about__lead {
  font-size: 1.15rem;
  color: var(--brown-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about__text p {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--wheat);
}

.about__stat {
  text-align: center;
}

.about__stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent-dark);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.about__stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ---- MENU ---- */
.menu {
  padding: 7rem 0;
  background: var(--white);
}

.menu__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.menu__subtitle {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto 3rem;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.menu-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: left;
  transition: all var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.menu-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--wheat));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px var(--shadow-md);
  border-color: var(--wheat);
}

.menu-card:hover::before {
  transform: scaleX(1);
}

.menu-card__icon {
  color: var(--accent);
  margin-bottom: 1rem;
  transition: transform var(--transition);
}

.menu-card:hover .menu-card__icon {
  transform: scale(1.1) rotate(-5deg);
}

.menu-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.menu-card__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.menu-card__price {
  font-family: 'Caveat', cursive;
  font-size: 1.1rem;
  color: var(--accent-dark);
}

/* ---- PROCESS ---- */
.process {
  padding: 7rem 0;
  background: var(--cream-deep);
}

.process__container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.process__timeline {
  margin-top: 3rem;
  position: relative;
  text-align: left;
}

.process__timeline::before {
  content: '';
  position: absolute;
  left: 36px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), var(--wheat), transparent);
}

.process__step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
}

.process__step-num {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent-dark);
  position: relative;
  z-index: 1;
  transition: all var(--transition);
}

.process__step:hover .process__step-num {
  background: var(--accent);
  color: var(--white);
  transform: scale(1.1);
}

.process__step-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 0.5rem;
}

.process__step-content p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- GALLERY ---- */
.gallery {
  padding: 7rem 0 4rem;
  background: var(--cream);
}

.gallery__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gallery__item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

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

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(61, 43, 31, 0);
  transition: background 0.4s ease;
}

.gallery__item:hover::after {
  background: rgba(61, 43, 31, 0.1);
}

.gallery__item--wide {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item img {
  height: 250px;
}

.gallery__item--wide img {
  height: 100%;
  min-height: 516px;
}

.gallery__item--tall img {
  height: 100%;
  min-height: 516px;
}

/* ---- REVIEWS ---- */
.reviews {
  padding: 7rem 0;
  background: var(--white);
}

.reviews__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
}

.review-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: left;
  transition: all var(--transition);
  border: 1px solid transparent;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow);
  border-color: var(--wheat);
}

.review-card__stars {
  color: var(--accent);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.review-card__text {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-card__author {
  font-weight: 600;
  color: var(--brown);
  font-size: 0.9rem;
}

/* ---- CTA ---- */
.cta {
  padding: 7rem 0;
  background: var(--brown);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 149, 108, 0.15), transparent 70%);
}

.cta__container {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta .section-label { color: var(--wheat); }
.cta .section-title { color: var(--white); }
.cta .section-title em { color: var(--accent); }

.cta__text {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.cta__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.cta__form input,
.cta__form textarea {
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  padding: 0.9rem 1.2rem;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  transition: all var(--transition);
  outline: none;
}

.cta__form input::placeholder,
.cta__form textarea::placeholder {
  color: rgba(255,255,255,0.4);
}

.cta__form input:focus,
.cta__form textarea:focus {
  border-color: var(--accent);
  background: rgba(255,255,255,0.12);
}

.cta__form textarea {
  resize: vertical;
  min-height: 80px;
}

.cta__note {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
  margin-top: 1rem;
}

/* ---- CONTACTS ---- */
.contacts {
  padding: 7rem 0;
  background: var(--cream);
}

.contacts__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contacts__details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1rem;
}

.contacts__item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contacts__item-label {
  font-size: 0.8rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.contacts__item-value {
  font-size: 1.05rem;
  color: var(--brown);
  text-decoration: none;
  transition: color var(--transition);
}

a.contacts__item-value:hover {
  color: var(--accent);
}

.contacts__map {
  border-radius: var(--radius);
  overflow: hidden;
}

.contacts__map-placeholder {
  background: var(--cream-deep);
  height: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-light);
  border-radius: var(--radius);
  border: 2px dashed var(--wheat);
}

.contacts__map-placeholder svg {
  color: var(--accent);
  opacity: 0.5;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--brown);
  padding: 3rem 0;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
}

.footer__tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--accent); }

.footer__copy {
  width: 100%;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ---- ANIMATIONS ---- */
[data-anim] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

[data-anim].visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger delays */
[data-delay="1"] { transition-delay: 0.1s; }
[data-delay="2"] { transition-delay: 0.2s; }
[data-delay="3"] { transition-delay: 0.3s; }
[data-delay="4"] { transition-delay: 0.4s; }
[data-delay="5"] { transition-delay: 0.5s; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .about__container { grid-template-columns: 1fr; gap: 2rem; }
  .about__image img { height: 350px; }
  .contacts__container { grid-template-columns: 1fr; }
  .menu__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide img { min-height: 300px; }
  .gallery__item--tall img { height: 250px; }
}

@media (max-width: 768px) {
  .header__nav { display: none; }
  .header .btn--accent { display: none; }
  .burger { display: flex; }

  .hero__title-line { font-size: clamp(2rem, 8vw, 3rem); }
  .hero__title-line--script { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero__sub { font-size: 1rem; }

  .menu__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .about__stats { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .about__stat-num { font-size: 2rem; }

  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__item--wide { grid-column: span 2; }

  .cta__form-row { grid-template-columns: 1fr; }

  .footer__inner { flex-direction: column; text-align: center; }
  .footer__links { justify-content: center; }

  .process__timeline::before { left: 28px; }
  .process__step-num { width: 56px; height: 56px; font-size: 1.1rem; }
  .process__step { gap: 1.2rem; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: center; }
  .btn--lg { width: 100%; }
  .about__stats { grid-template-columns: 1fr; gap: 1rem; }
  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
  .gallery__item--wide img { min-height: 200px; }
}
