/* ===== Linda's Cake - Made with Love ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Lato:wght@300;400;600&display=swap');

:root {
  --gold:        #c9920a;
  --gold-dark:   #a87008;
  --gold-light:  #fff3c0;
  --orange:      #e87722;
  --orange-dark: #b85a10;
  --black:       #0d0d0d;
  --dark:        #1a1000;
  --cream:       #fffbf0;
  --white:       #ffffff;
  --text:        #1a1000;
  --text-light:  #c9920a;
  --shadow:      rgba(180, 120, 0, 0.14);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

/* ---- NAV ---- */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: rgba(255, 251, 240, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 146, 10, 0.25);
  padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold);
  text-decoration: none;
}
.nav-logo img { height: 48px; width: 48px; border-radius: 50%; object-fit: cover; }
.nav-logo span { color: var(--orange); }

.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold-dark);
  color: var(--black) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 25px;
  transition: background 0.2s !important;
  font-weight: 600;
}
.nav-cta:hover { background: var(--orange) !important; color: var(--black) !important; }

/* Language toggle */
.lang-toggle {
  display: flex; gap: 0.25rem; align-items: center;
  background: rgba(201,146,10,0.1);
  border-radius: 20px;
  padding: 0.2rem 0.4rem;
}
.lang-btn {
  background: none; border: none;
  color: var(--text-light);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  padding: 0.25rem 0.6rem;
  border-radius: 15px;
  transition: all 0.2s;
  font-family: 'Lato', sans-serif;
}
.lang-btn.active {
  background: var(--gold-dark);
  color: var(--white);
}
.lang-btn:hover:not(.active) { color: var(--gold); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #fffbf0 0%, #fff8e1 50%, #fff3c0 100%);
  padding: 100px 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9920a' fill-opacity='0.07'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-logo {
  width: 160px; height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 2rem;
  display: block;
  filter: drop-shadow(0 0 30px rgba(245,197,24,0.4));
}

.hero-content { position: relative; max-width: 700px; }

.hero-badge {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold-dark);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(201,146,10,0.3);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--orange);
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: all 0.25s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-dark), var(--orange));
  color: var(--black);
  box-shadow: 0 4px 20px rgba(245, 197, 24, 0.3);
  font-weight: 700;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold), var(--orange-dark));
  box-shadow: 0 6px 25px rgba(245, 197, 24, 0.45);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold-dark);
  margin-left: 1rem;
}
.btn-outline:hover {
  background: var(--gold-dark);
  color: var(--black);
  transform: translateY(-2px);
}

/* ---- SECTIONS ---- */
section { padding: 5rem 2rem; }

.section-label {
  display: block;
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.section-sub {
  text-align: center;
  color: var(--text-light);
  font-weight: 300;
  max-width: 550px;
  margin: 0 auto 3rem;
}

/* ---- GALLERY ---- */
#gallery { background: var(--white); }

.gallery-filters {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.45rem 1.2rem;
  border-radius: 20px;
  border: 1.5px solid var(--gold-dark);
  background: transparent;
  color: var(--text-light);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Lato', sans-serif;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--black);
}

/* nested filter group */
.filter-group {
  position: relative;
}
.filter-group:hover .filter-sub,
.filter-group:focus-within .filter-sub {
  display: flex;
}
.filter-sub {
  display: none;
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--white);
  border: 1px solid rgba(201,146,10,0.2);
  border-radius: 12px;
  padding: 0.6rem;
  box-shadow: 0 8px 24px var(--shadow);
  z-index: 50;
  min-width: 170px;
}
.filter-sub .filter-btn {
  border-radius: 8px;
  text-align: left;
  white-space: nowrap;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid.grid-6 {
  grid-template-columns: repeat(6, 1fr);
  max-width: 1400px;
}

@media (max-width: 1024px) {
  .gallery-grid.grid-6 { grid-template-columns: repeat(4, 1fr); }
}

.gallery-item {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px var(--shadow);
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  background: var(--cream);
  position: relative;
}
.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(180,120,0,0.2);
}

