/* ==========================================================================
   Pi~ Artisan Pizza — Design System
   Palette drawn from the brand's own hand-scrawled "Pi~" mark and the
   deep indigo-violet worn by the crew at market. Warm parchment ground
   like a floured pizza peel; ember red and olive as sparing accents.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500;600;700&family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,500&family=Karla:wght@400;500;600;700&display=swap');

:root {
  /* Palette */
  --ink: #1c1730;          /* near-black violet, headers/text */
  --ink-soft: #322a4d;
  --violet: #4a3980;       /* real brand purple, sampled from crew shirts */
  --violet-deep: #352a5c;
  --parchment: #f6f1e4;    /* page ground, floured wood */
  --parchment-dim: #ede5d0;
  --paper: #fffcf5;
  --ember: #c8462f;        /* charred crust / sauce accent */
  --ember-dark: #a83621;
  --olive: #71804f;        /* basil / arugula accent */
  --olive-dark: #5a6640;
  --gold: #d3a24a;         /* label accent, sparing */
  --white: #ffffff;

  /* Type */
  --font-display: 'Caveat', cursive;
  --font-serif: 'Fraunces', serif;
  --font-body: 'Karla', sans-serif;

  --container: 1180px;
  --radius: 6px;
  --radius-lg: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* Motion respect */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ember);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--ember);
  display: inline-block;
}
.eyebrow.on-dark { color: var(--gold); }
.eyebrow.on-dark::before { background: var(--gold); }
.eyebrow.olive { color: var(--olive-dark); }
.eyebrow.olive::before { background: var(--olive-dark); }

.scrawl {
  font-family: var(--font-display);
  font-weight: 700;
}

/* Consistent "Pi~" treatment wherever it appears in running copy (not in
   eyebrow labels or the logo image, which have their own established styling). */
.brand-mark {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--violet);
}
/* Lighter tint of the same brand violet for use on dark backgrounds, where
   the standard violet fails contrast against the near-black ink. */
