/* ============================================
   HERMINE - Artisan Bakery Styles
   ============================================ */

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

:root {
  --ink: #d4a96a;
  --bark: #3b2212;
  --sienna: #7a4a2e;
  --sand: #1f150d;
  --gold: #d4a96a;
  --parchment: #f2ebe0;
  --linen: #faf6ef;
  --white: #fffcf8;
  --serif: 'Playfair Display', Georgia, serif;
  --display: 'DM Serif Display', Georgia, serif;
  --sans: 'DM Sans', sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  background: var(--linen);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ============================================
   NAVIGATION
   ============================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.5rem;
  height: 72px;
  transition: background 0.4s var(--ease-out), box-shadow 0.4s, color 0.3s;
}

#nav.scrolled {
  background: #000;
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(26, 15, 8, 0.08);
}

#nav.on-dark { color: var(--linen); }
#nav.on-light { color: #fff; }

.nav-wordmark {
  font-family: var(--display);
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: opacity 0.2s;
  font-style: italic;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-wordmark:hover { opacity: 0.6; }

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  filter: sepia(20%) brightness(0.95);
  border: 1px solid rgba(212, 169, 106, 0.35);
  flex-shrink: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}

/* Dark nav links combo class for homepage */


#nav.hero-nav .nav-right-dark .nav-link::after {
  background: #1a0f08;
}

.nav-link {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s;
  background: none;
  border: none;
  font-family: var(--sans);
}

.nav-link:hover, .nav-link.active { opacity: 1; }
.nav-link.active {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.nav-cta {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 0.65rem 1.4rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.nav-cta:hover {
  background: #e0b878;
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: rgba(8, 5, 3, 0.5);
  border: 1px solid rgba(242, 235, 224, 0.2);
  border-radius: 50%;
  padding: 10px;
  z-index: 200;
  position: relative;
  transition: all 0.2s;
}

.nav-hamburger:hover {
  background: rgba(8, 5, 3, 0.7);
  border-color: rgba(242, 235, 224, 0.3);
}

/* Hide hamburger when menu is open (menu has its own close button) */
.nav-hamburger.open {
  opacity: 0;
  pointer-events: none;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--parchment);
  transition: transform 0.35s var(--ease-out), opacity 0.25s, width 0.3s;
  transform-origin: center;
  border-radius: 1px;
}

.nav-hamburger span:nth-child(2) { width: 70%; margin-left: auto; margin-right: auto; }
.nav-hamburger:hover span:nth-child(2) { width: 100%; }
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 100%; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 250;
  pointer-events: none;
}

.mobile-menu.open {
  display: block;
  pointer-events: auto;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 5, 3, 0.85);
  backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.35s;
}

.mobile-menu.open .mobile-menu-backdrop { opacity: 1; }

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(340px, 88vw);
  height: 100%;
  background: #080503;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  overflow-y: auto;
  border-left: 1px solid rgba(212, 169, 106, 0.15);
}

.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.8rem;
  border-bottom: 1px solid rgba(242, 235, 224, 0.07);
  height: 72px;
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--parchment);
  cursor: pointer;
  text-decoration: none;
}

.mobile-menu-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(212, 169, 106, 0.4);
}

.mobile-menu-close {
  background: none;
  border: none;
  color: rgba(242, 235, 224, 0.4);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.3rem;
  transition: color 0.2s;
}

.mobile-menu-close:hover { color: var(--parchment); }

.mobile-menu-nav { padding: 2rem 0; flex: 1; }

.mobile-nav-item {
  display: block;
  padding: 1.2rem 1.8rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.5rem;
  color: rgba(242, 235, 224, 0.7);
  cursor: pointer;
  border-bottom: 1px solid rgba(242, 235, 224, 0.08);
  transition: color 0.2s, background 0.2s, padding-left 0.2s;
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  width: 100%;
  text-align: left;
  text-decoration: none;
}

.mobile-nav-item:hover {
  color: var(--parchment);
  background: rgba(242, 235, 224, 0.04);
  padding-left: 2rem;
}

.mobile-nav-item.active { 
  color: var(--gold);
  background: rgba(212, 169, 106, 0.06);
}

