/*
Theme Name: Mealorra
Theme URI: https://www.mealorra.online
Author: Mealorra
Author URI: https://www.mealorra.online
Description: Premium German recipe WordPress theme with Startseite, Über uns, Leistungen, and Kontakt. Unsplash imagery.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mealorra
Tags: one-page, custom-menu, featured-images, translation-ready, food-and-drink
*/

:root {
  --ivory: #faf7f2;
  --ivory-dark: #f0ebe3;
  --white: #ffffff;
  --forest: #1a3c34;
  --forest-light: #2d5a4e;
  --terracotta: #c45c3e;
  --terracotta-light: #d97558;
  --gold: #d4a853;
  --gold-light: #e8c47a;
  --charcoal: #1c1a18;
  --charcoal-soft: #3d3835;
  --text: #1c1a18;
  --text-soft: #5c5652;
  --muted: #8a827c;
  --line: rgba(26, 60, 52, 0.1);
  --shadow: 0 28px 64px rgba(26, 60, 52, 0.18);
  --shadow-soft: 0 12px 32px rgba(26, 60, 52, 0.1);
  --radius: 20px;
  --radius-lg: 32px;
  --radius-sm: 12px;
  --header-h: 78px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--text);
  line-height: 1.75;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(212, 168, 83, 0.2);
  color: var(--forest);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tag::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 30px;
  border: none;
  background: var(--terracotta);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  box-shadow: 0 8px 24px rgba(196, 92, 62, 0.35);
}

.btn:hover {
  background: var(--terracotta-light);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.8);
  box-shadow: none;
}

.btn-outline:hover {
  background: #fff;
  color: var(--forest);
  border-color: #fff;
}

.btn-forest {
  background: var(--forest);
  box-shadow: 0 8px 24px rgba(26, 60, 52, 0.35);
}

.btn-forest:hover {
  background: var(--forest-light);
  color: #fff;
}

.btn-full {
  width: 100%;
}

/* Header — floating pill nav */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 14px 0;
  transition: padding 0.3s ease;
}

.site-header.is-scrolled {
  padding: 8px 0;
}

.header-shell {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: var(--header-h);
  padding: 0 28px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border-radius: 999px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled .header-shell {
  background: rgba(26, 60, 52, 0.96);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.01em;
}

.logo-accent {
  color: var(--terracotta);
}

.site-header.is-scrolled .logo {
  color: #fff;
}

.site-header.is-scrolled .logo-accent {
  color: var(--gold-light);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 50%;
  cursor: pointer;
  position: relative;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  background: var(--forest);
  border-radius: 2px;
}

.nav-toggle span {
  top: 50%;
  transform: translateY(-50%);
}

.nav-toggle::before {
  top: 14px;
}

.nav-toggle::after {
  bottom: 14px;
}

.primary-nav ul {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  background: var(--ivory-dark);
  color: var(--terracotta);
}

.site-header.is-scrolled .primary-nav a {
  color: rgba(255, 255, 255, 0.75);
}

.site-header.is-scrolled .primary-nav a:hover,
.site-header.is-scrolled .primary-nav a.is-active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold-light);
}

.header-cta {
  min-height: 44px;
  padding: 0 24px;
  font-size: 13px;
}

/* Hero — full bleed with glass card */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 40px) 18px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 60, 52, 0.88) 0%,
    rgba(26, 60, 52, 0.55) 45%,
    rgba(28, 26, 24, 0.75) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(42px, 6vw, 76px);
  margin: 22px 0 24px;
  color: #fff;
  font-weight: 600;
}

.hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-content > p {
  font-size: clamp(16px, 2.2vw, 19px);
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: #fff;
}

.hero-panel h3 {
  font-size: 22px;
  margin: 0 0 20px;
  color: var(--gold-light);
}

.hero-mini-grid {
  display: grid;
  gap: 16px;
}

.hero-mini {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
}

.hero-mini img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.hero-mini strong {
  display: block;
  font-size: 15px;
  font-family: var(--font-body);
}

.hero-mini span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scroll-pulse 2s ease infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Recipes — bento grid */
.recipes {
  padding: 110px 0;
  background: var(--white);
  position: relative;
}

.recipes::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--ivory);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-head h2 {
  font-size: clamp(34px, 5vw, 54px);
  margin: 16px 0 14px;
  color: var(--forest);
}

.section-head p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
}

.recipe-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 18px;
}

