:root {
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --radius-1: 4px;
  --radius-2: 8px;
  --radius-3: 12px;
  --radius-4: 16px;
  --radius-pill: 999px;
  --text-sm: .82rem;
  --text-base: 1rem;
  --text-lg: 1.18rem;
  --text-xl: clamp(1.8rem, 4vw, 3.2rem);
  --text-hero: clamp(2.5rem, 6.4vw, 5.2rem);
  --ink: #251b25;
  --muted: #70666f;
  --paper: #fffaf6;
  --panel: #fff;
  --line: #eadfe3;
  --rose: #c83f68;
  --rose-dark: #9e2f50;
  --rose-soft: #fce8ee;
  --gold: #b7791f;
  --gold-soft: #fff3d7;
  --shadow-sm: 0 4px 16px rgba(66, 35, 49, .08);
  --shadow-lg: 0 20px 48px rgba(66, 35, 49, .14);
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  font-size: var(--text-base);
  font-weight: 400;
}
body, button, input, select, textarea { font-family: Inter, Arial, sans-serif; }
h1, h2, h3 {
  margin-top: 0;
  font-family: "DM Serif Display", Georgia, serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.015em;
}
h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-xl); }
h3 { font-size: var(--text-lg); }
p { margin-top: 0; line-height: 1.65; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, select { cursor: pointer; }

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 250, 246, .96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}
.utility-row, .header-main, .occasion-nav {
  width: min(var(--max), calc(100% - var(--space-6)));
  margin: auto;
}
.utility-row {
  display: flex;
  justify-content: flex-end;
  gap: var(--space-5);
  padding-block: var(--space-2);
  color: var(--muted);
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--line);
}
.utility-row a:hover, .occasion-nav a:hover { color: var(--rose); }
.header-main {
  display: grid;
  grid-template-columns: minmax(180px, 230px) minmax(280px, 1fr) auto auto;
  gap: var(--space-4);
  align-items: center;
  padding-block: var(--space-3);
}
.brand-logo { width: 220px; height: auto; }
.search {
  display: flex;
  min-width: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--panel);
  overflow: hidden;
}
.search input {
  min-width: 0;
  flex: 1;
  padding: var(--space-3) var(--space-4);
  border: 0;
  background: transparent;
  font: inherit;
}
.search button {
  border: 0;
  padding-inline: var(--space-5);
  color: #fff;
  background: var(--rose);
}
.city-picker {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  width: max-content;
  padding: var(--space-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--panel);
  color: var(--muted);
  font-size: var(--text-sm);
}
.city-picker select { border: 0; background: transparent; color: var(--ink); }
.primary-cta, .button, .card-action, .submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: var(--radius-pill);
  padding: var(--space-3) var(--space-5);
  color: #fff;
  background: var(--rose);
  font-weight: 500;
  transition: background .2s ease, transform .2s ease;
}
.primary-cta:hover, .button:hover, .card-action:hover, .submit-button:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
}
.enquiry-count {
  display: none;
  min-width: 22px;
  margin-left: var(--space-2);
  padding: var(--space-1) var(--space-2);
  border-radius: var(--radius-pill);
  color: var(--rose);
  background: #fff;
  font-size: var(--text-sm);
  text-align: center;
}
.enquiry-count.visible { display: inline-block; }
.occasion-nav {
  position: relative;
  display: flex;
  justify-content: center;
  gap: var(--space-6);
  overflow-x: auto;
  padding-block: var(--space-3);
  scrollbar-width: none;
}
.occasion-nav::-webkit-scrollbar { display: none; }
.occasion-nav a {
  flex: 0 0 auto;
  padding-bottom: var(--space-2);
  border-bottom: 2px solid transparent;
  color: var(--muted);
  font-size: var(--text-sm);
  font-weight: 500;
}
.occasion-nav a.active { color: var(--rose); border-bottom-color: var(--rose); }
.mobile-tools, .menu-toggle, .mobile-search-toggle { display: none; }

.hero {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: var(--space-7);
  width: min(var(--max), calc(100% - var(--space-6)));
  margin: auto;
  padding-block: var(--space-7);
}
.hero h1 { margin-bottom: var(--space-5); }
.hero-copy > p:not(.eyebrow) { max-width: 650px; color: var(--muted); font-size: var(--text-lg); }
.eyebrow {
  margin-bottom: var(--space-3);
  color: var(--rose);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-5); }