.mobile-menu-footer {
  padding: 2rem 1.8rem;
  border-top: 1px solid rgba(242, 235, 224, 0.07);
}

.mobile-menu-cta {
  display: block;
  width: 100%;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  background: var(--gold);
  color: #080503;
  border: none;
  padding: 1.1rem;
  cursor: pointer;
  text-align: center;
  margin-bottom: 1.6rem;
  transition: all 0.2s;
}

.mobile-menu-cta:hover { 
  background: #e0b878;
  transform: translateY(-2px);
}

.mobile-menu-info {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.mobile-menu-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(242, 235, 224, 0.5);
  line-height: 1.5;
}

.mobile-menu-info-row svg {
  width: 14px;
  height: 14px;
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
  margin-top: 2px;
}

.mobile-menu-info-row span {
  color: rgba(242, 235, 224, 0.5);
}

.mobile-menu-email {
  color: rgba(242, 235, 224, 0.6);
  text-decoration: underline;
  text-decoration-color: rgba(212, 169, 106, 0.4);
  text-underline-offset: 2px;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.mobile-menu-email:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  /* height: 100svh; */
  min-height: 640px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

.hero-left {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 4rem 5rem 4rem;
  background: var(--ink);
  overflow: hidden;
}

.hero-left-grain {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 256px 256px;
  pointer-events: none;
}

.hero-year {
  position: absolute;
  top: 50%;
  left: -1.5rem;
  transform: translateY(-50%) rotate(-90deg) translateX(-50%);
  transform-origin: left center;
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(242, 235, 224, 0.12);
  white-space: nowrap;
}

.hero-text { position: relative; z-index: 1; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.2s var(--ease-out) forwards;
}

.hero-eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-h1 {
  font-family: var(--display);
  font-size: clamp(4.5rem, 8vw, 8.5rem);
  font-style: italic;
  line-height: 0.9;
  color: var(--parchment);
  letter-spacing: -0.02em;
  margin-bottom: 2.4rem;
  opacity: 0;
  animation: fadeUp 1s 0.35s var(--ease-out) forwards;
}

.hero-tagline {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
  color: rgba(242, 235, 224, 0.5);
  max-width: 300px;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1s 0.5s var(--ease-out) forwards;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s 0.65s var(--ease-out) forwards;
}

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

.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.95rem 1.8rem;
  background: var(--gold);
  color: var(--ink);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.22s, transform 0.22s;
}

.btn-solid:hover {
  background: #e0b878;
  transform: translateY(-2px);
}

.btn-solid svg { width: 13px; height: 13px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.95rem 1.8rem;
  background: transparent;
  color: var(--parchment);
  border: 1px solid rgba(242, 235, 224, 0.25);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.22s;
}

.btn-ghost:hover {
  border-color: rgba(242, 235, 224, 0.6);
  background: rgba(242, 235, 224, 0.05);
  transform: translateY(-2px);
}

.btn-ghost svg { width: 13px; height: 13px; }

.hero-right {
  position: relative;
  overflow: hidden;
  height: 650px;
}

.hero-img {
  position: absolute;
  inset: 0;
  background: var(--bark);
  background-size: cover;
  background-position: center;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 15, 8, 0.3) 0%, transparent 50%);
}

.hero-img-label {
  position: absolute;
  right: 2rem;
  bottom: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  color: rgba(250, 246, 239, 0.85);
  z-index: 3;
}

.hero-img-label span {
  font-size: 0.55rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.hero-img-label::after {
  content: '';
  width: 1px;
  height: 40px;
  background: rgba(250, 246, 239, 0.6);
}

/* ============================================
   MARQUEE
   ============================================ */
.marquee-band {
  background: var(--gold);
  overflow: hidden;
  padding: 0.85rem 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

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

.marquee-item {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  padding: 0 2rem;
  white-space: nowrap;
  font-family: var(--display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--ink);
}

.marquee-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.35;
}

/* ============================================
   OFFERINGS
   ============================================ */
.offerings {
  padding: 8rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-style: italic;
  color: var(--ink);
  line-height: 1.05;
  margin-bottom: 5rem;
}

.section-title em {
  color: var(--sand);
  font-style: italic;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(26, 15, 8, 0.08);
}

.offering-card {
  padding: 3rem 2.4rem;
  border-right: 1px solid rgba(26, 15, 8, 0.08);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.offering-card:last-child { border-right: none; }

.offering-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.offering-card:hover { background: var(--white); }
.offering-card:hover::after { transform: scaleX(1); }

.offering-num {
  display: block;
  font-family: var(--display);
  font-size: 3.5rem;
  font-style: italic;
  color: rgba(26, 15, 8, 0.05);
  line-height: 1;
  margin-bottom: 1.4rem;
  transition: color 0.3s;
}

.offering-card:hover .offering-num { color: rgba(26, 15, 8, 0.09); }

.offering-icon {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 1rem;
}

.offering-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 0.7rem;
}

.offering-desc {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--sienna);
}

