/* ============================================
   AN EVENTFUL DAY — Stylesheet
   ============================================ */

:root {
  /* Brand palette */
  --teal: #3D5A64;
  --teal-dark: #2C434B;
  --teal-light: #577683;
  --cream: #F6F1EA;
  --cream-warm: #EDE4D3;
  --ink: #1F2A2F;
  --muted: #6B7A80;
  --line: #D9D1C4;
  --white: #FFFFFF;
  --accent: #B08968;

  /* Type */
  --font-display: 'Cormorant Garamond', 'Times New Roman', serif;
  --font-script: 'Dancing Script', cursive;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Scale */
  --wrap: 1280px;
  --wrap-narrow: 960px;

  /* Motion */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--teal);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 300; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 400; }
h3 { font-size: 1.4rem; font-weight: 500; }
h4 { font-size: 1rem; text-transform: uppercase; letter-spacing: 0.12em; font-family: var(--font-body); font-weight: 600; color: var(--teal); }

em { font-style: italic; color: var(--accent); font-weight: 300; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 1.25rem;
  display: inline-block;
  position: relative;
  padding: 0 2.5rem;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 2rem;
  height: 1px;
  background: var(--muted);
}
.eyebrow::before { left: 0; }
.eyebrow::after { right: 0; }
.eyebrow.light { color: rgba(255,255,255,0.7); }
.eyebrow.light::before,
.eyebrow.light::after { background: rgba(255,255,255,0.5); }

.lede {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 560px;
  margin: 1rem auto 0;
  line-height: 1.5;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--teal);
  color: var(--cream);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--cream);
}

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(246, 241, 234, 0.4);
}
.btn-outline-light:hover {
  background: var(--cream);
  color: var(--teal);
  border-color: var(--cream);
}

.text-link {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  border-bottom: 1px solid var(--teal);
  padding-bottom: 2px;
  transition: all 0.25s var(--ease);
}
.text-link:hover { color: var(--accent); border-color: var(--accent); }

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(246, 241, 234, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(217, 209, 196, 0.5);
  transition: all 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(246, 241, 234, 0.96);
  box-shadow: 0 2px 30px rgba(0,0,0,0.05);
}

.header-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-script {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.logo-sub {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--muted);
  margin-top: 2px;
  padding-left: 3px;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
}
.main-nav a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 500;
  color: var(--teal);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.25s var(--ease);
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: all 0.3s var(--ease);
}
.main-nav a:hover, .main-nav a.active { color: var(--accent); }
.main-nav a:hover::after, .main-nav a.active::after {
  width: 100%;
  left: 0;
}

.header-actions { display: flex; gap: 1rem; align-items: center; }

