/* ==========================================================================
   Zione Bakes — Parisian Chic design system
   Blush pink · gold accents · Cormorant Garamond / Montserrat / Great Vibes
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Montserrat:wght@300;400;500;600&family=Great+Vibes&display=swap');

:root {
  /* Palette — all text combinations meet WCAG 4.5:1 on their backgrounds */
  --cream: #FDF8F4;
  --cream-deep: #F9EFE8;
  --blush: #F7E8E6;
  --blush-deep: #F0D9D5;
  --rose: #B76E79;
  --rose-deep: #94525E;
  --rose-ink: #7A3E49;
  --gold: #C6A15B;
  --gold-soft: #E3CFA4;
  --ink: #3B2A2A;
  --muted: #6E5757;
  --white: #FFFFFF;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-script: 'Great Vibes', cursive;

  --shadow-soft: 0 8px 30px rgba(59, 42, 42, 0.08);
  --shadow-lift: 0 18px 45px rgba(59, 42, 42, 0.14);
  --radius: 14px;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-micro: 220ms;
  --dur-reveal: 700ms;

  /* z-index scale */
  --z-nav: 50;
  --z-toast: 60;
}

/* ---------- Reset & base ---------- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}

p { margin: 0 0 1em; }

a { color: var(--rose-deep); }

button { font-family: inherit; }

::selection { background: var(--blush-deep); color: var(--rose-ink); }

/* Accessible focus */
:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 12px 20px;
  z-index: 100;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.container {
  width: min(1140px, 100% - 3rem);
  margin-inline: auto;
}

/* ---------- Typography helpers ---------- */

.script-accent {
  font-family: var(--font-script);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--rose);
  display: block;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  letter-spacing: 0.01em;
}

.section-intro {
  max-width: 58ch;
  color: var(--muted);
}

.center { text-align: center; }
.center .section-intro { margin-inline: auto; }

.gold-rule {
  width: 64px;
  height: 2px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 1.4rem auto 0;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.8rem 2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background-color var(--dur-micro) var(--ease-out),
              color var(--dur-micro) var(--ease-out),
              border-color var(--dur-micro) var(--ease-out),
              box-shadow var(--dur-micro) var(--ease-out);
}

.btn-primary {
  background: var(--rose-deep);
  color: var(--white);
}
.btn-primary:hover { background: var(--rose-ink); box-shadow: var(--shadow-soft); }

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

.btn-gold {
  background: var(--ink);
  color: var(--cream);
}
.btn-gold:hover { background: #2b1e1e; box-shadow: var(--shadow-soft); }

.btn svg { width: 18px; height: 18px; flex: none; }

/* ---------- Header / nav ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  transition: background-color var(--dur-micro) var(--ease-out),
              box-shadow var(--dur-micro) var(--ease-out);
}

.site-header.scrolled {
  background: rgba(253, 248, 244, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(198, 161, 91, 0.25);
}

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

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  text-decoration: none;
}
.brand-mark {
  width: 40px;
  height: 40px;
  flex: none;
  align-self: center;
}
.site-footer .brand-mark { filter: brightness(1.5); }
.brand .brand-script {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--rose-deep);
  line-height: 1;
}
.brand .brand-caps {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.42em;
  color: var(--ink);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a:not(.btn) {
  position: relative;
  display: inline-block;
  padding: 0.6rem 0;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ink);
  transition: color var(--dur-micro) var(--ease-out);
}

/* Gold underline that draws in on hover */
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0.25rem;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-micro) var(--ease-out);
}
.nav-links a:not(.btn):hover { color: var(--rose-deep); }
.nav-links a:not(.btn):hover::after,
.nav-links a:not(.btn)[aria-current="page"]::after { transform: scaleX(1); }
.nav-links a[aria-current="page"] { color: var(--rose-deep); }

.nav-links .btn { min-height: 42px; padding: 0.55rem 1.5rem; }

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 12px;
  border-radius: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform var(--dur-micro) var(--ease-out),
              opacity var(--dur-micro) var(--ease-out);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--blush-deep);
    box-shadow: var(--shadow-soft);
    padding: 0.5rem 1.5rem 1.25rem;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: transform var(--dur-micro) var(--ease-out),
                opacity var(--dur-micro) var(--ease-out),
                visibility 0s linear var(--dur-micro);
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: transform var(--dur-micro) var(--ease-out),
                opacity var(--dur-micro) var(--ease-out);
  }
  .nav-links a:not(.btn) { display: block; padding: 0.9rem 0; }
  .nav-links .btn { margin-top: 0.75rem; }
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding: clamp(9rem, 16vw, 12.5rem) 0 clamp(4rem, 9vw, 7rem);
  background:
    radial-gradient(60rem 30rem at 85% -10%, rgba(240, 217, 213, 0.85), transparent 60%),
    radial-gradient(40rem 24rem at -10% 30%, rgba(227, 207, 164, 0.35), transparent 65%),
    var(--cream);
  overflow: hidden;
}

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