/* ============================================
   PHILOSOPHY
   ============================================ */
.philosophy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.philosophy-img {
  position: relative;
  overflow: hidden;
  background: var(--bark);
}

.philosophy-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(15%) brightness(0.85) contrast(1.06);
  display: block;
  transition: transform 0.9s var(--ease-out);
}

.philosophy-img:hover img { transform: scale(1.03); }

.philosophy-badge {
  position: absolute;
  top: 2.5rem;
  left: 2.5rem;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 1px solid rgba(212, 169, 106, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.68rem;
  color: var(--gold);
  text-align: center;
  line-height: 1.5;
}

.philosophy-text {
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 5.5rem;
  position: relative;
  overflow: hidden;
}

.philosophy-text::before {
  content: '"';
  position: absolute;
  top: -2rem;
  left: 2.5rem;
  font-family: var(--display);
  font-size: 20rem;
  color: rgba(212, 169, 106, 0.04);
  line-height: 1;
  pointer-events: none;
}

.philosophy-quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  color: var(--parchment);
  line-height: 1.55;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.philosophy-attr {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.philosophy-attr::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #080503;
  color: var(--parchment);
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}

.footer-cta {
  position: relative;
  border-bottom: 1px solid rgba(242, 235, 224, 0.07);
  padding: 5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-cta-eyebrow {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.footer-cta-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.footer-cta-headline {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--parchment);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.footer-cta-headline span { color: var(--gold); }

.footer-cta-form {
  display: flex;
  align-items: stretch;
  flex-shrink: 0;
}

.footer-cta-input {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 300;
  background: rgba(242, 235, 224, 0.06);
  border: 1px solid rgba(242, 235, 224, 0.12);
  border-right: none;
  color: var(--parchment);
  padding: 1rem 1.5rem;
  width: 260px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.footer-cta-input::placeholder { color: rgba(242, 235, 224, 0.3); }
.footer-cta-input:focus {
  border-color: rgba(212, 169, 106, 0.4);
  background: rgba(242, 235, 224, 0.09);
}

.footer-cta-btn {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: 1rem 1.6rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}

.footer-cta-btn:hover { background: #e0b878; }

.footer-cols {
  position: relative;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  max-width: 1200px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(242, 235, 224, 0.07);
}

.footer-col {
  padding: 4rem 3rem;
  border-right: 1px solid rgba(242, 235, 224, 0.06);
}

.footer-col:last-child { border-right: none; }
.footer-col:first-child { padding-left: 4rem; }

.footer-brand-logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1.4rem;
  filter: sepia(15%) brightness(0.9);
  border: 1px solid rgba(212, 169, 106, 0.3);
  display: block;
}

.footer-brand-name {
  font-family: var(--display);
  font-style: italic;
  font-size: 2rem;
  color: var(--parchment);
  letter-spacing: -0.01em;
  margin-bottom: 0.9rem;
  line-height: 1;
}

.footer-brand-name span { color: var(--gold); }

.footer-brand-desc {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(242, 235, 224, 0.38);
  line-height: 1.75;
  max-width: 230px;
  margin-bottom: 2rem;
}

.footer-socials { display: flex; gap: 0.6rem; }

.footer-social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(242, 235, 224, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(242, 235, 224, 0.4);
  text-decoration: none;
  cursor: pointer;
  background: none;
  transition: all 0.22s;
}

.footer-social-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 169, 106, 0.06);
}

.footer-social-btn svg { width: 14px; height: 14px; }

.footer-col-head {
  font-size: 0.56rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-col-head::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(212, 169, 106, 0.2);
}

.footer-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.footer-nav-list li {
  border-bottom: 1px solid rgba(242, 235, 224, 0.05);
}

.footer-nav-list li:first-child {
  border-top: 1px solid rgba(242, 235, 224, 0.05);
}

.footer-nav-list a {
  display: block;
  font-family: var(--serif);
  font-size: 0.92rem;
  font-style: italic;
  color: rgba(242, 235, 224, 0.48);
  text-decoration: none;
  cursor: pointer;
  padding: 0.75rem 0;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-nav-list a:hover {
  color: var(--parchment);
  padding-left: 0.4rem;
}

.footer-info-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(242, 235, 224, 0.05);
}

.footer-info-row:first-of-type {
  border-top: 1px solid rgba(242, 235, 224, 0.05);
}

.footer-info-row svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.6;
  margin-top: 2px;
}

.footer-info-row span {
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(242, 235, 224, 0.42);
  line-height: 1.55;
}

.footer-email {
  color: rgba(242, 235, 224, 0.6);
  text-decoration: underline;
  text-decoration-color: rgba(212, 169, 106, 0.4);
  text-underline-offset: 2px;
  transition: color 0.2s, text-decoration-color 0.2s;
}

.footer-email:hover {
  color: var(--gold);
  text-decoration-color: var(--gold);
}

.footer-hours {
  margin-top: 1.6rem;
  padding: 1.2rem;
  border: 1px solid rgba(212, 169, 106, 0.14);
  background: rgba(212, 169, 106, 0.03);
}

.footer-hours-label {
  font-size: 0.56rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  opacity: 0.8;
}

.footer-hours-text {
  font-family: var(--serif);
  font-size: 0.82rem;
  font-style: italic;
  color: rgba(242, 235, 224, 0.38);
  line-height: 1.6;
}

.footer-bottom {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.6rem 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: rgba(242, 235, 224, 0.18);
}

.footer-bottom-center {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-bottom-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(212, 169, 106, 0.3);
}

.footer-bottom-link {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: rgba(242, 235, 224, 0.18);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s;
}

.footer-bottom-link:hover { color: rgba(242, 235, 224, 0.45); }

.footer-made {
  font-family: var(--display);
  font-style: italic;
  font-size: 0.72rem;
  color: rgba(242, 235, 224, 0.14);
}

/* ============================================
   CHEF PAGE
   ============================================ */
.chef-hero {
  position: relative;
  height: 100vh;
  min-height: 420px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 0 4rem 4.5rem;
}

.chef-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bark);
  background-size: cover;
  background-position: left;
}