.quote-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--teal);
  color: var(--teal);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  transition: all 0.25s var(--ease);
  border-radius: 999px;
}
.quote-link:hover {
  background: var(--teal);
  color: var(--cream);
}
.quote-count {
  background: var(--accent);
  color: var(--white);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 28px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  padding: 4px 0;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  background: var(--teal);
  transition: all 0.3s var(--ease);
}

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  padding: 7rem 2rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(44,67,75,0.65) 0%, rgba(61,90,100,0.55) 100%),
    radial-gradient(ellipse at 30% 20%, rgba(176,137,104,0.15) 0%, transparent 60%),
    linear-gradient(180deg, #3D5A64 0%, #2C434B 100%);
  z-index: 0;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.08), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(176,137,104,0.12), transparent 40%);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.25'/%3E%3C/svg%3E");
  opacity: 0.3;
  mix-blend-mode: overlay;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  text-align: center;
  animation: fadeUp 1.2s var(--ease);
}
.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.75rem;
  color: rgba(246, 241, 234, 0.75);
  margin-bottom: 2rem;
  font-weight: 500;
}
.hero-title {
  font-family: var(--font-display);
  color: var(--white);
  font-weight: 200;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  line-height: 1;
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.hero-title em {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--cream-warm);
  font-weight: 300;
}
.hero-lead {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 300;
  max-width: 620px;
  margin: 0 auto 3rem;
  color: rgba(246, 241, 234, 0.92);
  line-height: 1.6;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   PROMISE STRIP
   ============================================ */

.promise {
  background: var(--white);
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--line);
}
.promise-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
.promise-item {
  text-align: left;
}
.promise-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-style: italic;
  color: var(--accent);
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 300;
}
.promise-item h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.promise-item p {
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* ============================================
   CATEGORIES
   ============================================ */

.categories {
  padding: 7rem 2rem 6rem;
  max-width: var(--wrap);
  margin: 0 auto;
}
.section-head {
  text-align: center;
  margin-bottom: 4rem;
}
.section-foot {
  text-align: center;
  margin-top: 4rem;
}

/* Note: .cat-card and .cat-img base styles, plus per-category gradients, are now defined under "CATEGORY CAROUSEL" section. */

.cat-body {
  padding: 1.5rem;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}
.cat-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--teal);
  margin-bottom: 0.15rem;
  font-weight: 500;
}
.cat-body p {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cat-arrow {
  font-size: 1.5rem;
  color: var(--teal);
  transition: transform 0.3s var(--ease);
}
.cat-card:hover .cat-arrow { transform: translateX(6px); color: var(--accent); }


/* ============================================
   ABOUT STRIP
   ============================================ */

.about-strip {
  background: var(--teal);
  color: var(--cream);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}
.about-strip::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(246, 241, 234, 0.08);
  border-radius: 50%;
}
.about-strip::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(246, 241, 234, 0.05);
  border-radius: 50%;
}
.about-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.about-title {
  color: var(--cream);
  font-weight: 300;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 2rem;
  line-height: 1.2;
}
.about-title em {
  color: var(--cream-warm);
  font-style: italic;
}
.about-body {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(246, 241, 234, 0.9);
  font-weight: 300;
  margin-bottom: 2.5rem;
}

/* ============================================
   REVIEWS
   ============================================ */

.reviews {
  padding: 7rem 2rem 6rem;
  max-width: var(--wrap);
  margin: 0 auto;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.review-card {
  background: var(--white);
  padding: 2.5rem;
  border: 1px solid var(--line);
  transition: all 0.3s var(--ease);
}
.review-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(44,67,75,0.08);
}
.stars {
  color: #D4A574;
  letter-spacing: 0.15em;
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
}
.review-card p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-weight: 400;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
}
.review-author strong {
  display: block;
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
}
.review-author small {
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================
   INSTAGRAM INVITE
   ============================================ */

.insta {
  background: var(--cream-warm);
  padding: 6rem 2rem;
  text-align: center;
}
.insta-inner {
  max-width: 600px;
  margin: 0 auto;
}
.insta h2 {
  margin-bottom: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--teal-dark);
  color: var(--cream);
  padding: 5rem 2rem 2rem;
}
.footer-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(246, 241, 234, 0.12);
}
.footer-col .logo-script {
  color: var(--cream);
  font-size: 2.5rem;
  display: block;
  margin-bottom: 0.5rem;
}
.footer-tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(246, 241, 234, 0.6);
  margin-bottom: 2rem;
}
.footer-col h4 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1.5rem;
  font-weight: 600;
}
.footer-col a {
  display: block;
  color: rgba(246, 241, 234, 0.75);
  padding: 0.35rem 0;
  font-size: 0.92rem;
  transition: color 0.2s var(--ease);
}
.footer-col a:hover { color: var(--cream-warm); }
.socials {
  display: flex;
  gap: 1.5rem;
}
.socials a {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  display: inline-block;
  padding: 0;
}
.footer-area {
  color: rgba(246, 241, 234, 0.5);
  font-size: 0.82rem;
  margin-top: 1rem;
  font-style: italic;
}
.footer-bottom {
  max-width: var(--wrap);
  margin: 2rem auto 0;
  text-align: center;
  color: rgba(246, 241, 234, 0.4);
  font-size: 0.8rem;
}

/* ============================================
   PRODUCTS PAGE
   ============================================ */

