/* Tamara's Raw Cakes — vintage patisserie.
   Palette sampled from the logo: blush badge, sage ribbon, gold frame, olive cake, berries. */

:root {
  --blush: #fef4f8;
  --blush-deep: #f8e6ee;
  --paper: #fffdfb;
  --sage: #c0d0a6;
  --sage-soft: #e1e7d3;
  --sage-mist: #eef1e6;
  --olive: #9ca470;
  --olive-deep: #7e825f;
  --gold: #b89145;
  --gold-light: #fbde98;
  --gold-text: #8a6a22;       /* gold that passes AA on blush */
  --gold-line: rgba(184, 145, 69, 0.55);
  --berry: #b85c60;
  --berry-deep: #a34e53;      /* CTA background: white text passes AA */
  --berry-bright: #d96c6d;
  --ink: #3f4527;             /* darkened olive for headings */
  --ink-soft: #5a6140;        /* body text */
  --white: #ffffff;

  --font-script: "Pinyon Script", "Snell Roundhand", cursive;
  --font-display: "Bodoni Moda", "Didot", "Bodoni 72", Georgia, serif;
  --font-body: "EB Garamond", Garamond, Georgia, serif;

  --wrap: 1180px;
  --gutter: clamp(16px, 4vw, 40px);
  --radius: 6px;
  --shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 10px 30px -18px rgba(63, 69, 39, 0.45);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--blush);
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 0.35vw + 1.02rem, 1.25rem);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Paper grain over everything, like an old printed menu. */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.07;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 .3 0 0 0 0 .25 0 0 0 0 .1 0 0 0 .9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a { color: var(--gold-text); text-underline-offset: 0.18em; text-decoration-thickness: 1px; }
a:hover { color: var(--berry-deep); }

:focus-visible { outline: 2px solid var(--berry-deep); outline-offset: 3px; }

h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.3rem, 4.6vw + 0.6rem, 4.1rem); }
h2 { font-size: clamp(1.9rem, 2.6vw + 0.8rem, 2.9rem); }
h3 { font-size: clamp(1.3rem, 0.8vw + 1rem, 1.55rem); }

p { margin: 0 0 1em; }

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  background: var(--ink);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius);
}
.skip-link:focus { top: 12px; color: var(--white); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.wrap { width: min(100% - 2 * var(--gutter), var(--wrap)); margin-inline: auto; }

/* Script word that sits above or inside a heading, gold-foil like the logo lettering. */
.script {
  display: block;
  font-family: var(--font-script);
  font-weight: 400;
  font-size: 1.35em;
  line-height: 1;
  letter-spacing: 0;
  padding: 0.12em 0.1em 0.18em;
  background: linear-gradient(100deg, var(--gold-text) 0%, #a8822e 45%, #8f6b21 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--olive-deep);
  margin: 0 0 0.9rem;
}

.lead { font-size: 1.18em; color: var(--ink-soft); max-width: 36em; }

/* ---------- Awning ---------- */

.awning {
  position: relative;
  height: 30px;
  border-top: 4px solid var(--gold);
  background: repeating-linear-gradient(90deg, var(--sage) 0 32px, var(--paper) 32px 64px);
  z-index: 3;
}
.awning::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 16px;
  background:
    radial-gradient(circle at 16px 0, var(--sage) 15.5px, transparent 16px) 0 0 / 64px 16px repeat-x,
    radial-gradient(circle at 48px 0, var(--paper) 15.5px, transparent 16px) 0 0 / 64px 16px repeat-x;
  filter: drop-shadow(0 2px 0 var(--gold-line));
}

/* ---------- Header ---------- */

.site-header {
  position: relative;
  z-index: 2;
  padding: 26px 0 14px;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}
.brand { flex: none; display: block; }
.brand img { width: 150px; height: auto; }

.site-nav { margin-left: auto; }
.site-nav ul {
  display: flex;
  gap: clamp(14px, 2.2vw, 34px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 6px 0;
  background: linear-gradient(var(--gold), var(--gold)) 50% 100% / 0 1px no-repeat;
  transition: background-size 0.3s var(--ease), color 0.2s;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { background-size: 100% 1px; color: var(--gold-text); }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 8px 16px;
  font: inherit;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  cursor: pointer;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  font-family: var(--font-display);
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.95em 1.6em;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background-color 0.2s;
  white-space: nowrap;
}
.btn svg { width: 1.1em; height: 1.1em; flex: none; }
.btn:hover { transform: translateY(-2px); }

.btn-call {
  background: var(--berry-deep);
  color: var(--white);
  box-shadow: 0 0 0 3px var(--blush), 0 0 0 4px var(--berry-deep), 0 12px 24px -14px rgba(163, 78, 83, 0.9);
}
.btn-call:hover { color: var(--white); background: #924449; }

.btn-ghost {
  color: var(--ink);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.55);
}
.btn-ghost:hover { color: var(--ink); background: var(--white); }

.header-call { font-size: 0.78rem; padding: 0.8em 1.3em; }

/* ---------- Ornaments ---------- */

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--olive);
  margin: 0 auto 18px;
}
.ornament::before,
.ornament::after {
  content: "";
  height: 1px;
  width: min(90px, 18vw);
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament::after { transform: scaleX(-1); }
.ornament svg { width: 84px; height: 34px; }

.center { text-align: center; }
.center .lead { margin-inline: auto; }

/* ---------- Hero ---------- */

.hero { position: relative; padding: clamp(24px, 5vw, 64px) 0 clamp(56px, 8vw, 104px); }
.hero .wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(32px, 6vw, 88px);
  align-items: center;
}
.hero h1 { margin-bottom: 0.35em; }
.hero h1 .script { font-size: 1.28em; margin-bottom: -0.08em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px 18px; margin: 30px 0 22px; }
.hero-note {
  font-size: 0.98rem;
  font-style: italic;
  color: var(--olive-deep);
  margin: 0;
}