.chef-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 15, 8, 0.9) 0%, transparent 65%);
}

.chef-hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

/* Mobile foreground image (hidden by default) */
.chef-hero-mobile-img {
  display: none;
}

.chef-eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.chef-eyebrow::before {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
  opacity: 0.65;
}

.chef-name {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--parchment);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.chef-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-style: italic;
  color: rgba(242, 235, 224, 0.5);
}

.chef-body {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  background: var(--linen);
}

.chef-portrait {
  position: relative;
  overflow: hidden;
  background: var(--bark);
  min-height: 600px;
}

.chef-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: sepia(8%) contrast(1.04) brightness(0.95);
  transition: transform 0.9s var(--ease-out);
}

.chef-portrait:hover img { transform: scale(1.03); }

.chef-portrait-caption {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 0.85rem;
  color: rgba(242, 235, 224, 0.45);
}

.chef-bio {
  padding: 6rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chef-bio-label {
  font-size: clamp(1.2rem, 2.5vw, 2.5rem);
  letter-spacing: 0;
  text-transform: uppercase;
  background: linear-gradient(135deg, #e8d5b5 0%, #c9a86c 30%, #f0d78c 50%, #c9a86c 70%, #a08050 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2.5rem;
  font-weight: 700;
  font-style: italic;
  text-align: center;
  white-space: nowrap;
}

.chef-bio-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 2.5rem auto;
}

.chef-bio-copy {
  font-family: var(--serif);
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--sienna);
  column-count: 2;
  column-gap: 3rem;
}