.page-header {
  padding: 10rem 2rem 4rem;
  text-align: center;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-header h1 {
  font-weight: 300;
  color: var(--teal);
  margin-bottom: 1rem;
}
.page-header .lede { margin: 0 auto; }

.category-nav {
  position: sticky;
  top: 80px;
  background: rgba(246, 241, 234, 0.95);
  backdrop-filter: blur(10px);
  z-index: 50;
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
}
.category-nav-inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 2rem;
  overflow-x: auto;
  scrollbar-width: none;
}
.category-nav-inner::-webkit-scrollbar { display: none; }
.category-nav a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--muted);
  white-space: nowrap;
  padding: 0.5rem 0;
  transition: color 0.2s var(--ease);
  border-bottom: 1px solid transparent;
}
.category-nav a:hover, .category-nav a.active {
  color: var(--teal);
  border-bottom-color: var(--accent);
}

.category-section {
  padding: 5rem 2rem 3rem;
  max-width: var(--wrap);
  margin: 0 auto;
  scroll-margin-top: 140px;
}
.category-section h2 {
  font-weight: 300;
  margin-bottom: 0.5rem;
  color: var(--teal);
}
.category-section .cat-lede {
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 3rem;
  font-style: italic;
  font-weight: 300;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: all 0.3s var(--ease);
  cursor: pointer;
  overflow: hidden;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(44,67,75,0.12);
  border-color: var(--teal-light);
}
.product-image {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-warm);
  overflow: hidden;
  position: relative;
}
.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 70%, rgba(0,0,0,0.05) 100%);
}
.product-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-category {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.product-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1rem;
  flex: 1;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.product-price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--teal);
  font-weight: 500;
}
.product-price small {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-left: 4px;
}
.btn-add {
  background: var(--teal);
  color: var(--cream);
  border: none;
  padding: 0.6rem 1.25rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  font-family: var(--font-body);
}
.btn-add:hover {
  background: var(--accent);
}

/* ============================================
   MODAL (product detail / quote form)
   ============================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 42, 47, 0.7);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow-y: auto;
}
.modal-overlay.open { display: flex; animation: fadeIn 0.25s var(--ease); }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: var(--cream);
  max-width: 820px;
  width: 100%;
  position: relative;
  animation: slideUp 0.4s var(--ease);
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  margin: auto;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--cream);
  border: 1px solid var(--line);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  color: var(--teal);
  z-index: 10;
  transition: all 0.2s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: var(--teal); color: var(--cream); }

.modal-inner {
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 0;
}
.modal-image {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--cream-warm);
  min-height: 320px;
  max-height: 520px;
  align-self: stretch;
}
.modal-body {
  padding: 2.25rem 2rem;
}
.modal-body .product-category {
  margin-bottom: 1rem;
}
.modal-body h2 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--teal);
  line-height: 1.15;
}
.modal-body .modal-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: 2rem;
  white-space: pre-line;
}

.option-group {
  margin-bottom: 1.5rem;
}
.option-group label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.option-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.option-pill {
  padding: 0.6rem 1.1rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  font-family: var(--font-body);
  font-weight: 500;
}
.option-pill:hover { border-color: var(--teal); }
.option-pill.selected {
  background: var(--teal);
  color: var(--cream);
  border-color: var(--teal);
}

.addon-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.addon-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.addon-row:hover { border-color: var(--teal); }
.addon-row input { accent-color: var(--teal); }
.addon-row .addon-label { flex: 1; font-size: 0.9rem; }
.addon-row .addon-price { font-family: var(--font-display); color: var(--teal); font-weight: 500; }

.qty-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.qty-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--teal);
  transition: all 0.2s var(--ease);
}
.qty-btn:hover { background: var(--teal); color: var(--cream); }
.qty-val {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--teal);
  font-weight: 500;
  min-width: 30px;
  text-align: center;
}

.modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  margin-top: 1.5rem;
}
.modal-total {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--teal);
  font-weight: 500;
}
.modal-total small {
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  display: block;
  font-weight: 400;
  margin-bottom: 2px;
}

/* ============================================
   QUOTE PAGE
   ============================================ */

.quote-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}
.quote-empty {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--white);
  border: 1px solid var(--line);
}
.quote-empty p { color: var(--muted); margin-bottom: 2rem; font-size: 1.1rem; }

