/* ===== ЛИСИЙ КОМИТЕТ — MAIN CSS ===== */

/* --- Google Fonts imported via <link> in layout.php --- */

/* ===== CSS VARIABLES ===== */
:root {
  --bg-deep:    #0a0805;
  --bg-dark:    #161008;
  --bg-medium:  #1e1710;
  --bg-card:    #211a0e;
  --bg-input:   #130f07;

  --amber:      #d4820a;
  --amber-bright: #f0a030;
  --red-fox:    #bf4010;
  --amber-dim:  #9a5e08;
  --amber-glow: rgba(240, 160, 48, 0.18);
  --amber-glow-strong: rgba(240, 160, 48, 0.35);

  --text-cream:   #e2d0b4;
  --text-muted:   #8a7055;
  --text-dimmer:  #5a4833;
  --text-white:   #f5ede0;

  --border:      rgba(212, 130, 10, 0.2);
  --border-glow: rgba(240, 160, 48, 0.4);

  --radius:    10px;
  --radius-lg: 18px;
  --shadow:    0 4px 24px rgba(0,0,0,0.5);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.6);
  --glow:      0 0 24px rgba(240,160,48,0.25);
  --glow-strong: 0 0 40px rgba(240,160,48,0.4);

  --nav-h: 72px;

  --transition: 0.3s ease;
  --transition-slow: 0.6s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background-color: var(--bg-deep);
  color: var(--text-cream);
  font-family: 'Inter', system-ui, sans-serif;
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--amber-dim); border-radius: 3px; }

/* Selection */
::selection { background: var(--amber); color: var(--bg-deep); }

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', Georgia, serif;
  color: var(--text-cream);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

a { color: var(--amber-bright); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber-bright); }

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(10, 8, 5, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.6), 0 1px 0 var(--border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-cream);
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: opacity var(--transition);
  flex-shrink: 0;
}
.nav-logo:hover { opacity: 0.85; color: var(--text-cream); }

.logo-svg { width: 42px; height: 42px; flex-shrink: 0; filter: drop-shadow(0 0 6px rgba(240,160,48,0.3)); }
.logo-svg-sm { width: 32px; height: 32px; }

.logo-text { display: inline; }

.nav-links {
  position: fixed;
  top: 0;
  right: 1.5rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 1001;
}

.nav-link {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  position: relative;
  transition: color var(--transition), background var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--amber-bright);
  border-radius: 1px;
  transition: transform var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--amber-bright);
  background: rgba(240, 160, 48, 0.08);
}

.nav-link.active::after,
.nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 10001;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-cream);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 60% 40%, rgba(191,64,16,0.12) 0%, transparent 70%),
              radial-gradient(ellipse 60% 50% at 20% 70%, rgba(212,130,10,0.08) 0%, transparent 60%),
              var(--bg-deep);
  overflow: hidden;
}

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

/* Animated paw print */
.paw-print {
  position: absolute;
  opacity: 0;
  animation: paw-appear 6s ease-in-out infinite;
}

.paw-print svg {
  width: 40px;
  height: 40px;
  fill: var(--amber);
  opacity: 0.12;
}

@keyframes paw-appear {
  0%   { opacity: 0; transform: scale(0.7) rotate(var(--rot,0deg)); }
  20%  { opacity: 1; transform: scale(1) rotate(var(--rot,0deg)); }
  70%  { opacity: 0.7; }
  100% { opacity: 0; transform: scale(1.1) rotate(var(--rot,0deg)); }
}

.hero-fox-silhouette {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 340px;
  height: auto;
  opacity: 0.6;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 2rem 1.5rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(212,130,10,0.15);
  border: 1px solid var(--amber);
  color: var(--amber-bright);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  color: var(--text-cream);
  line-height: 1.05;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3em;
  flex-wrap: wrap;
}

.title-accent {
  color: var(--amber);
  font-size: 0.6em;
  opacity: 0.7;
  vertical-align: middle;
}

.title-fox-icon {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}