.hero-visual { position: relative; justify-self: center; width: min(100%, 470px); }

/* Arched frame like a patisserie display window. */
.arch {
  position: relative;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--gold);
  border-radius: 50% 50% 10px 10px / 34% 34% 10px 10px;
  box-shadow: var(--shadow);
}
.arch::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--gold-line);
  border-radius: inherit;
  pointer-events: none;
}
.arch img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 50% 50% 6px 6px / 32% 32% 6px 6px;
}

/* Round stamp with text set on a circle. */
.seal {
  position: absolute;
  left: -34px;
  bottom: 38px;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--sage);
  box-shadow: 0 0 0 4px var(--paper), 0 0 0 5px var(--gold), 0 14px 26px -16px rgba(63, 69, 39, 0.7);
  color: var(--ink);
}
.seal svg { width: 100%; height: 100%; }
.seal .seal-ring { animation: spin 38s linear infinite; transform-origin: 50% 50%; }
.seal text {
  font-family: var(--font-display);
  font-size: 10.4px;
  letter-spacing: 2.2px;
  fill: var(--ink);
}
.seal .seal-cake { fill: none; }

.hero-sprig {
  position: absolute;
  right: -14px;
  top: -18px;
  width: 120px;
  color: var(--olive);
  transform: rotate(18deg);
  opacity: 0.8;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Ribbon (the sage band behind the logo badge) ---------- */

.ribbon {
  background: var(--sage);
  border-block: 6px solid var(--white);
  box-shadow: 0 -2px 0 var(--gold), 0 2px 0 var(--gold);
  margin-block: 2px;
  position: relative;
  z-index: 1;
}
.ribbon ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px clamp(18px, 3.2vw, 46px);
  list-style: none;
  margin: 0 auto;
  padding: 16px var(--gutter);
  max-width: var(--wrap);
}
.ribbon li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.08rem;
  color: var(--ink);
  white-space: nowrap;
}
.ribbon li svg { width: 16px; height: 16px; color: var(--white); flex: none; }

/* ---------- Sections ---------- */

.section { padding: clamp(64px, 9vw, 116px) 0; position: relative; }
.section-paper { background: var(--paper); }
.section-mist { background: var(--sage-mist); }
.section-head { max-width: 760px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.section-head h2 .script { font-size: 1.15em; }
.section-head p { margin-inline: auto; }

/* Scalloped top edge for paper sections (a doily edge). */
.scallop-top::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -13px;
  height: 14px;
  background: radial-gradient(circle at 14px 14px, var(--paper) 13.5px, transparent 14px) 0 0 / 28px 14px repeat-x;
}
.section-mist.scallop-top::before {
  background-image: radial-gradient(circle at 14px 14px, var(--sage-mist) 13.5px, transparent 14px);
}

