/* ═══════════════════════════════════════════
   Кухня Раджеша — Editorial Cookbook
   ═══════════════════════════════════════════ */

:root {
  --paper: #F6F1EB;
  --paper-dark: #EDE5DA;
  --ink: #1A1410;
  --ink-light: #6B5E52;
  --ink-faint: #A89B8E;
  --spice: #C0392B;
  --spice-dark: #96281B;
  --turmeric: #D4A017;
  --cardamom: #5B7553;
  --cream: #FAF7F2;
  --charcoal: #1E1915;
  --charcoal-mid: #2D2520;
  --charcoal-light: #4A3F36;
  --ff-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --ff-body: 'Alegreya', Georgia, serif;
  --ff-accent: 'Alegreya SC', Georgia, serif;
  --max-w: 1200px;
  --gap: clamp(1rem, 3vw, 2.5rem);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--turmeric); color: var(--ink); }

a { color: var(--spice); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--spice-dark); }

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

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

/* ═══════ Masthead — magazine style ═══════ */
.masthead {
  position: relative;
  text-align: center;
  padding: 1.5rem var(--gap) 1.4rem;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,160,23,0.08), transparent 70%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(192,57,43,0.04), transparent 70%),
    linear-gradient(180deg, #FBF5EA 0%, var(--paper) 100%);
  border-bottom: 1px solid var(--ink-faint);
  overflow: hidden;
}

/* double-rule frame, top + bottom */
.masthead::before,
.masthead::after {
  content: '';
  position: absolute;
  left: var(--gap);
  right: var(--gap);
  height: 1px;
  background: var(--ink-faint);
  opacity: 0.55;
}
.masthead::before { top: 6px; }
.masthead::after { bottom: 0; height: 0; border-top: 3px double var(--ink-faint); opacity: 0.5; }

/* top meta line: VOL / quip / № */
.masthead__top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin-bottom: 0.7rem;
}

.masthead__top-side {
  font-family: var(--ff-accent);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-light);
}

.masthead__top-mid {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--ink-light);
  letter-spacing: 0.02em;
  position: relative;
  padding: 0 1rem;
}
.masthead__top-mid::before,
.masthead__top-mid::after {
  content: '·';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ink-faint);
  font-size: 0.8rem;
}
.masthead__top-mid::before { left: 0; }
.masthead__top-mid::after { right: 0; }

/* title block: ornament — title — ornament */
.masthead__title-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.9rem, 3vw, 2.25rem);
}

.masthead__ornament {
  width: clamp(28px, 4vw, 44px);
  height: clamp(28px, 4vw, 44px);
  color: var(--spice);
  flex-shrink: 0;
  opacity: 0.88;
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.08));
}

.masthead__link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

.masthead__title {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 700;
  letter-spacing: -0.012em;
  line-height: 0.95;
  color: var(--ink);
  white-space: nowrap;
}

.masthead__title em {
  font-style: italic;
  font-weight: 600;
  color: var(--spice);
  margin-left: 0.15em;
}

/* subtitle line with side rules */
.masthead__sub-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.85rem;
}

.masthead__rule {
  flex: 0 0 clamp(40px, 8vw, 90px);
  height: 1px;
  background: var(--ink-faint);
  position: relative;
}
.masthead__rule::after {
  content: '';
  position: absolute;
  top: -2px;
  width: 4px;
  height: 4px;
  background: var(--spice);
  border-radius: 50%;
  opacity: 0.7;
}
.masthead__sub-line .masthead__rule:first-child::after { right: -2px; }
.masthead__sub-line .masthead__rule:last-child::after { left: -2px; }

.masthead__sub {
  font-family: var(--ff-accent);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--ink-light);
  text-transform: lowercase;
  white-space: nowrap;
}

/* ─── Nav ─── */
.nav {
  text-align: center;
  padding: 0.6rem var(--gap);
  border-bottom: 3px double var(--ink-faint);
  margin-bottom: 0;
  font-family: var(--ff-accent);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
}

.nav a {
  color: var(--ink-light);
  text-decoration: none;
  transition: color 0.2s;
}

.nav a:hover { color: var(--spice); }
.nav__dot { margin: 0 0.75rem; color: var(--ink-faint); }

/* ═══════ Hero (index) ═══════ */
.hero {
  max-width: 680px;
  margin: 0 auto;
  padding: 3rem var(--gap) 2rem;
  text-align: center;
  position: relative;
}

.hero::before {
  content: '"';
  font-family: var(--ff-display);
  font-size: 8rem;
  color: var(--turmeric);
  opacity: 0.15;
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  pointer-events: none;
}

