/* ========================================================================
   EVER FAITHFUL BAKERY — site stylesheet
   Editorial / artisan / faith-rooted aesthetic
   ======================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght,SOFT,WONK@9..144,300..700,0..100,0..1&family=Pinyon+Script&family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&display=swap');

:root {
  /* Palette — pulled from crust, crumb, honey, and quiet morning light */
  --cream:      #f7f1e3;
  --paper:      #f1e8d3;
  --paper-deep: #e8dcc0;
  --crust:      #b07a3e;
  --honey:      #c8932e;
  --coffee:     #3a2716;
  --coffee-mid: #5a3f28;
  --olive:      #6b7a4e;
  --ink:        #1f1610;
  --rule:       #c9b48a;

  /* Type */
  --serif-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --serif-body:    'Cormorant Garamond', Georgia, serif;
  --script:        'Pinyon Script', cursive;

  /* Spacing rhythm */
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-gap: clamp(4rem, 9vw, 8rem);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--coffee);
  font-family: var(--serif-body);
  font-size: 1.125rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
}

/* Subtle paper texture overlay — very low opacity */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.23 0 0 0 0 0.15 0 0 0 0 0.09 0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

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

a { color: inherit; text-decoration: none; transition: color .25s ease; }

/* ========================================================================
   TYPOGRAPHY
   ======================================================================== */

h1, h2, h3, h4 {
  font-family: var(--serif-display);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 0.5em 0;
}

.script {
  font-family: var(--script);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
}

.eyebrow {
  font-family: var(--serif-display);
  font-size: 0.78rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--crust);
  font-weight: 500;
  margin: 0 0 1.25rem 0;
  display: inline-block;
}

.eyebrow::before,
.eyebrow::after {
  content: '—';
  margin: 0 0.55em;
  color: var(--rule);
  font-weight: 300;
}

.scripture {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 300;
  color: var(--coffee-mid);
  font-feature-settings: "ss01";
}

/* ========================================================================
   LAYOUT PRIMITIVES
   ======================================================================== */

.shell {
  width: min(1280px, 100% - var(--gutter) * 2);
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.shell--narrow {
  width: min(820px, 100% - var(--gutter) * 2);
}

section { position: relative; z-index: 2; }

/* ========================================================================
   HEADER / NAVIGATION
   ======================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 241, 227, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(184, 138, 78, 0.18);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  gap: 1.5rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav__brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.nav__wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__wordmark .script {
  font-size: 1.6rem;
  color: var(--ink);
  margin-bottom: 0.05em;
}

.nav__wordmark small {
  font-family: var(--serif-display);
  font-size: 0.62rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--crust);
  font-weight: 500;
}

.nav__links {
  display: flex;
  gap: clamp(1rem, 3.5vw, 2.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav__links a {
  font-family: var(--serif-display);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--coffee);
  font-weight: 500;
  position: relative;
  padding: 0.4rem 0;
}

.nav__links a:hover {
  color: var(--honey);
}

.nav__links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--honey);
}

.nav__cta {
  font-family: var(--serif-display);
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  background: transparent;
  color: var(--coffee);
  border: 1px solid var(--crust);
  padding: 0.6rem 1.5rem 0.55rem;
  border-radius: 999px;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.nav__cta::after {
  content: '→';
  font-size: 0.95rem;
  letter-spacing: 0;
  transition: transform .25s ease;
  display: inline-block;
}

.nav__cta:hover {
  background: var(--honey);
  border-color: var(--honey);
  color: var(--ink);
  transform: translateY(-1px);
}

.nav__cta:hover::after {
  transform: translateX(3px);
}

/* ========================================================================
   BUTTONS
   ======================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--serif-display);
  font-size: 0.82rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  transition: all .3s ease;
  cursor: pointer;
  border: none;
}

.btn--solid {
  background: var(--coffee);
  color: var(--cream);
}
.btn--solid:hover {
  background: var(--honey);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--coffee);
  border: 1px solid var(--crust);
}
.btn--ghost:hover {
  background: var(--coffee);
  color: var(--cream);
  border-color: var(--coffee);
}

.btn__arrow {
  display: inline-block;
  transition: transform .3s ease;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

/* ========================================================================
   HERO — HOME PAGE
   ======================================================================== */

.hero {
  padding: clamp(3rem, 8vw, 6.5rem) 0 clamp(4rem, 9vw, 7rem);
  position: relative;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.hero__title {
  font-family: var(--serif-display);
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 0;
  font-size: clamp(3.4rem, 9vw, 7.2rem);
  line-height: 0.92;
  font-weight: 350;
  color: var(--ink);
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
}

.hero__title .line-1,
.hero__title .line-2 {
  display: block;
}

.hero__title .script {
  font-family: var(--script);
  font-size: 0.88em;
  color: var(--crust);
  display: inline-block;
  margin-right: 0.25em;
  font-weight: 400;
  letter-spacing: 0;
  transform: translateY(-0.04em);
}

.hero__bakery-mark {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--serif-display);
  font-size: 0.85rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--crust);
  font-weight: 500;
  margin: 0.5rem 0 2rem 0;
}

