:root {
  --bg: #fff8ef;
  --surface: #fffdf9;
  --surface-2: #fff3e0;
  --text: #24211d;
  --muted: #6d655d;
  --primary: #e65f2b;
  --primary-dark: #be471b;
  --accent: #198754;
  --line: #ecd9c4;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 18px 45px rgba(50, 33, 18, 0.11);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Poppins", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, #ffe8d2 0%, transparent 35%),
    radial-gradient(circle at 90% 20%, #ffd6be 0%, transparent 30%),
    linear-gradient(180deg, #fffaf3 0%, #fff4e8 100%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(var(--container), 92vw);
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff0df;
  color: var(--primary-dark);
  border: 1px solid #f3cfa9;
  font-size: 0.8rem;
  padding: 7px 12px;
  border-radius: 999px;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.06em;
}

.title-block {
  margin-bottom: 24px;
}

.title-block h2 {
  margin: 12px 0 8px;
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  line-height: 1.2;
}

.title-block p {
  color: var(--muted);
  max-width: 680px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  cursor: pointer;
  font-weight: 600;
  border-radius: 12px;
  padding: 12px 20px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), #ff7c46);
  box-shadow: 0 12px 22px rgba(230, 95, 43, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(230, 95, 43, 0.4);
}

.btn-light {
  background: #fff;
  border: 1px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 251, 245, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(236, 217, 196, 0.7);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.logo span {
  color: var(--primary);
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-nav a {
  display: block;
  padding: 10px 14px;
  font-weight: 500;
  color: #40362f;
  border-radius: 10px;
}

.main-nav a.active,
.main-nav a:hover {
  color: var(--primary-dark);
  background: #ffefe2;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 10px;
  width: 42px;
  height: 42px;
  font-size: 1.2rem;
}

.hero {
  position: relative;
  overflow: clip;
  padding: 90px 0 64px;
}

.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255, 162, 114, 0.4), transparent 70%);
  top: -120px;
  right: -80px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 30px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 4.8vw, 4.1rem);
  line-height: 1.07;
  margin: 16px 0 16px;
}

.hero p {
  margin: 0 0 24px;
  color: var(--muted);
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.search-box {
  margin-top: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  max-width: 560px;
  box-shadow: var(--shadow);
}

.search-box input {
  border: 0;
  outline: 0;
  padding: 12px 14px;
  font-size: 1rem;
  background: transparent;
}

.hero-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-4px);
}

.hero-card .content {
  padding: 18px;
}

.grid-3,
.grid-4,
.grid-2 {
  display: grid;
  gap: 22px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(45, 28, 12, 0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 32px rgba(45, 28, 12, 0.14);
}

.card-body {
  padding: 16px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--muted);
}

.meta span {
  background: #fff4e8;
  border: 1px solid #f1ddc9;
  padding: 4px 8px;
  border-radius: 999px;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 500;
}

.promo {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(130deg, rgba(255, 131, 77, 0.9), rgba(241, 95, 42, 0.88)),
    url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1400&q=80") center / cover;
  color: #fff;
}

.promo .inner {
  padding: clamp(24px, 4vw, 48px);
  max-width: 580px;
}

.promo h3 {
  font-size: clamp(1.6rem, 3.3vw, 2.8rem);
  margin: 10px 0;
  line-height: 1.15;
}

.sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 28px;
}

.sidebar .widget {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 18px;
  margin-bottom: 18px;
}

.widget h4 {
  margin: 0 0 14px;
  font-size: 1.07rem;
}

