/* ============================================================
   Tasha LaShawn — tashalashawn.com
   Luxury edition — brand palette per TashaLaShawn Brand Book
   Typography: Cinzel (display) · Cormorant Garamond (serif)
               Manrope (sans) · Great Vibes (script)
   ============================================================ */

:root {
  --ivory: #F7F2EC;
  --linen: #EFE6DC;
  --taupe: #B6A18F;
  --cocoa: #6B4E3D;
  --espresso: #3C2A22;
  --espresso-deep: #2E1F19;
  --gold: #C9A86A;
  --gold-light: #E9D5A8;
  --gold-deep: #A8823F;
  --terracotta: #B97A63;
  --terracotta-hover: #A46954;
  --rose: #D8B6AE;
  --rose-tint: #F6EAE5;
  --sage: #B7C0AE;
  --burnt: #C56A3D;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --display: 'Cinzel', 'Cormorant Garamond', serif;
  --sans: 'Manrope', 'Avenir', Helvetica, Arial, sans-serif;
  --script: 'Great Vibes', cursive;
  --gold-gradient: linear-gradient(110deg, var(--gold-deep) 15%, var(--gold-light) 38%, var(--gold) 50%, #F2E3BC 62%, var(--gold-deep) 85%);
  --hairline: 1px solid rgba(201, 168, 106, .45);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
  letter-spacing: .01em;
  color: var(--cocoa);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--espresso);
  line-height: 1.12;
}

a { color: var(--terracotta); text-decoration: none; transition: color .3s ease; }
a:hover { color: var(--terracotta-hover); }

.container { max-width: 1140px; margin: 0 auto; padding: 0 6vw; }
.narrow { max-width: 760px; }

/* ---------- Metallic gold text & shimmer ---------- */
@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
.gold-text,
.wordmark .lashawn,
.footer-script,
.hero .script-line {
  background: var(--gold-gradient);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--gold);
  animation: shimmer 7s linear infinite;
}
/* script faces have tall ascenders — keep them inside the painted text box */
.footer-script, .hero .script-line { line-height: 1.35; }
@media (prefers-reduced-motion: reduce) {
  .gold-text, .wordmark .lashawn, .footer-script, .hero .script-line { animation: none; }
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 242, 236, .95);
  backdrop-filter: blur(10px);
  border-bottom: var(--hairline);
  box-shadow: 0 1px 24px rgba(60, 42, 34, .05);
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 4vw;
  display: flex; align-items: center; justify-content: space-between;
  min-height: 92px;
}
.wordmark { display: inline-flex; align-items: baseline; gap: .5rem; line-height: 1; }
.wordmark .tasha {
  font-family: var(--display); font-size: 1.42rem; letter-spacing: .38em;
  color: var(--espresso); text-transform: uppercase; font-weight: 500;
}
.wordmark .lashawn {
  font-family: var(--script); font-size: 2.1rem;
  line-height: 1.35; padding-top: .12em;
  margin-left: -.15rem; transform: translateY(2px);
}
.main-nav ul { list-style: none; display: flex; gap: 2.2rem; align-items: center; }
.main-nav a {
  position: relative;
  font-size: .68rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--cocoa); font-weight: 400; padding-bottom: 6px;
}
.main-nav a::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width .35s ease, left .35s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--espresso); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; left: 0; }
/* Tee's Table tab — matches the "Tee's" script color in the logo */
.main-nav a[href^="tees-table"] { color: #B67773; }
.main-nav a[href^="tees-table"]:hover,
.main-nav a[href^="tees-table"].active { color: #A46954; }
.main-nav a[href^="tees-table"]::after { background: #B67773; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  font-size: 1.6rem; color: var(--espresso); line-height: 1;
}

@media (max-width: 1080px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ivory); border-bottom: var(--hairline);
    display: none; padding: 1.6rem 6vw 2.2rem;
    box-shadow: 0 18px 34px rgba(60,42,34,.08);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 1.2rem; align-items: flex-start; }
}