.gallery-item img {
  width: 100%; aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item-info {
  padding: 1rem 1.2rem;
}
.gallery-item-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.gallery-item-info span {
  font-size: 0.8rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gallery-loading {
  text-align: center;
  padding: 3rem;
  color: var(--text-light);
  grid-column: 1/-1;
}

.gallery-empty {
  text-align: center;
  padding: 3rem;
  color: var(--text-light);
  grid-column: 1/-1;
  font-style: italic;
}

/* ---- LIGHTBOX ---- */
.lightbox {
  display: none;
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(61, 40, 0, 0.88);
  align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw; max-height: 85vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--white); border: none;
  width: 44px; height: 44px; border-radius: 50%;
  font-size: 1.4rem; cursor: pointer;
  color: var(--dark); display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lightbox-close:hover { background: var(--gold-light); }

/* ---- QUOTE FORM ---- */
#quote {
  background: linear-gradient(135deg, #fff8e1 0%, var(--cream) 100%);
}

.quote-container {
  max-width: 780px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 8px 40px var(--shadow);
  border: 1px solid rgba(201,146,10,0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.form-group label .required { color: var(--orange); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(201,146,10,0.25);
  border-radius: 10px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: 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, 146, 10, 0.1);
  background: var(--white);
}

.form-group select option { background: var(--white); color: var(--text); }

.form-group textarea { resize: vertical; min-height: 100px; }

/* tiers section */
.tiers-wrapper { display: flex; flex-direction: column; gap: 1rem; }

.tiers-hint {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}

.tier-row {
  background: var(--gold-light);
  border: 1px solid rgba(201,146,10,0.2);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 1rem;
  align-items: center;
}

.tier-label {
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  color: var(--gold-dark);
  white-space: nowrap;
}

.tier-row select, .tier-row input {
  padding: 0.6rem 0.8rem;
  border: 1.5px solid rgba(201,146,10,0.25);
  border-radius: 8px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.tier-row select:focus, .tier-row input:focus { border-color: var(--gold); }
.tier-row select option { background: var(--white); }

.add-tier-btn {
  background: transparent;
  border: 1.5px dashed rgba(201,146,10,0.4);
  color: var(--gold-dark);
  padding: 0.6rem 1.2rem;
  border-radius: 10px;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  transition: all 0.2s;
  margin-top: 0.5rem;
  align-self: flex-start;
}
.add-tier-btn:hover { background: var(--gold-light); }

.remove-tier-btn {
  background: none; border: none;
  color: var(--orange); cursor: pointer;
  font-size: 1.1rem; padding: 0.2rem;
  opacity: 0.6; transition: opacity 0.2s;
}
.remove-tier-btn:hover { opacity: 1; }

/* serving size info icon + tooltip */
.size-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-left: 0.4rem;
  font-size: 0.95rem;
  color: var(--gold);
  cursor: pointer;
  vertical-align: middle;
}
.size-info-tooltip {
  display: none;
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  z-index: 100;
  background: var(--white);
  border: 1.5px solid rgba(201,146,10,0.3);
  border-radius: 10px;
  padding: 0.5rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
  width: 320px;
}
.size-info-tooltip img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
}
.size-info-icon:hover .size-info-tooltip {
  display: block;
}


.upload-area {
  border: 2px dashed rgba(201,146,10,0.35);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--cream);
  position: relative;
}
.upload-area:hover, .upload-area.dragover {
  border-color: var(--gold);
  background: var(--gold-light);
}
.upload-area input[type="file"] {
  position: absolute; inset: 0;
  opacity: 0; cursor: pointer;
  width: 100%; height: 100%;
}
.upload-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.upload-area p { color: var(--text-light); font-size: 0.9rem; }
.upload-area strong { color: var(--gold-dark); }

.upload-preview {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 1rem;
}
.upload-preview img {
  width: 80px; height: 80px;
  object-fit: cover; border-radius: 8px;
  border: 2px solid rgba(201,146,10,0.3);
}

.form-submit {
  text-align: center;
  margin-top: 2rem;
}

.form-submit .btn { font-size: 1rem; padding: 1rem 3rem; }

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 1rem;
}

/* success message */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold-dark);
  margin-bottom: 0.75rem;
}
.form-success p { color: var(--text-light); }

/* ---- ABOUT ---- */
#about {
  background: var(--white);
  text-align: center;
}
.about-content {
  max-width: 650px;
  margin: 0 auto;
}
.about-content p {
  color: var(--text-light);
  font-size: 1.05rem;
  font-weight: 300;
  margin-bottom: 1rem;
}
.about-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--orange));
  border-radius: 2px;
  margin: 2rem auto;
}

/* ---- FOOTER ---- */
footer {
  background: var(--dark);
  color: rgba(255, 248, 220, 0.7);
  text-align: center;
  padding: 2.5rem 2rem;
  font-size: 0.85rem;
  border-top: 1px solid rgba(201,146,10,0.2);
}
footer a { color: var(--gold-light); text-decoration: none; }
footer a:hover { color: var(--orange); }
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}
.footer-copy { margin-top: 0.75rem; }

/* ---- FEEDBACK ---- */
#feedback {
  background: var(--cream);
}