.tag-cloud,
.list-clean {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.list-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-links li + li {
  margin-top: 10px;
}

.list-links a {
  color: #423831;
}

.list-links a:hover {
  color: var(--primary-dark);
}

.page-hero {
  padding: 70px 0 52px;
}

.page-hero h1 {
  margin: 14px 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.recipe-detail img.cover {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  margin-bottom: 18px;
}

.two-col-info {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 24px;
}

.info-box {
  background: #fff3e4;
  border: 1px solid #f1d3b2;
  border-radius: 12px;
  padding: 10px 12px;
}

.info-box strong {
  display: block;
  margin-bottom: 2px;
}

.check-list {
  padding-left: 18px;
}

.check-list li + li {
  margin-top: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-card,
.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.input,
textarea {
  width: 100%;
  border: 1px solid #e7d7c8;
  border-radius: 10px;
  background: #fffcf7;
  padding: 11px 12px;
  font: inherit;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.form-grid {
  display: grid;
  gap: 12px;
}

.site-footer {
  margin-top: 70px;
  background: #1f1712;
  color: #fcefe1;
  padding: 60px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 1fr;
  gap: 20px;
}

.site-footer h4 {
  margin-top: 0;
}

.site-footer a {
  color: #f7ddc4;
}

.site-footer a:hover {
  color: #fff;
}

.footer-copy {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 243, 230, 0.2);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: #f3d7bb;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.7s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (max-width: 1024px) {
  .hero-grid,
  .sidebar-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 72px;
  }
}

@media (max-width: 760px) {
  .main-nav {
    display: none;
    position: absolute;
    top: 79px;
    left: 0;
    right: 0;
    background: #fffaf3;
    border-bottom: 1px solid var(--line);
    padding: 10px 3vw 16px;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .grid-3,
  .grid-2,
  .grid-4,
  .two-col-info,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 56px 0;
  }

  .search-box {
    grid-template-columns: 1fr;
  }
}

/* Enhanced visual system */
:root {
  --bg: #fff6ee;
  --surface: rgba(255, 253, 249, 0.92);
  --primary: #e86a32;
  --primary-dark: #c34f1f;
  --secondary: #ffb066;
  --ink-soft: #4a3f36;
  --ring: 0 0 0 1px rgba(255, 143, 81, 0.35) inset;
}

body {
  color: #2b241f;
  background:
    radial-gradient(circle at 8% 16%, rgba(255, 179, 129, 0.45), transparent 32%),
    radial-gradient(circle at 88% 12%, rgba(255, 160, 110, 0.34), transparent 30%),
    radial-gradient(circle at 50% 96%, rgba(255, 202, 158, 0.3), transparent 28%),
    linear-gradient(180deg, #fff8f2 0%, #fff2e5 52%, #ffefe0 100%);
}

.section {
  position: relative;
}

.section::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent 8%, rgba(222, 172, 128, 0.45), transparent 92%);
}

.hero {
  padding: 96px 0 72px;
}

.hero::before {
  width: 510px;
  height: 510px;
  background: radial-gradient(circle, rgba(255, 144, 89, 0.42), transparent 66%);
}

.hero::after {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -200px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: conic-gradient(from 90deg, rgba(255, 157, 108, 0.34), rgba(255, 196, 153, 0.12), rgba(246, 125, 61, 0.28));
  filter: blur(6px);
  animation: spinSlow 20s linear infinite;
  pointer-events: none;
}

.hero-panel {
  position: relative;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.7), rgba(255, 245, 231, 0.72));
  border: 1px solid rgba(236, 183, 141, 0.7);
  border-radius: 26px;
  padding: clamp(18px, 2vw, 28px);
  box-shadow: 0 28px 60px rgba(72, 40, 18, 0.12);
  backdrop-filter: blur(4px);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.48), transparent 38%, rgba(255, 188, 141, 0.24));
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.hero-orb.a {
  width: 170px;
  height: 170px;
  top: -38px;
  left: -32px;
  background: radial-gradient(circle at 32% 28%, #ffd7b6 0%, rgba(255, 183, 132, 0.18) 70%);
  animation: floatY 6s ease-in-out infinite;
}

.hero-orb.b {
  width: 100px;
  height: 100px;
  right: 16px;
  bottom: -24px;
  background: radial-gradient(circle, rgba(255, 152, 90, 0.48), rgba(255, 152, 90, 0.08));
  animation: floatY 4.8s ease-in-out infinite reverse;
}

.hero-card {
  position: relative;
  border: 1px solid rgba(236, 182, 137, 0.76);
  box-shadow: 0 32px 56px rgba(63, 34, 14, 0.16);
}

.hero-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.floating-chip {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #6a2b0e;
  background: rgba(255, 250, 244, 0.86);
  border: 1px solid #efc7a3;
  border-radius: 999px;
  padding: 8px 12px;
  box-shadow: 0 10px 20px rgba(87, 45, 16, 0.14);
  backdrop-filter: blur(4px);
}

.floating-chip.one {
  top: 14px;
  right: 14px;
  animation: floatY 4.2s ease-in-out infinite;
}

.floating-chip.two {
  left: -14px;
  bottom: 44px;
  animation: floatY 5.5s ease-in-out infinite reverse;
}

.floating-chip strong {
  color: #2c2119;
}

.search-box {
  border-radius: 18px;
  border: 1px solid rgba(236, 178, 131, 0.72);
}

.search-box input {
  color: var(--ink-soft);
}

.title-block h2 {
  letter-spacing: -0.02em;
}

.card {
  border: 1px solid rgba(236, 184, 143, 0.9);
  background: linear-gradient(180deg, #fffefd 0%, #fff7f0 100%);
}

.card img {
  transform: scale(1.02);
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.15, 1);
}

.card:hover img {
  transform: scale(1.09);
}

.card:hover {
  box-shadow: 0 24px 42px rgba(56, 29, 10, 0.18);
}

.card-body h3 {
  margin: 0 0 10px;
  line-height: 1.3;
}

.meta span {
  background: linear-gradient(180deg, #fff8ef, #ffedd8);
  border: 1px solid #ecc9a6;
}

.pill {
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.pill:hover {
  transform: translateY(-2px);
  background: #fff0df;
  box-shadow: 0 12px 18px rgba(103, 57, 22, 0.11);
}

.promo {
  box-shadow: 0 30px 55px rgba(60, 30, 12, 0.22);
}

.promo::after {
  content: "";
  position: absolute;
  inset: auto -120px -130px auto;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.5), transparent 68%);
}

.stats-ribbon {
  overflow: hidden;
  border-top: 1px solid rgba(238, 183, 137, 0.72);
  border-bottom: 1px solid rgba(238, 183, 137, 0.72);
  background: linear-gradient(90deg, #ffedd9, #ffe5cc, #ffedd9);
  padding: 12px 0;
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: marquee 22s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #efc9a4;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 600;
  white-space: nowrap;
}

.ticker-item b {
  color: #8a3512;
}

.feature-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: center;
}

.feature-block {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(255, 240, 222, 0.72));
  border: 1px solid rgba(235, 181, 141, 0.8);
  border-radius: 24px;
  padding: clamp(18px, 2.7vw, 28px);
  box-shadow: 0 20px 42px rgba(65, 33, 14, 0.13);
}