/* ---------- Ornament ---------- */
.ornament {
  display: flex; align-items: center; justify-content: center;
  gap: 1.1rem; margin: 0 auto;
}
.ornament::before, .ornament::after {
  content: ""; height: 1px; width: 64px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament span { color: var(--gold); font-size: .8rem; letter-spacing: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(201,168,106,.16), transparent 70%),
    linear-gradient(180deg, var(--linen) 0%, #EDE2D5 100%);
  text-align: center;
  padding: 10rem 6vw 9rem;
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,106,.55), transparent);
}
.hero .kicker {
  font-size: .68rem; letter-spacing: .42em; text-transform: uppercase;
  color: var(--taupe); margin-bottom: 2rem; font-weight: 400;
}
.hero h1 {
  font-size: clamp(2.8rem, 6.2vw, 5rem);
  font-weight: 400; letter-spacing: .01em;
}
.hero h1 em { font-style: italic; color: var(--terracotta); font-weight: 400; }
.hero .script-line {
  font-family: var(--script);
  font-size: clamp(2rem, 3.6vw, 2.9rem);
  margin-top: 1.6rem;
}
.hero p.lede {
  max-width: 620px; margin: 2rem auto 0; font-size: 1.02rem;
}
.hero .actions { margin-top: 3rem; display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-block; padding: 1.05rem 2.7rem;
  background: var(--terracotta); color: #fff;
  font-size: .68rem; letter-spacing: .28em; text-transform: uppercase;
  font-weight: 500; border: 1px solid var(--terracotta);
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.btn::after {
  content: ""; position: absolute; top: 0; left: -80%;
  width: 45%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.4), transparent);
  transform: skewX(-22deg);
}
@keyframes sheen { to { left: 135%; } }
.btn:hover { background: var(--terracotta-hover); border-color: var(--terracotta-hover); color: #fff;
  box-shadow: 0 10px 26px rgba(164,105,84,.32); transform: translateY(-1px); }
.btn:hover::after { animation: sheen .9s ease; }
.btn.ghost { background: transparent; color: var(--espresso); border-color: var(--gold); }
.btn.ghost:hover { background: var(--espresso); border-color: var(--espresso); color: var(--ivory);
  box-shadow: 0 10px 26px rgba(60,42,34,.25); }
.btn.rose { background: var(--rose); border-color: var(--rose); color: var(--espresso); }
.btn.rose:hover { background: var(--terracotta); border-color: var(--terracotta); color: #fff; }
.btn.gold {
  background: var(--gold-gradient); background-size: 220% auto;
  border: none; color: var(--espresso-deep); animation: shimmer 7s linear infinite;
}

/* ---------- Sections ---------- */
section { padding: 7rem 0; }
section.tinted { background: var(--linen); }
section.rose-tinted {
  background:
    radial-gradient(ellipse 60% 50% at 85% 0%, rgba(216,182,174,.28), transparent 70%),
    var(--rose-tint);
}
section.dark {
  position: relative;
  background: linear-gradient(180deg, var(--espresso) 0%, var(--espresso-deep) 100%);
  color: var(--linen);
}
section.dark::before, section.dark::after {
  content: ""; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,106,.6), transparent);
}
section.dark::before { top: 0; }
section.dark::after { bottom: 0; }
section.dark h2, section.dark h3 { color: var(--ivory); }

.section-label {
  font-size: .66rem; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 1.3rem; font-weight: 500;
}
h2.section-title {
  font-size: clamp(2.1rem, 4.2vw, 3.2rem);
  margin-bottom: 1.6rem; font-weight: 400;
}
h2.section-title em { font-style: italic; color: var(--terracotta); }
.center { text-align: center; }
.center .section-title { margin-left: auto; margin-right: auto; }
.center .section-label::before, .center .section-label::after { content: "  —  "; color: var(--gold); }