.hero__bakery-mark::before,
.hero__bakery-mark::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--rule);
}

.hero__lede {
  font-size: 1.35rem;
  line-height: 1.55;
  color: var(--coffee-mid);
  max-width: 32ch;
  margin: 0 0 2rem 0;
  font-weight: 400;
}

.hero__scripture {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--coffee-mid);
  margin: 0 0 2.5rem 0;
  position: relative;
  padding-left: 1.25rem;
  border-left: 2px solid var(--honey);
}

.hero__scripture cite {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--crust);
  margin-top: 0.6rem;
  font-weight: 500;
}

.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px -25px rgba(58, 39, 22, 0.45);
}

.hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, transparent 60%, rgba(58, 39, 22, 0.18));
  pointer-events: none;
}

.hero__since {
  position: absolute;
  bottom: -1px;
  right: -1px;
  background: var(--cream);
  padding: 1rem 1.25rem 0.85rem 1.25rem;
  border-top-left-radius: 4px;
}

.hero__since .script {
  font-size: 1.6rem;
  color: var(--honey);
  line-height: 1;
}

.hero__since small {
  display: block;
  font-family: var(--serif-display);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--coffee-mid);
  margin-top: 0.2rem;
}

@media (max-width: 820px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { aspect-ratio: 3 / 4; max-width: 480px; margin-inline: auto; }
}

/* ========================================================================
   MARQUEE BAND — between hero and offerings
   ======================================================================== */

.band {
  background: var(--coffee);
  color: var(--cream);
  padding: 1.5rem 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.band__track {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: scroll 38s linear infinite;
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.band__track span {
  display: inline-flex;
  align-items: center;
  gap: 4rem;
  flex-shrink: 0;
}

.band__track span::after {
  content: '✦';
  color: var(--honey);
  font-size: 0.7rem;
  font-style: normal;
}

@keyframes scroll {
  to { transform: translateX(-50%); }
}

/* ========================================================================
   SECTION HEADERS
   ======================================================================== */

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  flex-wrap: wrap;
}

.section-head__title {
  font-family: var(--serif-display);
  font-variation-settings: "opsz" 144, "SOFT" 50;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  line-height: 1;
  font-weight: 350;
  margin: 0;
  letter-spacing: -0.015em;
  max-width: 14ch;
}

.section-head__title .script {
  font-family: var(--script);
  color: var(--crust);
  font-size: 0.95em;
  font-weight: 400;
}

.section-head__lede {
  max-width: 38ch;
  font-style: italic;
  color: var(--coffee-mid);
  font-size: 1.1rem;
  line-height: 1.55;
  margin: 0;
}

/* ========================================================================
   OFFERINGS GRID
   ======================================================================== */

.offerings {
  padding: var(--section-gap) 0;
  position: relative;
}

.offerings__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
}

.card__media {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  margin-bottom: 1.25rem;
  background: var(--paper);
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.card:hover .card__media img { transform: scale(1.04); }

.card__tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--cream);
  color: var(--coffee);
  font-family: var(--serif-display);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-weight: 500;
  z-index: 2;
}