.title-fox-icon svg {
  width: clamp(48px, 7vw, 80px);
  height: clamp(48px, 7vw, 80px);
  filter: drop-shadow(0 0 12px rgba(240,160,48,0.5));
  animation: fox-float 4s ease-in-out infinite;
}

@keyframes fox-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.08em;
}

.hero-quote {
  background: rgba(30, 23, 16, 0.7);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius);
  padding: 1.2rem 1.8rem;
  margin: 0 auto 2.5rem;
  max-width: 600px;
  text-align: left;
  backdrop-filter: blur(4px);
}

.hero-quote p {
  font-style: italic;
  color: var(--text-cream);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.hero-quote cite {
  color: var(--amber);
  font-size: 0.8rem;
  font-style: normal;
  letter-spacing: 0.05em;
}

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

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-dimmer);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  animation: scroll-bounce 2s ease-in-out infinite;
}

.hero-scroll-hint svg { width: 18px; height: 18px; }

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50% { transform: translateX(-50%) translateY(6px); opacity: 1; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  font-family: inherit;
  line-height: 1;
}

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

.btn-primary {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-bright) 100%);
  color: var(--bg-deep);
  box-shadow: 0 4px 16px rgba(212,130,10,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,130,10,0.5);
  color: var(--bg-deep);
}

.btn-outline {
  background: transparent;
  color: var(--amber-bright);
  border: 1.5px solid var(--amber);
}
.btn-outline:hover {
  background: rgba(212,130,10,0.1);
  border-color: var(--amber-bright);
  color: var(--amber-bright);
  transform: translateY(-2px);
  box-shadow: var(--glow);
}

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

.btn-fox {
  position: relative;
  overflow: hidden;
}
.btn-fox::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
}
.btn-fox:hover::after { transform: translateX(100%); }

.btn-icon { width: 18px; height: 18px; }

/* ===== SECTION TITLES ===== */
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--text-cream);
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-bright));
  border-radius: 2px;
}

/* ===== SECTIONS NAV CARDS ===== */
.sections-nav {
  padding: 5rem 0;
  background: var(--bg-dark);
}

.sections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.section-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-cream);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.section-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, var(--amber-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.section-card:hover {
  border-color: var(--amber);
  box-shadow: var(--glow), var(--shadow-card);
  transform: translateY(-4px);
  color: var(--text-cream);
}
.section-card:hover::before { opacity: 1; }

.card-icon {
  width: 64px;
  height: 64px;
}
.card-icon svg {
  width: 100%;
  height: 100%;
  transition: filter var(--transition);
}
.section-card:hover .card-icon svg {
  filter: drop-shadow(0 0 8px rgba(240,160,48,0.5));
}

.section-card h3 {
  font-size: 1.15rem;
  color: var(--amber-bright);
}

.section-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  flex: 1;
}

.card-arrow {
  color: var(--amber);
  font-size: 1.2rem;
  transition: transform var(--transition);
  align-self: flex-end;
}
.section-card:hover .card-arrow { transform: translateX(4px); }

/* ===== PULL QUOTE ===== */
.pull-quote-section {
  padding: 4rem 0;
  background: var(--bg-deep);
}

.pull-quote {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 4rem;
  background: linear-gradient(135deg, rgba(30,23,16,0.8) 0%, rgba(22,16,8,0.8) 100%);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-card);
}

.pull-quote blockquote p {
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-cream);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.pull-quote blockquote cite {
  color: var(--amber);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
}

.quote-fox-left,
.quote-fox-right {
  position: absolute;
  width: 80px;
  height: 80px;
  opacity: 0.3;
  pointer-events: none;
}
.quote-fox-left { top: -10px; left: -20px; }
.quote-fox-right { bottom: -10px; right: -20px; transform: scaleX(-1); }

/* ===== FEATURED RECIPES ===== */
.featured-recipes {
  padding: 5rem 0;
  background: var(--bg-medium);
}

.recipes-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.section-cta { text-align: center; }

/* ===== RECIPE CARDS ===== */
.recipe-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--text-cream);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}

.recipe-card:hover {
  border-color: var(--amber);
  box-shadow: var(--glow), var(--shadow-card);
  transform: translateY(-4px);
  color: var(--text-cream);
}

