/* ================================================================
   SANTA CLYDE & MRS. CLAUS — The Baking Santas
   A warm vintage cookbook in cream, cranberry, evergreen and gold.
   ================================================================ */

:root {
  /* Palette --------------------------------------------------- */
  --cream:        #fbf3e2;   /* page background — warm parchment */
  --cream-2:      #f5e9cf;   /* deeper cream */
  --cream-3:      #ecdcb7;   /* shadow cream */
  --ink:          #2a1810;   /* near black, warm */
  --ink-soft:     #4a2f1f;
  --cranberry:    #b23a48;   /* deep christmas red */
  --cranberry-d:  #8a2530;
  --holly:        #2e5a3a;   /* deep evergreen */
  --holly-d:      #1f4128;
  --gold:         #c8964b;   /* antique gold */
  --gold-l:       #e5c07b;
  --sugar:        #f4d4d0;   /* sugar pink */
  --paper-line:   rgba(42, 24, 16, 0.12);

  /* Typography ------------------------------------------------ */
  --font-display: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --font-body:    "Lora", Georgia, serif;
  --font-script:  "Caveat", "Brush Script MT", cursive;

  /* Layout ---------------------------------------------------- */
  --max:    1240px;
  --gutter: clamp(20px, 4vw, 56px);
  --radius: 14px;
}

/* ============ Reset ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;

  /* warm paper texture: subtle grain + soft vignette */
  background-image:
    radial-gradient(ellipse at 20% 0%,  rgba(255, 220, 170, 0.55) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 100%, rgba(178, 58, 72, 0.06) 0%, transparent 60%),
    radial-gradient(circle at 50% 50%,  rgba(42, 24, 16, 0.025) 1px, transparent 1px),
    linear-gradient(180deg, var(--cream) 0%, var(--cream) 100%);
  background-size: auto, auto, 4px 4px, auto;
}

img { max-width: 100%; display: block; }
a { color: var(--cranberry); text-decoration: none; }
a:hover { color: var(--cranberry-d); }
button { font: inherit; }

::selection { background: var(--cranberry); color: var(--cream); }

/* ============ Typography defaults ============ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin: 0;
}

p { margin: 0 0 1em; }
em { font-style: italic; }

/* ============ Floating page decor ============ */
.page-decor { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.float-decor {
  position: absolute;
  opacity: 0.5;
  filter: drop-shadow(0 8px 24px rgba(42, 24, 16, 0.18));
  user-select: none;
  -webkit-user-drag: none;
}
.float-decor.d-1 { width: 90px;  top: 8%;   left: 2%;  transform: rotate(-12deg); }
.float-decor.d-2 { width: 70px;  top: 38%;  right: 1%; transform: rotate(15deg); }
.float-decor.d-3 { width: 80px;  top: 62%;  left: 3%;  transform: rotate(8deg); }
.float-decor.d-4 { width: 75px;  top: 80%;  right: 2%; transform: rotate(-10deg); }
.float-decor.d-5 { width: 95px;  top: 92%;  left: 6%;  transform: rotate(20deg); }

@media (max-width: 900px) { .page-decor { display: none; } }

/* ================================================================
   TOP RIBBON
   ================================================================ */
.ribbon {
  background: var(--cranberry);
  color: var(--cream);
  overflow: hidden;
  border-bottom: 2px solid var(--cranberry-d);
  position: relative;
  z-index: 5;
}
.ribbon-track {
  display: flex;
  gap: 28px;
  align-items: center;
  white-space: nowrap;
  padding: 9px 0;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  animation: scroll-x 36s linear infinite;
  width: max-content;
}
.ribbon-track .ribbon-dot { color: var(--gold-l); font-size: 11px; }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ================================================================
   NAV
   ================================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 243, 226, 0.92);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border-bottom: 1px solid var(--paper-line);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-family: var(--font-display);
  text-decoration: none;
}
.brand-hat { width: 48px; height: auto; transform: rotate(-6deg); filter: drop-shadow(0 4px 8px rgba(42,24,16,0.2)); }
.brand-text { display: flex; flex-direction: column; line-height: 0.95; }
.brand-line-1, .brand-line-2 {
  font-size: 17px;
  font-weight: 600;
  font-variation-settings: "opsz" 24, "SOFT" 50;
}
.brand-amp {
  font-family: var(--font-script);
  color: var(--cranberry);
  font-size: 22px;
  line-height: 1;
  margin: -1px 0;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.nav-links a {
  color: var(--ink-soft);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--cranberry);
  transition: width .35s ease, left .35s ease;
}
.nav-links a:hover { color: var(--cranberry); }
.nav-links a:hover::after { width: 100%; left: 0; }