.chef-bio-copy p + p { margin-top: 1.4em; }
.chef-bio-copy strong { color: var(--bark); font-weight: 600; }

.chef-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 3rem;
}

.chef-tag {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sand);
  border: 1px solid rgba(196, 149, 106, 0.28);
  padding: 0.5rem 1.1rem;
  transition: all 0.2s;
  cursor: default;
}

.chef-tag:hover {
  background: rgba(196, 149, 106, 0.07);
  border-color: var(--sand);
}

/* ============================================
   MODAL
   ============================================ */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 15, 8, 0.78);
  z-index: 500;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(7px);
  padding: 2rem;
}

.modal-backdrop.open { display: flex; }

.modal {
  background: #080503;
  width: 100%;
  max-width: 480px;
  position: relative;
  overflow: hidden;
  animation: modalIn 0.4s var(--ease-out);
  border: 1px solid rgba(212, 169, 106, 0.2);
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.modal-top {
  background: #080503;
  padding: 3rem 3.5rem 2.5rem;
  position: relative;
  border-bottom: 1px solid rgba(212, 169, 106, 0.15);
}

.modal-top::after {
  content: '"';
  position: absolute;
  top: -2rem;
  right: 1.5rem;
  font-family: var(--display);
  font-size: 14rem;
  color: rgba(212, 169, 106, 0.05);
  line-height: 1;
  pointer-events: none;
}

.modal-close {
  position: absolute;
  top: 1.4rem;
  right: 1.6rem;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(242, 235, 224, 0.3);
  font-size: 1.3rem;
  line-height: 1;
  transition: color 0.2s;
  z-index: 1;
}

.modal-close:hover { color: var(--parchment); }

.modal-headline {
  font-family: var(--display);
  font-style: italic;
  font-size: 2.2rem;
  color: var(--parchment);
  line-height: 1.1;
  margin-bottom: 0.7rem;
  position: relative;
  z-index: 1;
}

.modal-headline span { color: var(--gold); }

.modal-sub {
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(242, 235, 224, 0.42);
  position: relative;
  z-index: 1;
}

.modal-body { padding: 2.8rem 3.5rem 3rem; }

.modal-form {
  margin: 0;
}

.modal-submit-frame {
  width: 0;
  height: 0;
  border: 0;
  position: absolute;
  visibility: hidden;
}

.modal-input {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  border: none;
  border-bottom: 1px solid rgba(242, 235, 224, 0.2);
  padding: 1rem 0;
  background: transparent;
  color: var(--parchment);
  outline: none;
  transition: border-color 0.2s;
  display: block;
  margin-bottom: 1.5rem;
}

.modal-input:focus { border-color: var(--gold); }
.modal-input::placeholder { color: rgba(242, 235, 224, 0.4); }

.modal-btn {
  width: 100%;
  margin-top: 0.8rem;
  background: var(--gold);
  color: #080503;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  padding: 1.2rem;
  cursor: pointer;
  transition: all 0.22s;
}

.modal-btn:hover { 
  background: #e0b878;
  transform: translateY(-2px);
}

.modal-fine {
  font-size: 0.7rem;
  color: rgba(242, 235, 224, 0.5);
  text-align: center;
  margin-top: 1.5rem;
}

.modal-honeypot {
  position: absolute;
  left: -5000px;
}

.modal-message {
  display: none;
  margin-top: 1rem;
  font-size: 0.72rem;
  text-align: center;
  letter-spacing: 0.04em;
}

.modal-message.is-visible {
  display: block;
}

.modal-message.is-pending {
  color: rgba(242, 235, 224, 0.7);
}

.modal-message.is-success {
  color: var(--gold);
}

.modal-btn:disabled {
  cursor: wait;
  opacity: 0.8;
  transform: none;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  #nav { padding: 0 1.8rem; }
  .nav-right { display: none; }
  .nav-hamburger { display: flex; }
  
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 8rem 2.5rem 4rem; min-height: 100svh; }
  .hero-right { display: none; }
  
  .offerings { padding: 5rem 2rem; }
  .offerings-grid { grid-template-columns: 1fr 1fr; }
  .offering-card:nth-child(2) { border-right: none; }
  .offering-card:nth-child(1),
  .offering-card:nth-child(2) { border-bottom: 1px solid rgba(26, 15, 8, 0.08); }
  
  .philosophy { grid-template-columns: 1fr; }
  .philosophy-img { height: 42vh; }
  .philosophy-text { padding: 3.5rem 2.5rem; }
  .philosophy-text::before { font-size: 12rem; }
  
  .footer-cta {
    padding: 3rem 2rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-cta-form { width: 100%; }
  .footer-cta-input { flex: 1; width: auto; }
  
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-col {
    padding: 2.5rem 2rem;
    border-right: none;
    border-bottom: 1px solid rgba(242, 235, 224, 0.06);
  }
  .footer-col:first-child {
    padding-left: 2rem;
    grid-column: 1 / -1;
  }
  
  .footer-bottom {
    padding: 1.5rem 2rem;
    flex-direction: column;
    align-items: center;
  }
  
  .chef-hero { 
    padding: 0 2rem 3rem;
    flex-direction: column;
    justify-content: flex-end;
    height: auto;
    min-height: auto;
  }
  
  .chef-hero-content {
    margin-right: auto;
  }
  
  .chef-name {
    font-size: 2.3rem;
  }
  
  /* Hide background image on mobile */
  .chef-hero-bg {
    background-image: none !important;
  }
  
  /* Show foreground image on mobile */
  .chef-hero-mobile-img {
    display: block;
    position: relative;
    width: 100%;
    max-height: 60vh;
    object-fit: cover;
    object-position: center top;
    margin-bottom: 1.5rem;
    z-index: 1;
    margin-top: 100px;
  }
  
  .chef-body { grid-template-columns: 1fr; }
  .chef-portrait { min-height: 50vh; }
  .chef-bio { padding: 4rem 2.5rem; }
}

/* ============================================
   NEW HERO LEFT SIDE DESIGN
   ============================================ */
.hero-left-new {
  background: var(--sand) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-left-new .hero-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-left-new .hero-circle {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0;
  position: relative;
  flex-shrink: 0;
}

.hero-left-new .hero-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-left-new .hero-title {
  font-family: var(--display);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  background: linear-gradient(135deg, #e8d5b5 0%, #c9a86c 30%, #f0d78c 50%, #c9a86c 70%, #a08050 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 1.2rem;
  letter-spacing: 0.15em;
  text-shadow: 0 2px 10px rgba(201, 168, 108, 0.3), 0 4px 20px rgba(201, 168, 108, 0.2);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.hero-left-new .hero-desc {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 1.8rem;
}

.hero-left-new .hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--parchment);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 0.9rem 1.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-left-new .hero-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}

.hero-left-new .hero-btn svg {
  width: 14px;
  height: 14px;
}

@media (max-width: 900px) {
  .hero-left-new .hero-circle {
    width: 220px;
    height: 220px;
  }
  
    .hero-arch-top,
  .hero-arch-bottom {
    transform: scale(0.75);
  }
  
  .hero-arch-top {
    margin-bottom: -1.5rem;
    width: 280px;
    height: 100px;
  }
  
  .hero-arch-top .curved-letter {
    font-size: 42px;
  }
  
  .hero-arch-bottom {
    margin-top: -1.5rem;
    margin-bottom: 0.5rem;
    width: 280px;
    height: 100px;
  }
  
  .hero-left-new .hero-desc br {
    display: none;
  }
}

/* Navigation on hero page */
#nav.hero-nav {
  color: var(--parchment);
  justify-content: flex-end;
}

#nav.hero-nav .nav-link,
#nav.hero-nav .nav-wordmark {
  color: var(--parchment);
}

