/* ============================================================
   GRACEFUL GROUNDS — Main Stylesheet
   ============================================================ */

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

:root {
  --parchment:        #F7F0E0;
  --parchment-dark:   #EDE4CC;
  --parchment-deep:   #E0D4B8;
  --brown-deep:       #2C1A0E;
  --brown-medium:     #5C3317;
  --brown-light:      #8B5A2B;
  --brown-hover:      #7A4A20;
  --dusty-blue:       #7A9EB5;
  --dusty-blue-light: #A8C4D4;
  --dusty-blue-dark:  #4E7A96;
  --gold:             #CDB040;
  --gold-light:       #E8CC5C;
  --gold-dark:        #B89828;
  --white:            #FDFAF4;
  --text-dark:        #1A0E06;
  --text-medium:      #4A2C1A;
  --text-light:       #7A5C3A;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--parchment);
  color: var(--text-dark);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.7;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ── Typography ─────────────────────────────────────────── */

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--brown-deep);
}

.serif-italic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
}

.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ── Floral Divider ─────────────────────────────────────── */

.floral-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem auto;
  max-width: 320px;
}
.floral-divider::before,
.floral-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold));
}
.floral-divider::after {
  background: linear-gradient(to left, transparent, var(--gold));
}
.floral-divider span {
  color: var(--dusty-blue);
  font-size: 1.1rem;
  letter-spacing: 0.15em;
}

/* ── Buttons ────────────────────────────────────────────── */

.btn {
  display: inline-block;
  padding: 0.8rem 2.2rem;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--brown-deep);
  color: var(--gold-light);
  border: 2px solid var(--brown-deep);
}
.btn-primary:hover {
  background: var(--brown-medium);
  border-color: var(--brown-medium);
  color: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--brown-deep);
  border: 2px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--brown-deep);
}

.btn-gold {
  background: var(--gold);
  color: var(--brown-deep);
  border: 2px solid var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* ── Navigation ─────────────────────────────────────────── */

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--brown-deep);
  border-bottom: 2px solid var(--gold);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.04em;
}
.nav-logo span {
  color: var(--dusty-blue-light);
  font-style: italic;
  font-weight: 400;
}
.nav-logo-img {
  height: 56px;
  width: auto;
  border-radius: 8px;
  display: block;
}
.footer-logo-img {
  height: 100px;
  width: auto;
  border-radius: 10px;
  display: block;
  margin-bottom: 0.75rem;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--parchment);
  transition: color 0.2s;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}

.nav-badges {
  display: flex;
  gap: 0.5rem;
}
.nav-badge {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  border: 1px solid;
}
.badge-kosher  { color: var(--dusty-blue-light); border-color: var(--dusty-blue); }
.badge-organic { color: var(--gold-light);        border-color: var(--gold); }

/* Mobile nav */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--parchment);
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .nav-badges { display: none; }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--brown-deep);
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    border-bottom: 2px solid var(--gold);
  }
  .nav-links.open { display: flex; }
  .nav-links li a {
    display: block;
    padding: 0.8rem 2rem;
  }
}

/* ── Hero ───────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* Thin inset border — bulbs anchor to this */
.hero-frame-wrap {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(212, 175, 80, 0.32);
  border-top: none;
  pointer-events: none;
  z-index: 4;
}
@media (max-width: 640px) {
  .hero-frame-wrap { border: none; }
}

/* Background image with brightness boost */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('images/trailer.jpg');
  background-size: cover;
  background-position: center 32%;
  background-repeat: no-repeat;
  filter: brightness(1);
  z-index: 0;
}

/* Dark overlay at 25% */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  pointer-events: none;
  z-index: 1;
}


.hero-texture {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 25% 75%, rgba(122,158,181,0.08) 0%, transparent 40%),
    radial-gradient(circle at 75% 25%, rgba(201,168,76,0.06) 0%, transparent 40%);
  pointer-events: none;
  z-index: 2;
}