.nav-cta {
  background: var(--ink);
  color: var(--cream);
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  font-family: var(--font-body);
  transition: transform .25s ease, background .25s ease;
  border: 1px solid var(--ink);
}
.nav-cta:hover {
  background: var(--cranberry);
  border-color: var(--cranberry);
  color: var(--cream);
  transform: translateY(-1px);
}

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: auto 1fr; }
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  border: 1.5px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--cranberry);
  color: var(--cream);
  box-shadow: 0 8px 22px -8px rgba(178, 58, 72, 0.6),
              inset 0 -3px 0 rgba(0,0,0,0.18);
}
.btn-primary:hover {
  background: var(--cranberry-d);
  transform: translateY(-2px);
  color: var(--cream);
  box-shadow: 0 14px 28px -10px rgba(178, 58, 72, 0.7),
              inset 0 -3px 0 rgba(0,0,0,0.2);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}
.btn-on-dark {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 10px 24px -10px rgba(0,0,0,0.5),
              inset 0 -3px 0 rgba(0,0,0,0.18);
}
.btn-on-dark:hover {
  background: var(--gold-l);
  color: var(--ink);
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(40px, 7vw, 90px) var(--gutter) 0;
  z-index: 2;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}
.hero-text { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cranberry);
  font-weight: 600;
  margin: 0 0 28px;
}
.eyebrow-mark { color: var(--gold); font-size: 14px; }

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  color: var(--ink);
  font-size: clamp(54px, 8.4vw, 124px);
  line-height: 0.86;
  letter-spacing: -0.035em;
  margin: 0 0 30px;
  display: block;
}
.title-script {
  display: block;
  font-family: var(--font-script);
  color: var(--cranberry);
  font-size: 0.42em;
  font-weight: 600;
  font-variation-settings: normal;
  line-height: 1;
  margin-left: 8px;
  margin-bottom: -2px;
  letter-spacing: 0;
  transform: rotate(-3deg);
  transform-origin: left bottom;
}
.title-display {
  display: block;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
}
.title-display-alt {
  font-style: normal;
  color: var(--cranberry);
  margin-left: 0.4em;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  font-weight: 700;
}
.title-tail {
  display: block;
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 0.21em;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-top: 14px;
  margin-left: 6px;
}

.hero-lede {
  max-width: 540px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 32px;
}
.hero-lede em { color: var(--cranberry); font-style: italic; font-weight: 600; }

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.hero-meta {
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px dashed var(--paper-line);
  display: flex;
  gap: clamp(20px, 4vw, 50px);
}
.hero-meta li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-meta strong {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  font-style: italic;
  color: var(--cranberry);
  font-variation-settings: "opsz" 24, "SOFT" 50;
  line-height: 1;
}
.hero-meta span {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* --- Hero visual / photo stack --- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 580px;
}
.hero-photo-stack {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4 / 5;
}
.hero-photo-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
  border: 14px solid var(--cream);
  box-shadow:
    0 30px 80px -25px rgba(42, 24, 16, 0.45),
    0 4px 0 rgba(42, 24, 16, 0.06);
  transform: rotate(-2deg);
  position: relative;
  z-index: 2;
}
.hero-photo-tape {
  position: absolute;
  width: 110px;
  height: 26px;
  background: linear-gradient(180deg, rgba(232, 220, 178, 0.85), rgba(212, 198, 150, 0.7));
  border-left: 1px dashed rgba(0,0,0,.1);
  border-right: 1px dashed rgba(0,0,0,.1);
  z-index: 5;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}
.tape-tl { top: -10px; left: 22px; transform: rotate(-8deg); }
.tape-br { bottom: 6px; right: 18px; transform: rotate(6deg); }

