/* ==========================================================================
   SUCRÉ — Bakery & Patisserie Website Template
   Premium multi-page template • Plain HTML5 / CSS3 / Vanilla JS
   --------------------------------------------------------------------------
   REBRAND TIP: Most visual changes can be made by editing the CSS variables
   in the :root block below (colors, fonts, spacing). The bakery name "Sucré"
   appears in the HTML files — find & replace it to rename the business.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS  (edit these to rebrand)
   -------------------------------------------------------------------------- */
:root {
  /* Brand palette */
  --rose: #d97a8a;          /* primary sweet rose/pink */
  --rose-dark: #c0596b;     /* darker rose for hovers */
  --rose-soft: #f3c9d1;     /* soft tint */
  --cream: #fdf6f0;         /* warm cream background */
  --cream-deep: #f7ebe1;    /* slightly deeper cream */
  --brown: #6b4a3a;         /* warm brown accent (headings/text) */
  --brown-soft: #8a6a57;    /* muted brown for body text */
  --gold: #d8a657;          /* golden accent for small details */
  --white: #ffffff;
  --ink: #3a2a23;           /* near-black warm ink */

  /* Typography */
  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;

  /* Spacing & layout */
  --maxw: 1180px;
  --gap: 1.5rem;
  --radius: 18px;
  --radius-sm: 10px;
  --section-y: 6rem;

  /* Effects */
  --shadow-sm: 0 4px 14px rgba(107, 74, 58, 0.08);
  --shadow-md: 0 12px 34px rgba(107, 74, 58, 0.14);
  --shadow-lg: 0 24px 60px rgba(107, 74, 58, 0.18);
  --transition: 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--brown-soft);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--brown);
  line-height: 1.15;
  font-weight: 700;
}

a { color: inherit; text-decoration: none; }

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

ul { list-style: none; }

/* --------------------------------------------------------------------------
   3. LAYOUT HELPERS
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section { padding-block: var(--section-y); }

.section-tight { padding-block: 3.5rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--rose-dark);
  margin-bottom: 0.9rem;
}

.section-head {
  max-width: 640px;
  margin: 0 auto 3.2rem;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.9rem);
  margin-bottom: 1rem;
}

.section-head p { font-size: 1.05rem; }

.lead { font-size: 1.15rem; color: var(--brown-soft); }

.text-center { text-align: center; }

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--rose);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(217, 122, 138, 0.4);
}
.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(217, 122, 138, 0.5);
}

.btn-ghost {
  background: transparent;
  color: var(--brown);
  border-color: var(--rose-soft);
}
.btn-ghost:hover {
  background: var(--white);
  border-color: var(--rose);
  transform: translateY(-3px);
}

.btn-light {
  background: var(--white);
  color: var(--rose-dark);
}
.btn-light:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

/* --------------------------------------------------------------------------
   5. HEADER / NAV  (shared across all pages)
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(253, 246, 240, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 122, 138, 0.15);
  transition: var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.55rem;
  color: var(--brown);
}
.brand .brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose) 0%, var(--gold) 100%);
  box-shadow: var(--shadow-sm);
}
.brand .brand-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-top: -2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--brown-soft);
  position: relative;
  padding-block: 0.3rem;
  transition: color var(--transition);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--rose);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--rose-dark); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--rose-dark); }

.nav-cta { margin-left: 0.5rem; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 2.5px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* --------------------------------------------------------------------------
   6. HERO (home)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 20%, rgba(217, 122, 138, 0.18), transparent 45%),
    radial-gradient(circle at 15% 80%, rgba(216, 166, 87, 0.16), transparent 45%),
    linear-gradient(160deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  padding-block: 5.5rem 5rem;
}
.hero-copy h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  margin-bottom: 1.3rem;
}
.hero-copy h1 .accent { color: var(--rose-dark); font-style: italic; }
.hero-copy p { font-size: 1.2rem; margin-bottom: 2rem; max-width: 30rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.hero-stats .stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--brown);
}
.hero-stats .stat span { font-size: 0.85rem; letter-spacing: 0.05em; }

/* Hero visual — stacked gradient "cake" cards */
.hero-visual {
  position: relative;
  height: 480px;
}
.hero-card {
  position: absolute;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: grid;
  place-items: center;
  font-size: 4.5rem;
}
.hero-card.c1 {
  width: 62%; height: 70%;
  top: 0; right: 0;
  background: linear-gradient(150deg, var(--rose) 0%, var(--rose-soft) 100%);
}
.hero-card.c2 {
  width: 50%; height: 55%;
  bottom: 0; left: 0;
  background: linear-gradient(150deg, var(--cream-deep) 0%, var(--gold) 130%);
}
.hero-card.c3 {
  width: 38%; height: 38%;
  bottom: 8%; right: 12%;
  background: linear-gradient(150deg, var(--white) 0%, var(--rose-soft) 130%);
  font-size: 3rem;
}
.hero-badge {
  position: absolute;
  top: 42%; left: -10px;
  background: var(--white);
  padding: 0.7rem 1.1rem;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 3;
}