.hero h1 {
  font-size: clamp(2.7rem, 6vw, 4.6rem);
  font-weight: 500;
}
.hero h1 em {
  font-style: italic;
  color: var(--rose-deep);
}

.hero-lede {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 2rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; }

.legal-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.legal-note svg { width: 15px; height: 15px; flex: none; color: var(--gold); }

.hero-visual { position: relative; }

.hero-visual .frame {
  position: relative;
  border-radius: 50% 50% var(--radius) var(--radius) / 42% 42% var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid rgba(198, 161, 91, 0.4);
}

.hero-badge {
  position: absolute;
  bottom: -1.25rem;
  left: -1.25rem;
  background: var(--white);
  border: 1px solid var(--gold-soft);
  border-radius: 999px;
  box-shadow: var(--shadow-soft);
  padding: 0.9rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.hero-badge svg { width: 26px; height: 26px; color: var(--gold); }
.hero-badge strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  line-height: 1.2;
}
.hero-badge small { color: var(--muted); font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; }

@media (max-width: 820px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 420px; margin-inline: auto; }
  .hero-badge { left: 0.5rem; }
}

/* Floating decorative sparkles (disabled under reduced motion) */
.float-decor {
  position: absolute;
  color: var(--gold);
  opacity: 0.55;
  pointer-events: none;
  animation: floaty 7s ease-in-out infinite;
}
.float-decor.d2 { animation-delay: -2.5s; }
.float-decor.d3 { animation-delay: -5s; }

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(6deg); }
}

/* ---------- Marquee ribbon ---------- */