.card__title {
  font-family: var(--serif-display);
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0 0 0.5rem 0;
  line-height: 1.15;
  color: var(--ink);
}

.card__desc {
  font-size: 1.02rem;
  color: var(--coffee-mid);
  line-height: 1.55;
  margin: 0;
}

/* Asymmetric grid spans */
.card--feature  { grid-column: span 7; }
.card--feature .card__media { aspect-ratio: 4/3; }
.card--side     { grid-column: span 5; }
.card--side .card__media    { aspect-ratio: 3/4; }
.card--third    { grid-column: span 4; }
.card--third .card__media   { aspect-ratio: 1/1; }
.card--half     { grid-column: span 6; }
.card--half .card__media    { aspect-ratio: 4/3; }

@media (max-width: 820px) {
  .card--feature, .card--side, .card--third, .card--half { grid-column: span 12; }
  .card--feature .card__media, .card--side .card__media,
  .card--half .card__media, .card--third .card__media { aspect-ratio: 4/3; }
}

/* ========================================================================
   PROMISE / SCRIPTURE BLOCK
   ======================================================================== */

.promise {
  background: var(--paper);
  padding: var(--section-gap) 0;
  position: relative;
  z-index: 2;
}

.promise__inner {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
}

.promise__ornament {
  font-family: var(--serif-display);
  color: var(--honey);
  font-size: 1.5rem;
  letter-spacing: 1em;
  margin-bottom: 1.5rem;
}

.promise__quote {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  line-height: 1.35;
  color: var(--ink);
  margin: 0 0 1.5rem 0;
}

.promise__quote .script {
  font-family: var(--script);
  font-style: normal;
  color: var(--crust);
  font-size: 1.15em;
  font-weight: 400;
}

.promise__cite {
  font-family: var(--serif-display);
  font-style: normal;
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--crust);
  font-weight: 500;
}

/* ========================================================================
   PROCESS / VALUES STRIP
   ======================================================================== */

.values {
  padding: var(--section-gap) 0;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
}

.value {
  border-top: 1px solid var(--rule);
  padding-top: 1.5rem;
}

.value__num {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1rem;
  color: var(--honey);
  margin-bottom: 0.5rem;
  display: block;
}

.value__title {
  font-family: var(--serif-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.75rem 0;
  color: var(--ink);
}

.value__body {
  font-size: 1.02rem;
  color: var(--coffee-mid);
  line-height: 1.6;
  margin: 0;
}

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

/* ========================================================================
   ABOUT PAGE
   ======================================================================== */

.about-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
}

.about-hero__title {
  font-family: var(--serif-display);
  font-variation-settings: "opsz" 144, "SOFT" 60;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  font-weight: 350;
  margin: 0.5rem 0 1.5rem 0;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.about-hero__title .script {
  font-family: var(--script);
  color: var(--crust);
  font-size: 1em;
  font-weight: 400;
}

.about-hero__sub {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.3rem;
  color: var(--coffee-mid);
  max-width: 50ch;
  margin: 0 auto;
}

.about-feature-image {
  margin: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
}

.about-feature-image img {
  width: 100%;
  aspect-ratio: 16/7;
  object-fit: cover;
  border-radius: 3px;
}

.story {
  padding: clamp(2rem, 5vw, 4rem) 0 var(--section-gap);
}

.story__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}