.hero-santachef {
  position: absolute;
  width: 180px;
  bottom: -40px;
  left: -90px;
  z-index: 6;
  filter: drop-shadow(0 18px 28px rgba(42, 24, 16, 0.35));
  animation: gentle-bob 6s ease-in-out infinite;
}
@keyframes gentle-bob {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-8px) rotate(2deg); }
}
.hero-cookie-1 {
  position: absolute;
  width: 100px;
  top: -34px;
  right: -28px;
  transform: rotate(15deg);
  z-index: 6;
  filter: drop-shadow(0 12px 20px rgba(42, 24, 16, 0.3));
}
.hero-cookie-2 {
  position: absolute;
  width: 86px;
  bottom: 30px;
  right: -50px;
  transform: rotate(-12deg);
  z-index: 6;
  filter: drop-shadow(0 12px 20px rgba(42, 24, 16, 0.3));
}

.hero-stamp {
  position: absolute;
  width: 140px;
  height: 140px;
  top: -38px;
  left: -22px;
  z-index: 7;
  animation: spin-slow 30s linear infinite;
  filter: drop-shadow(0 2px 4px rgba(251, 243, 226, 0.9))
          drop-shadow(0 0 6px rgba(251, 243, 226, 0.7));
}
@keyframes spin-slow {
  to { transform: rotate(360deg); }
}
.hero-stamp-svg { width: 100%; height: 100%; }
.stamp-text {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  fill: var(--cranberry);
  text-transform: uppercase;
}
.hero-stamp-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin-slow 30s linear infinite reverse;
}
.stamp-year {
  font-family: var(--font-script);
  color: var(--cranberry);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 540px; margin-top: 30px; }
  .hero-stamp { width: 100px; height: 100px; left: -20px; top: -25px; }
  .hero-santachef { width: 140px; left: -30px; bottom: -30px; }
}

/* Hero marquee */
.hero-marquee {
  margin-top: clamp(40px, 7vw, 80px);
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  padding: 24px 0;
  overflow: hidden;
}
.hero-marquee-track {
  display: flex;
  gap: 48px;
  align-items: center;
  white-space: nowrap;
  width: max-content;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 38px;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  color: var(--ink);
  animation: scroll-x 38s linear infinite;
}
.hero-marquee-track .m-dot { color: var(--cranberry); font-size: 22px; }

/* ================================================================
   SECTION HEAD (shared)
   ================================================================ */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(36px, 5vw, 64px);
}
.section-eyebrow {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--cranberry);
  margin: 0 0 4px;
  font-weight: 600;
  transform: rotate(-2deg);
  display: inline-block;
}
.section-eyebrow.eyebrow-light { color: var(--gold-l); }

.section-title {
  font-size: clamp(38px, 5.5vw, 70px);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
  line-height: 1.05;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}
.section-title-light { color: var(--cream); }
.script-accent {
  font-family: var(--font-script);
  color: var(--cranberry);
  font-weight: 700;
  font-size: 1.05em;
  font-variation-settings: normal;
  display: inline-block;
  transform: rotate(-2deg);
  margin: 0 0.05em;
}
.script-accent.script-light { color: var(--gold-l); }
.section-sub {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 580px;
  margin: 0 auto;
}

/* ================================================================
   STORY
   ================================================================ */
.story {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(80px, 10vw, 140px) var(--gutter) clamp(60px, 8vw, 100px);
  z-index: 2;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
.story-card {
  position: relative;
}
.story-card-pam { margin-top: 60px; }

.story-photo {
  position: relative;
  border: 12px solid var(--cream);
  background: var(--cream);
  box-shadow:
    0 24px 60px -22px rgba(42, 24, 16, 0.4),
    0 0 0 1px var(--paper-line);
  margin-bottom: 26px;
  transform: rotate(-1.5deg);
  transition: transform .5s ease;
}
.story-card-pam .story-photo { transform: rotate(2deg); }
.story-card:hover .story-photo {
  transform: rotate(0) translateY(-4px);
}
.story-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}
.story-photo-cap {
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cranberry);
  color: var(--cream);
  padding: 8px 22px;
  border-radius: 999px;
  font-family: var(--font-script);
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 18px -6px rgba(178, 58, 72, 0.6);
}

.story-body { padding: 14px 4px 0; }
.story-body h3 {
  font-size: 36px;
  font-weight: 600;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  margin: 0 0 8px;
  color: var(--ink);
}
.story-body .lead {
  font-family: var(--font-script);
  font-size: 26px;
  color: var(--cranberry);
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 600;
}
.story-body p {
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.75;
}
.story-body em { color: var(--cranberry); font-weight: 600; }