.hero__lead {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: var(--ink-light);
  line-height: 1.8;
  position: relative;
}

/* ═══════ Recipe Grid ═══════ */
.recipes {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gap) 4rem;
  flex: 1;
}

.recipes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

/* ─── Card ─── */
.card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  background: var(--cream);
  border: 1px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
  position: relative;
  overflow: hidden;
}

.card:hover {
  border-color: var(--ink-faint);
  transform: translateY(-3px);
}

.card__img {
  height: 240px;
  background-size: cover;
  background-position: center;
  filter: saturate(0.9);
  transition: filter 0.4s;
}

.card:hover .card__img { filter: saturate(1.1); }

.card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card__badge {
  font-family: var(--ff-accent);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--spice);
  margin-bottom: 0.4rem;
}

.card__title {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.card__desc {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.6;
  flex: 1;
}

.card__meta {
  font-family: var(--ff-accent);
  font-size: 0.75rem;
  color: var(--ink-faint);
  letter-spacing: 0.08em;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--paper-dark);
}

/* ─── Stagger animation ─── */
.animate-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.5s ease forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════ Recipe Hero ═══════ */
.recipe-page { flex: 1; }

.recipe-hero {
  height: clamp(280px, 45vw, 460px);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  position: relative;
}

.recipe-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,16,12,0.75) 0%, rgba(20,16,12,0.1) 50%, transparent 100%);
}

.recipe-hero__overlay {
  position: relative;
  padding: 2rem clamp(1.5rem, 5vw, 4rem);
  max-width: var(--max-w);
  width: 100%;
  margin: 0 auto;
}

.recipe-hero__badge {
  font-family: var(--ff-accent);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--turmeric);
  display: block;
  margin-bottom: 0.5rem;
}

.recipe-hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.recipe-hero__orig {
  font-family: var(--ff-body);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-top: 0.25rem;
}

/* ─── Recipe intro + meta ─── */
.recipe-intro {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.5rem var(--gap) 1.5rem;
}

.recipe-intro p {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--ink-light);
  line-height: 1.8;
  text-align: center;
}

.recipe-meta {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--ink-faint);
}

.recipe-meta__item { text-align: center; }

.recipe-meta__label {
  display: block;
  font-family: var(--ff-accent);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.recipe-meta__val {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--spice);
}

/* ─── Recipe body: ingredients + steps ─── */
.recipe-body {
  max-width: 980px;
  margin: 0 auto;
  padding: 0 var(--gap) 2rem;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.recipe-ingredients {
  position: sticky;
  top: 1.5rem;
  background: var(--cream);
  padding: 1.5rem;
  border: 1px solid var(--paper-dark);
}

.recipe-ingredients h2 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--spice);
}

.recipe-ingredients ul { list-style: none; }

.recipe-ingredients li {
  padding: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--ink);
  border-bottom: 1px dotted var(--paper-dark);
  line-height: 1.5;
}

.recipe-ingredients li:last-child { border-bottom: none; }

.recipe-ingredients .ing-heading {
  font-family: var(--ff-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--spice);
  margin-top: 0.75rem;
  padding-top: 0.5rem;
  border-bottom: none;
}

/* ─── Steps ─── */
.recipe-steps h2 {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--spice);
}

.recipe-steps ol { list-style: none; counter-reset: step; }

.step {
  margin-bottom: 2rem;
  position: relative;
}

.step__img {
  margin-bottom: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--paper-dark);
  line-height: 0;
}

.step__img img {
  width: 100%;
  transition: transform 0.3s;
}

.step:hover .step__img img { transform: scale(1.02); }

.step__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--ink);
}

.step__num {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--spice);
  float: left;
  margin-right: 0.6rem;
  line-height: 1.3;
  min-width: 1.5rem;
}

/* ─── Tip — margin note from the cook ─── */
.recipe-tip {
  max-width: 600px;
  margin: 4rem auto 3rem;
  padding: 0;
  background: none;
  border: none;
  text-align: center;
  position: relative;
}

.recipe-tip__ornament {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--spice);
  letter-spacing: 0.45em;
  line-height: 1;
  margin-bottom: 0.85rem;
  opacity: 0.75;
  /* compensate for letter-spacing offset */
  text-indent: 0.45em;
  user-select: none;
}

.recipe-tip__label {
  display: block;
  font-family: var(--ff-accent);
  font-size: 0.68rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--spice);
  margin-bottom: 1.1rem;
}

.recipe-tip__text {
  font-family: var(--ff-display);
  font-size: 1.22rem;
  font-style: italic;
  color: var(--ink-light);
  line-height: 1.6;
  margin: 0;
  letter-spacing: 0.005em;
}