.button.secondary { color: var(--rose); background: var(--panel); border: 1px solid var(--rose); }
.hero-media img {
  width: 100%;
  aspect-ratio: 1.15;
  object-fit: cover;
  border-radius: var(--radius-4);
  box-shadow: var(--shadow-lg);
}

.section {
  width: min(var(--max), calc(100% - var(--space-6)));
  margin: auto;
  padding-block: var(--space-8);
}
.section.compact { padding-top: var(--space-4); }
.section-head { margin-bottom: var(--space-6); }
.section-head.row { display: flex; justify-content: space-between; align-items: end; gap: var(--space-5); }
.section-head h2 { margin-bottom: 0; }
.text-link { color: var(--rose); font-weight: 500; }
.occasion-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-4);
}
.occasion-grid a, .product-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-3);
  background: var(--panel);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.occasion-grid a { transition: transform .2s ease, box-shadow .2s ease; }
.occasion-grid a:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.occasion-grid img { width: 100%; aspect-ratio: 1.2; object-fit: cover; }
.occasion-grid span { display: block; padding: var(--space-4); font-weight: 500; }

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.product-card {
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card > a img { width: 100%; aspect-ratio: 1.35; object-fit: cover; }
.card-body { display: flex; flex: 1; flex-direction: column; gap: var(--space-3); padding: var(--space-5); }
.card-body h3 { margin: 0; }
.card-body p { margin: 0; color: var(--muted); }
.card-body .price { margin-top: auto; padding-top: var(--space-3); font-weight: 700; font-size: var(--text-lg); }
.badge {
  align-self: flex-start;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-pill);
  color: var(--gold);
  background: var(--gold-soft);
  font-size: var(--text-sm);
  font-weight: 500;
}
.card-action { margin-top: var(--space-2); }