.quote-item {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 1.5rem;
  padding: 1.5rem;
  border-bottom: 1px solid var(--line);
  background: var(--white);
  align-items: center;
}
.quote-item-img {
  width: 100px;
  height: 100px;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-warm);
}
.quote-item-body h4 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--teal);
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 0.25rem;
}
.quote-item-body .qi-options {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.25rem;
  line-height: 1.5;
}
.quote-item-price {
  text-align: right;
}
.quote-item-price .price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--teal);
  font-weight: 500;
  display: block;
}
.quote-item-price .remove {
  margin-top: 0.5rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-body);
  transition: color 0.2s var(--ease);
}
.quote-item-price .remove:hover { color: #B84038; }

.quote-summary {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem;
  margin-top: 2rem;
}
.quote-summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.quote-summary-row.total {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--teal);
  font-weight: 500;
  margin-top: 1rem;
}

.quote-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2rem;
  margin-top: 2rem;
}
.quote-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--teal);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0.5rem;
}
.quote-form p { color: var(--muted); margin-bottom: 1.5rem; font-size: 0.95rem; }
.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-row.full { grid-template-columns: 1fr; }
.form-field label {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s var(--ease);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--teal);
}
.form-field textarea { min-height: 100px; resize: vertical; }

.submit-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.5rem;
}
.btn-whatsapp {
  background: #25D366;
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  transition: all 0.25s var(--ease);
}
.btn-whatsapp:hover { background: #1EA855; transform: translateY(-2px); }
.btn-email {
  background: var(--teal);
  color: var(--cream);
  border: none;
  padding: 1rem 1.5rem;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  transition: all 0.25s var(--ease);
}
.btn-email:hover { background: var(--teal-dark); transform: translateY(-2px); }

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 980px) {
  .promise-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .modal-inner { grid-template-columns: 1fr; }
  .modal-image { min-height: 240px; max-height: 320px; }
}

@media (max-width: 720px) {
  .header-inner { grid-template-columns: auto auto; gap: 1rem; padding: 1rem 1.25rem; }
  .logo-script { font-size: 1.5rem; }
  .logo-sub { font-size: 0.55rem; }
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav a { font-size: 1.1rem; }
  .menu-toggle { display: flex; }
  .quote-link .quote-label { display: none; }
  .quote-link { padding: 0.5rem; gap: 0.3rem; }
  .hero { padding-top: 6rem; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .socials { justify-content: center; }
  .promise { padding: 3rem 1.5rem; }
  .categories { padding: 4rem 1.25rem; }
  .about-strip, .reviews, .insta { padding: 4rem 1.5rem; }
  .quote-item { grid-template-columns: 80px 1fr; }
  .quote-item-price { grid-column: 1 / -1; display: flex; justify-content: space-between; align-items: center; text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  .submit-buttons { grid-template-columns: 1fr; }
  .modal-body { padding: 2rem 1.5rem; }
  .modal-overlay { padding: 1rem; padding-top: 5rem; }
}

/* ============================================
   HERO SLIDESHOW (overrides hero-bg)
   ============================================ */

.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  background-color: var(--teal-dark);
}
.hero-slide.active { opacity: 1; }

/* Placeholder gradients per slide (will be replaced when user adds images) */
.hero-slide[data-slide="1"] { background-image: linear-gradient(135deg, #2C434B 0%, #3D5A64 50%, #577683 100%); }
.hero-slide[data-slide="2"] { background-image: linear-gradient(135deg, #3D5A64 0%, #B08968 100%); }
.hero-slide[data-slide="3"] { background-image: linear-gradient(135deg, #2C434B 0%, #577683 50%, #B08968 100%); }
.hero-slide[data-slide="4"] { background-image: linear-gradient(135deg, #577683 0%, #2C434B 100%); }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(31,42,47,0.35) 0%, rgba(31,42,47,0.55) 70%, rgba(31,42,47,0.7) 100%);
}

.hero-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 0.75rem;
}
.hero-dots button {
  width: 30px;
  height: 2px;
  border: none;
  background: rgba(246, 241, 234, 0.4);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  padding: 0;
}
.hero-dots button.active {
  background: var(--cream);
  width: 50px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */

.how-it-works {
  padding: 7rem 2rem 6rem;
  max-width: var(--wrap);
  margin: 0 auto;
}
.hiw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}
.hiw-grid::before {
  content: '';
  position: absolute;
  top: 35px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--line) 20%, var(--line) 80%, transparent 100%);
  z-index: 0;
}
.hiw-step {
  text-align: center;
  padding: 0 1rem;
  position: relative;
  z-index: 1;
}
.hiw-num {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem;
  background: var(--cream);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 400;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.hiw-step h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--teal);
  margin-bottom: 0.75rem;
  text-transform: none;
  letter-spacing: 0;
}
.hiw-step p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 320px;
  margin: 0 auto;
}

/* ============================================
   CATEGORY CAROUSEL
   ============================================ */

.carousel-wrap {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 60px;
}
.carousel-viewport {
  overflow: hidden;
  width: 100%;
}
.carousel-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s var(--ease);
  will-change: transform;
}
.carousel-track .cat-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  background: var(--white);
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.carousel-track .cat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(44,67,75,0.15); }

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--teal);
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 5;
  transition: all 0.25s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  line-height: 1;
}
.carousel-nav:hover:not(:disabled) {
  background: var(--teal);
  color: var(--cream);
  border-color: var(--teal);
}
.carousel-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.carousel-nav.prev { left: 0; }
.carousel-nav.next { right: 0; }