.story__heading {
  font-family: var(--serif-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
  position: sticky;
  top: 7rem;
}

.story__heading .script {
  font-family: var(--script);
  color: var(--crust);
  font-weight: 400;
}

.story__body p {
  font-size: 1.18rem;
  line-height: 1.75;
  color: var(--coffee);
  margin: 0 0 1.5rem 0;
}

.story__body p:first-child::first-letter {
  font-family: var(--serif-display);
  font-size: 4.2rem;
  line-height: 0.85;
  font-weight: 400;
  float: left;
  padding: 0.1em 0.12em 0 0;
  color: var(--honey);
}

.story__body p strong {
  font-weight: 600;
  color: var(--ink);
}

.story__pullquote {
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: 1.35;
  color: var(--ink);
  border-left: 3px solid var(--honey);
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin: 2rem 0;
}

@media (max-width: 820px) {
  .story__grid { grid-template-columns: 1fr; }
  .story__heading { position: static; }
}

.gallery {
  padding: var(--section-gap) 0;
  background: var(--paper);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(0.5rem, 1.5vw, 1rem);
}

.gallery__item {
  overflow: hidden;
  border-radius: 2px;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.gallery__item:hover img { transform: scale(1.05); }

.gallery__item--tall  { grid-column: span 2; grid-row: span 2; aspect-ratio: 1/2; }
.gallery__item--sq    { grid-column: span 2; aspect-ratio: 1/1; }
.gallery__item--wide  { grid-column: span 4; aspect-ratio: 2/1; }

@media (max-width: 720px) {
  .gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--tall, .gallery__item--sq, .gallery__item--wide {
    grid-column: span 1; grid-row: span 1; aspect-ratio: 1/1;
  }
}

/* ========================================================================
   CONTACT PAGE
   ======================================================================== */

.contact-hero {
  padding: clamp(4rem, 8vw, 7rem) 0 clamp(2rem, 4vw, 4rem);
  text-align: center;
}

.contact-hero .eyebrow { margin-bottom: 1rem; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  padding: clamp(2rem, 5vw, 4rem) 0 var(--section-gap);
  align-items: start;
}

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

.contact-block {
  background: var(--paper);
  border: 1px solid rgba(184, 138, 78, 0.18);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.contact-block__title {
  font-family: var(--serif-display);
  font-size: 2rem;
  font-weight: 400;
  margin: 0 0 0.5rem 0;
  color: var(--ink);
  line-height: 1.1;
}

.contact-block__title .script {
  font-family: var(--script);
  color: var(--crust);
  font-weight: 400;
}

.contact-block__lede {
  font-style: italic;
  color: var(--coffee-mid);
  margin: 0 0 1.75rem 0;
  font-size: 1.05rem;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(184, 138, 78, 0.18);
}

.contact-line:last-child { border-bottom: none; }

.contact-line__label {
  font-family: var(--serif-display);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--crust);
  font-weight: 500;
  flex-shrink: 0;
  width: 88px;
  padding-top: 0.4rem;
}

.contact-line__value {
  font-family: var(--serif-display);
  font-size: 1.35rem;
  color: var(--ink);
  line-height: 1.3;
  word-break: break-word;
}

.contact-line__value a:hover {
  color: var(--honey);
}

/* Payment cards */
.pay-stack {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.pay-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.1rem 1.4rem;
  border-radius: 4px;
  background: var(--cream);
  border: 1px solid rgba(184, 138, 78, 0.22);
  transition: all .25s ease;
  position: relative;
}

.pay-card:hover {
  transform: translateY(-2px);
  border-color: var(--honey);
  box-shadow: 0 12px 30px -12px rgba(58, 39, 22, 0.25);
}

.pay-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-family: var(--serif-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--cream);
}

.pay-card__icon--cash  { background: #00C853; }
.pay-card__icon--venmo { background: #008CFF; }

.pay-card__text { flex: 1; }
.pay-card__name {
  font-family: var(--serif-display);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--crust);
  font-weight: 500;
}
.pay-card__handle {
  font-family: var(--serif-display);
  font-size: 1.25rem;
  color: var(--ink);
  font-weight: 500;
}

.pay-card__arrow {
  color: var(--crust);
  font-size: 1.4rem;
  transition: transform .25s ease;
}

.pay-card:hover .pay-card__arrow {
  transform: translateX(4px);
  color: var(--honey);
}

.facebook-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
  font-family: var(--serif-display);
  font-size: 0.82rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--coffee);
  font-weight: 500;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--crust);
}

.facebook-link:hover { color: var(--honey); border-color: var(--honey); }

/* Order info */
.order-info {
  padding: 0 0 var(--section-gap);
}