/* Decorative floral circles */
.hero-decor-circle-1,
.hero-decor-circle-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 3;
}
.hero-decor-circle-1 {
  top: 8%; left: 6%;
  width: 280px; height: 280px;
  border: 1px solid rgba(122,158,181,0.2);
}
.hero-decor-circle-2 {
  bottom: 10%; right: 8%;
  width: 200px; height: 200px;
  border: 1px solid rgba(201,168,76,0.18);
}

.hero-content {
  position: relative;
  z-index: 4;
  max-width: 740px;
  padding: 2rem;
  margin-top: -72px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #C8E0F0;
  margin-bottom: 1.2rem;
  text-shadow: 0 0 8px rgba(180,220,255,0.6), 0 1px 6px rgba(0,0,0,0.9), 0 2px 14px rgba(0,0,0,0.7);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: #F0C040;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8), 0 2px 14px rgba(0,0,0,0.6);
  line-height: 1.1;
  margin-bottom: 2rem;
  white-space: nowrap;
}

.hero h1 em {
  display: block;
  font-style: italic;
  font-weight: 400;
  font-size: 0.65em;
  color: var(--parchment);
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-align: center;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--parchment);
  opacity: 1;
  margin: 1.5rem 0 2.5rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8), 0 2px 12px rgba(0,0,0,0.6);
}

.hero-ctas .btn {
  background: rgba(255, 255, 255, 0.78);
  color: var(--brown-medium);
  border: 2px solid var(--gold);
  font-size: 0.82rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.25), 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}
.hero-ctas .btn:hover {
  background: white;
  color: var(--gold-dark);
  border-color: var(--gold);
  font-size: 0.88rem;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

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

.hero-badges {
  margin-top: 1.5rem;
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--parchment);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0,0,0,0.8), 0 2px 14px rgba(0,0,0,0.6);
}
.hero-badge-item::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.6rem;
}

@media (max-width: 640px) {
  .hero-content {
    width: 100%;
    padding: 1.2rem 0.3rem;
    box-sizing: border-box;
    text-align: center;
  }
  .hero h1 {
    font-size: clamp(2.3rem, 9.5vw, 3rem);
    white-space: nowrap;
  }
  .hero h1 em {
    white-space: normal;
    font-size: 0.75em;
    letter-spacing: 0.04em;
  }
}

/* ── Sections ───────────────────────────────────────────── */

section {
  padding: 5rem 2rem;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  margin: 0.5rem 0;
}
.section-header p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: var(--text-light);
  font-style: italic;
}

/* ── Info Cards ─────────────────────────────────────────── */

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background: var(--white);
  border: 1px solid var(--parchment-deep);
  padding: 2rem 1.8rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--dusty-blue), var(--gold));
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44,26,14,0.1);
}

.info-card-icon {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brown-medium);
  margin-bottom: 0.8rem;
}

.info-card p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.8;
}

.info-card a {
  color: var(--dusty-blue-dark);
  transition: color 0.2s;
}
.info-card a:hover { color: var(--gold-dark); }

/* ── Hours Table ────────────────────────────────────────── */

.hours-grid {
  display: grid;
  gap: 0.5rem;
  max-width: 340px;
  margin: 0 auto;
}
.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--parchment-deep);
}
.hours-row .day { font-weight: 700; color: var(--brown-medium); }
.hours-row .time { color: var(--text-light); }
.hours-row.closed .time { color: var(--dusty-blue-dark); font-style: italic; }

/* ── Product Card ───────────────────────────────────────── */

.product-section {
  background: linear-gradient(135deg, #5A8EAC 0%, #7AAEC8 30%, #9EC8DC 50%, #7AAEC8 70%, #5A8EAC 100%);
  color: var(--brown-deep);
  position: relative;
  overflow: hidden;
}

.product-section .section-header h2 { color: var(--brown-deep); }
.product-section .section-header p  { color: var(--brown-deep); font-weight: 600; }
.product-section .section-label      { color: rgba(44,26,14,0.65); }

.product-card {
  background: rgba(247,240,224,0.06);
  border: 1px solid rgba(201,168,76,0.25);
  max-width: 680px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border-radius: 16px;
}

@media (max-width: 600px) {
  .product-card { grid-template-columns: 1fr; }
}

.product-visual {
  background: var(--parchment);
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}
.product-visual a {
  display: block;
  width: 100%;
}
.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(1.18) contrast(1.06);
}