.recipe-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-medium);
}

.recipe-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.recipe-card:hover .recipe-card-img img { transform: scale(1.06); }

.recipe-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-medium), var(--bg-dark));
}
.recipe-placeholder svg { width: 80px; height: 80px; }

.recipe-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(10,8,5,0.8));
  pointer-events: none;
}

.recipe-category-tag {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: rgba(212,130,10,0.85);
  color: var(--bg-deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.recipe-card-body {
  padding: 1.25rem 1.25rem 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.recipe-card-body h3 {
  font-size: 1rem;
  color: var(--amber-bright);
  line-height: 1.3;
}

.recipe-card-body p {
  font-size: 0.84rem;
  color: var(--text-muted);
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.recipe-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.78rem;
  color: var(--text-dimmer);
  margin-top: auto;
}

.recipe-meta span {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.recipe-meta svg { width: 14px; height: 14px; }

/* ===== PAGE HERO ===== */
.page-hero {
  position: relative;
  padding: calc(var(--nav-h) + 3rem) 0 3.5rem;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 80% at 50% 0%, rgba(191,64,16,0.15) 0%, transparent 70%), var(--bg-dark);
  z-index: 0;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--bg-deep));
  z-index: 1;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero-content {
  text-align: center;
}

.page-badge {
  display: inline-block;
  background: rgba(212,130,10,0.12);
  border: 1px solid var(--amber);
  color: var(--amber-bright);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.page-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-cream);
  margin-bottom: 0.75rem;
}

.page-subtitle {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== RECIPE HERO ===== */
.recipe-hero .page-hero-bg { background: rgba(10,8,5,0.6); }
.recipe-hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: brightness(0.35) saturate(0.8);
}

.recipe-hero-meta {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.recipe-hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.recipe-hero-meta svg { width: 16px; height: 16px; }

/* ===== ABOUT PAGE ===== */
.about-intro {
  padding: 5rem 0;
  background: var(--bg-deep);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

.about-text h2 {
  font-size: 2rem;
  color: var(--amber-bright);
  margin-bottom: 1.25rem;
}

.about-text p {
  color: var(--text-cream);
  margin-bottom: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.about-mascot {
  text-align: center;
}

.about-fox-svg {
  width: 100%;
  max-width: 240px;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 0 20px rgba(212,130,10,0.3));
  animation: fox-float 5s ease-in-out infinite;
}

.about-mascot-caption {
  color: var(--text-muted);
  font-size: 0.82rem;
  font-style: italic;
}

/* Values */
.about-values {
  padding: 4rem 0;
  background: var(--bg-dark);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: all var(--transition);
}

.value-card:hover {
  border-color: var(--amber);
  box-shadow: var(--glow);
  transform: translateY(-3px);
}

.value-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
}
.value-icon svg { width: 100%; height: 100%; }

.value-card h3 {
  font-size: 1.05rem;
  color: var(--amber-bright);
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* Team */
.team-section {
  padding: 5rem 0;
  background: var(--bg-medium);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}

.team-card:hover {
  border-color: var(--amber);
  box-shadow: var(--glow);
  transform: translateY(-3px);
}

.team-avatar {
  width: 90px;
  height: 90px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--avatar-color, var(--amber));
  box-shadow: 0 0 16px color-mix(in srgb, var(--avatar-color, var(--amber)) 40%, transparent);
}
.team-avatar svg { width: 100%; height: 100%; }

.team-card h3 {
  font-size: 1rem;
  color: var(--text-cream);
  margin-bottom: 0.25rem;
}

.team-role {
  display: block;
  color: var(--amber);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.team-card p {
  color: var(--text-muted);
  font-size: 0.83rem;
  line-height: 1.5;
}

/* About CTA */
.about-cta {
  padding: 4rem 0;
  background: var(--bg-deep);
}

.cta-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.cta-block h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  color: var(--amber-bright);
}

.cta-block p {
  color: var(--text-muted);
  margin-bottom: 2rem;
}

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

/* ===== MASSAGE PAGE ===== */
.massage-section {
  padding: 4rem 0 5rem;
  background: var(--bg-deep);
}

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

.massage-info h2 {
  font-size: 1.8rem;
  color: var(--amber-bright);
  margin-bottom: 1rem;
}

.massage-info > p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.massage-services {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.massage-service {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}

.massage-service:hover {
  border-color: var(--amber);
}

.service-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}
.service-icon svg { width: 100%; height: 100%; }

.service-text h4 {
  font-size: 0.95rem;
  color: var(--amber-bright);
  margin-bottom: 0.2rem;
}
.service-text p { color: var(--text-muted); font-size: 0.82rem; }

.massage-paw-decor {
  opacity: 0.6;
}
.massage-paw-decor svg {
  width: 100%;
  height: auto;
  max-height: 80px;
}

/* ===== FORM STYLES ===== */
.lk-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-card);
}