.order-info__inner {
  background: var(--coffee);
  color: var(--cream);
  padding: clamp(2.5rem, 5vw, 4rem);
  border-radius: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.order-info h2 {
  font-family: var(--serif-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  font-weight: 400;
  color: var(--cream);
  margin: 0 0 1rem 0;
}

.order-info h2 .script {
  font-family: var(--script);
  color: var(--honey);
  font-weight: 400;
}

.order-info p {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(247, 241, 227, 0.82);
  margin: 0;
}

.order-info ol {
  font-family: var(--serif-display);
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: step;
}

.order-info ol li {
  counter-increment: step;
  padding: 1rem 0 1rem 3.5rem;
  position: relative;
  border-top: 1px solid rgba(247, 241, 227, 0.18);
  font-size: 1.08rem;
  color: rgba(247, 241, 227, 0.92);
}

.order-info ol li:last-child { border-bottom: 1px solid rgba(247, 241, 227, 0.18); }

.order-info ol li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 1rem;
  font-style: italic;
  font-weight: 300;
  color: var(--honey);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
}

@media (max-width: 820px) {
  .order-info__inner { grid-template-columns: 1fr; }
}

/* ========================================================================
   FOOTER
   ======================================================================== */

.site-foot {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(3rem, 6vw, 5rem) 0 1.5rem;
  position: relative;
  z-index: 2;
}

.site-foot__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(247, 241, 227, 0.15);
}

@media (max-width: 820px) {
  .site-foot__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .site-foot__top { grid-template-columns: 1fr; }
}

.foot-col h4 {
  font-family: var(--serif-display);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--honey);
  font-weight: 500;
  margin: 0 0 1rem 0;
}

.foot-brand .script {
  font-size: 2.4rem;
  color: var(--cream);
  display: block;
  line-height: 1;
  margin-bottom: 0.2rem;
}

.foot-brand small {
  font-family: var(--serif-display);
  font-size: 0.62rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--honey);
  display: block;
  margin-bottom: 1rem;
}

.foot-brand p {
  font-style: italic;
  font-size: 0.95rem;
  color: rgba(247, 241, 227, 0.65);
  line-height: 1.55;
  margin: 0;
  max-width: 32ch;
}

.foot-col a, .foot-col p {
  font-family: var(--serif-display);
  font-size: 0.95rem;
  color: rgba(247, 241, 227, 0.78);
  text-decoration: none;
  display: block;
  margin: 0 0 0.6rem 0;
  line-height: 1.5;
}

.foot-col a:hover { color: var(--honey); }

.site-foot__bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--serif-display);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 241, 227, 0.5);
}

.site-foot__bottom .script {
  font-family: var(--script);
  font-size: 1.4rem;
  color: var(--honey);
  text-transform: none;
  letter-spacing: 0;
}

/* ========================================================================
   ANIMATIONS — page load reveals
   ======================================================================== */

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

.reveal {
  animation: fadeUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.reveal--d1 { animation-delay: 0.12s; }
.reveal--d2 { animation-delay: 0.24s; }
.reveal--d3 { animation-delay: 0.36s; }
.reveal--d4 { animation-delay: 0.48s; }
.reveal--d5 { animation-delay: 0.60s; }
.reveal--d6 { animation-delay: 0.72s; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal--d1, .reveal--d2, .reveal--d3, .reveal--d4, .reveal--d5, .reveal--d6 {
    animation: none;
  }
  .band__track { animation: none; }
}

/* ========================================================================
   UTILITIES
   ======================================================================== */

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

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

/* ========================================================================
   PORTRAIT FEATURE — about page family photo
   ======================================================================== */

.portrait {
  padding: clamp(2rem, 4vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem) 0;
}

.portrait__figure {
  margin: 0;
  text-align: center;
  max-width: 540px;
  margin-inline: auto;
  position: relative;
}

.portrait__figure img {
  width: 100%;
  height: auto;
  border-radius: 3px;
  box-shadow: 0 30px 70px -25px rgba(58, 39, 22, 0.42);
  display: block;
}

.portrait__figure::before {
  content: '';
  position: absolute;
  inset: -14px;
  border: 1px solid var(--rule);
  border-radius: 4px;
  pointer-events: none;
  opacity: 0.55;
}

.portrait__caption {
  margin-top: 1.75rem;
  font-family: var(--serif-display);
  font-style: italic;
  font-weight: 300;
  font-size: 1.05rem;
  color: var(--coffee-mid);
  line-height: 1.5;
}

.portrait__caption .script {
  font-style: normal;
  color: var(--crust);
  font-size: 1.5rem;
  display: inline-block;
  margin-right: 0.3em;
  vertical-align: -0.05em;
}

.signoff {
  margin-top: 2.25rem;
  font-style: italic;
  color: var(--coffee-mid);
}

.signoff__name {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--script);
  font-size: 1.85rem;
  color: var(--crust);
  font-style: normal;
  line-height: 1;
}

