/* ============================================================
   CAKES ON THE COMMON — Main Stylesheet
   Palette: Navy #0F1E3C | Cream #FAF8F4 | Blush #D4948A
            Gold #B8956A | Light Blush #EDD5CF
   Fonts:   Cormorant Garamond (headings) | Jost (body)
   ============================================================ */

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

/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:         #0F1E3C;
  --cream:        #FAF8F4;
  --cream-dark:   #F0EAE2;
  --blush:        #D4948A;
  --blush-light:  #EDD5CF;
  --blush-dark:   #C07E74;
  --gold:         #B8956A;
  --mid:          #8FA0B0;
  --text-muted:   #6B7A8D;
  --border:       #E2DDD8;
  --whatsapp:     #25D366;
  --whatsapp-dark:#1DAA54;
  --shadow-sm:    0 2px 8px rgba(15,30,60,0.08);
  --shadow-md:    0 4px 20px rgba(15,30,60,0.12);
  --shadow-lg:    0 8px 40px rgba(15,30,60,0.16);
  --radius-pill:  50px;
  --radius-card:  12px;
  --transition:   0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--navy);
  line-height: 1.7;
  font-size: 16px;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { max-width: 65ch; }

.subtitle {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blush);
}

/* ── LAYOUT UTILITIES ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 80px 0;
}

.section--cream { background: var(--cream); }
.section--dark  { background: var(--navy); color: var(--cream); }
.section--muted { background: var(--cream-dark); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .subtitle { margin-bottom: 12px; }
.section-header p {
  margin: 16px auto 0;
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn--primary {
  background: var(--blush);
  color: var(--cream);
  border-color: var(--blush);
}
.btn--primary:hover {
  background: var(--blush-dark);
  border-color: var(--blush-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250,248,244,0.5);
}
.btn--outline:hover {
  background: rgba(250,248,244,0.1);
  border-color: var(--cream);
}

.btn--navy {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: #162d58;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--whatsapp {
  background: var(--whatsapp);
  color: #fff;
  border-color: var(--whatsapp);
}
.btn--whatsapp:hover {
  background: var(--whatsapp-dark);
  border-color: var(--whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ── HEADER / NAV ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: var(--shadow-md);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.site-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.site-logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--blush-light);
  letter-spacing: 0.02em;
}
.site-logo-tagline {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.site-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all var(--transition);
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--blush-light);
  background: rgba(255,255,255,0.06);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
  opacity: 0.6;
}
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-card);
  min-width: 200px;
  padding: 8px;
  box-shadow: var(--shadow-lg);
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 8px 12px;
  border-radius: 6px;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  transition: all var(--transition);
}
.dropdown-menu a:hover {
  color: var(--blush-light);
  background: rgba(255,255,255,0.06);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile nav */
.mobile-menu {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 24px 24px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--blush-light); }
.mobile-menu .mobile-sub {
  padding-left: 16px;
  font-size: 0.85rem;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  color: var(--cream);
}
.hero-content .subtitle { color: var(--blush-light); margin-bottom: 16px; }
.hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  margin-bottom: 20px;
  font-weight: 400;
  color: var(--cream);
}
.hero-content p {
  font-size: 1.1rem;
  color: rgba(250,248,244,0.8);
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── CATEGORY GRID ── */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--cream-dark);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  display: block;
}
.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-card:hover img { transform: scale(1.04); }
.category-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 16px 16px;
  background: linear-gradient(to top, rgba(15,30,60,0.85) 0%, transparent 100%);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
}

/* ── GALLERY GRID ── */
.gallery-grid {
  columns: 3;
  column-gap: 16px;
}
.gallery-grid-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  background: var(--cream-dark);
}
.gallery-grid-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.gallery-grid-item img {
  width: 100%;
  display: block;
  transition: transform 0.35s ease;
}
.gallery-grid-item:hover img { transform: scale(1.03); }

.gallery-loading {
  text-align: center;
  padding: 60px;
  color: var(--text-muted);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}
.gallery-loading .spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--blush);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  margin: 0 auto 16px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ── LIGHTBOX ── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,30,60,0.92);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-height: 90vh;
  max-width: 90vw;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  transition: color var(--transition);
}
.lightbox-close:hover { color: #fff; }

/* ── BIRTHDAY CAKES NAV ── */
.birthday-nav-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.birthday-nav-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-dark);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  display: block;
}
.birthday-nav-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.birthday-nav-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.birthday-nav-card:hover img { transform: scale(1.06); }
.birthday-nav-card-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 12px 12px;
  background: linear-gradient(to top, rgba(15,30,60,0.85) 0%, transparent 100%);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: center;
}

/* ── QUOTE FORM ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--navy);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blush);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 2px;
}
.form-error {
  display: none;
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 4px;
}
.input-error {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.15);
}

.form-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 48px;
  box-shadow: var(--shadow-md);
  max-width: 720px;
  margin: 0 auto;
}

/* ── ACCORDION (Price List) ── */
.accordion { border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--border); }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: #fff;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  border: none;
  transition: background var(--transition);
  text-align: left;
}
.accordion-trigger:hover { background: var(--cream); }
.accordion-trigger .chevron {
  color: var(--blush);
  font-size: 0.8rem;
  transition: transform var(--transition);
  flex-shrink: 0;
}
.accordion-trigger.open .chevron { transform: rotate(180deg); }
.accordion-body {
  display: none;
  padding: 0 24px 24px;
  background: #fff;
}
.accordion-body.open { display: block; }
.accordion-body p { margin-bottom: 10px; line-height: 1.7; }
.accordion-body p:last-child { margin-bottom: 0; }

