/* ============================================================
   Pegavo Konyha . pegavo.com
   Hungarian Cooking, Slow and Golden
   Palette: deep paprika red #a63a2e, warm cream #f5ede1,
            charcoal #2b211d, gold accent #c9922b
   Type: Fraunces (display serif) + Figtree (clean sans)
   Signature: arched photo tiles + folk tulip embroidery band
   ============================================================ */

:root {
  --paprika: #a63a2e;
  --paprika-deep: #7f2b21;
  --paprika-night: #331109;
  --cream: #f5ede1;
  --cream-deep: #ebdfcb;
  --paper: #faf5eb;
  --charcoal: #2b211d;
  --ink: #2b211d;
  --ink-soft: #57493f;
  --ink-faint: #85756a;
  --gold: #c9922b;
  --gold-bright: #dfb35e;
  --gold-pale: #f1e2c2;
  --line: rgba(166, 58, 46, 0.20);
  --line-soft: rgba(166, 58, 46, 0.10);
  --shadow-soft: 0 1px 2px rgba(43, 33, 29, 0.06), 0 10px 30px rgba(43, 33, 29, 0.10);
  --shadow-lift: 0 2px 6px rgba(43, 33, 29, 0.09), 0 24px 48px rgba(43, 33, 29, 0.17);
  --heading-font: 'Fraunces', 'Iowan Old Style', Georgia, serif;
  --body-font: 'Figtree', 'Avenir Next', 'Segoe UI', sans-serif;
  --radius-card: 14px;
  --radius-btn: 10px;
  --folk-band: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='16' viewBox='0 0 72 16'%3E%3Crect width='72' height='16' fill='%232b211d'/%3E%3Cpath d='M18 13 C18 9.5 14.5 8.5 14 5.2 C15.4 7.2 16.9 7.4 18 4 C19.1 7.4 20.6 7.2 22 5.2 C21.5 8.5 18 9.5 18 13 Z' fill='%23a63a2e'/%3E%3Cpath d='M54 13 C54 9.5 50.5 8.5 50 5.2 C51.4 7.2 52.9 7.4 54 4 C55.1 7.4 56.6 7.2 58 5.2 C57.5 8.5 54 9.5 54 13 Z' fill='%23c9922b'/%3E%3Ccircle cx='36' cy='8.2' r='1.8' fill='%23c9922b'/%3E%3Ccircle cx='0' cy='8.2' r='1.8' fill='%23a63a2e'/%3E%3Ccircle cx='72' cy='8.2' r='1.8' fill='%23a63a2e'/%3E%3Crect y='0.6' width='72' height='1.1' fill='%23c9922b' fill-opacity='0.45'/%3E%3Crect y='14.3' width='72' height='1.1' fill='%23c9922b' fill-opacity='0.45'/%3E%3C/svg%3E");
  --dark-texture: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cpath d='M36 8 C36 20 24 24 24 36 C24 24 12 20 12 8' fill='none' stroke='%23f1e2c2' stroke-opacity='0.06'/%3E%3Ccircle cx='52' cy='52' r='14' fill='none' stroke='%23f1e2c2' stroke-opacity='0.05'/%3E%3C/svg%3E");
}

/* ===== RESET / BASE ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body {
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--ink);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--paprika-deep); text-decoration: none; transition: color 0.25s ease; }
a:hover { color: var(--gold); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
h1, h2, h3, h4 {
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
}
h1 em, h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--paprika);
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ===== KICKER ===== */
.kicker {
  display: block;
  font-family: var(--body-font);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paprika);
}
.kicker--left { text-align: left; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(245, 237, 225, 0.82);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: rgba(250, 245, 235, 0.96);
  border-bottom: 1px solid var(--line-soft);
  box-shadow: 0 6px 24px rgba(43, 33, 29, 0.07);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--charcoal);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo:hover { color: var(--paprika); }