/* --------------------------------------------------------------------------
   7. PAGE BANNER (inner pages)
   -------------------------------------------------------------------------- */
.page-banner {
  position: relative;
  text-align: center;
  padding-block: 5rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 25%, rgba(217, 122, 138, 0.2), transparent 50%),
    radial-gradient(circle at 20% 75%, rgba(216, 166, 87, 0.18), transparent 50%),
    linear-gradient(150deg, var(--cream-deep) 0%, var(--cream) 100%);
}
.page-banner h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin-bottom: 0.7rem;
}
.page-banner p { font-size: 1.1rem; max-width: 36rem; margin-inline: auto; }
.breadcrumb {
  margin-top: 1.2rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: var(--brown-soft);
}
.breadcrumb a:hover { color: var(--rose-dark); }
.breadcrumb span { color: var(--rose-dark); }

/* --------------------------------------------------------------------------
   8. CARDS / GRIDS
   -------------------------------------------------------------------------- */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }

/* Product card with gradient "photo" */
.product .product-img {
  height: 200px;
  display: grid;
  place-items: center;
  font-size: 3.4rem;
}
.product .product-body { padding: 1.4rem 1.5rem 1.7rem; }
.product h3 { font-size: 1.3rem; margin-bottom: 0.4rem; }
.product .price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--rose-dark);
  font-size: 1.15rem;
  display: block;
  margin-top: 0.6rem;
}
.product p { font-size: 0.95rem; }