/* carousel */
.carousel-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto 1.5rem;
  padding: 0 1rem;
}

.carousel-track-wrap {
  overflow: hidden;
  flex: 1;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  padding: 0 0.5rem;
  box-sizing: border-box;
}

.feedback-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  box-shadow: 0 4px 24px var(--shadow);
  border: 1px solid rgba(201,146,10,0.12);
  text-align: center;
}

.feedback-card-stars { color: var(--gold); font-size: 1.4rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.feedback-card-message {
  font-size: 1.05rem;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}
.feedback-card-author {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold-dark);
}
.feedback-card-date {
  font-size: 0.75rem;
  color: var(--text-light);
  margin-top: 0.25rem;
}

.carousel-arrow {
  background: var(--white);
  border: 1.5px solid rgba(201,146,10,0.3);
  color: var(--gold-dark);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px var(--shadow);
}
.carousel-arrow:hover { background: var(--gold-dark); color: var(--white); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 3rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(201,146,10,0.25);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  padding: 0;
}
.carousel-dot.active {
  background: var(--gold-dark);
  transform: scale(1.3);
}

.feedback-loading, .feedback-empty {
  text-align: center;
  color: var(--text-light);
  padding: 2rem;
  font-style: italic;
  width: 100%;
}

.feedback-form-wrap {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px var(--shadow);
  border: 1px solid rgba(201,146,10,0.12);
}

.feedback-form-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* Star rating */
.star-rating { display: flex; gap: 0.3rem; margin-top: 0.25rem; }
.star {
  background: none; border: none;
  font-size: 1.8rem;
  color: #ddd;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.15s, transform 0.15s;
}
.star.active, .star:hover { color: var(--gold); }
.star:hover { transform: scale(1.15); }

/* ---- HAMBURGER MENU ---- */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold-dark);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- RESPONSIVE ---- */

/* Tablet */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
  .gallery-grid.grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }
  section { padding: 4rem 1.5rem; }
}

/* Mobile */
@media (max-width: 640px) {
  /* Nav */
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(255, 251, 240, 0.98);
    backdrop-filter: blur(8px);
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 1rem 0 1.5rem;
    border-bottom: 1px solid rgba(201,146,10,0.2);
    box-shadow: 0 8px 24px var(--shadow);
    z-index: 150;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a {
    display: block;
    padding: 0.85rem 2rem;
    font-size: 1rem;
  }
  .nav-cta { margin: 0.5rem 2rem; border-radius: 25px; }
  .lang-toggle { margin-top: 0.5rem; }

  /* Hero */
  .hero { padding: 90px 1.25rem 3rem; }
  .hero-logo { width: 110px; height: 110px; }
  .hero h1 { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .hero p { font-size: 1rem; }
  .hero .btn { display: block; width: 100%; text-align: center; }
  .btn-outline { margin-left: 0; margin-top: 0.75rem; }

  /* Sections */
  section { padding: 3rem 1.25rem; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Gallery */
  .gallery-filters { gap: 0.5rem; }
  .filter-btn { font-size: 0.8rem; padding: 0.4rem 0.9rem; }

  /* On mobile, sub-filter becomes inline block instead of absolute dropdown */
  .filter-group { width: 100%; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
  .filter-sub {
    position: static;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: center;
    box-shadow: none;
    border: none;
    padding: 0;
    background: transparent;
    gap: 0.5rem;
  }
  .filter-sub .filter-btn { border-radius: 20px; }
  .filter-parent { display: none; }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .gallery-grid.grid-6 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .gallery-item img { aspect-ratio: 1/1; }
  .gallery-item-info { padding: 0.6rem 0.75rem; }
  .gallery-item-info h3 { font-size: 0.85rem; }

  /* Quote form */
  .quote-container { padding: 1.75rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .tier-row { grid-template-columns: 1fr 1fr; }
  .tier-label { grid-column: 1/-1; }
  .form-submit .btn { width: 100%; }

  /* Feedback */
  .feedback-form-wrap { padding: 1.75rem 1.25rem; }
  .feedback-card { padding: 1.5rem 1.25rem; }
  .carousel-arrow { width: 36px; height: 36px; font-size: 1.4rem; }

  /* Lightbox */
  .lightbox { padding: 1rem; }
  .lightbox img { max-width: 95vw; max-height: 80vh; }
}

/* Thank You Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.active {
  display: flex;
}
.modal-box {
  background: var(--white);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  animation: modalIn 0.3s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}
.modal-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--brown);
  margin-bottom: 0.75rem;
}
.modal-box p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
}