.logo-mark { font-size: 26px; line-height: 1; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--paprika-deep);
  cursor: pointer;
  padding: 6px 10px;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 15.5px;
  font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: right 0.3s ease;
}
.nav-links a:hover { color: var(--paprika-deep); }
.nav-links a:hover::after { right: 0; }

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 172px 32px 110px;
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(201, 146, 43, 0.16), transparent 60%),
    radial-gradient(900px 600px at -12% 108%, rgba(166, 58, 46, 0.10), transparent 55%),
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(166, 58, 46, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
}
.hero-copy { animation: heroRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both; }
.hero-copy .kicker { margin-bottom: 22px; }
.hero h1 {
  font-size: clamp(44px, 5.6vw, 72px);
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 26px;
}
.hero-lede {
  font-size: 19.5px;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-bottom: 36px;
}
.hero-actions { margin-bottom: 40px; }
.btn-primary {
  display: inline-block;
  font-family: var(--body-font);
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--cream);
  background: linear-gradient(135deg, var(--paprika) 0%, var(--paprika-deep) 100%);
  padding: 16px 38px;
  border-radius: var(--radius-btn);
  border: 1px solid rgba(127, 43, 33, 0.7);
  box-shadow: 0 3px 0 rgba(127, 43, 33, 0.55), var(--shadow-soft);
  transition: transform 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}
.btn-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 0 rgba(127, 43, 33, 0.55), var(--shadow-lift);
}
.hero-fats {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-faint);
}
.hero-fats .dot { color: var(--gold); font-style: normal; font-size: 13px; }

/* Hero figure: arched photo tile with gold frame */
.hero-figure {
  position: relative;
  margin: 0;
  animation: heroRise 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-frame {
  position: absolute;
  top: -18px; right: -18px;
  bottom: 56px; left: 30px;
  border: 2px solid var(--gold);
  border-radius: 260px 260px 18px 18px;
  opacity: 0.65;
  pointer-events: none;
}
.hero-tile {
  position: relative;
  border-radius: 240px 240px 14px 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 6px solid var(--paper);
}
.hero-tile img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 6s ease;
}
.hero-figure:hover .hero-tile img { transform: scale(1.045); }
.hero-tile-base {
  position: absolute;
  left: 8%; right: 8%;
  bottom: -14px;
  height: 26px;
  background: var(--cream-deep);
  border-radius: 50%;
  filter: blur(14px);
  opacity: 0.9;
  z-index: -1;
}
.hero-caption {
  position: absolute;
  left: -6px;
  bottom: 26px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(250, 245, 235, 0.95);
  border: 1px solid var(--line-soft);
  border-left: 4px solid var(--paprika);
  border-radius: 12px;
  padding: 14px 22px 14px 16px;
  box-shadow: var(--shadow-soft);
}
.cap-mark { color: var(--gold); font-size: 18px; }
.cap-title {
  font-family: var(--heading-font);
  font-size: 18px;
  font-weight: 600;
  color: var(--charcoal);
}
.cap-sub { font-size: 13.5px; color: var(--ink-faint); }

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

/* ===== PRINCIPLES ===== */
.principles {
  position: relative;
  background:
    var(--dark-texture),
    linear-gradient(150deg, var(--paprika-deep) 0%, var(--paprika-night) 78%);
  padding: 84px 32px;
  border-top: 5px solid var(--gold);
}
.principles-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 56px;
}
.principle { position: relative; padding-left: 26px; }
.principle::before {
  content: "";
  position: absolute;
  left: 0; top: 6px; bottom: 6px;
  width: 3px;
  background: linear-gradient(180deg, var(--gold) 0%, rgba(201, 146, 43, 0.15) 100%);
  border-radius: 2px;
}
.p-word {
  display: block;
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 30px;
  font-weight: 500;
  color: var(--gold-bright);
  margin-bottom: 12px;
}
.principle h3 {
  font-size: 23px;
  color: var(--cream);
  margin-bottom: 12px;
}
.principle p {
  font-size: 16.5px;
  line-height: 1.72;
  color: rgba(245, 237, 225, 0.78);
}

/* ===== RECIPES SECTION ===== */
.recipes-section {
  background: var(--paper);
  padding: 110px 0 120px;
}
.section-head {
  text-align: center;
  max-width: 660px;
  margin: 0 auto 70px;
}
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gold);
  font-size: 15px;
}
.ornament::before, .ornament::after {
  content: "";
  width: 74px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }
.section-head .kicker { display: block; margin-bottom: 16px; }
.section-head h2 {
  font-size: clamp(36px, 4.2vw, 52px);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.section-head p { font-size: 18.5px; color: var(--ink-soft); }

.recipes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
  align-items: start;
}
.recipe-card {
  background: #fffdf8;
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.recipe-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lift);
}
.recipe-media {
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}
.recipe-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.recipe-card:hover .recipe-img { transform: scale(1.06); }
.recipe-tag {
  position: absolute;
  top: 16px; left: 16px;
  z-index: 2;
  font-family: var(--body-font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(43, 33, 29, 0.78);
  border: 1px solid rgba(201, 146, 43, 0.55);
  padding: 6px 14px;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.recipe-info { padding: 28px 26px 30px; }
.recipe-info h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 6px;
}
.recipe-sub {
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 16.5px;
  color: var(--paprika);
  margin-bottom: 14px;
}
.recipe-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
}
.recipe-meta .sep { color: var(--gold); }
.recipe-desc {
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.btn-expand {
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--paprika-deep);
  background: transparent;
  border: 2px solid var(--paprika);
  border-radius: var(--radius-btn);
  padding: 11px 26px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn-expand:hover {
  background: var(--paprika);
  border-color: var(--paprika);
  color: var(--cream);
}
.recipe-details {
  display: none;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px dashed var(--line);
}
.recipe-details.active { display: block; animation: detailsIn 0.4s ease both; }
@keyframes detailsIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.recipe-details h4 {
  font-size: 15px;
  font-family: var(--body-font);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.recipe-details h4:not(:first-child) { margin-top: 24px; }
.recipe-details ul, .recipe-details ol {
  margin-left: 20px;
  color: var(--ink-soft);
  font-size: 16px;
}
.recipe-details li { margin-bottom: 8px; line-height: 1.6; }
.recipe-details ul li::marker { color: var(--paprika); }
.recipe-details ol li::marker {
  color: var(--paprika);
  font-weight: 700;
}

/* ===== ABOUT ===== */
.about-section {
  background:
    radial-gradient(900px 500px at 108% 0%, rgba(201, 146, 43, 0.14), transparent 55%),
    var(--cream);
  padding: 116px 32px;
  border-top: 1px solid var(--line-soft);
}
.about-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 76px;
  align-items: center;
}
.about-figure { position: relative; margin: 0; }
.about-frame {
  position: absolute;
  top: -16px; left: -16px;
  right: 34px; bottom: 34px;
  border: 2px solid var(--paprika);
  border-radius: 220px 220px 16px 16px;
  opacity: 0.5;
  pointer-events: none;
}
.about-tile {
  position: relative;
  border-radius: 200px 200px 12px 12px;
  overflow: hidden;
  border: 6px solid var(--paper);
  box-shadow: var(--shadow-lift);
}
.about-tile img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  transition: transform 6s ease;
}
.about-figure:hover .about-tile img { transform: scale(1.045); }
.about-tile-base {
  position: absolute;
  left: 10%; right: 10%;
  bottom: -12px;
  height: 24px;
  background: var(--cream-deep);
  border-radius: 50%;
  filter: blur(13px);
  z-index: -1;
}
.about-copy .kicker { margin-bottom: 18px; }
.about-copy h2 {
  font-size: clamp(32px, 3.8vw, 46px);
  font-weight: 700;
  margin-bottom: 26px;
}
.about-copy p {
  font-size: 18px;
  line-height: 1.78;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.about-sign {
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 21px;
  color: var(--ink);
  margin-top: 8px;
}
.sign-word { color: var(--paprika); font-weight: 600; }

/* ===== FOLK BAND ===== */
.folk-band {
  height: 16px;
  background-image: var(--folk-band);
  background-repeat: repeat-x;
  background-size: 72px 16px;
}

/* ===== FOOTER ===== */
.footer {
  background:
    var(--dark-texture),
    linear-gradient(180deg, var(--charcoal) 0%, #1d1512 100%);
  color: rgba(245, 237, 225, 0.82);
  padding: 76px 0 34px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1.1fr;
  gap: 56px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(201, 146, 43, 0.22);
}
.footer-logo {
  font-family: var(--heading-font);
  font-size: 25px;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(245, 237, 225, 0.66);
  margin-bottom: 18px;
  max-width: 40ch;
}
.footer-tag {
  display: inline-block;
  font-family: var(--heading-font);
  font-style: italic;
  font-size: 16px;
  color: var(--gold-bright);
}
.footer h4 {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(245, 237, 225, 0.72);
  font-size: 16px;
}
.footer-links a:hover { color: var(--gold-bright); }
.footer-company p {
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(245, 237, 225, 0.66);
}
.footer-company strong { color: rgba(245, 237, 225, 0.9); }
.footer-company a { color: var(--gold-bright); }
.footer-company a:hover { color: var(--cream); }
.footer-bottom {
  padding-top: 28px;
  text-align: center;
}
.footer-bottom p {
  font-size: 14px;
  color: rgba(245, 237, 225, 0.45);
}

/* ===== LEGAL PAGES ===== */
.legal-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 150px 32px 90px;
}
.legal-main h1 {
  font-size: clamp(38px, 4.5vw, 52px);
  font-weight: 700;
  margin-bottom: 14px;
}
.legal-meta {
  font-size: 15.5px;
  color: var(--ink-faint);
}
.legal-main h2 {
  font-size: 27px;
  margin: 38px 0 14px;
  padding-top: 10px;
  color: var(--paprika-deep);
}
.legal-main h3 { font-size: 22px; color: var(--paprika-deep); margin: 20px 0 10px; }
.legal-main p { margin-bottom: 15px; font-size: 16.5px; color: var(--ink-soft); }
.legal-main ul, .legal-main ol { margin: 15px 0 15px 26px; color: var(--ink-soft); }
.legal-main li { margin-bottom: 9px; font-size: 16.5px; }
.legal-main li::marker { color: var(--gold); }
.legal-main a { color: var(--paprika-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal-main a:hover { color: var(--gold); }
.legal-main strong { color: var(--ink); font-weight: 700; }
.company-contact-box {
  margin-top: 28px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-left: 5px solid var(--paprika);
  border-radius: 12px;
  padding: 28px 32px;
  box-shadow: var(--shadow-soft);
}
.company-contact-box h3 { margin-top: 0; color: var(--paprika-deep); }
.company-contact-box p { margin-bottom: 6px; }

/* ===== REVEAL ON SCROLL ===== */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal.visible {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero-copy, .hero-figure { animation: none; }
  .recipe-card, .recipe-img, .hero-tile img, .about-tile img,
  .btn-primary, .btn-expand { transition: none; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { padding: 150px 28px 90px; }
  .hero-inner { grid-template-columns: 1fr; gap: 64px; }
  .hero-copy { text-align: center; }
  .hero-copy .kicker { text-align: center; }
  .hero-lede { margin-left: auto; margin-right: auto; }
  .hero-fats { justify-content: center; }
  .hero-figure { max-width: 560px; margin: 0 auto; }
  .principles-grid { grid-template-columns: 1fr; gap: 40px; max-width: 640px; }
  .recipes-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; gap: 64px; }
  .about-figure { max-width: 520px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lift);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
  }
  .nav-links.open { max-height: 420px; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 15px 32px;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav-links a::after { display: none; }
  .hero { padding: 134px 24px 76px; }
  .hero-tile img { height: 420px; }
  .recipes-section { padding: 84px 0 90px; }
  .recipes-grid { grid-template-columns: 1fr; gap: 32px; }
  .section-head { margin-bottom: 54px; }
  .about-section { padding: 88px 24px; }
  .about-tile img { height: 400px; }
  .legal-main { padding: 130px 26px 70px; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .nav-container { padding: 0 20px; }
  .nav-logo { font-size: 20px; }
  .hero { padding: 122px 18px 60px; }
  .hero h1 { font-size: 38px; }
  .hero-lede { font-size: 18px; }
  .hero-fats { font-size: 16px; gap: 10px; flex-wrap: wrap; }
  .hero-tile img { height: 330px; }
  .hero-caption { left: 0; padding: 11px 16px 11px 13px; }
  .cap-title { font-size: 16px; }
  .principles { padding: 64px 22px; }
  .p-word { font-size: 26px; }
  .recipe-info { padding: 24px 20px 26px; }
  .recipe-info h3 { font-size: 23px; }
  .about-copy h2 { font-size: 30px; }
  .about-tile img { height: 320px; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .legal-main { padding: 118px 20px 60px; }
  .company-contact-box { padding: 22px; }
}