.feature-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.feature-list li {
  border: 1px solid #efcfad;
  background: #fff6ec;
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 500;
}

.video-fake {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(233, 173, 124, 0.75);
  min-height: 320px;
  background: url("https://images.unsplash.com/photo-1506368249639-73a05d6f6488?auto=format&fit=crop&w=1200&q=80") center / cover;
  box-shadow: 0 26px 44px rgba(63, 34, 14, 0.19);
}

.video-fake::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 13, 8, 0.1), rgba(22, 13, 8, 0.55));
}

.play-dot {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ff8a4d, #e15a26);
  color: #fff;
  border: 0;
  font-size: 1.4rem;
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 20px 28px rgba(74, 34, 11, 0.38);
  animation: pulseSoft 2.2s ease-in-out infinite;
}

.play-dot::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 205, 176, 0.7);
  border-radius: 50%;
}

.video-fake .caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  color: #fff3e6;
  z-index: 2;
  font-weight: 600;
}

.site-footer {
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 170, 118, 0.22), transparent 34%),
    linear-gradient(140deg, #1f1712, #291c15 45%, #1d130f);
}

.reveal {
  transition: opacity 0.62s ease, transform 0.78s cubic-bezier(0.18, 0.8, 0.18, 1);
}

.reveal.delay-1 {
  transition-delay: 0.08s;
}

.reveal.delay-2 {
  transition-delay: 0.15s;
}

.parallax {
  transform-style: preserve-3d;
  transition: transform 0.35s ease;
}

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

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes pulseSoft {
  0%,
  100% {
    box-shadow: 0 20px 28px rgba(74, 34, 11, 0.35);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 26px 35px rgba(74, 34, 11, 0.45);
    transform: scale(1.045);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .feature-split {
    grid-template-columns: 1fr;
  }

  .ticker-track {
    animation-duration: 28s;
  }
}

@media (max-width: 760px) {
  .hero-panel {
    padding: 18px;
  }

  .floating-chip.two {
    left: 8px;
    bottom: 10px;
  }

  .hero-orb.a,
  .hero-orb.b {
    display: none;
  }

  .ticker-item {
    font-size: 0.8rem;
    padding: 7px 12px;
  }
}

/* Motion system + global UI effects */
:root {
  --motion-reveal: 0.78s;
  --motion-parallax: 0.35s;
  --motion-marquee: 22s;
  --motion-float-a: 6s;
  --motion-float-b: 4.8s;
  --motion-chip-a: 4.2s;
  --motion-chip-b: 5.5s;
  --motion-pulse: 2.2s;
  --motion-transition: 620ms;
  --cursor-size: 42px;
  --cursor-glow: rgba(237, 108, 55, 0.22);
  --cursor-ring: rgba(226, 90, 37, 0.62);
}

.reveal {
  transition-duration: var(--motion-reveal);
}

.parallax {
  transition-duration: var(--motion-parallax);
}

.ticker-track {
  animation-duration: var(--motion-marquee);
}

.hero-orb.a {
  animation-duration: var(--motion-float-a);
}

.hero-orb.b {
  animation-duration: var(--motion-float-b);
}

.floating-chip.one {
  animation-duration: var(--motion-chip-a);
}

.floating-chip.two {
  animation-duration: var(--motion-chip-b);
}

.play-dot {
  animation-duration: var(--motion-pulse);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 9998;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(5px);
  transform-origin: left center;
}

.scroll-progress .bar {
  height: 100%;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #ff9a5c, #e95a26 70%, #cf3f12);
}

.page-transition-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  transform: translateY(0%);
  transition: transform var(--motion-transition) cubic-bezier(0.7, 0.08, 0.31, 0.93);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 181, 131, 0.45), transparent 36%),
    radial-gradient(circle at 88% 68%, rgba(255, 151, 94, 0.36), transparent 34%),
    linear-gradient(130deg, #22150f 0%, #3b2417 38%, #20140f 100%);
}

body.page-loaded .page-transition-overlay {
  transform: translateY(-102%);
}

body.page-leaving .page-transition-overlay {
  transform: translateY(0%);
}