.story-pull {
  margin: clamp(60px, 8vw, 100px) auto 0;
  max-width: 820px;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.45;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  position: relative;
  padding: 24px 40px;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 80px;
  color: var(--cranberry);
  line-height: 0;
  position: relative;
  top: 26px;
  margin-right: 6px;
  font-style: normal;
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.quote-mark-close { margin-left: 6px; margin-right: 0; }

@media (max-width: 880px) {
  .story-grid { grid-template-columns: 1fr; gap: 60px; }
  .story-card-pam { margin-top: 0; }
  .story-photo img { height: 380px; }
}

/* ================================================================
   KITCHEN — dark cranberry signature section
   ================================================================ */
.kitchen {
  position: relative;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(229, 192, 123, 0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 80%, rgba(46, 90, 58, 0.35) 0%, transparent 55%),
    linear-gradient(160deg, #6d1f28 0%, #4a151b 60%, #3a1015 100%);
  color: var(--cream);
  padding: clamp(80px, 10vw, 140px) var(--gutter);
  margin: clamp(60px, 8vw, 100px) 0;
  overflow: hidden;
  isolation: isolate;
}
.kitchen::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
}
.kitchen-frame-tl, .kitchen-frame-br {
  position: absolute;
  width: 280px;
  opacity: 0.5;
  pointer-events: none;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.3));
}
.kitchen-frame-tl { top: -30px; left: -30px; }
.kitchen-frame-br {
  bottom: -30px; right: -30px;
  transform: rotate(180deg);
}
.kitchen-inner {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  z-index: 2;
}
.kitchen-text .section-eyebrow { transform: rotate(-2deg); }
.kitchen-text .section-title {
  text-align: left;
  margin-top: 6px;
  font-style: italic;
  font-size: clamp(34px, 4.5vw, 60px);
}
.kitchen-lede {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(251, 243, 226, 0.85);
  max-width: 540px;
  margin-top: 24px;
}
.kitchen-lede em { color: var(--gold-l); font-weight: 600; }

.kitchen-list {
  list-style: none;
  margin: 32px 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.kitchen-list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(229, 192, 123, 0.3);
}
.kitchen-list li:last-child { border-bottom: none; padding-bottom: 0; }
.ck-num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  font-weight: 600;
  color: var(--gold-l);
  font-variation-settings: "opsz" 24, "SOFT" 50, "WONK" 1;
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
}
.kitchen-list strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
  color: var(--cream);
  display: block;
  margin-bottom: 2px;
}
.kitchen-list div {
  font-size: 16px;
  color: rgba(251, 243, 226, 0.78);
  line-height: 1.55;
}

.kitchen-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.kitchen-spread {
  width: 100%;
  max-width: 460px;
  filter: drop-shadow(0 30px 50px rgba(0,0,0,0.5));
  animation: gentle-bob 7s ease-in-out infinite;
}
.kitchen-tag {
  position: absolute;
  top: 8%;
  right: -10px;
  background: var(--gold);
  color: var(--ink);
  border-radius: 50%;
  width: 130px;
  height: 130px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  box-shadow: 0 14px 30px -8px rgba(0,0,0,0.5),
              inset 0 0 0 3px var(--cream),
              inset 0 0 0 4px var(--gold);
  transform: rotate(12deg);
  z-index: 3;
  line-height: 1;
}
.kitchen-tag .kt-line-1 { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; }
.kitchen-tag .kt-line-2 { font-family: var(--font-script); font-size: 30px; color: var(--cranberry); margin-top: 2px; }
.kitchen-tag .kt-line-3 { font-size: 14px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }

@media (max-width: 880px) {
  .kitchen-inner { grid-template-columns: 1fr; }
  .kitchen-frame-tl, .kitchen-frame-br { width: 180px; }
  .kitchen-tag { width: 100px; height: 100px; right: 0; }
  .kitchen-tag .kt-line-2 { font-size: 22px; }
}

/* ================================================================
   RECIPE — Cookie Project recipe card
   ================================================================ */