.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5.5rem; align-items: center;
}
@media (max-width: 860px) { .two-col { grid-template-columns: 1fr; gap: 3rem; } }

/* ---------- Framed editorial imagery ---------- */
.photo {
  position: relative; overflow: hidden;
  background: linear-gradient(160deg, var(--linen) 0%, #E5D8CA 55%, var(--rose-tint) 100%);
  border: 1px solid rgba(182,161,143,.4);
  box-shadow: 0 24px 48px rgba(60,42,34,.10);
  aspect-ratio: 4 / 5;
  display: flex; align-items: center; justify-content: center;
  color: var(--taupe); font-size: .68rem; letter-spacing: .32em;
  text-transform: uppercase; text-align: center; padding: 1rem;
}
.photo::before {
  content: ""; position: absolute; inset: 12px;
  border: 1px solid rgba(201,168,106,.55);
  pointer-events: none; z-index: 2;
}
.photo img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 1;
  transition: transform 1.2s cubic-bezier(.22,.61,.36,1);
}
.photo:hover img { transform: scale(1.04); }
.photo.wide { aspect-ratio: 16 / 9; }
.photo.square { aspect-ratio: 1 / 1; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.2rem; margin-top: 3.2rem; }
@media (max-width: 860px) { .card-grid { grid-template-columns: 1fr; } }
.card {
  position: relative;
  background: #FBF8F4; border: 1px solid rgba(182,161,143,.32);
  border-top: 2px solid var(--gold);
  padding: 2.9rem 2.4rem;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 48px rgba(60,42,34,.12);
  border-color: rgba(201,168,106,.6);
}
.card h3 { font-size: 1.65rem; margin-bottom: .8rem; }
.card .card-label {
  font-family: var(--display);
  font-size: .64rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 1.1rem;
}
.card p { font-size: .95rem; }
.card a.more {
  display: inline-block; margin-top: 1.5rem; font-size: .66rem;
  letter-spacing: .26em; text-transform: uppercase; color: var(--terracotta);
  border-bottom: 1px solid var(--gold); padding-bottom: 3px;
  transition: color .3s ease, border-color .3s ease;
}
.card a.more:hover { color: var(--gold-deep); }

/* ---------- Pull quote / testimonial ---------- */
.pullquote { max-width: 820px; margin: 0 auto; text-align: center; }
.pullquote::before {
  content: "\201C";
  display: block; font-family: var(--serif); font-size: 5rem; line-height: .6;
  background: var(--gold-gradient); background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 1.6rem;
}
.pullquote blockquote {
  font-family: var(--serif); font-size: clamp(1.6rem, 3.1vw, 2.25rem);
  font-style: italic; color: var(--espresso); line-height: 1.5; font-weight: 400;
}
section.dark .pullquote blockquote { color: var(--ivory); }
.pullquote cite {
  display: block; margin-top: 1.8rem; font-style: normal;
  font-family: var(--display);
  font-size: .66rem; letter-spacing: .34em; text-transform: uppercase; color: var(--gold);
}