body.has-custom-cursor,
body.has-custom-cursor a,
body.has-custom-cursor button,
body.has-custom-cursor input,
body.has-custom-cursor select,
body.has-custom-cursor textarea,
body.has-custom-cursor [role="button"] {
  cursor: none;
}

.cursor-glow,
.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transform: translate3d(-100px, -100px, 0);
  transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease;
}

.cursor-glow {
  width: var(--cursor-size);
  height: var(--cursor-size);
  border-radius: 999px;
  border: 1px solid var(--cursor-ring);
  background: var(--cursor-glow);
  box-shadow: 0 0 26px rgba(234, 108, 55, 0.25);
  backdrop-filter: blur(2px);
}

.cursor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e35d2b;
}

.cursor-glow.visible,
.cursor-dot.visible {
  opacity: 1;
}

.cursor-glow.hovering {
  width: calc(var(--cursor-size) * 1.6);
  height: calc(var(--cursor-size) * 1.6);
  background: rgba(238, 128, 76, 0.32);
}

.recipes-toolbar {
  margin-bottom: 18px;
  display: grid;
  gap: 12px;
}

.search-filter-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.field-group {
  display: grid;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #6a727c;
}

.search-group {
  position: relative;
}

.search-suggest-wrap {
  position: relative;
}

.search-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  z-index: 30;
  border: 1px solid #dfe5ed;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 12px 24px rgba(19, 23, 31, 0.12);
}

.suggestion-item {
  width: 100%;
  border: 0;
  background: #fff;
  padding: 10px 12px;
  text-align: left;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.suggestion-item + .suggestion-item {
  border-top: 1px solid #eef2f7;
}

.suggestion-item:hover {
  background: #f5f8fd;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  border: 1px solid #ebc39f;
  background: #fff8ef;
  color: #5c3c2a;
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.filter-chip:hover,
.filter-chip.active {
  transform: translateY(-2px);
  background: linear-gradient(130deg, #ff9e63, #e35d2a);
  color: #fff;
  box-shadow: 0 12px 20px rgba(98, 47, 17, 0.2);
  border-color: transparent;
}

.sort-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.sort-row label {
  font-size: 0.88rem;
  color: #6d5645;
  font-weight: 600;
}

.sort-row select {
  min-width: 210px;
}

.sort-row .btn {
  padding: 10px 14px;
}

.recipe-card {
  transition: opacity 0.28s ease, transform 0.28s ease, filter 0.28s ease;
}

.recipe-card.is-hidden {
  opacity: 0;
  transform: scale(0.94) translateY(10px);
  filter: blur(3px);
}

.recipe-counter {
  font-size: 0.86rem;
  color: #7a5f4d;
  font-weight: 600;
}

/* Platea-inspired homepage */
body.home-platea {
  --platea-bg: #f4f5f7;
  --platea-surface: #ffffff;
  --platea-text: #1e2228;
  --platea-soft: #6f747d;
  --platea-line: #e4e7ec;
  --platea-brand: #f04134;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--platea-text);
  background: radial-gradient(circle at 6% 12%, #ffffff 0%, #f4f5f7 38%), linear-gradient(180deg, #f8f9fb 0%, #eef1f6 100%);
}

body.home-platea .site-header {
  background: rgba(248, 249, 252, 0.94);
  border-bottom: 1px solid #e1e5eb;
}

body.home-platea .header-inner {
  min-height: 84px;
}

body.home-platea .logo {
  font-family: "Fraunces", serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0;
}

body.home-platea .logo span {
  color: var(--platea-brand);
}

body.home-platea .main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #444a53;
}

body.home-platea .main-nav a.active,
body.home-platea .main-nav a:hover {
  background: #eceff4;
  color: #20252b;
}

.platea-hero {
  padding-top: 34px;
}

.platea-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  border: 1px solid var(--platea-line);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(130deg, #eef1f5 0%, #dadfe6 55%, #ccd3dc 100%);
  min-height: 430px;
}

.platea-hero-copy {
  padding: clamp(28px, 5vw, 58px);
  align-self: center;
}

.platea-kicker {
  display: inline-flex;
  background: #ffffff;
  border: 1px solid #dce1e9;
  color: #5f6570;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.platea-hero-copy h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3.45rem);
  line-height: 1.04;
  margin: 16px 0 14px;
  max-width: 560px;
}

.platea-hero-copy p {
  max-width: 520px;
  color: #4f5660;
  margin: 0;
}

.platea-search {
  margin-top: 26px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  border-radius: 9px;
  overflow: hidden;
  width: min(100%, 520px);
  border: 1px solid #d9dfe8;
  background: #fff;
}

.platea-search input {
  border: 0;
  outline: 0;
  background: #fff;
  padding: 13px 14px;
  font: inherit;
}

.platea-search button {
  border: 0;
  color: #fff;
  font-weight: 700;
  background: var(--platea-brand);
  padding: 0 20px;
  cursor: pointer;
}

.platea-hero-media {
  position: relative;
}

.platea-hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(21, 23, 29, 0.12), rgba(21, 23, 29, 0));
}

.platea-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.platea-tabs-wrap {
  padding-top: 38px;
}

.platea-tabs {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--platea-line);
  padding-bottom: 12px;
}