.price-table { width: 100%; border-collapse: collapse; margin-top: 16px; }
.price-table th, .price-table td {
  padding: 10px 12px;
  text-align: left;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border);
}
.price-table th {
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--cream);
}
.price-table td:nth-child(3), .price-table td:nth-child(4) { text-align: center; font-weight: 400; color: var(--blush-dark); }
.price-table th:nth-child(3), .price-table th:nth-child(4) { text-align: center; }

/* ── CUTTING GUIDE TILES ── */
.cutting-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.cutting-tile {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.cutting-tile-shape {
  font-size: 2rem;
  margin-bottom: 12px;
}
.cutting-tile h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.cutting-tile-portions {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.cutting-tile-portions span {
  display: inline-block;
  background: var(--blush-light);
  color: var(--navy);
  border-radius: 20px;
  padding: 2px 10px;
  margin: 2px;
  font-size: 0.75rem;
}

/* ── FLAVOUR BADGES ── */
.flavour-section { margin-bottom: 40px; }
.flavour-section h3 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--blush-light);
  color: var(--navy);
}
.flavour-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.flavour-badge {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 7px 18px;
  font-size: 0.85rem;
  color: var(--navy);
  transition: all var(--transition);
}
.flavour-badge:hover {
  border-color: var(--blush);
  background: var(--blush-light);
}
.flavour-badge.popular { border-color: var(--blush); background: var(--blush-light); }
.flavour-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.flavour-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-card);
  padding: 18px 14px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--navy);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.flavour-card:hover {
  border-color: var(--blush);
  background: var(--blush-light);
}
.flavour-card small {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 300;
}
.flavour-icon {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
}
.flavour-icon svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 48px 0 56px;
  text-align: center;
  color: var(--cream);
}
.page-hero .breadcrumb {
  justify-content: flex-start;
  margin-bottom: 28px;
}
.page-hero .subtitle {
  color: var(--blush-light);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.page-hero h1 { font-style: italic; }
.page-hero__desc {
  color: rgba(250,248,244,0.72);
  margin: 14px auto 0;
  font-size: 1.05rem;
  max-width: 52ch;
}

/* ── TESTIMONIALS ── */
.testimonial-carousel {
  position: relative;
  max-width: 640px;
  margin: 0 auto;
}
.testimonial-track {
  position: relative;
  overflow: hidden;
}
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: none;
  animation: testimonialFade 0.4s ease;
}
.testimonial-card.active {
  display: block;
}
@keyframes testimonialFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.testimonial-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blush-light);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s;
}
.testimonial-dot.active {
  background: var(--blush);
}
.testimonial-card::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  color: var(--blush-light);
  position: absolute;
  top: -10px;
  left: 20px;
  line-height: 1;
}
.testimonial-card p {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 16px;
  margin-top: 20px;
}
.testimonial-author {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}
.testimonial-stars { color: var(--gold); margin-bottom: 4px; font-size: 0.85rem; }

/* ── FOOTER ── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .site-logo-name { font-size: 1.3rem; margin-bottom: 12px; display: block; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.footer-social a:hover {
  border-color: var(--blush);
  color: var(--blush);
}
.footer-links h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: 10px; }
.footer-links ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-links ul a:hover { color: var(--blush-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 8px;
}

/* ── FLOATING BUTTONS ── */
.floating-btns {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 400;
}
.floating-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  text-decoration: none;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  white-space: nowrap;
}
.floating-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.floating-btn--whatsapp { background: var(--whatsapp); color: #fff; }
.floating-btn--whatsapp:hover { background: var(--whatsapp-dark); }
.floating-btn--quote { background: var(--blush); color: var(--cream); }
.floating-btn--quote:hover { background: var(--blush-dark); }
.floating-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--blush-light); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ── NOTICE / ALERT ── */
.notice {
  background: var(--blush-light);
  border-left: 4px solid var(--blush);
  border-radius: 0 8px 8px 0;
  padding: 16px 20px;
  font-size: 0.9rem;
  margin-bottom: 32px;
}

/* ── TERMS LIST ── */
.terms-list {
  list-style: disc;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--navy);
  font-size: 0.95rem;
  line-height: 1.6;
}
.terms-list li::marker {
  color: var(--blush);
}

/* ── INSTAGRAM FEED ── */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.instagram-post {
  position: relative;
  display: block;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 1;
}
.instagram-post img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.instagram-post:hover img {
  transform: scale(1.05);
}
.instagram-post-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15, 30, 60, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.instagram-post:hover .instagram-post-overlay {
  opacity: 1;
}
.instagram-post-overlay span {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .site-nav { display: none; }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .form-grid { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

@media (max-width: 600px) {
  .section { padding: 56px 0; }
  .hero { min-height: 70vh; }
  .gallery-grid { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-btns { bottom: 16px; right: 16px; }
  .floating-btn span { display: none; }
  .floating-btn { padding: 14px; border-radius: 50%; }
  .floating-btn svg { width: 22px; height: 22px; }
  .form-card { padding: 28px 20px; }
  .birthday-nav-gallery { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }

  /* Price table: stack into card layout on mobile */
  .price-table thead { display: none; }
  .price-table tr {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }
  .price-table td {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: none;
    font-size: 0.88rem;
  }
  .price-table td::before {
    content: attr(data-label);
    font-weight: 500;
    color: var(--text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .price-table td:last-child { text-align: right; }
}