/* ---------- Page hero (interior pages) ---------- */
.page-hero {
  position: relative;
  background:
    radial-gradient(ellipse 70% 55% at 50% -10%, rgba(201,168,106,.15), transparent 70%),
    linear-gradient(180deg, var(--linen) 0%, #EDE2D5 100%);
  text-align: center; padding: 7.5rem 6vw 6.5rem;
}
.page-hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,106,.55), transparent);
}
.page-hero h1 { font-size: clamp(2.5rem, 5.2vw, 4.1rem); font-weight: 400; }
.page-hero h1 em { font-style: italic; color: var(--terracotta); }
.page-hero .kicker {
  font-family: var(--display);
  font-size: .66rem; letter-spacing: .42em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: 1.6rem;
}
.page-hero p.lede { max-width: 640px; margin: 1.8rem auto 0; }
.page-hero.rose {
  background:
    radial-gradient(ellipse 65% 50% at 50% -10%, rgba(216,182,174,.35), transparent 70%),
    linear-gradient(180deg, var(--rose-tint) 0%, #F1E0D8 100%);
}

/* ---------- Journal ---------- */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2.4rem; margin-top: 3.2rem; }
@media (max-width: 860px) { .journal-grid { grid-template-columns: 1fr; } }
.journal-card { transition: transform .35s ease; }
.journal-card:hover { transform: translateY(-5px); }
.journal-card .photo { aspect-ratio: 4/3; margin-bottom: 1.5rem; }
.journal-card .date {
  font-family: var(--display);
  font-size: .62rem; letter-spacing: .32em; text-transform: uppercase; color: var(--gold-deep);
}
.journal-card h3 { font-size: 1.5rem; margin: .5rem 0 .6rem; }
.journal-card p { font-size: .93rem; }

/* ---------- Lists ---------- */
.elegant-list { list-style: none; margin-top: 2rem; }
.elegant-list li {
  padding: 1.5rem 0; border-bottom: 1px solid rgba(201,168,106,.32);
  display: flex; gap: 1.4rem; align-items: baseline;
}
.elegant-list li::before { content: "✦"; color: var(--gold); font-size: .7rem; flex: 0 0 auto; }
.elegant-list strong { color: var(--espresso); font-weight: 500; font-family: var(--serif); font-size: 1.15em; }

/* ---------- Forms ---------- */
form.contact-form { display: grid; gap: 1.5rem; margin-top: 2.6rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }
label {
  font-family: var(--display);
  font-size: .64rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--cocoa); display: block; margin-bottom: .55rem; font-weight: 500;
}
input, select, textarea {
  width: 100%; padding: 1rem 1.15rem;
  font-family: var(--sans); font-size: .95rem; color: var(--espresso);
  background: #FBF8F4; border: 1px solid rgba(182,161,143,.45);
  outline: none; transition: border-color .3s ease, box-shadow .3s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,106,.15);
}
textarea { min-height: 170px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--taupe); }

/* ---------- Tee's Table specific ---------- */
.tt-logo { width: 100%; max-width: 520px; height: auto; margin: 0 auto; mix-blend-mode: multiply; }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2.3rem; margin-top: 3.2rem; }
@media (max-width: 860px) { .menu-grid { grid-template-columns: 1fr; } }
.menu-item {
  position: relative;
  background: #FBF6F2; border: 1px solid rgba(216,182,174,.5);
  padding: 2.7rem 2.5rem;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.menu-item::before {
  content: ""; position: absolute; inset: 9px;
  border: 1px solid rgba(201,168,106,.35); pointer-events: none;
  transition: border-color .35s ease;
}
.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 44px rgba(107,78,61,.13);
  border-color: rgba(201,168,106,.55);
}
.menu-item:hover::before { border-color: rgba(201,168,106,.7); }
.menu-item h3 { font-size: 1.6rem; }
.menu-item .script-sub { font-family: var(--script); color: var(--terracotta); font-size: 1.8rem; line-height: 1; margin-bottom: .4rem; }
.menu-item p { font-size: .94rem; margin-top: .7rem; }
.tt-tagline {
  font-family: var(--display);
  font-size: .72rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--terracotta); text-align: center;
}

/* ---------- Tee's Table menu photos ---------- */
.menu-item .menu-photo {
  margin: -2.7rem -2.5rem 1.8rem;
  aspect-ratio: 16 / 10; overflow: hidden; position: relative;
}
.menu-item .menu-photo img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.2s cubic-bezier(.22,.61,.36,1);
}
.menu-item:hover .menu-photo img { transform: scale(1.05); }