.platea-tabs button {
  border: 0;
  background: transparent;
  color: #666d76;
  font-weight: 700;
  padding: 8px 0;
  cursor: pointer;
}

.platea-tabs button.active {
  color: #171b21;
  border-bottom: 2px solid var(--platea-brand);
}

.platea-card-row {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.platea-recipe-card {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e3e7ec;
  background: #fff;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.platea-recipe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(25, 29, 36, 0.13);
}

.platea-recipe-card img {
  aspect-ratio: 1.15;
  width: 100%;
  object-fit: cover;
}

.platea-recipe-body {
  padding: 13px;
}

.platea-type {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--platea-brand);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.platea-recipe-body h3 {
  margin: 7px 0 10px;
  font-size: 0.98rem;
  line-height: 1.35;
}

.platea-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  color: #69707a;
  font-size: 0.79rem;
}

.platea-meta span {
  border: 1px solid #e4e8ee;
  padding: 4px 8px;
  border-radius: 999px;
  background: #f7f8fb;
}

.platea-banner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  background: #f0f2f6;
  border: 1px solid #dfe4ec;
  border-radius: 14px;
  overflow: hidden;
}

.platea-banner img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
}

.platea-banner-copy {
  padding: clamp(22px, 4vw, 48px);
  align-self: center;
}

.platea-banner-copy span {
  display: inline-block;
  color: #5e646e;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.platea-banner-copy h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  line-height: 1.1;
  max-width: 540px;
}

.platea-title {
  text-align: center;
  margin-bottom: 22px;
}

.platea-title h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
}

.platea-title p {
  margin: 9px auto 0;
  color: #6c737d;
  max-width: 600px;
}

.platea-filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.platea-filter a {
  border: 1px solid #dfe4eb;
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #535b65;
  background: #fff;
}

.platea-filter a.active,
.platea-filter a:hover {
  background: var(--platea-brand);
  color: #fff;
  border-color: transparent;
}

.platea-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.platea-tile {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e4e8ee;
  overflow: hidden;
}

.platea-tile img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.platea-tile h3 {
  margin: 12px 12px 8px;
  font-size: 1rem;
  line-height: 1.33;
}

.platea-tile .platea-meta {
  padding: 0 12px 13px;
}

.platea-video-section {
  padding-top: 84px;
}

.platea-video-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 14px;
}

.platea-video-main,
.platea-video-card {
  background: #fff;
  border: 1px solid #dfe4eb;
  border-radius: 12px;
  overflow: hidden;
}

.platea-video-main {
  position: relative;
}

.platea-video-main img,
.platea-video-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.platea-video-main button {
  position: absolute;
  left: 14px;
  top: 14px;
  border: 0;
  border-radius: 999px;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(19, 21, 26, 0.73);
}

.platea-video-main h3,
.platea-video-card h3 {
  margin: 12px;
  font-size: 1rem;
  line-height: 1.35;
}

.platea-category-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}

.platea-category-grid a {
  border: 1px solid #dce2ea;
  border-radius: 10px;
  background: #fff;
  padding: 12px 10px;
  text-align: center;
}

.platea-category-grid strong {
  display: block;
  font-size: 0.85rem;
}

.platea-category-grid span {
  display: block;
  font-size: 0.72rem;
  color: #707882;
  margin-top: 4px;
}