.brand-mark-on-dark {
  font-family: var(--font-display);
  font-weight: 700;
  color: #b6a2e8;
}

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.lede {
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn-ember {
  background: var(--ember);
  color: var(--white);
  box-shadow: 0 6px 0 var(--ember-dark);
}
.btn-ember:hover { box-shadow: 0 8px 0 var(--ember-dark); }
.btn-ember:active { transform: translateY(2px); box-shadow: 0 3px 0 var(--ember-dark); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-outline-dark:hover { background: var(--ink); color: var(--white); }

.btn-violet {
  background: var(--violet);
  color: var(--white);
  box-shadow: 0 6px 0 var(--violet-deep);
}
.btn-violet:hover { box-shadow: 0 8px 0 var(--violet-deep); }
.btn-violet:active { transform: translateY(2px); box-shadow: 0 3px 0 var(--violet-deep); }

.btn-sm { padding: 10px 20px; font-size: 0.88rem; }

/* ==========================================================================
   Header / Nav
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.brand-logo {
  height: 46px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: var(--parchment);
  font-weight: 600;
  font-size: 0.96rem;
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--parchment);
  padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--ink);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 10px 24px 20px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-toggle { display: inline-flex; }
  .nav-cta .btn span.long { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
}

.hero-media {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 30%;
}
.hero-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(28,23,48,0.15) 0%, rgba(28,23,48,0.35) 55%, rgba(28,23,48,0.92) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 60px 24px 64px;
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}

.hero-mark {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: var(--gold);
  margin-bottom: 6px;
  display: block;
}

.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  color: var(--white);
  max-width: 15ch;
  letter-spacing: -0.01em;
}

.hero .lede {
  color: rgba(255,255,255,0.86);
  margin-top: 20px;
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-badge {
  position: absolute;
  right: 32px;
  bottom: 32px;
  z-index: 3;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  background: var(--ember);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.15;
  box-shadow: 0 10px 24px rgba(0,0,0,0.35);
  transform: rotate(8deg);
}
@media (max-width: 700px) { .hero-badge { display: none; } }

/* ==========================================================================
   Section scaffolding
   ========================================================================== */

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-tight { padding: 76px 0; }

.section-dark { background: var(--ink); color: var(--parchment); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-violet { background: var(--violet); color: var(--parchment); }
.section-violet h2, .section-violet h3 { color: var(--white); }
.section-parchment-dim { background: var(--parchment-dim); }
.section-paper { background: var(--paper); }

.section-head {
  max-width: 720px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  margin-top: 14px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

.divider-stroke {
  width: 90px;
  height: 14px;
  margin: 18px auto;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 90 14'%3E%3Cpath d='M2 8c10-6 20-6 30 0s20 6 30 0 20-6 26-2' stroke='%23c8462f' stroke-width='3' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ==========================================================================
   Cards — pizza / feature
   ========================================================================== */

.grid {
  display: grid;
  gap: 28px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.dish-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(28,23,48,0.06);
  border: 1px solid rgba(28,23,48,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 34px -18px rgba(28,23,48,0.35);
}
.dish-media { aspect-ratio: 4/3; overflow: hidden; }
.dish-media img { width: 100%; height: 100%; object-fit: cover; }
.dish-body { padding: 22px 22px 26px; }
.dish-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--olive-dark);
  margin-bottom: 8px;
  display: block;
}
.dish-body h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.dish-body p {
  color: var(--ink-soft);
  font-size: 0.96rem;
}

/* ==========================================================================
   Market ticker strip (signature element)
   ========================================================================== */

.ticker-strip {
  background: var(--ink);
  color: var(--parchment);
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 14px 0;
}
.ticker-track {
  display: flex;
  gap: 46px;
  white-space: nowrap;
  animation: ticker 32s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 0.92rem;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.ticker-track span::after { content: '•'; color: var(--ember); margin-left: 34px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ==========================================================================
   Stamp / signature mark divider
   ========================================================================== */

.stamp-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0 auto 40px;
}
.stamp-divider .line {
  height: 1px;
  width: 70px;
  background: rgba(28,23,48,0.2);
}
.stamp-divider .mark {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--violet);
  transform: rotate(-4deg);
}
.section-dark .stamp-divider .line,
.section-violet .stamp-divider .line { background: rgba(255,255,255,0.25); }
.section-dark .stamp-divider .mark,
.section-violet .stamp-divider .mark { color: var(--gold); }

/* ==========================================================================
   About / story split
   ========================================================================== */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; gap: 36px; }
}
.split.reverse .split-media { order: 2; }
@media (max-width: 860px) { .split.reverse .split-media { order: 0; } }

.split-media img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 30px 50px -30px rgba(28,23,48,0.45);
}
.split-media.wide img { aspect-ratio: 4/3; }

.stat-row {
  display: flex;
  gap: 34px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.stat-row .stat b {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  display: block;
  color: var(--ember);
}
.stat-row .stat span {
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}

/* ==========================================================================
   Process steps (Wood-Fired Process, Our Dough)
   ========================================================================== */

.process-list {
  display: grid;
  gap: 0;
}
.process-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(28,23,48,0.12);
}
.process-item:last-child { border-bottom: none; }
.process-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  color: var(--violet);
  line-height: 1;
}
.process-item h3 { font-size: 1.3rem; margin-bottom: 8px; }
.process-item p { color: var(--ink-soft); }

/* ==========================================================================
   Testimonials
   ========================================================================== */

.testi-card {
  background: var(--paper);
  border: 1px solid rgba(28,23,48,0.08);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
}
.testi-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testi-card p.quote {
  font-family: var(--font-serif);
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 18px;
}
.testi-name { font-weight: 700; font-size: 0.92rem; }
.testi-role { font-size: 0.82rem; color: var(--ink-soft); }

/* ==========================================================================
   Instagram grid
   ========================================================================== */

.insta-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 30px;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
@media (max-width: 900px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 540px) { .insta-grid { grid-template-columns: repeat(2, 1fr); } }
.insta-tile {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px;
  display: block;
}
.insta-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.insta-tile:hover img { transform: scale(1.08); }
.insta-tile .insta-icon {
  position: absolute; top: 10px; right: 10px;
  width: 24px; height: 24px;
  opacity: 0; transition: opacity 0.25s ease;
}
.insta-tile:hover .insta-icon { opacity: 1; }

/* ==========================================================================
   CTA band
   ========================================================================== */