/* What is a raw cake: two-column editorial block. */
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 84px);
  align-items: center;
}
.split-reverse { grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr); }
.split-reverse .split-media { order: 2; }

.frame {
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--gold);
  box-shadow: var(--shadow);
  position: relative;
}
.frame::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid var(--gold-line);
  pointer-events: none;
}
.frame img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

.ingredients {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 26px;
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.ingredients-single { grid-template-columns: minmax(0, 1fr); margin-top: 8px; }
.ingredients li {
  display: flex;
  gap: 12px;
  align-items: baseline;
  border-bottom: 1px dotted var(--gold-line);
  padding-bottom: 8px;
}
.ingredients li::before {
  content: "";
  flex: none;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--berry);
  box-shadow: 0 0 0 3px var(--blush-deep);
  transform: translateY(-2px);
}

/* ---------- Cake cards ---------- */

/* Flex rather than grid so a short last row stays centred. */
.cake-grid {
  --cols: 3;
  --gap: clamp(22px, 3vw, 36px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--gap);
  list-style: none;
  padding: 0;
  margin: 0;
}
.cake-grid > li { flex: 0 1 calc((100% - (var(--cols) - 1) * var(--gap)) / var(--cols)); }
@media (max-width: 860px) { .cake-grid { --cols: 2; } }
@media (max-width: 520px) { .cake-grid { --cols: 1; } }
.cake-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gold-line);
  padding: 12px 12px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  height: 100%;
}
.cake-card::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 1px solid rgba(184, 145, 69, 0.28);
  pointer-events: none;
}
.cake-card:hover {
  transform: translateY(-5px) rotate(-0.4deg);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset, 0 24px 38px -22px rgba(63, 69, 39, 0.55);
}
.cake-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 50% 50% 4px 4px / 32% 32% 4px 4px;
  background: var(--blush-deep);
}
.cake-card h3 {
  font-style: italic;
  font-size: 1.32rem;
  margin: 16px 6px 6px;
}
.cake-card p {
  font-size: 0.98rem;
  line-height: 1.45;
  margin: 0 8px;
  color: var(--ink-soft);
}

.section-cta { text-align: center; margin-top: clamp(36px, 5vw, 56px); }

/* ---------- Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}
.step {
  position: relative;
  text-align: center;
  padding: 44px 26px 30px;
  background: var(--white);
  border: 1px solid var(--gold-line);
  border-radius: 50% 50% 8px 8px / 70px 70px 8px 8px;
  box-shadow: var(--shadow);
}
.step-num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--gold-text);
  margin-bottom: 14px;
}
.step h3 { margin-bottom: 0.4em; }
.step p { margin: 0; font-size: 1.02rem; }
.steps-note { text-align: center; font-style: italic; color: var(--olive-deep); margin: 32px 0 0; }

/* ---------- Reviews ---------- */

.rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  color: var(--ink);
  text-decoration: none;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  padding: 8px 18px;
  background: var(--white);
}
.rating strong { font-size: 1.3rem; font-weight: 600; }
.rating .stars { color: var(--gold); letter-spacing: 3px; font-size: 1.05rem; }
.rating small { font-size: 0.9rem; color: var(--ink-soft); }
.rating:hover { color: var(--ink); border-color: var(--gold); }

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: clamp(20px, 3vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}
.review {
  margin: 0;
  height: 100%;
  position: relative;
  background: var(--white);
  padding: 38px 28px 26px;
  border: 1px solid var(--gold-line);
  box-shadow: var(--shadow);
}
.review::before {
  content: "\201C";
  position: absolute;
  top: -8px;
  left: 20px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--sage);
}
.review blockquote { margin: 0 0 16px; font-style: italic; font-size: 1.08rem; color: var(--ink); }
.review figcaption {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--olive-deep);
}
.review figcaption span { color: var(--gold); letter-spacing: 2px; margin-right: 8px; }

/* ---------- Call band / postcard ---------- */