.platea-journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.platea-journal-grid article {
  border: 1px solid #dfe4ec;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}

.platea-journal-grid img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.platea-journal-grid h3 {
  margin: 12px;
  font-size: 1rem;
  line-height: 1.35;
}

body.home-platea .site-footer {
  margin-top: 84px;
  background: linear-gradient(160deg, #1d2026, #262b33);
  color: #ebedf2;
}

body.home-platea .site-footer a {
  color: #cfd6df;
}

body.home-platea .footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #b8c0cb;
}

@media (max-width: 1100px) {
  .platea-card-row,
  .platea-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platea-video-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .platea-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body.home-platea .main-nav {
    background: #f6f8fb;
  }

  .platea-hero-inner,
  .platea-banner,
  .platea-card-row,
  .platea-grid,
  .platea-video-grid,
  .platea-journal-grid,
  .platea-category-grid {
    grid-template-columns: 1fr;
  }

  .platea-hero {
    padding-top: 18px;
  }

  .platea-tabs {
    gap: 14px;
  }

  .platea-search {
    grid-template-columns: 1fr;
  }

  .platea-search button {
    padding: 12px 14px;
  }

  .platea-banner img,
  .platea-video-main img,
  .platea-video-card img {
    aspect-ratio: 1.2;
  }
}

/* Shared style for non-home pages */
body.inner-platea .page-hero {
  padding: 52px 0 34px;
  background: linear-gradient(180deg, rgba(244, 247, 251, 0.88), rgba(241, 244, 248, 0));
}

body.inner-platea .page-hero h1,
body.inner-platea h2 {
  font-family: "Fraunces", serif;
  letter-spacing: -0.01em;
}

body.inner-platea .breadcrumb {
  color: #6f7680;
}

body.inner-platea .breadcrumb a {
  color: #4e5560;
}

body.inner-platea .section {
  padding: 58px 0;
}

body.inner-platea .badge {
  background: #fef0ee;
  color: #b92f25;
  border-color: #f3c5c1;
}

body.inner-platea .card,
body.inner-platea .widget,
body.inner-platea .form-card,
body.inner-platea .info-card,
body.inner-platea .info-box {
  background: #fff;
  border-color: #dfe4eb;
  box-shadow: 0 12px 26px rgba(22, 28, 38, 0.08);
}

body.inner-platea .card:hover {
  box-shadow: 0 18px 30px rgba(22, 28, 38, 0.12);
}

body.inner-platea .meta span,
body.inner-platea .pill,
body.inner-platea .filter-chip,
body.inner-platea .input,
body.inner-platea textarea,
body.inner-platea .sort-row select {
  background: #f8f9fc;
  border-color: #dde3eb;
  color: #4f5762;
}

body.inner-platea .btn-primary,
body.inner-platea .filter-chip.active,
body.inner-platea .filter-chip:hover {
  background: linear-gradient(135deg, #f1493e, #e3372b);
  box-shadow: 0 12px 20px rgba(224, 58, 45, 0.24);
}

body.inner-platea .btn-light {
  background: #f7f9fc;
  border-color: #dce3ec;
}

body.inner-platea .sidebar-layout {
  gap: 20px;
}

body.inner-platea .recipe-detail .cover {
  border-color: #dce2ea;
}

body.inner-platea .two-col-info {
  gap: 12px;
}

body.inner-platea .list-links a:hover {
  color: #db3d31;
}

body.inner-platea .pill:hover {
  background: #eef2f8;
  box-shadow: none;
}

@media (max-width: 760px) {
  body.inner-platea .page-hero {
    padding: 38px 0 24px;
  }

  body.inner-platea .section {
    padding: 48px 0;
  }
}

body.inner-platea .inner-hero {
  padding: 38px 0 12px;
}

body.inner-platea .inner-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  border: 1px solid #dfe5ed;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(125deg, #f8fafe 0%, #eef2f7 60%, #e8edf5 100%);
}

body.inner-platea .inner-hero-grid > div:first-child {
  padding: clamp(22px, 3vw, 38px);
  align-self: center;
}

body.inner-platea .inner-hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 1.1;
}

body.inner-platea .inner-hero p {
  margin: 0;
  max-width: 560px;
  color: #5f6671;
}

body.inner-platea .inner-hero-media {
  position: relative;
  overflow: hidden;
}

body.inner-platea .inner-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(15, 17, 23, 0.2), rgba(15, 17, 23, 0));
}

body.inner-platea .inner-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 270px;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.55s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: transform;
}

@media (hover: hover) and (pointer: fine) {
  body.inner-platea .inner-hero-grid:hover .inner-hero-media img {
    transform: scale(1.045);
  }
}

body.inner-platea .hero-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

body.inner-platea .hero-mini-stats span {
  border: 1px solid #d7deea;
  background: rgba(255, 255, 255, 0.82);
  color: #4c5560;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 7px 10px;
}

body.inner-platea .about-story .grid-2 {
  align-items: center;
  gap: 28px;
}

body.inner-platea .about-metrics {
  padding-top: 18px;
}

body.inner-platea .about-metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

body.inner-platea .about-metrics-grid article {
  border: 1px solid #dfe4eb;
  border-radius: 12px;
  background: #fff;
  padding: 16px 14px;
  text-align: center;
}

body.inner-platea .about-metrics-grid strong {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 1.65rem;
  line-height: 1.1;
}

body.inner-platea .about-metrics-grid span {
  display: block;
  margin-top: 5px;
  font-size: 0.84rem;
  color: #626a75;
  font-weight: 600;
}

body.inner-platea .about-values .card-body {
  padding: 24px;
}

body.inner-platea .about-team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

body.inner-platea .about-team-grid article {
  background: #fff;
  border: 1px solid #dfe4eb;
  border-radius: 12px;
  overflow: hidden;
}

body.inner-platea .about-team-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

body.inner-platea .about-team-grid h3 {
  margin: 12px 12px 5px;
  font-size: 1.05rem;
}

body.inner-platea .about-team-grid p {
  margin: 0 12px 14px;
  color: #636b75;
  font-size: 0.9rem;
}

body.inner-platea .recipes-layout .recipes-toolbar {
  border: 1px solid #dfe4eb;
  border-radius: 12px;
  background: #fff;
  padding: 14px;
}

body.inner-platea .recipes-collection-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 14px;
}

body.inner-platea .recipes-collection-strip article {
  border: 1px solid #dfe4eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 10px;
}

body.inner-platea .recipes-collection-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.inner-platea .recipes-collection-strip div {
  padding: 10px 12px 10px 0;
}