.recipe-tip__sign {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-faint);
  margin-top: 0.85rem;
  letter-spacing: 0.05em;
}

/* ─── Back link ─── */
.recipe-back {
  display: block;
  max-width: 780px;
  margin: 0 auto 3rem;
  padding: 0 var(--gap);
  font-family: var(--ff-accent);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  text-decoration: none;
  transition: color 0.2s;
}

.recipe-back:hover { color: var(--spice); }

/* ═══════ About Rajesh — editorial article ═══════ */
.about-rajesh {
  position: relative;
  padding: 5rem var(--gap);
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(212,160,23,0.06), transparent 70%),
    linear-gradient(180deg, var(--paper) 0%, #F0E8DC 100%);
  border-top: 1px solid var(--ink-faint);
  border-bottom: 1px solid var(--ink-faint);
}

.about-rajesh__inner {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
}

/* section label "ПОРТРЕТ АВТОРА" */
.about-rajesh__label {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.about-rajesh__label-line {
  flex: 0 0 70px;
  height: 1px;
  background: var(--ink-faint);
}

.about-rajesh__label-text {
  font-family: var(--ff-accent);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-light);
}

.about-rajesh__title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-style: italic;
  font-weight: 700;
  color: var(--spice);
  text-align: center;
  line-height: 1.05;
  margin-bottom: 1rem;
  letter-spacing: -0.005em;
}

.about-rajesh__lead {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-style: italic;
  text-align: center;
  color: var(--ink-light);
  max-width: 560px;
  margin: 0 auto 2.75rem;
  line-height: 1.55;
}

.about-rajesh__figure {
  margin: 0 0 2.75rem;
  position: relative;
}

.about-rajesh__figure img {
  width: 100%;
  display: block;
  border: 8px solid #FFFCF6;
  box-shadow:
    0 0 0 1px var(--ink-faint),
    0 18px 42px rgba(44,24,16,0.22),
    0 4px 12px rgba(44,24,16,0.08);
}

.about-rajesh__figure figcaption {
  display: block;
  text-align: center;
  margin-top: 0.95rem;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-light);
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

/* two-column body text with drop cap */
.about-rajesh__body {
  column-count: 2;
  column-gap: 2.5rem;
  font-size: 0.97rem;
  line-height: 1.85;
  color: var(--ink);
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.about-rajesh__body p {
  margin-bottom: 0.9rem;
  break-inside: avoid;
}

.about-rajesh__body p:first-child::first-letter {
  font-family: var(--ff-display);
  font-size: 4.4rem;
  float: left;
  line-height: 0.85;
  padding: 0.35rem 0.5rem 0 0;
  color: var(--spice);
  font-weight: 700;
  font-style: italic;
}

.about-rajesh__signoff {
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px dotted var(--ink-faint);
  text-align: center;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--spice);
  max-width: 540px;
}

.about-rajesh__namaste {
  display: inline-block;
  margin-left: 0.4rem;
  font-size: 1.4rem;
  filter: grayscale(0.1);
}

/* ═══════ Banner Dividers ═══════ */
.banner-divider {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-top: 1px solid var(--ink-faint);
  border-bottom: 1px solid var(--ink-faint);
}

.banner-divider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20, 14, 10, 0.18) 0%,
    rgba(20, 14, 10, 0) 30%,
    rgba(20, 14, 10, 0) 70%,
    rgba(20, 14, 10, 0.18) 100%
  );
}

.banner-divider--herbs {
  height: 160px;
  margin-bottom: 2rem;
}

/* ═══════ Footer ═══════ */
.footer {
  background: var(--charcoal);
  color: #BEB1A2;
  padding: 2.5rem var(--gap);
  margin-top: auto;
}

.footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}

.footer__col { flex: 1; min-width: 240px; }

.footer__brand {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--paper);
  margin-bottom: 0.4rem;
}

.footer__desc {
  font-size: 0.85rem;
  line-height: 1.7;
  opacity: 0.75;
}

/* ─── Secret access (disguised as subscriber area) ─── */
.footer__access {
  text-align: right;
}

.footer__access-label {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  color: #E8DDD2;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.footer__access-hint {
  font-size: 0.78rem;
  line-height: 1.5;
  color: #8A7D70;
  margin-bottom: 0.75rem;
  max-width: 280px;
  margin-left: auto;
}

.access-form {
  display: flex;
  gap: 0;
  justify-content: flex-end;
}