.recipe-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ivory);
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.recipe-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.recipe-card.featured {
  grid-column: span 2;
  grid-row: span 2;
}

.recipe-card.wide {
  grid-column: span 2;
}

.recipe-media {
  position: relative;
  overflow: hidden;
}

.recipe-card.featured .recipe-media {
  height: 340px;
}

.recipe-card.wide .recipe-media {
  height: 200px;
}

.recipe-card:not(.featured):not(.wide) .recipe-media {
  height: 170px;
}

.recipe-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.recipe-card:hover .recipe-media img {
  transform: scale(1.1);
}

.recipe-label {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 7px 16px;
  background: var(--forest);
  color: var(--gold-light);
  font-size: 10px;
  font-weight: 700;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.recipe-time {
  position: absolute;
  bottom: 16px;
  right: 16px;
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--forest);
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
}

.recipe-body {
  padding: 22px 24px 26px;
}

.recipe-body h3 {
  font-size: 22px;
  margin: 0 0 10px;
  color: var(--forest);
}

.recipe-body p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

.recipe-meta {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--terracotta);
  font-weight: 600;
}

/* About — curved split */
.about {
  padding: 110px 0;
  background: var(--ivory);
  position: relative;
}

.about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  border-radius: 0 0 50% 50% / 0 0 40px 40px;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
}

.about-visual {
  position: relative;
}

.about-visual-main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-visual-stack {
  position: absolute;
  bottom: -30px;
  right: -20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  width: 65%;
}

.about-visual-stack img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 4px solid var(--ivory);
  box-shadow: var(--shadow-soft);
}

.about-stat-ring {
  position: absolute;
  top: 24px;
  left: -24px;
  width: 110px;
  height: 110px;
  background: var(--terracotta);
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow);
}

.about-stat-ring strong {
  display: block;
  font-family: var(--font-display);
  font-size: 32px;
  line-height: 1;
}

.about-stat-ring span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
}

.about-content h2 {
  font-size: clamp(32px, 4.5vw, 48px);
  margin: 18px 0 20px;
  color: var(--forest);
}

.about-content > p {
  color: var(--text-soft);
  margin: 0 0 32px;
  font-size: 16px;
}

.about-pillars {
  display: grid;
  gap: 18px;
  margin-bottom: 36px;
}

.about-pillar {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 22px;
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow-soft);
}

.about-pillar-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: rgba(26, 60, 52, 0.08);
  border-radius: 50%;
  font-size: 22px;
  flex-shrink: 0;
}

.about-pillar h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--forest);
}

.about-pillar p {
  margin: 0;
  font-size: 14px;
  color: var(--muted);
}

/* Services — zigzag showcase */
.services {
  padding: 0 0 110px;
  background: var(--ivory);
  position: relative;
  overflow: hidden;
}

.services-band {
  background: var(--forest);
  padding: 72px 0 80px;
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
  margin-bottom: 64px;
}

.services-band::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(212, 168, 83, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.services-band-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.services-band-inner h2 {
  font-size: clamp(32px, 5vw, 52px);
  color: #fff;
  margin: 16px 0 14px;
}

.services-band-inner p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 580px;
  margin: 0 auto;
  font-size: 16px;
}

.services-band .tag {
  background: rgba(212, 168, 83, 0.25);
  color: var(--gold-light);
}

.service-showcase {
  display: grid;
  gap: 56px;
}

.service-block {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 36px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-block:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.service-block--reverse {
  direction: rtl;
}

.service-block--reverse > * {
  direction: ltr;
}

.service-block-media {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 320px;
}

.service-block-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-block:hover .service-block-media img {
  transform: scale(1.06);
}

.service-block-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
}

.service-block-content {
  padding: 8px 12px;
}

.service-block-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 10px;
}

.service-block-content h3 {
  font-size: clamp(26px, 3vw, 34px);
  margin: 0 0 16px;
  color: var(--forest);
}

.service-block-content > p {
  margin: 0 0 22px;
  font-size: 15px;
  color: var(--text-soft);
  line-height: 1.7;
}

.service-block-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.service-block-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  font-weight: 500;
  color: var(--forest);
}

.service-block-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.service-block-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--terracotta);
  transition: gap 0.25s ease, color 0.25s ease;
}

.service-block-link:hover {
  gap: 12px;
  color: var(--forest);
}

.service-mosaic {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
  margin-top: 64px;
}

.service-mosaic-large {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
}

.service-mosaic-large img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.service-mosaic-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 32px;
  background: linear-gradient(180deg, transparent, rgba(26, 60, 52, 0.92));
  color: #fff;
}