body.inner-platea .recipes-collection-strip h3 {
  margin: 0;
  font-size: 1rem;
}

body.inner-platea .recipes-collection-strip p {
  margin: 6px 0 0;
  color: #626a75;
  font-size: 0.87rem;
}

body.inner-platea .recipes-layout [data-recipe-grid] {
  margin-top: 14px;
}

body.inner-platea .detail-layout .check-list {
  border: 1px solid #e3e8ef;
  border-radius: 12px;
  background: #fff;
  padding: 14px 16px 14px 32px;
}

body.inner-platea .detail-layout .check-list li + li {
  margin-top: 10px;
}

body.inner-platea .detail-support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

body.inner-platea .detail-support-card {
  border: 1px solid #dfe4eb;
  border-radius: 12px;
  background: #fff;
  padding: 14px;
}

body.inner-platea .detail-support-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}

body.inner-platea .detail-support-card ul {
  margin: 0;
  padding-left: 18px;
  color: #505964;
}

body.inner-platea .detail-support-card li + li {
  margin-top: 8px;
}

body.inner-platea .nutrition-tool {
  margin: 14px 0 18px;
  border: 1px solid #dfe5ee;
  border-radius: 12px;
  background: #fff;
  padding: 14px;
  display: grid;
  gap: 12px;
}

body.inner-platea .serving-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

body.inner-platea .serving-controls h3 {
  margin: 0;
  font-size: 1rem;
}

body.inner-platea .serving-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