/* Vanity-mirror frame bulbs around the product image */
.frame-light {
  position: absolute;
  width: 11px; height: 11px;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 33%, #FFFDE7 0%, #FFD740 52%, #FF8F00 100%);
  transform: translate(-50%, -50%);
  z-index: 5;
  pointer-events: none;
}

.product-bag {
  width: 110px;
  text-align: center;
}
.product-bag-shape {
  width: 90px;
  height: 130px;
  background: linear-gradient(160deg, #F7F0E0 0%, #EDE4CC 100%);
  border-radius: 4px 4px 20px 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  box-shadow: 4px 8px 20px rgba(0,0,0,0.4);
  position: relative;
}
.product-bag-shape::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 10px;
  background: var(--parchment-deep);
  border-radius: 0 0 8px 8px;
}
.product-bag-label {
  font-size: 0.45rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brown-deep);
  text-align: center;
  line-height: 1.4;
}
.product-bag-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--brown-deep);
  text-align: center;
  margin-top: 0.3rem;
}

.product-info {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--brown-deep);
}

.product-info h3 {
  font-size: 1.4rem;
  color: var(--gold-light);
  margin: 0.4rem 0;
}

.product-origin {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--dusty-blue-light);
  margin-bottom: 1rem;
}

.product-notes {
  font-size: 0.95rem;
  color: rgba(247,240,224,0.95);
  margin-bottom: 1.2rem;
  line-height: 1.9;
}

.flavor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}
.flavor-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold-light);
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.product-price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(247,240,224,0.5);
  margin-left: 0.3rem;
  font-family: 'Lato', sans-serif;
}

/* ── Events ─────────────────────────────────────────────── */

.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.event-card {
  background: var(--white);
  border: 1px solid var(--parchment-deep);
  padding: 2rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.event-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(44,26,14,0.1);
}
.event-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--dusty-blue));
}

.event-type-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.2rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.badge-public  { background: rgba(122,158,181,0.15); color: var(--dusty-blue-dark); border: 1px solid var(--dusty-blue); }
.badge-private { background: rgba(201,168,76,0.12);  color: var(--gold-dark);       border: 1px solid var(--gold); }

.event-date {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.event-date .month {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dusty-blue-dark);
}
.event-date .day-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--brown-deep);
  line-height: 1;
}
.event-date .year {
  font-size: 0.8rem;
  color: var(--text-light);
}

.event-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}
.event-card p {
  font-size: 0.875rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── Forms ──────────────────────────────────────────────── */

.form-section {
  background: var(--parchment-dark);
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  padding: 3rem;
  border: 1px solid var(--parchment-deep);
  box-shadow: 0 4px 24px rgba(44,26,14,0.07);
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brown-medium);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--parchment);
  border: 1px solid var(--parchment-deep);
  color: var(--text-dark);
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  border-radius: 0;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-group select {
  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' stroke='%235C3317' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.show { display: block; }
.form-success h3 { color: var(--brown-medium); margin-bottom: 0.5rem; }
.form-success p  { color: var(--text-light); }

/* ── About Strip ────────────────────────────────────────── */

.about-strip {
  background: var(--white);
  border-top: 1px solid var(--parchment-deep);
  border-bottom: 1px solid var(--parchment-deep);
  position: relative;
  overflow: hidden;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.about-content h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin: 0.5rem 0 1.2rem; }
.about-content p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--text-medium);
  line-height: 1.9;
  margin-bottom: 1rem;
}