.call-band { padding: clamp(64px, 9vw, 110px) 0; }
.postcard {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
  background: var(--paper);
  border: 1px solid var(--gold);
  box-shadow: 0 30px 60px -40px rgba(63, 69, 39, 0.6);
  padding: clamp(28px, 4vw, 52px);
  gap: clamp(28px, 4vw, 52px);
}
.postcard::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px dashed var(--gold-line);
  pointer-events: none;
}
.postcard-message h2 { margin-bottom: 0.3em; }
.postcard-address {
  position: relative;
  border-left: 1px solid var(--gold-line);
  padding-left: clamp(24px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
}
.postcard-address .line {
  border-bottom: 1px solid var(--gold-line);
  padding: 8px 0 4px;
  font-style: italic;
  color: var(--ink);
}
.stamp {
  position: absolute;
  top: 0;
  right: 0;
  width: 92px;
  padding: 7px;
  background: var(--white);
  border: 2px dotted var(--gold);
  transform: rotate(4deg);
}
.stamp img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.postmark {
  position: absolute;
  top: 34px;
  right: 74px;
  width: 104px;
  height: 104px;
  color: var(--olive);
  opacity: 0.8;
  transform: rotate(-14deg);
  pointer-events: none;
}
.phone-big {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw + 0.8rem, 3.2rem);
  color: var(--berry-deep);
  text-decoration: none;
  line-height: 1.1;
  margin: 8px 0 18px;
  letter-spacing: 0.01em;
}
.phone-big:hover { color: var(--ink); }

.postcard-note { font-style: italic; color: var(--olive-deep); margin: 0; }

/* ---------- Page header (inner pages) ---------- */

.page-head { padding: clamp(28px, 5vw, 64px) 0 clamp(40px, 6vw, 72px); text-align: center; }
.page-head h1 .script { font-size: 1.5em; }
.page-head .lead { margin-inline: auto; }

/* ---------- Menu page ---------- */

.chips {
  position: sticky;
  top: 0;
  z-index: 5;
  background: rgba(254, 244, 248, 0.94);
  backdrop-filter: blur(6px);
  border-block: 1px solid var(--gold-line);
}
.chips ul {
  display: flex;
  gap: 10px;
  list-style: none;
  margin: 0 auto;
  padding: 12px var(--gutter);
  max-width: var(--wrap);
  overflow-x: auto;
  scrollbar-width: none;
}
.chips ul::-webkit-scrollbar { display: none; }
.chips a {
  display: block;
  white-space: nowrap;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink);
  text-decoration: none;
  padding: 6px 16px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  background: var(--white);
  transition: background-color 0.2s, border-color 0.2s;
}
.chips a:hover { background: var(--sage-soft); border-color: var(--olive); }

.menu-section { padding: clamp(56px, 8vw, 96px) 0; scroll-margin-top: 70px; }
.menu-section:nth-of-type(even) { background: var(--paper); }
.menu-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 8px clamp(20px, 3vw, 36px);
  align-items: end;
  margin-bottom: clamp(28px, 4vw, 44px);
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 22px;
}
.menu-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw + 1rem, 5rem);
  line-height: 0.85;
  color: var(--sage);
  -webkit-text-stroke: 1px var(--gold);
}
.menu-head h2 { margin: 0 0 0.15em; }
.menu-head p { margin: 0; max-width: 46em; }
.menu-also {
  margin: 30px 0 0;
  font-style: italic;
  color: var(--olive-deep);
}
.menu-ask {
  margin-top: 18px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.feature {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gold);
  padding: clamp(18px, 3vw, 32px);
  box-shadow: var(--shadow);
}
.feature img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 50% 50% 4px 4px / 32% 32% 4px 4px; }
.feature ul { margin: 12px 0 0; padding-left: 1.1em; }
.feature li { margin-bottom: 6px; }
.feature li::marker { color: var(--berry); }

/* ---------- FAQ ---------- */

.faq { max-width: 860px; margin: 0 auto; }
.faq details {
  background: var(--white);
  border: 1px solid var(--gold-line);
  margin-bottom: 14px;
  transition: border-color 0.2s;
}
.faq details[open] { border-color: var(--gold); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  flex: none;
  width: 12px;
  height: 12px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: rotate(45deg) translateY(-3px);
  transition: transform 0.25s var(--ease);
}
.faq details[open] summary::after { transform: rotate(225deg) translateY(-3px); }
.faq .answer { padding: 0 24px 22px; }
.faq .answer p:last-child { margin: 0; }