body.inner-platea .serving-btn {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid #d8dfeb;
  background: #f8fafd;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

body.inner-platea .serving-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

body.inner-platea .nutrition-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

body.inner-platea .nutrition-grid article {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fbff;
  padding: 10px;
  text-align: center;
}

body.inner-platea .nutrition-grid strong {
  display: block;
  font-size: 1.08rem;
}

body.inner-platea .nutrition-grid span {
  display: block;
  margin-top: 2px;
  font-size: 0.78rem;
  color: #6a727c;
}

body.inner-platea .blog-layout .grid-2,
body.inner-platea .blog-layout .sidebar-layout {
  gap: 18px;
}

body.inner-platea .blog-detail-layout article > p,
body.inner-platea .blog-detail-layout article > h2,
body.inner-platea .blog-detail-layout article > ul {
  max-width: 780px;
}

body.inner-platea .blog-detail-layout article > p {
  color: #4e5660;
}

body.inner-platea .contact-layout .contact-grid {
  align-items: start;
}

body.inner-platea .contact-layout .form-card,
body.inner-platea .contact-layout .info-card {
  padding: 24px;
}

body.inner-platea .contact-layout .info-card {
  background: linear-gradient(170deg, #ffffff 0%, #f8fbff 100%);
}

body.inner-platea .inner-article-cover {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #dfe4eb;
  margin-bottom: 18px;
}

@media (max-width: 960px) {
  .search-filter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .search-group {
    grid-column: 1 / -1;
  }

  body.inner-platea .nutrition-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.inner-platea .about-metrics-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.inner-platea .about-team-grid,
  body.inner-platea .recipes-collection-strip,
  body.inner-platea .detail-support-grid {
    grid-template-columns: 1fr;
  }

  body.inner-platea .recipes-collection-strip article {
    grid-template-columns: 100px 1fr;
  }

  body.inner-platea .inner-hero-grid {
    grid-template-columns: 1fr;
  }

  body.inner-platea .inner-hero-media img {
    min-height: 220px;
  }
}

@media (max-width: 760px) {
  .search-filter-grid {
    grid-template-columns: 1fr;
  }

  body.inner-platea .inner-hero {
    padding-top: 24px;
  }

  body.inner-platea .inner-hero-grid > div:first-child {
    padding: 18px;
  }
}

/* Global header/footer and newsletter polish */
body.home-platea .site-header {
  border-bottom: 1px solid rgba(208, 216, 228, 0.84);
  background:
    linear-gradient(180deg, rgba(251, 252, 255, 0.97), rgba(245, 248, 252, 0.94));
  box-shadow: 0 8px 24px rgba(14, 19, 28, 0.06);
}

body.home-platea .header-inner {
  min-height: 82px;
}

body.home-platea .logo {
  position: relative;
  font-family: "Fraunces", serif;
  font-size: clamp(1.3rem, 2.1vw, 1.55rem);
  letter-spacing: 0.01em;
  color: #151a22;
  padding-left: 18px;
}

body.home-platea .logo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: linear-gradient(140deg, #fa5b4e, #dc3429);
  box-shadow: 0 0 0 5px rgba(248, 88, 74, 0.12);
}

body.home-platea .main-nav ul {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid #dce3ed;
  border-radius: 999px;
  padding: 4px;
  gap: 2px;
}

body.home-platea .main-nav a {
  padding: 10px 16px;
  border-radius: 999px;
}

body.home-platea .main-nav a.active,
body.home-platea .main-nav a:hover {
  background: linear-gradient(135deg, #f55145, #de372c);
  color: #fff;
}

body.home-platea .site-footer {
  margin-top: 90px;
  background:
    radial-gradient(circle at 9% 12%, rgba(255, 108, 85, 0.22), transparent 34%),
    radial-gradient(circle at 92% 86%, rgba(121, 158, 255, 0.18), transparent 35%),
    linear-gradient(145deg, #181d26, #242b36 58%, #1a2029 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

body.home-platea .site-footer .container {
  position: relative;
}

.footer-newsletter {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
  padding: clamp(16px, 3vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: linear-gradient(125deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(4px);
}

.footer-newsletter h4 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  color: #f4f7fb;
}

.footer-newsletter p {
  margin: 4px 0 0;
  color: #c7d0dc;
  font-size: 0.92rem;
}

.footer-newsletter form {
  display: grid;
  grid-template-columns: minmax(180px, 260px) auto;
  gap: 8px;
}

.footer-newsletter input {
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 14, 19, 0.35);
  color: #f6f9ff;
  border-radius: 10px;
  padding: 11px 12px;
  font: inherit;
}

.footer-newsletter input::placeholder {
  color: #a7b2c2;
}

.footer-newsletter button {
  border: 0;
  border-radius: 10px;
  padding: 11px 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #f65648, #e13a2e);
  cursor: pointer;
}

body.home-platea .footer-grid {
  gap: 26px;
  padding-top: 4px;
}

.footer-rich {
  margin-bottom: 22px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 12px;
}

.footer-brand-card,
.footer-link-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03));
  padding: 16px;
}

.footer-brand-card h4,
.footer-link-card h4 {
  margin: 0 0 9px;
  font-family: "Fraunces", serif;
  color: #f4f7ff;
  font-size: 1.15rem;
}

.footer-brand-card p {
  margin: 0;
  color: #c5cfde;
  max-width: 340px;
}

.footer-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.footer-pill-row span {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #dce5f2;
  background: rgba(10, 14, 19, 0.25);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 6px 10px;
}

.footer-link-card .list-links li + li {
  margin-top: 8px;
}

.footer-link-card .list-links a {
  color: #d2d9e4;
}

.footer-link-card .list-links a:hover {
  color: #fff;
}

.footer-utility {
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
}

.footer-socials {
  display: flex;
  gap: 7px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #e7eef9;
  background: rgba(12, 16, 22, 0.35);
}

.footer-socials a:hover {
  background: linear-gradient(130deg, #f65648, #dd3328);
  border-color: transparent;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-trust span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(12, 16, 22, 0.28);
  color: #d7e0ec;
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 0.76rem;
  font-weight: 700;
}

.footer-top-btn {
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(12, 16, 22, 0.35);
  color: #eef3fb;
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
}

.footer-top-btn:hover {
  background: linear-gradient(130deg, #f65648, #dd3328);
  border-color: transparent;
}

body.home-platea .site-footer h4 {
  color: #f3f7ff;
  letter-spacing: 0.01em;
}

body.home-platea .site-footer p,
body.home-platea .site-footer .list-links a,
body.home-platea .footer-copy {
  color: #c8d0db;
}

body.home-platea .site-footer .list-links a:hover {
  color: #ffffff;
}

body.home-platea .footer-copy {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

body.home-platea .sidebar .widget h4 {
  font-family: "Fraunces", serif;
  font-size: 1.18rem;
}

body.home-platea .sidebar .widget form.form-grid {
  gap: 9px;
}

body.home-platea .sidebar .widget form.form-grid .btn-primary {
  width: 100%;
}

@media (max-width: 980px) {
  .footer-newsletter {
    grid-template-columns: 1fr;
  }

  .footer-newsletter form {
    width: 100%;
  }

  .footer-rich {
    grid-template-columns: 1fr;
  }

  .footer-utility {
    grid-template-columns: 1fr;
    justify-items: start;
  }
}

@media (max-width: 760px) {
  body.home-platea .main-nav ul {
    border-radius: 14px;
    border: 0;
    background: transparent;
    padding: 0;
  }

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

  body.home-platea .logo {
    padding-left: 14px;
  }

  body.home-platea .logo::before {
    width: 8px;
    height: 8px;
  }
}

@media (max-width: 1140px) {
  .platea-hero-inner {
    grid-template-columns: 1fr;
  }

  .platea-hero-media img {
    min-height: 320px;
  }

  .platea-banner {
    grid-template-columns: 1fr;
  }

  .platea-banner img {
    min-height: 240px;
  }
}

@media (max-width: 980px) {
  .sidebar-layout {
    grid-template-columns: 1fr;
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 760px) {
  .container {
    width: min(var(--container), 94vw);
  }

  .header-inner {
    min-height: 72px;
  }

  .main-nav {
    top: 73px;
  }

  .search-box,
  .platea-search {
    grid-template-columns: 1fr;
  }

  .sort-row {
    align-items: stretch;
  }

  .sort-row label {
    width: 100%;
  }

  .sort-row select {
    width: 100%;
    min-width: 0;
  }

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

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

}