#nav.hero-nav.scrolled {
  color: var(--ink);
}

#nav.hero-nav.scrolled .nav-link,
#nav.hero-nav.scrolled .nav-wordmark {
  color: var(--ink);
}

/* Hero arch text */
.hero-arch-text {
  position: relative;
  z-index: 2;
}

.hero-arch-text svg {
  display: block;
}

/* Top arch - Hermine */
.hero-arch-top {
  margin-bottom: -2rem;
  position: relative;
  width: 360px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero-arch-top .curved-letter {
  position: absolute;
  font-family: var(--display);
  font-size: 52px;
  font-style: italic;
  font-weight: 700;
  color: var(--parchment);
  transform-origin: center center;
  line-height: 1;
  white-space: nowrap;
}

/* Bottom arch - FLOUR ~ WATER ~ MAGIC */
.hero-arch-bottom {
  margin-top: -2rem;
  margin-bottom: 0.5rem;
  position: relative;
  width: 360px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* ============================================
   HERO BADGE - Circular image with curved text
   ============================================ */
.hero-badge {
  width: 500px;
  height: 500px;
  position: relative;
  margin: 0 auto;
}

.hero-badge svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-badge image {
  filter: sepia(15%) brightness(0.95);
}

.badge-text-top,
.badge-text-bottom {
  fill: url(#goldGradient);
  font-family: var(--display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
}

.badge-text-top {
  font-size: 120px;
  letter-spacing: 8px;
}

.badge-text-bottom {
  font-size: 32px;
  letter-spacing: 10px;
}

@media (max-width: 500px) {
  .hero-badge {
    width: 100%;
    height: 100%;
  }
}

/* Hero actions row with socials and button */
.hero-actions-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1rem;
}

.hero-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-social-link {
  color: var(--parchment);
  opacity: 0.8;
  transition: opacity 0.2s, transform 0.2s;
}

.hero-social-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.hero-social-link svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 900px) {
  .hero-actions-row {
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-social-link svg {
    width: 18px;
    height: 18px;
  }
}

/* ============================================
   FOOTER TEXT CONTRAST IMPROVEMENTS
   ============================================ */

/* Footer column headers */
.footer-col-head {
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  opacity: 1;
}

/* Footer navigation links */
.footer-nav-list a {
  color: rgba(242, 235, 224, 0.85);
  opacity: 1;
}

.footer-nav-list a:hover {
  color: var(--parchment);
}

/* Footer info rows */
.footer-info-row span {
  color: rgba(242, 235, 224, 0.85);
  opacity: 1;
}

/* Footer hours */
.footer-hours-label {
  color: var(--gold);
  opacity: 1;
}

.footer-hours-text {
  color: rgba(242, 235, 224, 0.85);
  opacity: 1;
}

/* Footer bottom */
.footer-copy,
.footer-bottom-link,
.footer-made {
  color: rgba(242, 235, 224, 0.6);
  opacity: 1;
}

.footer-bottom-link:hover {
  color: rgba(242, 235, 224, 0.9);
}

/* ============================================
   FOOTER LAYOUT AND TEXT SIZE IMPROVEMENTS
   ============================================ */

/* Footer columns container - equal spacing */
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 3rem;
}

/* Footer column styling */
.footer-col {
  padding: 0;
  border-right: none;
}

/* Footer column headers */
.footer-col-head {
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  margin-bottom: 2rem;
}

/* Footer navigation links - larger */
.footer-nav-list a {
  font-size: 1.1rem;
  padding: 1rem 0;
}

/* Footer info rows - larger text */
.footer-info-row span {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Footer hours - larger */
.footer-hours-label {
  font-size: 0.7rem;
  margin-bottom: 0.8rem;
}

.footer-hours-text {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Mobile responsive */
@media (max-width: 900px) {
  .footer-cols {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
  }
  
  .footer-col {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(242, 235, 224, 0.1);
  }
  
  .footer-col:last-child {
    border-bottom: none;
  }
}

/* ============================================
   NAVBAR CLEAN PROFESSIONAL STYLE
   ============================================ */

#nav {
  padding: 0 2.5rem;
  height: 70px;
}

#nav.hero-nav {
  color: #1f150d;
}

#nav.hero-nav.scrolled {
  background: rgba(8, 5, 3, 0.98);
  backdrop-filter: blur(12px);
  color: var(--parchment);
}

#nav.hero-nav.scrolled .nav-link,
#nav.hero-nav.scrolled .nav-wordmark {
  color: var(--parchment);
}