/* gradient palette utility classes for tiles */
.g-rose  { background: linear-gradient(150deg, var(--rose) 0%, var(--rose-soft) 100%); color: #fff; }
.g-gold  { background: linear-gradient(150deg, var(--gold) 0%, #f0d9a8 100%); color: #fff; }
.g-cream { background: linear-gradient(150deg, var(--cream-deep) 0%, #ecd7c5 100%); color: var(--brown); }
.g-brown { background: linear-gradient(150deg, var(--brown) 0%, var(--brown-soft) 100%); color: #fff; }
.g-mix1  { background: linear-gradient(150deg, var(--rose) 0%, var(--gold) 130%); color: #fff; }
.g-mix2  { background: linear-gradient(150deg, var(--brown-soft) 0%, var(--rose) 130%); color: #fff; }

/* Feature card */
.feature {
  text-align: center;
  padding: 2.4rem 1.8rem;
}
.feature .feat-icon {
  width: 72px; height: 72px;
  margin: 0 auto 1.3rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: 2rem;
  background: linear-gradient(135deg, var(--rose-soft), var(--cream-deep));
}
.feature h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.feature p { font-size: 0.95rem; }

/* --------------------------------------------------------------------------
   9. SPLIT / ABOUT SECTIONS
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-copy h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-bottom: 1.1rem; }
.split-copy p { margin-bottom: 1rem; }

.split-media {
  position: relative;
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  font-size: 6rem;
}
.media-tag {
  position: absolute;
  bottom: 1.2rem; left: 1.2rem;
  background: var(--white);
  padding: 0.6rem 1.1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--brown);
  box-shadow: var(--shadow-sm);
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
}
.check-list li::before {
  content: "✿";
  color: var(--rose);
  font-size: 1.1rem;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   10. TEAM
   -------------------------------------------------------------------------- */
.team-card { text-align: center; padding-bottom: 1.6rem; }
.team-card .avatar {
  height: 230px;
  display: grid;
  place-items: center;
  font-size: 4rem;
}
.team-card h3 { margin: 1.2rem 0 0.2rem; font-size: 1.25rem; }
.team-card .role {
  color: var(--rose-dark);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.team-card p { font-size: 0.92rem; padding-inline: 1.4rem; margin-top: 0.6rem; }

/* --------------------------------------------------------------------------
   11. INFO STRIP (hours / location)
   -------------------------------------------------------------------------- */
.strip {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-soft) 100%);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 2.8rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.strip h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 0.7rem; }
.strip p, .strip li { color: rgba(253, 246, 240, 0.85); font-size: 0.95rem; }
.strip .strip-icon { font-size: 1.6rem; margin-bottom: 0.6rem; display: block; }

/* --------------------------------------------------------------------------
   12. TESTIMONIAL
   -------------------------------------------------------------------------- */
.testimonial {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.testimonial .quote-mark {
  font-family: var(--font-head);
  font-size: 4rem;
  color: var(--rose-soft);
  line-height: 0.5;
}
.testimonial blockquote {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-style: italic;
  color: var(--brown);
  margin: 1rem 0 1.8rem;
  line-height: 1.4;
}
.testimonial .author { font-weight: 600; color: var(--rose-dark); }
.testimonial .author span { display: block; font-weight: 400; color: var(--brown-soft); font-size: 0.9rem; }

.stars { color: var(--gold); font-size: 1.2rem; letter-spacing: 0.15em; }

/* Multiple testimonial cards */
.quote-card { padding: 2rem 1.9rem; }
.quote-card p { font-size: 1rem; color: var(--brown-soft); margin: 0.9rem 0 1.3rem; }
.quote-card .author { font-weight: 600; color: var(--brown); }
.quote-card .author small { display: block; color: var(--rose-dark); font-weight: 500; }

/* --------------------------------------------------------------------------
   13. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  text-align: center;
  border-radius: var(--radius);
  padding: 4rem 2rem;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.25), transparent 50%),
    linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: var(--white);
}
.cta-band h2 { color: var(--white); font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.cta-band p { font-size: 1.1rem; max-width: 36rem; margin: 0 auto 2rem; color: rgba(255,255,255,0.92); }
.cta-band .btn-light { color: var(--rose-dark); }

/* --------------------------------------------------------------------------
   14. MENU PAGE
   -------------------------------------------------------------------------- */
.menu-cat { margin-bottom: 4rem; }
.menu-cat-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.menu-cat-head .cat-emoji {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  border-radius: 50%;
  font-size: 1.6rem;
  background: linear-gradient(135deg, var(--rose-soft), var(--cream-deep));
}
.menu-cat-head h2 { font-size: 1.9rem; }
.menu-cat-head .cat-line { flex: 1; height: 1px; background: rgba(217,122,138,0.25); }

.menu-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 3rem; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px dashed rgba(217,122,138,0.3);
}
.menu-item .mi-name { font-family: var(--font-head); font-size: 1.18rem; color: var(--brown); }
.menu-item .mi-desc { font-size: 0.88rem; color: var(--brown-soft); margin-top: 0.15rem; }
.menu-item .mi-price {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--rose-dark);
  white-space: nowrap;
  font-size: 1.1rem;
}
.menu-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 4px;
  padding: 1px 6px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

/* --------------------------------------------------------------------------
   15. GALLERY PAGE
   -------------------------------------------------------------------------- */
.gallery-group { margin-bottom: 3.5rem; }
.gallery-group h2 { font-size: 1.7rem; margin-bottom: 1.4rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
.gallery-tile {
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.gallery-tile.tall { grid-row: span 2; }
.gallery-tile.wide { grid-column: span 2; }
.gallery-tile::after {
  content: attr(data-label);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(58, 42, 35, 0.55);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 1.1rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-tile:hover { transform: scale(1.02); box-shadow: var(--shadow-md); }
.gallery-tile:hover::after { opacity: 1; }

/* --------------------------------------------------------------------------
   16. CONTACT PAGE
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 2.5rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { margin-bottom: 1.2rem; }
.field label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--brown);
  margin-bottom: 0.45rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(217,122,138,0.3);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(217,122,138,0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field .error-msg {
  display: none;
  color: var(--rose-dark);
  font-size: 0.8rem;
  margin-top: 0.35rem;
}
.field.invalid input,
.field.invalid select,
.field.invalid textarea { border-color: var(--rose-dark); }
.field.invalid .error-msg { display: block; }

.form-success {
  display: none;
  background: rgba(216, 166, 87, 0.15);
  border: 1px solid var(--gold);
  color: var(--brown);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin-bottom: 1.4rem;
  font-size: 0.95rem;
}
.form-success.show { display: block; }

.info-block { margin-bottom: 1.8rem; }
.info-block h3 {
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.info-block p { font-size: 0.95rem; }

.map-placeholder {
  margin-top: 1.5rem;
  height: 230px;
  border-radius: var(--radius);
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.25) 0 12px, transparent 12px 24px),
    linear-gradient(150deg, var(--rose-soft) 0%, var(--cream-deep) 100%);
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--brown);
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}
.map-placeholder span { font-size: 2rem; display: block; margin-bottom: 0.4rem; }

/* --------------------------------------------------------------------------
   17. FOOTER  (shared)
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(253, 246, 240, 0.75);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.site-footer .brand { color: var(--cream); margin-bottom: 1rem; }
.site-footer .brand .brand-sub { color: var(--rose-soft); }
.footer-about p { font-size: 0.92rem; max-width: 24rem; }
.footer-col h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a { font-size: 0.92rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--rose-soft); }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer-social a {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(253,246,240,0.08);
  font-size: 1rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--rose); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(253,246,240,0.12);
  padding-block: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.6rem;
  font-size: 0.85rem;
}

/* --------------------------------------------------------------------------
   18. SCROLL REVEAL ANIMATION
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22,0.61,0.36,1);
}
.reveal.visible { opacity: 1; transform: none; }
/* Fallback: if JS disabled, show everything */
.no-js .reveal { opacity: 1; transform: none; }

/* --------------------------------------------------------------------------
   19. RESPONSIVE
   -------------------------------------------------------------------------- */
@media (max-width: 980px) {
  :root { --section-y: 4.5rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { height: 380px; max-width: 460px; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split.reverse .split-media { order: 0; }
  .split-media { height: 320px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 78px; right: 0;
    width: min(78vw, 320px);
    height: calc(100vh - 78px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    background: var(--cream);
    padding: 2rem 1.8rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(110%);
    transition: transform var(--transition);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { width: 100%; padding: 0.7rem 0; font-size: 1.05rem; }
  .nav-links .nav-cta { margin: 0.6rem 0 0; width: 100%; justify-content: center; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .strip { grid-template-columns: 1fr; gap: 1.6rem; padding: 2rem; }
  .menu-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gallery-tile.wide { grid-column: span 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hero-stats { gap: 1.6rem; }
}

@media (max-width: 460px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-card.c1, .hero-card.c2, .hero-card.c3 { font-size: 3rem; }
}