.ribbon {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding: 0.85rem 0;
}
.ribbon-track {
  display: flex;
  gap: 3rem;
  width: max-content;
  animation: ribbon-scroll 30s linear infinite;
}
.ribbon span {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.ribbon .dot { color: var(--gold); font-style: normal; }

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

/* ---------- Sections ---------- */

.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section.blush { background: linear-gradient(180deg, var(--cream) 0%, var(--blush) 18%, var(--blush) 82%, var(--cream) 100%); }
.section-head { margin-bottom: clamp(2.25rem, 5vw, 3.5rem); }

/* ---------- Cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--white);
  border: 1px solid rgba(198, 161, 91, 0.25);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: box-shadow var(--dur-micro) var(--ease-out),
              transform var(--dur-micro) var(--ease-out),
              border-color var(--dur-micro) var(--ease-out);
}
a.card { text-decoration: none; color: inherit; cursor: pointer; }
.card:hover {
  box-shadow: var(--shadow-lift);
  border-color: rgba(198, 161, 91, 0.55);
  transform: translateY(-4px);
}

.card-body { padding: 1.5rem 1.6rem 1.75rem; }
.card-body h3 { font-size: 1.5rem; margin-bottom: 0.35rem; }
.card-body .price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--rose-deep);
}
.card-body p { color: var(--muted); font-size: 0.92rem; margin-bottom: 0; }

.card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-ink);
  background: var(--blush);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  margin-bottom: 0.8rem;
}

/* Pastry visual tiles (CSS-art placeholders for photography) */
.pastry-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.pastry-visual svg { width: 42%; height: auto; color: rgba(59, 42, 42, 0.55); }
.hero-visual .pastry-visual svg { width: 58%; }
.pastry-visual::after {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 10px;
  pointer-events: none;
}

.tile-rose     { background: radial-gradient(120% 120% at 20% 15%, #FBEDEA 0%, #F2D8D3 55%, #E8C3BE 100%); }
.tile-vanilla  { background: radial-gradient(120% 120% at 80% 10%, #FDF6E9 0%, #F3E3C2 55%, #E7D0A2 100%); }
.tile-pistache { background: radial-gradient(120% 120% at 25% 80%, #F2F4E6 0%, #DDE4C6 55%, #C9D3A9 100%); }
.tile-choco    { background: radial-gradient(120% 120% at 70% 80%, #F1E4DC 0%, #E0C6B6 55%, #C9A48E 100%); }
.tile-berry    { background: radial-gradient(120% 120% at 30% 20%, #F9E7EE 0%, #EFC9D8 55%, #E0AABF 100%); }
.tile-caramel  { background: radial-gradient(120% 120% at 75% 25%, #FAEEDC 0%, #EED7B2 55%, #DDBB88 100%); }

/* ---------- Feature / story split ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } }

.split .frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  border: 1px solid rgba(198, 161, 91, 0.35);
}

.feature-list { list-style: none; margin: 1.5rem 0 2rem; padding: 0; display: grid; gap: 1.1rem; }
.feature-list li { display: flex; gap: 0.9rem; align-items: flex-start; }
.feature-list svg { width: 22px; height: 22px; flex: none; color: var(--gold); margin-top: 3px; }
.feature-list strong { display: block; font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600; }
.feature-list span { color: var(--muted); font-size: 0.92rem; }

/* ---------- Stats ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.stats .stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--rose-deep);
  line-height: 1.1;
}
.stats .stat span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Testimonials ---------- */

.quote-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(198, 161, 91, 0.25);
  box-shadow: var(--shadow-soft);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  height: 100%;
}
.quote-card .stars { display: flex; gap: 4px; color: var(--gold); }
.quote-card .stars svg { width: 16px; height: 16px; }
.quote-card blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.15rem;
  line-height: 1.5;
}
.quote-card cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Review cards (photo + quote) ---------- */

.review-card { display: flex; flex-direction: column; }
.review-card .photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--blush);
}
.review-card .card-body { display: flex; flex-direction: column; gap: 0.8rem; flex: 1; }
.review-card blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.12rem;
  line-height: 1.5;
}
.review-card cite {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: auto;
}
.review-card .stars { display: flex; gap: 4px; color: var(--gold); }
.review-card .stars svg { width: 15px; height: 15px; }

/* ---------- Flavour chips (custom cakes) ---------- */

.flavour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.9rem;
  margin: 1.75rem 0;
}
.flavour-chip {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: var(--white);
  border: 1px solid rgba(198, 161, 91, 0.3);
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}
.flavour-chip svg { width: 16px; height: 16px; flex: none; color: var(--rose); }

/* ---------- Class cards ---------- */

.class-card { display: flex; flex-direction: column; }
.class-card .card-body { display: flex; flex-direction: column; gap: 0.9rem; flex: 1; }
.class-meta {
  display: grid;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 0.85rem;
  color: var(--muted);
}
.class-meta li { display: flex; align-items: center; gap: 0.6rem; }
.class-meta svg { width: 16px; height: 16px; flex: none; color: var(--rose); }
.class-card .btn { margin-top: auto; align-self: flex-start; }

.level-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--gold-soft);
  color: var(--rose-ink);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

/* ---------- Forms ---------- */

.form-shell {
  background: var(--white);
  border: 1px solid rgba(198, 161, 91, 0.3);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.45rem;
}
.field label .req { color: var(--rose-deep); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1px solid var(--blush-deep);
  border-radius: 10px;
  transition: border-color var(--dur-micro) var(--ease-out),
              box-shadow var(--dur-micro) var(--ease-out);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(183, 110, 121, 0.18);
}
.field select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%236E5757' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.field .hint { font-size: 0.78rem; color: var(--muted); margin-top: 0.35rem; }

.field-error {
  display: none;
  font-size: 0.78rem;
  color: #A13A3A;
  margin-top: 0.35rem;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: #C46A6A; }
.field.invalid .field-error { display: block; }

.form-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-top: 1.75rem; }
.form-note { font-size: 0.8rem; color: var(--muted); }

.form-success {
  display: none;
  margin-top: 1.5rem;
  background: #F2F7EE;
  border: 1px solid #BCD4AC;
  color: #3E5A2E;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
}
.form-success.visible { display: block; }

/* ---------- Contact info panel ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.info-list { list-style: none; margin: 2rem 0; padding: 0; display: grid; gap: 1.4rem; }
.info-list li { display: flex; gap: 1rem; align-items: flex-start; }
.info-list .icon-disc {
  width: 46px;
  height: 46px;
  flex: none;
  display: grid;
  place-items: center;
  background: var(--blush);
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  color: var(--rose-deep);
}
.info-list .icon-disc svg { width: 20px; height: 20px; }
.info-list strong { display: block; font-family: var(--font-heading); font-size: 1.15rem; font-weight: 600; }
.info-list span, .info-list a { color: var(--muted); font-size: 0.92rem; }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.hours-table td { padding: 0.5rem 0; border-bottom: 1px dashed var(--blush-deep); color: var(--muted); }
.hours-table td:last-child { text-align: right; color: var(--ink); font-weight: 500; }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  background:
    radial-gradient(50rem 22rem at 15% 0%, rgba(183, 110, 121, 0.35), transparent 60%),
    radial-gradient(40rem 20rem at 90% 100%, rgba(198, 161, 91, 0.3), transparent 60%),
    var(--ink);
  color: var(--cream);
  border-radius: calc(var(--radius) + 6px);
  padding: clamp(2.75rem, 7vw, 4.5rem);
  text-align: center;
  overflow: hidden;
}
.cta-band h2 { color: var(--cream); font-size: clamp(2rem, 4.5vw, 3rem); }
.cta-band p { color: rgba(253, 248, 244, 0.75); max-width: 52ch; margin: 0 auto 2rem; }
.cta-band .script-accent { color: var(--gold-soft); }

/* ---------- FAQ ---------- */

.faq { max-width: 760px; margin-inline: auto; }
.faq details {
  background: var(--white);
  border: 1px solid rgba(198, 161, 91, 0.25);
  border-radius: 12px;
  margin-bottom: 0.9rem;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  min-height: 48px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--gold);
  transition: transform var(--dur-micro) var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.4rem 1.2rem; margin: 0; color: var(--muted); font-size: 0.92rem; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(253, 248, 244, 0.8);
  padding: clamp(3rem, 6vw, 4.5rem) 0 2rem;
  margin-top: clamp(4rem, 9vw, 7rem);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer .brand .brand-script { color: var(--gold-soft); }
.site-footer .brand .brand-caps { color: var(--cream); }
.site-footer p { font-size: 0.88rem; }

.site-footer h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.6rem; }
.footer-links a {
  color: rgba(253, 248, 244, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--dur-micro) var(--ease-out);
}
.footer-links a:hover { color: var(--gold-soft); }

.social-row { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.social-row a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(253, 248, 244, 0.25);
  border-radius: 50%;
  color: var(--cream);
  transition: border-color var(--dur-micro) var(--ease-out),
              color var(--dur-micro) var(--ease-out),
              background-color var(--dur-micro) var(--ease-out);
}
.social-row a:hover { border-color: var(--gold); color: var(--gold-soft); background: rgba(198, 161, 91, 0.1); }
.social-row svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(253, 248, 244, 0.15);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(253, 248, 244, 0.55);
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  padding: clamp(8.5rem, 15vw, 11rem) 0 clamp(3rem, 6vw, 4.5rem);
  background:
    radial-gradient(50rem 24rem at 80% -20%, rgba(240, 217, 213, 0.9), transparent 60%),
    var(--cream);
  text-align: center;
}
.page-hero h1 { font-size: clamp(2.5rem, 5.5vw, 4rem); }
.page-hero p { max-width: 60ch; margin-inline: auto; color: var(--muted); }

/* ---------- Menu filter ---------- */

.filter-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  min-height: 44px;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--blush-deep);
  background: var(--white);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color var(--dur-micro) var(--ease-out),
              color var(--dur-micro) var(--ease-out),
              border-color var(--dur-micro) var(--ease-out);
}
.filter-btn:hover { border-color: var(--rose); color: var(--rose-deep); }
.filter-btn.active {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: var(--white);
}

.menu-item.hidden { display: none; }

/* ---------- Gallery masonry + lightbox ---------- */

.masonry {
  columns: 3 280px;
  column-gap: 1.4rem;
}
.masonry .gallery-link {
  display: block;
  margin: 0 0 1.4rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(198, 161, 91, 0.25);
  box-shadow: var(--shadow-soft);
  break-inside: avoid;
  cursor: zoom-in;
  transition: box-shadow var(--dur-micro) var(--ease-out),
              border-color var(--dur-micro) var(--ease-out);
}
.masonry .gallery-link:hover {
  box-shadow: var(--shadow-lift);
  border-color: rgba(198, 161, 91, 0.55);
}
.masonry img { width: 100%; display: block; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: var(--z-toast);
  display: none;
  place-items: center;
  padding: 2rem;
  background: rgba(35, 24, 24, 0.93);
  cursor: zoom-out;
}
.lightbox.open { display: grid; }
.lightbox img {
  max-width: min(960px, 100%);
  max-height: 88vh;
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--dur-reveal) var(--ease-out),
              transform var(--dur-reveal) var(--ease-out);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Toast ---------- */

.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translate(-50%, 120%);
  z-index: var(--z-toast);
  background: var(--ink);
  color: var(--cream);
  padding: 0.9rem 1.6rem;
  border-radius: 999px;
  font-size: 0.88rem;
  box-shadow: var(--shadow-lift);
  transition: transform 300ms var(--ease-out);
  max-width: calc(100vw - 2rem);
  text-align: center;
}
.toast.visible { transform: translate(-50%, 0); }

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .float-decor { animation: none; }
  .ribbon-track { animation: none; flex-wrap: wrap; width: auto; }
}