.lk-form h2 {
  font-size: 1.5rem;
  color: var(--amber-bright);
  margin-bottom: 1.5rem;
}

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

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

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.45rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.req { color: var(--amber); font-size: 1em; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--bg-input);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  color: var(--text-cream);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='%238a7055'%3E%3Cpath d='M0 0l6 8 6-8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

.form-group input[type="date"] {
  color-scheme: dark;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--amber);
  box-shadow: 0 0 0 3px rgba(212,130,10,0.15);
}

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

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

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #e05040;
  box-shadow: 0 0 0 3px rgba(224,80,64,0.15);
}

.field-error {
  display: block;
  color: #e05040;
  font-size: 0.78rem;
  margin-top: 0.3rem;
}

.form-error-global {
  background: rgba(224,80,64,0.1);
  border: 1px solid rgba(224,80,64,0.4);
  color: #e08070;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.form-note {
  color: var(--text-dimmer);
  font-size: 0.75rem;
  text-align: center;
  margin-top: 1rem;
  line-height: 1.4;
}

.char-counter {
  font-size: 0.72rem;
  color: var(--text-dimmer);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

/* Form success state */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--amber);
  border-radius: var(--radius-lg);
  box-shadow: var(--glow), var(--shadow-card);
}

.form-success svg {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
}

.form-success h3 {
  font-size: 1.6rem;
  color: var(--amber-bright);
  margin-bottom: 0.75rem;
}

.form-success p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== RADIO PAGE ===== */
.radio-section {
  padding: 4rem 0 5rem;
  background: var(--bg-deep);
}

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

.radio-info h2 {
  font-size: 1.8rem;
  color: var(--amber-bright);
  margin-bottom: 1rem;
}

.radio-info > p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.radio-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0;
}

.radio-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition);
}
.radio-feature:hover { border-color: var(--amber); }

.feat-icon { width: 40px; height: 40px; flex-shrink: 0; }
.feat-icon svg { width: 100%; height: 100%; }

.radio-feature h4 {
  font-size: 0.92rem;
  color: var(--amber-bright);
  margin-bottom: 0.2rem;
}
.radio-feature p { color: var(--text-muted); font-size: 0.82rem; }

.radio-waves-decor svg {
  width: 100%;
  max-width: 300px;
  height: auto;
  opacity: 0.7;
}

.wave-path {
  animation: wave-pulse 3s ease-in-out infinite;
}
.wave-2 { animation-delay: 0.3s; }
.wave-3 { animation-delay: 0.6s; }

@keyframes wave-pulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

/* ===== RECIPES PAGE ===== */
.recipes-section {
  padding: 3rem 0 5rem;
  background: var(--bg-deep);
}