.recipe {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(80px, 10vw, 130px);
}
.recipe-card {
  background: var(--cream);
  border: 1px solid var(--paper-line);
  border-radius: 4px;
  padding: clamp(36px, 5vw, 64px);
  box-shadow:
    0 30px 80px -30px rgba(42, 24, 16, 0.35),
    0 0 0 1px var(--paper-line),
    inset 0 0 0 8px var(--cream),
    inset 0 0 0 9px var(--cranberry);
  position: relative;
  background-image:
    repeating-linear-gradient(transparent, transparent 33px, rgba(42, 24, 16, 0.06) 33px, rgba(42, 24, 16, 0.06) 34px);
}
.recipe-card::before {
  content: "";
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(178, 58, 72, 0.25);
}
.recipe-card-header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--paper-line);
  margin-bottom: 30px;
}
.recipe-tag {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cranberry);
  font-weight: 700;
}
.recipe-val {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  font-variation-settings: "opsz" 24, "SOFT" 50;
}
.recipe-divider { color: var(--cranberry); opacity: 0.5; }

.recipe-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(30px, 4vw, 56px);
}
.recipe-col h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  font-weight: 600;
  color: var(--cranberry);
  margin: 0 0 16px;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
}
.ingredient-list, .method-list {
  margin: 0;
  padding: 0;
  font-size: 16px;
  color: var(--ink-soft);
}
.ingredient-list { list-style: none; }
.ingredient-list li {
  padding: 8px 0 8px 30px;
  position: relative;
  border-bottom: 1px dashed var(--paper-line);
  line-height: 1.55;
}
.ingredient-list li::before {
  content: "✦";
  position: absolute;
  left: 4px;
  top: 8px;
  color: var(--cranberry);
  font-size: 14px;
}
.ingredient-list li:last-child { border-bottom: none; }

.method-list {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.method-list li {
  counter-increment: step;
  position: relative;
  padding-left: 56px;
  line-height: 1.65;
  min-height: 42px;
}
.method-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -2px;
  width: 42px;
  height: 42px;
  background: var(--cranberry);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  font-weight: 600;
  font-variation-settings: "opsz" 24, "SOFT" 50;
  box-shadow: 0 6px 14px -4px rgba(178, 58, 72, 0.5);
}
.method-list strong {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--ink);
  font-weight: 600;
  font-size: 17px;
}

.recipe-notes {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--cream-2);
  border-left: 4px solid var(--cranberry);
  border-radius: 0 8px 8px 0;
  position: relative;
}
.notes-label {
  display: block;
  font-family: var(--font-script);
  font-size: 24px;
  color: var(--cranberry);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
  transform: rotate(-1deg);
}
.recipe-notes p {
  margin: 0;
  font-size: 15px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.6;
}

@media (max-width: 800px) {
  .recipe-card::before { display: none; }
  .recipe-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   VISITS
   ================================================================ */
.visits {
  position: relative;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(80px, 10vw, 130px);
}
.visits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.visit-card {
  background: var(--cream);
  border: 1px solid var(--paper-line);
  border-radius: 8px;
  padding: 38px 36px 36px;
  position: relative;
  transition: transform .35s ease, box-shadow .35s ease;
  box-shadow: 0 4px 0 var(--cream-3),
              0 14px 30px -18px rgba(42, 24, 16, 0.35);
}
.visit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 0 var(--cream-3),
              0 22px 44px -18px rgba(42, 24, 16, 0.45);
}
.visit-icon {
  width: 90px;
  height: 90px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.visit-icon img {
  max-width: 100%;
  max-height: 100%;
  filter: drop-shadow(0 6px 12px rgba(42, 24, 16, 0.2));
  transition: transform .5s ease;
}
.visit-card:hover .visit-icon img { transform: rotate(-6deg) scale(1.05); }

.visit-card h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-style: italic;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--cranberry);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
}
.visit-card p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

@media (max-width: 800px) {
  .visits-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(80px, 10vw, 130px);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testi-card {
  background: var(--cream);
  border: 1px solid var(--paper-line);
  border-radius: 4px;
  padding: 32px 30px;
  margin: 0;
  box-shadow:
    0 18px 36px -20px rgba(42, 24, 16, 0.4),
    0 0 0 1px var(--paper-line);
  transform: rotate(-1deg);
  transition: transform .4s ease;
  position: relative;
}
.testi-card-tilt { transform: rotate(1.5deg) translateY(-10px); }
.testi-card:hover { transform: rotate(0) translateY(-4px); }

.testi-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testi-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 19px;
  line-height: 1.5;
  margin: 0 0 18px;
  color: var(--ink);
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
}
.testi-card figcaption {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--cranberry);
  font-weight: 600;
}