/* ── Contact Detail Blocks ──────────────────────────────── */

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.contact-block {
  padding: 1.8rem;
  background: var(--white);
  border: 1px solid var(--parchment-deep);
  text-align: center;
}
.contact-block-icon { font-size: 1.6rem; margin-bottom: 0.8rem; }
.contact-block h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.6rem;
}
.contact-block p,
.contact-block a {
  font-size: 0.9rem;
  color: var(--text-medium);
  line-height: 1.8;
}
.contact-block a:hover { color: var(--brown-medium); }

/* ── Map ────────────────────────────────────────────────── */

.map-wrapper {
  width: 100%;
  height: 380px;
  border: 1px solid var(--parchment-deep);
  overflow: hidden;
}
.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: sepia(20%) saturate(0.9);
}

/* ── Footer ─────────────────────────────────────────────── */

footer {
  background: var(--brown-deep);
  color: rgba(247,240,224,0.7);
  border-top: 2px solid var(--gold);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 2rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

.footer-brand .logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.8rem;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.8; max-width: 280px; }

.footer-col h5 {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul a {
  font-size: 0.85rem;
  color: rgba(247,240,224,0.7);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold-light); }

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--dusty-blue-light);
  transition: color 0.2s;
  margin-top: 0.3rem;
}
.footer-social a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(201,168,76,0.2);
  font-size: 0.75rem;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-cert-badges {
  display: flex;
  gap: 0.75rem;
}
.footer-cert {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  border: 1px solid;
}
.cert-kosher  { color: var(--dusty-blue-light); border-color: var(--dusty-blue); }
.cert-organic { color: var(--gold-light);        border-color: var(--gold); }

/* ── Page Hero (inner pages) ────────────────────────────── */

.page-hero {
  background: linear-gradient(160deg, #2C1A0E 0%, #5C3317 60%, #3D2410 100%);
  padding: 3.4rem 2rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: none;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold-light);
  position: relative;
  z-index: 1;
}
.page-hero p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(247,240,224,0.75);
  margin-top: 0.75rem;
  position: relative;
  z-index: 1;
}