#nav.hero-nav .nav-link,
#nav.hero-nav .nav-wordmark {
  color: var(--parchment);
}

#nav.hero-nav .nav-link::after {
  background: var(--parchment);
}

#nav.hero-nav.scrolled .nav-link::after {
  background: var(--parchment);
}

#nav.hero-nav .nav-cta {
  color: var(--parchment);
}

#nav.hero-nav .nav-cta:hover {
  background: transparent;
  color: #1f150d;
}

#nav.hero-nav.scrolled .nav-cta {
  background: transparent;
  border-color: var(--parchment);
  color: var(--parchment);
}

#nav.hero-nav.scrolled .nav-cta:hover {
  background: var(--parchment);
  color: #080503;
}

.nav-wordmark {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 1;
}

.nav-right {
  gap: 2.5rem;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  opacity: 1;
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  opacity: 1;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--parchment);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  border-bottom: none;
  padding-bottom: 0.5rem;
}

.nav-cta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 0.75rem 1.6rem;
  background: transparent;
  border: 1px solid var(--parchment);
  color: var(--parchment);
}

.nav-cta:hover {
  background: var(--parchment);
  color: #080503;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  #nav {
    padding: 0 1.5rem;
  }
  
  .nav-wordmark {
    font-size: 1.4rem;
  }
}