.service-mosaic-caption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 4px;
}

.service-mosaic-caption span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.service-mosaic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.service-mosaic-grid img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 3px solid var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease;
}

.service-mosaic-grid img:hover {
  transform: scale(1.04);
}

/* Contact */
.contact {
  padding: 110px 0;
  background: var(--white);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
}

.contact-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 60, 52, 0.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 36px;
  color: #fff;
}

.contact-visual-overlay h2 {
  font-size: clamp(28px, 4vw, 38px);
  margin: 0 0 12px;
  color: #fff;
}

.contact-visual-overlay p {
  margin: 0 0 24px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-cards {
  display: grid;
  gap: 12px;
}

.contact-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--ivory);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-card:hover {
  border-color: var(--gold);
  transform: translateX(4px);
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  background: var(--forest);
  color: var(--gold-light);
  border-radius: 50%;
  font-size: 18px;
  flex-shrink: 0;
}

.contact-card span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 4px;
}

.contact-card strong,
.contact-card a {
  font-size: 15px;
  font-weight: 600;
  color: var(--forest);
}

.contact-card a:hover {
  color: var(--terracotta);
}

.contact-card p {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--muted);
}

.contact-form-wrap h3 {
  font-size: 28px;
  margin: 0 0 8px;
  color: var(--forest);
}

.form-lead {
  color: var(--muted);
  margin: 0 0 28px;
  font-size: 15px;
}

.contact-form {
  background: var(--ivory);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--line);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.field input,
.field textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(26, 60, 52, 0.1);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  margin: 14px 0 0;
  min-height: 20px;
  font-size: 13px;
  color: var(--terracotta);
  font-weight: 600;
}

.contact-map {
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-top: 20px;
  border: 1px solid var(--line);
}

.contact-map iframe {
  width: 100%;
  height: 180px;
  border: 0;
}

/* Footer */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.72);
  padding: 76px 0 0;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .logo {
  color: #fff;
  font-size: 32px;
  margin-bottom: 18px;
  display: inline-block;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.8;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.55);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  font-size: 16px;
  transition: background 0.2s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: var(--terracotta);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 20px;
  color: #fff;
  margin: 0 0 22px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.55;
}

.footer-contact-item span:first-child {
  color: var(--gold);
  flex-shrink: 0;
}

.footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 26px 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.38);
}

.footer-bar a {
  color: var(--gold-light);
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--forest);
  color: #fff;
  padding: 18px 26px;
  border-radius: var(--radius-sm);
  z-index: 60;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow);
  transform: translateY(120%);
  transition: transform 0.35s ease;
  border-left: 4px solid var(--gold);
}

.toast.is-visible {
  transform: translateY(0);
}

.section {
  padding: calc(var(--header-h) + 56px) 0 80px;
}

.entry-content {
  color: var(--text-soft);
  font-size: 16px;
}

.entry-content h2,
.entry-content h3 {
  color: var(--forest);
  margin-top: 1.5em;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    order: 1;
  }

  .recipe-bento {
    grid-template-columns: 1fr 1fr;
  }

  .recipe-card.featured,
  .recipe-card.wide,
  .recipe-card:nth-child(n) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .recipe-card.featured .recipe-media,
  .recipe-card.wide .recipe-media,
  .recipe-card:not(.featured):not(.wide) .recipe-media {
    height: 200px;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-visual-stack {
    position: relative;
    bottom: auto;
    right: auto;
    width: 100%;
    margin-top: 16px;
  }

  .about-stat-ring {
    top: 16px;
    left: 16px;
  }

  .service-block,
  .service-block--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .service-block-media {
    min-height: 260px;
  }

  .service-block-media img {
    min-height: 260px;
  }

  .service-mosaic {
    grid-template-columns: 1fr;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .contact-visual {
    min-height: 360px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .header-shell {
    padding: 0 18px;
    border-radius: var(--radius);
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 16px;
    display: none;
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul {
    flex-direction: column;
    gap: 4px;
  }

  .site-header.is-scrolled .primary-nav {
    background: var(--forest-light);
  }

  .header-cta {
    display: none;
  }

  .recipe-bento {
    grid-template-columns: 1fr;
  }

  .service-block {
    padding: 24px;
  }

  .service-mosaic-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bar {
    flex-direction: column;
    text-align: center;
  }

  .hero-scroll {
    display: none;
  }
}