.cat-filter {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.cat-btn {
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  padding: 0.5rem 1.1rem;
  border-radius: 24px;
  font-size: 0.83rem;
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
}

.cat-btn:hover,
.cat-btn.active {
  background: rgba(212,130,10,0.12);
  border-color: var(--amber);
  color: var(--amber-bright);
}

.cat-btn.active {
  background: var(--amber);
  color: var(--bg-deep);
  font-weight: 700;
  border-color: var(--amber);
}

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.empty-state {
  text-align: center;
  padding: 5rem 2rem;
}
.empty-state svg { width: 80px; height: 80px; margin: 0 auto 1.5rem; }
.empty-state h3 { color: var(--amber-bright); margin-bottom: 0.5rem; }
.empty-state p { color: var(--text-muted); margin-bottom: 2rem; }

/* ===== RECIPE SINGLE ===== */
.recipe-single {
  padding: 3rem 0 5rem;
  background: var(--bg-deep);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 2rem;
  transition: color var(--transition);
}
.back-link svg { width: 18px; height: 18px; }
.back-link:hover { color: var(--amber-bright); }

.recipe-gallery {
  margin-bottom: 3rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.gallery-main {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-medium);
}

.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  transition: transform var(--transition-slow);
}
.gallery-main-img:hover { transform: scale(1.02); }

.gallery-main-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.gallery-thumbs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  scrollbar-width: thin;
}

.gallery-thumb {
  flex-shrink: 0;
  width: 100px;
  height: 70px;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  opacity: 0.6;
  transition: opacity var(--transition);
  border-right: 1px solid var(--border);
}

.gallery-thumb:hover,
.gallery-thumb.active {
  opacity: 1;
}
.gallery-thumb.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--amber);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-medium);
  color: var(--amber);
}
.thumb-video-placeholder svg { width: 24px; height: 24px; }

.recipe-content {
  max-width: 800px;
  margin: 0 auto;
}

.recipe-body {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.recipe-body h1, .recipe-body h2, .recipe-body h3 {
  color: var(--amber-bright);
  margin: 1.5rem 0 0.75rem;
}
.recipe-body h1 { font-size: 1.6rem; }
.recipe-body h2 { font-size: 1.3rem; }
.recipe-body h3 { font-size: 1.1rem; }
.recipe-body h2:first-child, .recipe-body h1:first-child { margin-top: 0; }

.recipe-body p {
  color: var(--text-cream);
  margin-bottom: 1rem;
  line-height: 1.7;
  opacity: 0.9;
}

.recipe-body ul {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.recipe-body ul li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  color: var(--text-cream);
  opacity: 0.9;
}

.recipe-body ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--amber);
  font-size: 0.85em;
}

.recipe-body strong { color: var(--amber-bright); }
.recipe-body em { color: var(--text-muted); }

.recipe-footer {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.recipe-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tag {
  background: rgba(212,130,10,0.12);
  border: 1px solid var(--amber);
  color: var(--amber-bright);
  font-size: 0.78rem;
  padding: 0.3rem 0.75rem;
  border-radius: 16px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-dark);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--text-cream);
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--amber-bright); }

.footer-copy {
  color: var(--text-dimmer);
  font-size: 0.78rem;
}

/* ===== ANIMATIONS & SCROLL EFFECTS ===== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fade-in-up var(--transition-slow) forwards;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fade-in-up {
  to { opacity: 1; transform: translateY(0); }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .about-intro-grid { grid-template-columns: 1fr; }
  .about-mascot { order: -1; }
  .about-fox-svg { max-width: 180px; }
  .massage-grid, .radio-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 62px; }

  .burger { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    height: auto;
    background: rgba(10, 8, 5, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 10000;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.05rem;
    padding: 0.8rem 2.5rem;
  }

  .logo-text { display: none; }

  .hero-title { font-size: clamp(2.2rem, 10vw, 4rem); }

  .sections-grid { grid-template-columns: 1fr 1fr; }

  .pull-quote { padding: 2rem 1.5rem; }
  .quote-fox-left, .quote-fox-right { display: none; }

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

  .recipe-footer { flex-direction: column; align-items: flex-start; }

  .recipes-preview-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .sections-grid { grid-template-columns: 1fr; }
  .cat-filter { gap: 0.4rem; }
  .cat-btn { font-size: 0.78rem; padding: 0.4rem 0.85rem; }
  .hero-cta { flex-direction: column; align-items: center; }
  .values-grid, .team-grid { grid-template-columns: 1fr; }
  .lk-form { padding: 1.5rem; }
}