/* ---------- Contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: clamp(22px, 3vw, 34px);
}
.card {
  background: var(--white);
  border: 1px solid var(--gold-line);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow);
}
.card h2 { font-size: 1.6rem; }
.card .phone-big { font-size: clamp(1.9rem, 1.4vw + 1.3rem, 2.5rem); white-space: nowrap; }
.socials { display: flex; flex-wrap: wrap; gap: 12px; list-style: none; padding: 0; margin: 0; }
.socials a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--gold-line);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.95rem;
}
.socials a:hover { border-color: var(--gold); background: var(--sage-mist); }
.socials svg { width: 18px; height: 18px; color: var(--olive-deep); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: #e9e4d2;
  padding: clamp(52px, 7vw, 80px) 0 110px;
  position: relative;
  font-size: 1.02rem;
}
.site-footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -13px;
  height: 14px;
  background: radial-gradient(circle at 14px 14px, var(--ink) 13.5px, transparent 14px) 0 0 / 28px 14px repeat-x;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(0, 1fr));
  gap: 36px;
}
.footer-brand img { width: 150px; margin-bottom: 14px; }
.footer-brand p { color: #d6d2bd; max-width: 22em; }
.site-footer h2 {
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 6px; }
.site-footer a { color: #f3eedc; text-decoration-color: rgba(251, 222, 152, 0.4); }
.site-footer a:hover { color: var(--gold-light); }
.site-footer address { font-style: normal; }
.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(251, 222, 152, 0.22);
  font-size: 0.92rem;
  color: #bdb9a4;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
}

/* ---------- Mobile call bar ---------- */

.call-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(254, 244, 248, 0.96);
  border-top: 1px solid var(--gold);
  backdrop-filter: blur(6px);
}
.call-bar .btn { width: 100%; box-shadow: none; }

/* ---------- Motion ---------- */

.rise { animation: rise 0.9s var(--ease) both; }
.rise-2 { animation-delay: 0.12s; }
.rise-3 { animation-delay: 0.24s; }
.rise-4 { animation-delay: 0.36s; }
.rise-5 { animation-delay: 0.5s; }
@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@supports (animation-timeline: view()) {
  .reveal {
    animation: rise linear both;
    animation-timeline: view();
    animation-range: entry 0% entry 40%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .postcard { grid-template-columns: minmax(0, 1fr); }
  .postcard-address { border-left: 0; border-top: 1px solid var(--gold-line); padding: 28px 0 0; }
  .stamp { top: 22px; }
  .postmark { top: 50px; right: 96px; }
}

@media (max-width: 860px) {
  .site-header { padding: 22px 0 10px; }
  .brand img { width: 112px; }
  .nav-toggle { display: inline-block; }
  .header-call { display: none; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: var(--gutter);
    right: var(--gutter);
    margin: 0;
    background: var(--paper);
    border: 1px solid var(--gold);
    box-shadow: 0 24px 40px -24px rgba(63, 69, 39, 0.6);
    display: none;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: 0; padding: 8px 0; }
  .site-nav a { display: block; padding: 14px 22px; background: none; font-size: 0.9rem; }

  .hero .wrap,
  .split,
  .split-reverse,
  .feature { grid-template-columns: minmax(0, 1fr); }
  .split-reverse .split-media { order: 0; }
  .hero-visual { width: min(100%, 400px); }
  .hero-text { text-align: center; }
  .hero-text .lead { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .seal { width: 110px; height: 110px; left: -12px; bottom: 26px; }
  .steps { grid-template-columns: minmax(0, 1fr); max-width: 460px; margin-inline: auto; }
  .feature img { max-width: 360px; margin-inline: auto; }

  .call-bar { display: block; }
  .site-footer { padding-bottom: 130px; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: minmax(0, 1fr); }
  .ingredients { grid-template-columns: minmax(0, 1fr); }
  .hero-actions .btn { width: 100%; }
  .ribbon li { font-size: 1rem; }
  .menu-head { grid-template-columns: minmax(0, 1fr); }
  .postmark { display: none; }
  .stamp { width: 72px; top: 16px; right: 4px; }
}