.cta-band {
  background: var(--violet);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 20%, rgba(255,255,255,0.14), transparent 55%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); font-size: clamp(1.7rem, 3vw, 2.3rem); max-width: 22ch; }
.cta-band .ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   Forms
   ========================================================================== */

.form-card {
  background: var(--paper);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(28,23,48,0.08);
  box-shadow: 0 30px 50px -30px rgba(28,23,48,0.3);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.85rem; font-weight: 700; color: var(--ink); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.98rem;
  padding: 12px 14px;
  border: 1.5px solid rgba(28,23,48,0.18);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--violet);
  outline: none;
  box-shadow: 0 0 0 3px rgba(74,57,128,0.15);
}
.form-note { font-size: 0.84rem; color: var(--ink-soft); margin-top: 14px; }

/* ==========================================================================
   Schedule / market cards
   ========================================================================== */

.schedule-card {
  background: var(--paper);
  border: 1px solid rgba(28,23,48,0.1);
  border-radius: var(--radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 5px solid var(--ember);
}
.schedule-card .sc-day {
  font-family: var(--font-serif);
  font-size: 1.3rem;
}
.schedule-card .sc-time {
  font-weight: 700;
  color: var(--olive-dark);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.schedule-card .sc-loc { color: var(--ink-soft); font-size: 0.95rem; }
.schedule-card .sc-status {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(113,128,79,0.15);
  color: var(--olive-dark);
}

/* ==========================================================================
   Menu page specific
   ========================================================================== */

.menu-category { margin-bottom: 64px; }
.menu-cat-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 14px;
}
.menu-cat-head h2 { font-size: 2rem; }
.menu-cat-head .cat-sub { color: var(--ink-soft); font-size: 0.95rem; }

.menu-item-list { display: grid; gap: 22px; }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 20px;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(28,23,48,0.18);
}
.menu-item:last-child { border-bottom: none; padding-bottom: 0; }
.menu-item .mi-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.15rem;
}
.menu-item .mi-desc {
  grid-column: 1 / 2;
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin-top: -4px;
}
.menu-item .mi-price {
  font-weight: 700;
  color: var(--ember);
  align-self: start;
  white-space: nowrap;
}
.menu-badges { display: flex; gap: 6px; margin-top: 4px; }
.menu-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(113,128,79,0.15);
  color: var(--olive-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.menu-badge.spicy { background: rgba(200,70,47,0.14); color: var(--ember-dark); }

.menu-photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 40px 0 60px;
}
.menu-photo-strip img {
  border-radius: var(--radius-lg);
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media (max-width: 700px) { .menu-photo-strip { grid-template-columns: 1fr 1fr; } }

/* ==========================================================================
   FAQ accordion
   ========================================================================== */

.faq-item {
  border-bottom: 1px solid rgba(28,23,48,0.14);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: var(--ink);
}
.faq-q .plus {
  font-size: 1.4rem;
  color: var(--ember);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner { padding-bottom: 22px; color: var(--ink-soft); max-width: 68ch; }
.faq-item.open .faq-a { max-height: 400px; }

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  background: var(--ink);
  color: rgba(246,241,228,0.82);
  padding: 76px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-logo { height: 40px; margin-bottom: 16px; }
.footer-grid h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}
.footer-grid ul li { margin-bottom: 11px; }
.footer-grid ul a { font-size: 0.94rem; transition: color 0.15s ease; }
.footer-grid ul a:hover { color: var(--gold); }
.footer-about p { font-size: 0.93rem; max-width: 34ch; color: rgba(246,241,228,0.72); }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.footer-social a:hover { background: var(--ember); border-color: var(--ember); }
.footer-social svg { width: 17px; height: 17px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  padding: 24px 0;
  font-size: 0.82rem;
  color: rgba(246,241,228,0.55);
}
.footer-bottom ul { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom ul a:hover { color: var(--gold); }

/* ==========================================================================
   Page hero (interior pages)
   ========================================================================== */

.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 78px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% -10%, rgba(74,57,128,0.55), transparent 55%);
}
.page-hero > .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  margin-top: 14px;
  max-width: 20ch;
}
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(246,241,228,0.6);
  margin-bottom: 8px;
}
.breadcrumb a:hover { color: var(--gold); }

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