/* ── Page Hero Color Variants ───────────────────────────── */
.page-hero.hero-gold {
  background: linear-gradient(160deg, #A08520 0%, #CDB040 55%, #B89828 100%);
}
.page-hero.hero-gold h1 { color: var(--brown-deep); }
.page-hero.hero-gold p  { color: rgba(44,26,14,0.72); }
.page-hero.hero-gold::before { color: rgba(44,26,14,0.18); }

.page-hero.hero-blue {
  background: linear-gradient(135deg, #5A8EAC 0%, #7AAEC8 30%, #9EC8DC 50%, #7AAEC8 70%, #5A8EAC 100%);
}
.page-hero.hero-blue h1 {
  color: var(--brown-medium);
  text-shadow: 0 0 18px rgba(255,240,210,0.75), 0 0 35px rgba(255,225,170,0.45), 0 2px 6px rgba(255,255,255,0.3);
}
.page-hero.hero-blue p  { color: rgba(92,51,23,0.85); }
.page-hero.hero-blue::before { color: rgba(92,51,23,0.15); }

.page-hero.hero-cream {
  background: linear-gradient(160deg, #E0D4B8 0%, #F7F0E0 55%, #EDE4CC 100%);
}
.page-hero.hero-cream h1 { color: var(--brown-deep); }
.page-hero.hero-cream p  { color: var(--brown-medium); }
.page-hero.hero-cream::before { color: rgba(44,26,14,0.15); }

.page-hero.hero-ivory {
  background: linear-gradient(160deg, #F0EAD6 0%, #FAF6EE 55%, #EEE8D5 100%);
}
.page-hero.hero-ivory h1 { color: var(--brown-deep); }
.page-hero.hero-ivory p  { color: var(--dusty-blue-dark); }
.page-hero.hero-ivory::before { color: rgba(78,122,150,0.2); }

/* ── String Lights ──────────────────────────────────────── */
.lights-row {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 46px;
  pointer-events: none;
  z-index: 10;
}
.lights-wire {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
/* Socket — static dark cap, sits on wire, body hangs below */
.string-light {
  position: absolute;
  width: 6px; height: 8px;
  margin-left: -3px;
  background: #1a1209;
  border-radius: 3px 3px 0 0;
  z-index: 2;
}
/* Glowing bulb — animation ONLY controls box-shadow, no static value here */
.string-light .bulb {
  display: block;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px; height: 13px;
  border-radius: 50% 50% 45% 45%;
  background: radial-gradient(circle at 40% 30%, #FFFDE7 0%, #FFD740 55%, #FF8F00 100%);
}

@keyframes twinkle-a {
  0%    { box-shadow: 0 0 7px 3px rgba(255,213,79,0.75), 0 0 13px 5px rgba(255,160,0,0.35); }
  38%   { box-shadow: 0 0 10px 4px rgba(255,245,200,0.85), 0 0 20px 8px rgba(255,213,79,0.6), 0 0 30px 11px rgba(255,160,0,0.22); }
  52%   { box-shadow: 0 0 1px 0 rgba(255,213,79,0.08); }
  100%  { box-shadow: 0 0 7px 3px rgba(255,213,79,0.75), 0 0 13px 5px rgba(255,160,0,0.35); }
}
@keyframes twinkle-b {
  0%    { box-shadow: 0 0 5px 2px rgba(255,213,79,0.55); }
  22%   { box-shadow: 0 0 11px 4px rgba(255,245,200,0.8), 0 0 22px 9px rgba(255,213,79,0.65), 0 0 32px 12px rgba(255,160,0,0.25); }
  34%   { box-shadow: 0 0 1px 0 rgba(255,213,79,0.06); }
  70%   { box-shadow: 0 0 4px 1px rgba(255,213,79,0.4); }
  100%  { box-shadow: 0 0 5px 2px rgba(255,213,79,0.55); }
}
@keyframes twinkle-c {
  0%    { box-shadow: 0 0 6px 2px rgba(255,213,79,0.65); }
  48%   { box-shadow: 0 0 9px 4px rgba(255,245,200,0.82), 0 0 18px 7px rgba(255,213,79,0.62), 0 0 28px 10px rgba(255,160,0,0.2); }
  60%   { box-shadow: 0 0 1px 0 rgba(255,213,79,0.07); }
  100%  { box-shadow: 0 0 6px 2px rgba(255,213,79,0.65); }
}
@keyframes twinkle-d {
  0%    { box-shadow: 0 0 5px 2px rgba(255,213,79,0.5); }
  20%   { box-shadow: 0 0 8px 3px rgba(255,245,200,0.75), 0 0 16px 6px rgba(255,213,79,0.58); }
  28%   { box-shadow: 0 0 2px 1px rgba(255,213,79,0.18); }
  62%   { box-shadow: 0 0 10px 4px rgba(255,245,200,0.82), 0 0 20px 8px rgba(255,213,79,0.65), 0 0 30px 11px rgba(255,160,0,0.25); }
  74%   { box-shadow: 0 0 1px 0 rgba(255,213,79,0.06); }
  100%  { box-shadow: 0 0 5px 2px rgba(255,213,79,0.5); }
}

/* ── Utilities ──────────────────────────────────────────── */

.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-2 { margin-top: 2rem; }

.certifications-strip {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
.cert-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cert-item.blue { color: var(--dusty-blue-dark); }
.cert-item.gold  { color: var(--gold-dark); }
.cert-item::before {
  content: '✓';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
}
.cert-item.blue::before { background: var(--dusty-blue); color: white; }
.cert-item.gold::before  { background: var(--gold); color: white; }

/* ── Instagram CTA Banner ───────────────────────────────── */

.instagram-banner {
  background: linear-gradient(135deg, var(--dusty-blue-dark) 0%, var(--brown-medium) 100%);
  padding: 3rem 2rem;
  text-align: center;
}
.instagram-banner h3 {
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.instagram-banner p {
  color: rgba(253,250,244,0.8);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
.instagram-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: background 0.3s;
}
.instagram-handle:hover { background: rgba(255,255,255,0.22); color: white; }

/* ── Scroll reveal helper ───────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