/* Category placeholder colour blocks */
.cat-img {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-color: var(--teal-light);
  transition: transform 0.6s var(--ease);
}
.cat-card:hover .cat-img { transform: scale(1.05); }
.cat-1 { background-image: linear-gradient(135deg, #3D5A64 0%, #577683 100%); }
.cat-2 { background-image: linear-gradient(135deg, #B08968 0%, #D4A574 100%); }
.cat-3 { background-image: linear-gradient(135deg, #2C434B 0%, #3D5A64 100%); }
.cat-4 { background-image: linear-gradient(135deg, #577683 0%, #7A95A1 100%); }
.cat-5 { background-image: linear-gradient(135deg, #EDE4D3 0%, #D4C4A8 100%); }
.cat-6 { background-image: linear-gradient(135deg, #6B7A80 0%, #8B9AA0 100%); }
.cat-7 { background-image: linear-gradient(135deg, #B08968 0%, #8B6B4A 100%); }
.cat-8 { background-image: linear-gradient(135deg, #D4A574 0%, #B08968 100%); }
.cat-9 { background-image: linear-gradient(135deg, #3D5A64 0%, #2C434B 50%, #577683 100%); }

/* ============================================
   SOCIAL GRID
   ============================================ */

.social-feed {
  padding: 6rem 2rem;
  max-width: var(--wrap);
  margin: 0 auto;
}
.social-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin-top: 3rem;
}
.social-tile {
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-color: var(--cream-warm);
  position: relative;
  overflow: hidden;
  transition: all 0.3s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-tile:hover { transform: scale(1.02); }
.social-tile.placeholder {
  background: linear-gradient(135deg, var(--cream-warm) 0%, #D4C4A8 100%);
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 500;
}
.social-tile span {
  display: block;
}

.social-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

/* ============================================
   FLOATING WHATSAPP BUTTON
   ============================================ */

.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
  z-index: 90;
  transition: all 0.25s var(--ease);
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  background: #1EA855;
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.45);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35); }
  50% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 0 0 12px rgba(37, 211, 102, 0); }
}

/* ============================================
   RESPONSIVE — overrides
   ============================================ */

@media (max-width: 980px) {
  .hiw-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hiw-grid::before { display: none; }
  .carousel-track .cat-card { flex: 0 0 calc((100% - 1.5rem) / 2); }
  .social-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 640px) {
  .carousel-wrap { padding: 0 50px; }
  .carousel-track .cat-card { flex: 0 0 100%; }
  .carousel-nav { width: 40px; height: 40px; }
  .hero-dots { bottom: 1.25rem; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .whatsapp-float { width: 52px; height: 52px; bottom: 1rem; right: 1rem; }
}