/* ============================================
   HERO MEET THE CHEF LINK
   ============================================ */

.hero-chef-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
  padding: 1rem 2.5rem;
  background: #1f150d;
  color: var(--parchment);
  font-family: var(--display);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.hero-chef-link:hover {
  background: var(--parchment);
  color: #1f150d;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-chef-link svg {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
}

.hero-chef-link:hover svg {
  transform: translateX(4px);
}

@media (max-width: 900px) {
  .hero-chef-link {
    margin-top: 2rem;
    padding: 0.9rem 2rem;
    font-size: 1rem;
  }
}

/* Chef bio 2-column responsive */
@media (max-width: 900px) {
  .chef-bio-copy {
    column-count: 1;
  }
}

/* ============================================
   WORDPRESS THEME SUPPORT
   ============================================ */
.mobile-menu[hidden],
.modal-backdrop[hidden] {
  display: none !important;
}

.nav-menu,
.mobile-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}

.nav-menu .menu-item,
.mobile-menu-list .menu-item,
.footer-nav-list .menu-item {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-main {
  min-height: 100vh;
}

.site-page {
  padding: 8.5rem 1.5rem 5rem;
}

.site-page__inner {
  max-width: 860px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid rgba(26, 15, 8, 0.08);
  box-shadow: 0 28px 80px rgba(26, 15, 8, 0.07);
  padding: 3rem;
}

.site-page__header {
  margin-bottom: 2rem;
}

.site-page__title {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--bark);
}

.site-page__title a {
  color: inherit;
  text-decoration: none;
}

.site-post-card + .site-post-card {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(26, 15, 8, 0.08);
}

.editor-content {
  color: var(--sienna);
  font-size: 1rem;
  line-height: 1.8;
}

.editor-content h2,
.editor-content h3,
.editor-content h4 {
  font-family: var(--serif);
  color: var(--bark);
  line-height: 1.2;
  margin-bottom: 0.9rem;
}

.editor-content p + p,
.editor-content ul + p,
.editor-content ol + p,
.editor-content p + ul,
.editor-content p + ol {
  margin-top: 1.25em;
}

.editor-content ul,
.editor-content ol {
  padding-left: 1.2rem;
}

.editor-content a {
  color: var(--sienna);
  text-decoration-color: rgba(122, 74, 46, 0.35);
  text-underline-offset: 0.18em;
}

.editor-content a:hover {
  text-decoration-color: currentColor;
}

.modal-message.is-error {
  color: #f6b3a4;
}

.modal-config-note {
  color: #f6b3a4;
}

@media (max-width: 991px) {
  .site-page {
    padding: 7rem 1.25rem 4rem;
  }

  .site-page__inner {
    padding: 2.25rem;
  }
}

@media (max-width: 767px) {
  .nav-menu {
    gap: 1.5rem;
  }

  .site-page__inner {
    padding: 1.75rem;
  }
}

@media (max-width: 479px) {
  .site-page__inner {
    padding: 1.4rem;
  }
}