/* ---------- Explorable gallery (Tee's Table) ---------- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem; margin-top: 3.2rem;
}
@media (max-width: 1000px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
.gallery-item {
  position: relative; overflow: hidden; cursor: pointer;
  aspect-ratio: 1 / 1; border: 1px solid rgba(216,182,174,.5);
  background: var(--rose-tint);
}
.gallery-item::before {
  content: ""; position: absolute; inset: 8px;
  border: 1px solid rgba(201,168,106,.0);
  pointer-events: none; z-index: 2; transition: border-color .4s ease;
}
.gallery-item:hover::before { border-color: rgba(201,168,106,.75); }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.1s cubic-bezier(.22,.61,.36,1);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item .play-badge {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  z-index: 3; pointer-events: none;
}
.gallery-item .play-badge span {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(46,31,25,.55); border: 1px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 1.1rem; padding-left: 4px;
  backdrop-filter: blur(3px); transition: transform .35s ease, background .35s ease;
}
.gallery-item:hover .play-badge span { transform: scale(1.1); background: rgba(46,31,25,.75); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(30, 20, 16, .93);
  display: none; align-items: center; justify-content: center;
  padding: 4vh 4vw;
}
.lightbox.open { display: flex; }
.lightbox .lb-content {
  max-width: min(920px, 92vw); max-height: 86vh;
  display: flex; align-items: center; justify-content: center;
}
.lightbox img, .lightbox video {
  max-width: 100%; max-height: 82vh;
  border: 1px solid rgba(201,168,106,.6);
  box-shadow: 0 40px 90px rgba(0,0,0,.5);
}
.lightbox button {
  position: absolute; background: none; border: 1px solid rgba(201,168,106,.55);
  color: var(--gold-light); font-family: var(--sans); cursor: pointer;
  width: 48px; height: 48px; border-radius: 50%; font-size: 1.15rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s ease, border-color .3s ease;
}
.lightbox button:hover { background: rgba(201,168,106,.18); border-color: var(--gold); }
.lightbox .lb-close { top: 26px; right: 30px; }
.lightbox .lb-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lightbox .lb-count {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  color: var(--taupe); font-family: var(--display);
  font-size: .66rem; letter-spacing: .34em; text-transform: uppercase;
}

/* ---------- Order / Checkout ---------- */
.order-list { list-style: none; margin-top: 1.2rem; }
.order-list li {
  padding: .7rem 0; border-bottom: 1px solid rgba(216,182,174,.5);
  font-family: var(--serif); font-size: 1.15rem; color: var(--espresso);
}
.order-list li::before { content: "♥  "; color: var(--rose); font-size: .8rem; }
.radio-row { display: grid; gap: .6rem; }
.radio-opt {
  display: flex; align-items: baseline; gap: .6rem;
  font-family: var(--sans); font-size: .92rem; text-transform: none;
  letter-spacing: .01em; color: var(--cocoa); font-weight: 300; cursor: pointer;
  border: 1px solid rgba(182,161,143,.45); background: #FBF8F4; padding: .85rem 1rem;
}
.radio-opt input { width: auto; accent-color: var(--terracotta); }
.total-line {
  display: flex; justify-content: space-between; align-items: baseline;
  border-top: 2px solid var(--gold); border-bottom: 1px solid rgba(201,168,106,.4);
  padding: 1rem .2rem; margin-top: .4rem;
}
.total-line span:first-child {
  font-family: var(--display); font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
}
.total-amount { font-family: var(--serif); font-size: 2.1rem; color: var(--espresso); }
.zelle-box {
  background: #FBF6F2; border: 1px solid rgba(201,168,106,.55); padding: 1.8rem 1.8rem;
  position: relative;
}
.zelle-box::before { content: ""; position: absolute; inset: 7px; border: 1px solid rgba(201,168,106,.35); pointer-events: none; }
.zelle-box p { font-size: .92rem; }
.zelle-title {
  font-family: var(--display); font-size: .7rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--gold-deep); margin-bottom: .8rem;
}
.zelle-email {
  font-family: var(--serif); font-size: 1.5rem; color: var(--espresso);
  margin: .5rem 0; word-break: break-all;
}
.pill-note {
  display: inline-block; font-family: var(--display); font-size: .62rem;
  letter-spacing: .28em; text-transform: uppercase; color: var(--terracotta);
  border: 1px solid rgba(185,122,99,.5); padding: .45rem 1rem; margin: .25rem .2rem;
}