.page-hero {
  padding: var(--space-8) max(var(--space-4), calc((100% - var(--max)) / 2));
  color: #fff;
  background: linear-gradient(115deg, #4d2034, var(--rose-dark));
}
.page-hero h1 { max-width: 760px; margin-bottom: var(--space-4); }
.page-hero p { max-width: 700px; margin: 0; color: #f8dfe7; font-size: var(--text-lg); }
.page-hero .eyebrow { color: #ffd4df; }

.filters { padding-top: var(--space-6); padding-bottom: 0; }
.filter-row { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-bottom: var(--space-4); }
.filter-label { width: 100%; color: var(--muted); font-size: var(--text-sm); }
.filter-chip {
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: var(--space-2) var(--space-4);
  background: var(--panel);
  color: var(--ink);
}
.filter-chip.active { border-color: var(--rose); color: #fff; background: var(--rose); }
.filter-summary { display: flex; justify-content: space-between; align-items: center; padding-top: var(--space-3); border-top: 1px solid var(--line); }
.clear-filters { display: none; border: 0; color: var(--rose); background: transparent; }
.clear-filters.visible { display: inline; }
.empty-state { grid-column: 1 / -1; padding: var(--space-8); border: 1px dashed var(--line); border-radius: var(--radius-3); text-align: center; }

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--ink);
}
.trust-strip div { padding: var(--space-6); color: #fff; text-align: center; }
.trust-strip strong { display: block; margin-bottom: var(--space-2); font-size: var(--text-lg); }
.trust-strip span { color: #d8ced6; }

.booking-section {
  display: grid;
  grid-template-columns: .75fr 1fr;
  gap: var(--space-8);
}
.booking-copy { color: var(--muted); }
.enquiry-list { margin-top: var(--space-5); }
.enquiry-item { display: grid; grid-template-columns: 1fr auto auto; gap: var(--space-3); align-items: center; padding-block: var(--space-3); border-bottom: 1px solid var(--line); }
.remove-item { border: 0; color: var(--rose); background: transparent; }
.enquiry-total { margin-top: var(--space-4); font-weight: 700; }
.booking-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  padding: var(--space-5);
  border: 1px solid var(--line);
  border-radius: var(--radius-3);
  background: var(--panel);
  box-shadow: var(--shadow-lg);
}
.booking-form label { display: grid; gap: var(--space-2); color: var(--muted); font-size: var(--text-sm); }
.booking-form input, .booking-form select, .booking-form textarea {
  width: 100%;
  padding: var(--space-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-2);
  background: var(--paper);
  font: inherit;
}
.booking-form textarea { resize: vertical; }
.booking-form .full, .booking-form button, .form-status { grid-column: 1 / -1; }
.submit-button { min-height: 48px; }
.form-status { min-height: 1.4em; color: var(--rose); }

.package-detail {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--space-7);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(150px, 25%);
  align-items: center;
  gap: clamp(var(--space-5), 5vw, var(--space-7));
  width: min(var(--max), calc(100% - var(--space-7)));
  margin: 0 auto;
  padding-block: clamp(var(--space-7), 9vw, calc(var(--space-8) * 1.25));
}
.about-copy { max-width: 650px; }
.about-copy h1 { max-width: 680px; }
.about-copy > p:not(.eyebrow) { max-width: 650px; margin-bottom: var(--space-4); color: var(--muted); font-size: var(--text-lg); line-height: 1.7; }
.about-highlights { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); max-width: 690px; margin: var(--space-5) 0; }
.about-highlights div { min-height: 112px; padding: var(--space-4); border: 1px solid var(--line); border-radius: var(--radius-3); background: linear-gradient(135deg, var(--panel), var(--rose-soft)); box-shadow: var(--shadow-sm); }
.about-highlights div:nth-child(2) { background: linear-gradient(135deg, var(--panel), var(--gold-soft)); }
.about-highlights strong { display: block; margin-bottom: var(--space-2); color: var(--rose-dark); font-family: "DM Serif Display", Georgia, serif; font-size: var(--text-lg); line-height: 1.1; }
.about-highlights span { color: var(--muted); font-size: var(--text-sm); line-height: 1.4; }
.founder-portrait { position: relative; margin: 0; overflow: hidden; border-radius: var(--radius-4); background: var(--panel); box-shadow: var(--shadow-lg); }
.founder-portrait img { display: block; width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: center 20%; }
.founder-portrait figcaption { display: grid; gap: 3px; padding: var(--space-3); background: var(--panel); }
.founder-portrait figcaption strong { font-size: var(--text-base); }
.founder-portrait figcaption span { color: var(--muted); font-size: var(--text-sm); }
.about-story { display: grid; grid-template-columns: .9fr 1fr; gap: var(--space-8); align-items: start; border-top: 1px solid var(--line); }
.about-story h2 { max-width: 610px; }
.about-story-copy { max-width: 600px; color: var(--muted); font-size: var(--text-lg); line-height: 1.7; }
.about-story-copy > p { margin-top: 0; }
.founder-credential { margin-top: var(--space-5); padding: var(--space-5); border: 1px solid var(--line); border-radius: var(--radius-3); background: var(--panel); box-shadow: var(--shadow-sm); }
.founder-credential span { display: block; margin-bottom: var(--space-2); color: var(--rose); font-size: var(--text-sm); font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.founder-credential strong { display: block; color: var(--ink); font-size: var(--text-lg); }
.founder-credential p { margin: var(--space-2) 0 0; }
.seo-content { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: var(--space-7); border-top: 1px solid var(--line); }
.seo-content > div > p:not(.eyebrow) { max-width: 700px; color: var(--muted); }
.seo-faq { padding: var(--space-5); border: 1px solid var(--line); border-radius: var(--radius-3); background: var(--panel); box-shadow: var(--shadow-sm); }
.seo-faq h3 { margin-bottom: var(--space-3); }
.seo-faq details { padding-block: var(--space-3); border-top: 1px solid var(--line); }
.seo-faq summary { cursor: pointer; font-weight: 700; }
.seo-faq details p { margin: var(--space-3) 0 0; color: var(--muted); }
.package-gallery-main { width: 100%; aspect-ratio: 1.2; object-fit: cover; border-radius: var(--radius-4); box-shadow: var(--shadow-lg); }
.thumbnail-strip { display: flex; gap: var(--space-3); margin-top: var(--space-3); }
.thumbnail-strip button { padding: 0; border: 2px solid transparent; border-radius: var(--radius-2); background: none; overflow: hidden; }
.thumbnail-strip button.active { border-color: var(--rose); }
.thumbnail-strip img { width: 80px; height: 64px; object-fit: cover; }
.package-info .price { font-size: var(--text-xl); font-weight: 700; }
.from-note, .practical-details { color: var(--muted); }
.detail-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-block: var(--space-5); }
.whatsapp-action { color: #176d43; border: 1px solid #176d43; background: #fff; }
.detail-block { padding-block: var(--space-5); border-top: 1px solid var(--line); }

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-7);
  padding: var(--space-7) max(var(--space-4), calc((100% - var(--max)) / 2));
  border-top: 1px solid var(--line);
  background: var(--panel);
}
.footer img { width: 240px; }
.footer p { max-width: 560px; color: var(--muted); }
.footer-links { display: grid; gap: var(--space-3); }
.footer-links a { color: var(--rose); }
.footer address { max-width: 360px; color: var(--muted); font-style: normal; line-height: 1.6; }
.mobile-contact-bar { display: none; }