/* ========================================================================
   MOBILE NAV — burger + drawer
   ======================================================================== */

.nav { position: relative; z-index: 2; }

.nav__burger {
  display: none;
  background: transparent;
  border: 1px solid var(--crust);
  border-radius: 999px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  transition: border-color .25s ease;
  flex-shrink: 0;
}

.nav__burger:hover { border-color: var(--honey); }

.nav__burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--coffee);
  border-radius: 2px;
  transition: transform .3s ease, opacity .25s ease;
}

body.nav-open .nav__burger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
body.nav-open .nav__burger span:nth-child(2) { opacity: 0; }
body.nav-open .nav__burger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.nav__drawer {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-1%);
  transition: opacity .35s ease, visibility .35s, transform .35s ease;
  padding: var(--gutter);
}

body.nav-open .nav__drawer {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__drawer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.nav__drawer-links {
  list-style: none;
  margin: 0 0 1.5rem 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nav__drawer-links a {
  font-family: var(--serif-display);
  font-size: clamp(2rem, 8vw, 2.6rem);
  line-height: 1;
  font-weight: 350;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: inline-block;
  padding: 0.3rem 1rem;
  position: relative;
  transition: color .25s ease;
}

.nav__drawer-links a:hover { color: var(--honey); }
.nav__drawer-links a.active { color: var(--honey); }

.nav__drawer-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 1px;
  background: var(--honey);
}

.nav__drawer-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  font-family: var(--serif-display);
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--coffee);
  background: transparent;
  border: 1px solid var(--crust);
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  transition: all .25s ease;
}

.nav__drawer-cta:hover {
  background: var(--honey);
  border-color: var(--honey);
  color: var(--ink);
}

.nav__drawer-script {
  margin-top: 2.25rem;
  font-family: var(--script);
  font-size: 1.6rem;
  color: var(--crust);
  line-height: 1;
}

body.no-scroll { overflow: hidden; }

@media (max-width: 820px) {
  .nav__links  { display: none; }
  .nav__burger { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  .nav__drawer { transition: opacity .15s ease, visibility .15s; transform: none; }
  .nav__burger span { transition: none; }
}

/* ========================================================================
   MOBILE POLISH — small-viewport fixes
   ======================================================================== */

/* Anchor links shouldn't land under the sticky header */
:where(section, [id]) {
  scroll-margin-top: clamp(72px, 14vw, 96px);
}

/* Stack contact lines on small phones so long emails / addresses
   get the full container width instead of being squeezed by the label. */
@media (max-width: 600px) {
  .contact-line {
    flex-direction: column;
    gap: 0.4rem;
  }
  .contact-line__label {
    width: auto;
    padding-top: 0;
  }
  .contact-line__value {
    font-size: 1.15rem;
  }
  .contact-line__value a {
    overflow-wrap: anywhere;
  }
}

/* Hero CTA buttons share the row evenly on mobile rather than
   sitting at different widths */
@media (max-width: 520px) {
  .hero__cta-row { gap: 0.6rem; }
  .hero__cta-row .btn {
    flex: 1 1 100%;
    justify-content: center;
  }
}

/* Tighter padding on the dark CTA strip so the eyebrow + heading
   have room to breathe on small screens */
@media (max-width: 520px) {
  .order-info__inner {
    padding: clamp(1.75rem, 6vw, 2.5rem);
  }
}

/* Make sure the sticky header always sits above the drawer/menu */
.site-header { position: sticky; top: 0; }