@media (max-width: 880px) {
  .testi-grid { grid-template-columns: 1fr; }
  .testi-card-tilt { transform: rotate(0); }
}

/* ================================================================
   CONTACT
   ================================================================ */
.contact {
  position: relative;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(229, 192, 123, 0.2) 0%, transparent 55%),
    linear-gradient(170deg, #1f3024 0%, #142019 60%, #0c1610 100%);
  color: var(--cream);
  padding: clamp(80px, 10vw, 130px) var(--gutter);
  overflow: hidden;
  isolation: isolate;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 4px 4px;
  pointer-events: none;
}
.contact-deco {
  position: absolute;
  width: 480px;
  top: 0;
  left: 0;
  opacity: 0.55;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 18% 18%, #000 0%, #000 28%, rgba(0,0,0,0.55) 55%, transparent 90%);
          mask-image: radial-gradient(ellipse 80% 80% at 18% 18%, #000 0%, #000 28%, rgba(0,0,0,0.55) 55%, transparent 90%);
}
.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.contact .section-eyebrow { color: var(--gold-l); }
.contact .section-title { margin-top: 4px; font-style: italic; }
.contact-lede {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(251, 243, 226, 0.82);
  max-width: 640px;
  margin: 24px auto 40px;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  max-width: 700px;
  margin: 0 auto 36px;
}
.contact-card {
  background: rgba(251, 243, 226, 0.08);
  border: 1px solid rgba(229, 192, 123, 0.35);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 28px 26px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--cream);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
  text-align: left;
}
.contact-card:hover {
  background: rgba(251, 243, 226, 0.13);
  border-color: var(--gold-l);
  transform: translateY(-3px);
  color: var(--cream);
}
.cc-label {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-l);
  font-weight: 600;
  margin-bottom: 6px;
}
.cc-phone {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 30px;
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 6px;
}
.cc-note {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: rgba(251, 243, 226, 0.7);
}

.contact-locale {
  font-family: var(--font-body);
  font-style: italic;
  color: rgba(251, 243, 226, 0.75);
  font-size: 15px;
  margin: 0;
}
.contact-locale strong { color: var(--gold-l); font-weight: 600; }