@media (max-width: 980px) {
  .header-main { grid-template-columns: 190px 1fr auto; }
  .city-picker { display: none; }
  .catalogue-grid { grid-template-columns: repeat(2, 1fr); }
  .occasion-grid { grid-template-columns: repeat(3, 1fr); }
  .hero, .package-detail, .booking-section, .about-hero, .about-story, .seo-content { grid-template-columns: 1fr; }
  .founder-portrait { width: min(25%, 190px); }
}

@media (max-width: 700px) {
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .site-header { position: sticky; }
  .utility-row, .search, .city-picker, .header-main > .primary-cta { display: none; }
  .header-main {
    display: flex;
    justify-content: space-between;
    width: calc(100% - var(--space-5));
    padding-block: var(--space-2);
  }
  .brand-logo { width: 164px; }
  .mobile-tools { display: flex; gap: var(--space-2); }
  .menu-toggle, .mobile-search-toggle {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius-pill);
    background: var(--panel);
  }
  .site-header.search-open .search {
    display: flex;
    min-width: 0;
    width: calc(100% - var(--space-5));
    margin: 0 auto var(--space-3);
  }
  .site-header.menu-open .utility-row {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    width: calc(100% - var(--space-5));
    padding-block: var(--space-3);
  }
  .occasion-nav {
    justify-content: flex-start;
    width: 100%;
    gap: var(--space-5);
    padding-inline: var(--space-4);
    mask-image: linear-gradient(to right, #000 88%, transparent);
  }
  .hero { width: calc(100% - var(--space-5)); gap: var(--space-5); padding-block: var(--space-6); }
  .about-hero { width: calc(100% - var(--space-5)); gap: var(--space-6); padding-block: var(--space-7); }
  .about-highlights { grid-template-columns: 1fr; }
  .founder-portrait { width: min(40%, 180px); }
  .about-copy > p:not(.eyebrow), .about-story-copy { font-size: var(--text-base); }
  .hero h1 { font-size: 2.55rem; line-height: 1.08; letter-spacing: -.01em; }
  .hero-copy > p:not(.eyebrow) { font-size: var(--text-base); }
  .section { width: calc(100% - var(--space-5)); padding-block: var(--space-7); }
  .section.compact { padding-top: var(--space-3); }
  .occasion-grid { grid-template-columns: repeat(2, 1fr); }
  .catalogue-grid, .trust-strip, .booking-form, .footer { grid-template-columns: 1fr; }
  .section-head.row, .footer { align-items: start; }
  .package-detail { gap: var(--space-5); }
  .page-hero { padding-block: var(--space-7); }
  .page-hero h1 { font-size: 2.7rem; }
  .mobile-contact-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 200;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-3) calc(var(--space-2) + env(safe-area-inset-bottom));
    background: var(--panel);
    box-shadow: var(--shadow-lg);
  }
  .mobile-contact-bar a {
    display: grid;
    place-items: center;
    min-height: 48px;
    border-radius: var(--radius-pill);
    color: #fff;
    background: #176d43;
    font-weight: 500;
  }
  .mobile-contact-bar a:last-child { background: var(--rose); }
}

@media (max-width: 420px) {
  .occasion-grid { grid-template-columns: 1fr; }
  .enquiry-item { grid-template-columns: 1fr auto; }
  .enquiry-item .item-price { grid-column: 1; }
}