.access-form input {
  width: 180px;
  padding: 0.5rem 0.75rem;
  background: var(--charcoal-mid);
  border: 1px solid var(--charcoal-light);
  border-right: none;
  color: var(--paper);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  outline: none;
  transition: border-color 0.2s;
}

.access-form input::placeholder { color: #6A5D50; font-style: italic; }
.access-form input:focus { border-color: var(--turmeric); }

.access-form button {
  padding: 0.5rem 0.85rem;
  background: var(--charcoal-mid);
  border: 1px solid var(--charcoal-light);
  color: #8A7D70;
  cursor: pointer;
  font-size: 0.9rem;
  transition: color 0.2s, background 0.2s;
}

.access-form button:hover {
  background: var(--charcoal-light);
  color: var(--paper);
}

.access-form__msg {
  font-size: 0.75rem;
  margin-top: 0.3rem;
  min-height: 1em;
}

.access-form__msg.error { color: #D48A8A; }
.access-form__msg.success { color: #8ABF8A; }

.footer__copy {
  max-width: var(--max-w);
  margin: 1.5rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid var(--charcoal-light);
  text-align: center;
  font-size: 0.72rem;
  opacity: 0.4;
  font-family: var(--ff-accent);
  letter-spacing: 0.1em;
}

/* ═══════ Secret page ═══════ */
.secret-page {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem var(--gap);
  flex: 1;
}

.secret-page__header {
  text-align: center;
  margin-bottom: 2rem;
}

.secret-page__title {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--spice);
}

.secret-page__user {
  font-family: var(--ff-accent);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  color: var(--ink-light);
  margin-top: 0.25rem;
}

.secret-page__content {
  background: var(--cream);
  border: 1px solid var(--paper-dark);
  padding: 2.5rem;
  line-height: 1.8;
}

.secret-page__content h2 {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--spice);
  margin-bottom: 1rem;
}

.secret-page__content h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin: 1.5rem 0 0.75rem;
}

.secret-page__content pre {
  background: var(--paper-dark);
  padding: 1.25rem;
  overflow-x: auto;
  font-size: 0.82rem;
  line-height: 1.6;
  font-family: 'Courier New', monospace;
}

.secret-page__content hr {
  border: none;
  border-top: 1px solid var(--paper-dark);
  margin: 1.5rem 0;
}

.secret-page__logout {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--ff-accent);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  cursor: pointer;
  border: none;
  background: none;
  text-decoration: none;
  transition: color 0.2s;
}

.secret-page__logout:hover { color: var(--spice); }

/* ═══════ Responsive ═══════ */
@media (max-width: 860px) {
  .recipe-body {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .recipe-ingredients {
    position: static;
  }

  .about-rajesh__body {
    column-count: 1;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .masthead {
    padding: 1.1rem var(--gap) 1rem;
  }
  .masthead__top {
    gap: 0.6rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
  }
  .masthead__top-side { font-size: 0.55rem; letter-spacing: 0.22em; }
  .masthead__top-mid { font-size: 0.78rem; padding: 0 0.7rem; }
  .masthead__title-block { gap: 0.7rem; }
  .masthead__title { font-size: 2.05rem; white-space: nowrap; }
  .masthead__ornament { width: 22px; height: 22px; }
  .masthead__rule { flex: 0 0 26px; }
  .masthead__sub { font-size: 0.58rem; letter-spacing: 0.12em; }
  .masthead__sub-line { gap: 0.5rem; margin-top: 0.6rem; }

  .hero { padding: 2rem var(--gap) 1.5rem; }
  .hero::before { font-size: 5rem; }
  .recipes__grid { grid-template-columns: 1fr; }
  .recipe-meta { gap: 1.5rem; }
  .footer__inner { flex-direction: column; gap: 1.5rem; }
  .footer__access { text-align: left; }
  .access-form { justify-content: flex-start; }
  .secret-page__content { padding: 1.5rem; }

  .about-rajesh { padding: 3rem var(--gap); }
  .about-rajesh__label-line { flex: 0 0 30px; }
  .about-rajesh__label-text { font-size: 0.62rem; }
  .about-rajesh__lead { font-size: 1.1rem; margin-bottom: 1.75rem; }
  .about-rajesh__figure { margin-bottom: 2rem; }
  .about-rajesh__body { font-size: 0.95rem; }
  .about-rajesh__body p:first-child::first-letter {
    font-size: 3.4rem;
    padding: 0.25rem 0.4rem 0 0;
  }

  .banner-divider { height: 140px; }
  .banner-divider--herbs { height: 110px; }
}

/* ═══════ Animations ═══════ */
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(4px); }
}

.shake { animation: shake 0.35s ease-in-out; }