.contact-form-wrap {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px dashed rgba(229, 192, 123, 0.3);
}
.contact-form-label {
  margin: 0 0 22px;
  text-align: center;
}
.cf-script {
  display: block;
  font-family: var(--font-script);
  font-size: 36px;
  color: var(--gold-l);
  font-weight: 700;
  line-height: 1;
  transform: rotate(-2deg);
}
.cf-sub {
  display: block;
  margin-top: 6px;
  font-family: var(--font-body);
  font-style: italic;
  font-size: 14px;
  color: rgba(251, 243, 226, 0.65);
  letter-spacing: 0.02em;
}
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(251, 243, 226, 0.96);
  border-radius: 14px;
  padding: 28px 26px;
  box-shadow:
    0 30px 60px -25px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(229, 192, 123, 0.4);
  color: var(--ink);
  text-align: left;
}
/* ---- Pro Santa Solutions widget — themed to match the cookbook ---- */
.contact-form .pss-inquiry,
.contact-form .pss-inquiry * {
  font-family: var(--font-body) !important;
  color: var(--ink);
  box-sizing: border-box;
}
.contact-form .pss-inquiry { max-width: 100% !important; }
.contact-form .pss-inquiry .pss-form-wrap {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 4px 0 0 !important;
}
.contact-form .pss-inquiry h4 {
  font-family: var(--font-display) !important;
  font-style: italic !important;
  font-weight: 600 !important;
  font-size: 30px !important;
  color: var(--cranberry) !important;
  margin: 0 0 4px !important;
  font-variation-settings: "opsz" 144, "SOFT" 50, "WONK" 1 !important;
  letter-spacing: -0.01em !important;
  line-height: 1.1 !important;
}
.contact-form .pss-inquiry .pss-subtitle {
  font-family: var(--font-body) !important;
  font-style: italic !important;
  color: var(--ink-soft) !important;
  font-size: 15px !important;
  margin: 0 0 22px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px dashed var(--paper-line) !important;
}
.contact-form .pss-inquiry label {
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: var(--cranberry) !important;
  margin-bottom: 6px !important;
}
.contact-form .pss-inquiry .pss-required { color: var(--gold) !important; }
.contact-form .pss-inquiry input[type="text"],
.contact-form .pss-inquiry input[type="email"],
.contact-form .pss-inquiry input[type="tel"],
.contact-form .pss-inquiry input[type="date"],
.contact-form .pss-inquiry input[type="number"],
.contact-form .pss-inquiry select,
.contact-form .pss-inquiry textarea {
  background: var(--cream-2) !important;
  border: 1px solid var(--paper-line) !important;
  border-radius: 4px !important;
  padding: 12px 14px !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  color: var(--ink) !important;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease !important;
  box-shadow: inset 0 1px 2px rgba(42, 24, 16, 0.05) !important;
}
.contact-form .pss-inquiry input::placeholder,
.contact-form .pss-inquiry textarea::placeholder {
  color: rgba(74, 47, 31, 0.5) !important;
  font-style: italic !important;
}
.contact-form .pss-inquiry input:focus,
.contact-form .pss-inquiry select:focus,
.contact-form .pss-inquiry textarea:focus {
  outline: none !important;
  border-color: var(--cranberry) !important;
  background: var(--cream) !important;
  box-shadow: 0 0 0 3px rgba(178, 58, 72, 0.15) !important;
}
.contact-form .pss-inquiry .pss-field { margin-bottom: 16px !important; }
.contact-form .pss-inquiry .pss-row { gap: 14px !important; margin-bottom: 16px !important; }
.contact-form .pss-inquiry textarea { min-height: 96px !important; resize: vertical !important; }
.contact-form .pss-inquiry .pss-btn {
  background: var(--cranberry) !important;
  color: var(--cream) !important;
  border: 1.5px solid var(--cranberry) !important;
  border-radius: 999px !important;
  padding: 15px 24px !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  cursor: pointer !important;
  margin-top: 6px !important;
  transition: background .25s ease, transform .25s ease, box-shadow .25s ease !important;
  box-shadow: 0 8px 22px -8px rgba(178, 58, 72, 0.6),
              inset 0 -3px 0 rgba(0,0,0,0.18) !important;
}
.contact-form .pss-inquiry .pss-btn:hover {
  background: var(--cranberry-d) !important;
  border-color: var(--cranberry-d) !important;
  transform: translateY(-2px) !important;
}
.contact-form .pss-inquiry .pss-alert {
  border-radius: 4px !important;
  font-family: var(--font-body) !important;
  font-style: italic !important;
  border-left: 4px solid var(--cranberry) !important;
  background: var(--cream-2) !important;
}
.contact-form .pss-inquiry select {
  appearance: none !important;
  -webkit-appearance: none !important;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23b23a48' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>") !important;
  background-repeat: no-repeat !important;
  background-position: right 14px center !important;
  padding-right: 36px !important;
}

@media (max-width: 700px) {
  .contact-cards { grid-template-columns: 1fr; }
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 50px var(--gutter) 36px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--cream);
}
.footer-brand em {
  font-family: var(--font-script);
  color: var(--gold-l);
  font-style: normal;
  font-size: 28px;
}
.footer-hat {
  width: 46px;
  transform: rotate(-6deg);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4));
}
.footer-nav {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  color: rgba(251, 243, 226, 0.7);
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-nav a:hover { color: var(--gold-l); }
.footer-locale {
  font-family: var(--font-body);
  font-style: italic;
  color: rgba(251, 243, 226, 0.6);
  font-size: 14px;
  margin: 0;
}
.footer-copy {
  font-size: 12px;
  color: rgba(251, 243, 226, 0.45);
  margin: 0;
  letter-spacing: 0.04em;
}

/* ================================================================
   Page-load reveal
   ================================================================ */
.hero-text > * { opacity: 0; transform: translateY(20px); animation: rise 0.9s ease forwards; }
.hero-text > *:nth-child(1) { animation-delay: 0.05s; }
.hero-text > *:nth-child(2) { animation-delay: 0.18s; }
.hero-text > *:nth-child(3) { animation-delay: 0.32s; }
.hero-text > *:nth-child(4) { animation-delay: 0.46s; }
.hero-text > *:nth-child(5) { animation-delay: 0.6s; }
.hero-visual { opacity: 0; animation: rise 1.1s 0.4s ease forwards; }
@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}