/* ---------- Book ---------- */
.book-cover {
  position: relative;
  background: linear-gradient(160deg, var(--espresso) 0%, var(--espresso-deep) 100%);
  color: var(--ivory);
  aspect-ratio: 2 / 3; max-width: 340px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 2.5rem; text-align: center;
  border: 1px solid var(--gold);
  box-shadow: 0 30px 60px rgba(46,31,25,.35);
}
.book-cover::before {
  content: ""; position: absolute; inset: 10px;
  border: 1px solid rgba(201,168,106,.5); pointer-events: none;
}
.book-cover .bc-title { font-family: var(--serif); font-size: 2.1rem; color: var(--ivory); line-height: 1.2; }
.book-cover .bc-script {
  font-family: var(--script); font-size: 1.7rem; margin-top: 1rem;
  background: var(--gold-gradient); background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 7s linear infinite;
}
.book-cover .bc-author { font-family: var(--display); font-size: .64rem; letter-spacing: .36em; text-transform: uppercase; margin-top: 2.2rem; color: var(--taupe); }

/* ---------- Footer ---------- */
.site-footer {
  position: relative;
  background: linear-gradient(180deg, var(--espresso) 0%, var(--espresso-deep) 100%);
  color: var(--taupe); padding: 5rem 0 2.6rem;
}
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,106,.7), transparent);
}
.footer-inner { max-width: 1140px; margin: 0 auto; padding: 0 6vw; text-align: center; }
.footer-script { font-family: var(--script); font-size: 2.6rem; }
.footer-tag {
  font-family: var(--display);
  font-size: .64rem; letter-spacing: .4em; text-transform: uppercase; margin-top: 1rem;
}
.footer-nav { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1.7rem; justify-content: center; }
.footer-nav a { color: var(--taupe); font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; }
.footer-nav a:hover { color: var(--gold-light); }
.copyright { margin-top: 2.8rem; font-size: .74rem; color: rgba(182,161,143,.65); }

/* ---------- Reveal on scroll ---------- */
body.js .reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .9s cubic-bezier(.22,.61,.36,1), transform .9s cubic-bezier(.22,.61,.36,1);
}
body.js .reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  body.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Utilities ---------- */
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.status-msg { padding: 1rem 1.2rem; border: 1px solid var(--gold); background: #FBF8F4; font-size: .92rem; }

/* ---------- Mobile refinements ---------- */
html, body { overflow-x: hidden; }

@media (max-width: 640px) {
  section { padding: 4.5rem 0; }
  .hero { padding: 6rem 6vw 5.5rem; }
  .page-hero { padding: 4.5rem 6vw 4rem; }
  .header-inner { min-height: 74px; }
  .wordmark .tasha { font-size: 1.15rem; letter-spacing: .3em; }
  .wordmark .lashawn { font-size: 1.65rem; }
  .hero p.lede, .page-hero p.lede { font-size: .96rem; }
  .two-col { gap: 2.4rem; }
  .card { padding: 2.3rem 1.8rem; }
  .menu-item { padding: 2.2rem 1.8rem; }
  .menu-item .menu-photo { margin: -2.2rem -1.8rem 1.5rem; }
  .btn { padding: .95rem 2.1rem; }
  .footer-script { font-size: 2.1rem; }
  .lightbox .lb-prev { left: 8px; }
  .lightbox .lb-next { right: 8px; }
  .lightbox .lb-close { top: 14px; right: 14px; }
}
