:root {
  --cream: #f7f3ee;
  --cream-deep: #eee5dc;
  --paper: #fffdf9;
  --ink: #3e3732;
  --muted: #766b63;
  --taupe: #9a826f;
  --taupe-dark: #735f51;
  --rose: #d9c3bb;
  --gold: #b68b49;
  --dark: #1b1816;
  --line: rgba(62, 55, 50, 0.14);
  --shadow: 0 30px 80px rgba(68, 50, 38, 0.13);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Montserrat", Arial, sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  touch-action: pan-x pan-y;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--rose); color: var(--ink); }

.container {
  --bs-gutter-x: 3rem;
}
@media (min-width: 1200px) {
  .container { max-width: 1180px; }
}
.section { padding: 130px 0; }
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 1000;
  padding: 10px 14px; background: var(--dark); color: #fff;
  transform: translateY(-150%); transition: transform .2s;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100%;
  padding: 0;
  --bs-navbar-padding-y: 0;
  transition: background .35s ease, box-shadow .35s ease, backdrop-filter .35s ease;
}
.site-header.scrolled {
  background: rgba(247, 243, 238, .92);
  backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-wrap {
  position: relative;
  min-height: 90px;
}
.brand {
  z-index: 1060;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.brand-text {
  display: block;
  margin-right: -.24em;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .24em;
  white-space: nowrap;
}
.brand-logo { display: block; height: auto; color: var(--ink); }
.brand-logo-nav { width: clamp(160px, 17vw, 205px); }
.brand-story-logo { width: min(560px, 90vw); color: var(--ink); }
.brand-footer-logo { width: clamp(175px, 19vw, 225px); color: #f7f1eb; }
.brand-frame { fill: none; stroke: currentColor; stroke-width: 3.2; }
.brand-word { font-family: var(--serif); font-size: 126px; font-weight: 500; letter-spacing: 18px; fill: currentColor; }
.brand-sub { font-family: var(--sans); font-size: 25px; font-weight: 500; letter-spacing: 16px; fill: currentColor; }
.brand-flame { fill: currentColor; }
.nav-menu { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.nav-desktop {
  align-items: center;
  gap: 34px;
  width: calc(50% - 100px);
}
.nav-desktop-left { margin-right: auto; }
.nav-desktop-right { justify-content: flex-end; margin-left: auto; }
.nav-desktop > a,
.nav-dropdown-toggle {
  position: relative;
  padding: 10px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}
.nav-desktop > a:not(.nav-cta)::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 1px;
  margin: 0;
  border: 0;
  background: var(--taupe);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.nav-desktop > a:hover::after,
.nav-desktop > a:focus-visible::after,
.nav-dropdown-toggle[aria-expanded="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.nav-dropdown-toggle i { font-size: 11px; transition: transform .25s ease; }
.nav-dropdown-toggle[aria-expanded="true"] i { transform: rotate(180deg); }
@media (min-width: 992px) {
  .nav-dropdown:hover > .nav-dropdown-panel,
  .nav-dropdown:focus-within > .nav-dropdown-panel { display: block; }
  .nav-dropdown:hover .nav-dropdown-toggle::after,
  .nav-dropdown:focus-within .nav-dropdown-toggle::after {
    transform: scaleX(1);
    transform-origin: left;
  }
  .nav-dropdown:hover .nav-dropdown-toggle i,
  .nav-dropdown:focus-within .nav-dropdown-toggle i { transform: rotate(180deg); }
}
.nav-dropdown-panel {
  min-width: 230px;
  margin-top: 14px !important;
  padding: 14px;
  background: rgba(255,253,249,.98);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 22px 50px rgba(43,34,29,.12);
}
.nav-dropdown-panel .dropdown-item {
  padding: 11px 12px;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}
.nav-dropdown-panel .dropdown-item:hover,
.nav-dropdown-panel .dropdown-item:focus {
  color: var(--ink);
  background: var(--cream-deep);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 25px;
  color: var(--ink);
  border: 1px solid #7a7069;
  letter-spacing: .16em;
  white-space: nowrap;
}
.nav-cta:hover,
.nav-cta:focus-visible { color: var(--ink); background: transparent; }
.menu-toggle {
  z-index: 1060;
  width: 44px;
  height: 44px;
  padding: 8px 2px 8px 12px;
  border: 0;
  border-radius: 0;
  box-shadow: none !important;
}
.menu-toggle span {
  display: block;
  width: 27px;
  height: 1px;
  margin: 7px 0;
  margin-left: auto;
  background: #625950;
  transform-origin: center;
  transition: .25s ease;
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 991.98px) {
  .site-header {
    min-height: calc(92px + env(safe-area-inset-top));
  }
  .site-header.scrolled {
    backdrop-filter: none;
    box-shadow: none;
    border-bottom: 1px solid rgba(62,55,50,.08);
  }
  .nav-wrap {
    min-height: calc(92px + env(safe-area-inset-top));
    padding-top: env(safe-area-inset-top);
  }
  .brand { height: 44px; }
  .brand-text {
    margin-right: -.25em;
    font-size: 37px;
    letter-spacing: .25em;
    transform: translateY(3px);
  }
  .offcanvas.nav-mobile {
    --bs-offcanvas-width: auto;
    --bs-offcanvas-zindex: 1045;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    max-width: none;
    height: auto;
    min-height: 100%;
    max-height: none;
    margin: 0;
    border: 0;
    background:
      radial-gradient(circle at 75% 20%, rgba(217,195,187,.15), transparent 34%),
      #f7f3ee;
  }
  .nav-mobile-body {
    min-height: 0;
    padding: calc(92px + env(safe-area-inset-top)) 22px calc(34px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav-mobile-inner {
    width: min(100%, 640px);
    margin: 0 auto;
    border-top: 1px solid rgba(62,55,50,.12);
  }
  .nav-mobile-item,
  .nav-mobile-product-toggle {
    width: 100%;
    min-height: 72px;
    display: grid;
    grid-template-columns: 44px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 0 8px;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(62,55,50,.12);
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: .18em;
    text-align: left;
    text-transform: uppercase;
  }
  .nav-mobile-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: #9a826f;
    font-size: 18px;
  }
  .nav-mobile-chevron {
    padding-right: 4px;
    color: #81756c;
    font-size: 13px;
    transition: transform .28s ease;
  }
  .nav-mobile-product-toggle[aria-expanded="true"] .nav-mobile-chevron { transform: rotate(180deg); }
  .nav-mobile-submenu {
    padding: 8px 8px 8px 58px;
    background: rgba(238,229,220,.34);
    border-bottom: 1px solid rgba(62,55,50,.12);
  }
  .nav-mobile-submenu a {
    min-height: 59px;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 4px;
    color: #514943;
    border-bottom: 1px solid rgba(62,55,50,.10);
    font-size: 14px;
    letter-spacing: .17em;
    text-transform: uppercase;
  }
  .nav-mobile-submenu a:last-child { border-bottom: 0; }
  .nav-mobile-submenu a > span {
    width: 6px;
    height: 6px;
    flex: 0 0 6px;
    border-radius: 50%;
    background: #d6c6b8;
  }
  .nav-mobile-catalog {
    width: 100%;
    min-height: 64px;
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: var(--ink);
    background: rgba(255,253,249,.28);
    border: 1px solid #81756c;
    font-size: 15px;
    letter-spacing: .2em;
    text-transform: uppercase;
  }
  .nav-mobile-catalog i { color: #81756c; font-size: 18px; }
}

@media (max-width: 575.98px) {
  .container { --bs-gutter-x: 1.75rem; }
  .brand-text { font-size: 34px; }
  .nav-mobile-body { padding-inline: 16px; }
  .nav-mobile-item,
  .nav-mobile-product-toggle {
    min-height: 67px;
    grid-template-columns: 38px 1fr auto;
    gap: 11px;
    padding-inline: 5px;
    font-size: 14px;
  }
  .nav-mobile-submenu { padding-left: 49px; }
  .nav-mobile-submenu a { min-height: 55px; font-size: 13px; }
}

.hero { position: relative; min-height: 100svh; padding: 135px 0 70px; display: flex; align-items: center; overflow: hidden; }
.hero-grid { --bs-gutter-x: 5rem; }
.hero-copy { position: relative; z-index: 2; padding-bottom: 30px; }
.eyebrow { margin: 0 0 22px; color: var(--taupe-dark); text-transform: uppercase; letter-spacing: .28em; font-size: 11px; font-weight: 600; }
h1, h2, h3 { margin-top: 0; font-family: var(--serif); font-weight: 500; line-height: .98; }
h1 { max-width: 720px; margin-bottom: 28px; font-size: clamp(60px, 6.1vw, 100px); letter-spacing: -.035em; }
h2 { margin-bottom: 28px; font-size: clamp(48px, 5vw, 76px); letter-spacing: -.03em; }
h3 { font-size: 32px; }
.hero-lead { max-width: 590px; margin: 0 0 36px; color: var(--muted); font-family: var(--serif); font-size: 24px; line-height: 1.45; }
.hero-actions { display: flex; align-items: center; gap: 30px; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; padding: 14px 27px; border: 1px solid transparent; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; transition: transform .25s ease, background .25s ease, color .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: #fff; background: var(--ink); }
.button-primary:hover { background: var(--taupe-dark); }
.button-light { color: var(--ink); background: rgba(255,255,255,.88); }
.text-link { display: inline-flex; align-items: center; gap: 12px; padding-bottom: 4px; border-bottom: 1px solid rgba(62,55,50,.4); font-size: 12px; letter-spacing: .06em; }
.text-link span { transition: transform .25s ease; }
.text-link:hover span { transform: translateX(5px); }
.hero-notes { display: flex; flex-wrap: wrap; gap: 12px 25px; margin-top: 42px; color: var(--muted); font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.hero-notes span { display: inline-flex; align-items: center; gap: 9px; }
.hero-notes span::before { content: ""; width: 4px; height: 4px; border-radius: 50%; background: var(--gold); }
.hero-visual { position: relative; min-height: 670px; display: flex; align-items: center; justify-content: center; }
.hero-photo-wrap { position: relative; width: min(580px, 100%); aspect-ratio: 1; }
.hero-photo-wrap img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: center; box-shadow: var(--shadow); }
.floating-card { position: absolute; z-index: 3; right: -40px; bottom: 55px; width: 220px; padding: 24px; background: rgba(255,253,249,.93); backdrop-filter: blur(15px); box-shadow: 0 18px 50px rgba(43,34,29,.14); }
.floating-card span { display: block; color: var(--muted); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.floating-card strong { display: block; margin: 5px 0 8px; font-family: var(--serif); font-size: 32px; font-weight: 500; }
.floating-card .floating-label { color: var(--gold); }
.hero-vertical { position: absolute; right: -8px; top: 50%; color: var(--taupe); font-size: 9px; letter-spacing: .35em; transform: rotate(90deg) translateX(50%); transform-origin: right center; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(3px); pointer-events: none; }
.hero-glow-one { width: 500px; height: 500px; top: -200px; right: -120px; background: rgba(217,195,187,.33); }
.hero-glow-two { width: 320px; height: 320px; bottom: -170px; left: 15%; background: rgba(182,139,73,.10); }
.scroll-cue { position: absolute; left: 50%; bottom: 24px; display: inline-flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted); font-size: 9px; letter-spacing: .2em; text-transform: uppercase; transform: translateX(-50%); }
.scroll-cue span { width: 1px; height: 38px; background: linear-gradient(var(--taupe), transparent); }

.intro { background: var(--paper); }
.intro-content h2 { max-width: 820px; margin-bottom: 28px; }
.intro-content > p:not(.eyebrow) { max-width: 820px; margin: 0 0 20px; color: var(--muted); }
.intro-details { margin-top: 42px; }
.intro-detail { padding-top: 20px; border-top: 1px solid rgba(62, 55, 50, .35); }
.intro-detail h3 { margin-bottom: 10px; font-size: 25px; line-height: 1.1; }
.intro-detail p { margin: 0; color: var(--muted); font-size: 14px; }
.production-area { margin-top: 76px; padding-top: 76px; border-top: 1px solid var(--line); --bs-gutter-x: 4.5rem; }
.production-area-visual { overflow: hidden; }
.production-area-visual img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.production-area-copy h3 { margin-bottom: 20px; font-size: clamp(38px, 4vw, 55px); line-height: 1; }
.production-area-copy > p:last-child { margin: 0; color: var(--muted); }
.large-copy { margin-top: 0; color: var(--ink); font-family: var(--serif); font-size: 27px; line-height: 1.45; }

.products { background: var(--cream-deep); }
.section-top { margin-bottom: 60px; }
.section-top h2 { margin-bottom: 0; }
.section-top > div:last-child > p { max-width: 480px; margin: 0 0 12px auto; color: var(--muted); }
.product-grid { --bs-gutter-x: 20px; --bs-gutter-y: 20px; }
.product-card { position: relative; overflow: hidden; min-height: 420px; background: #cbbeb2; }
.product-card-large { min-height: 860px; }
.product-stack .product-card { min-height: 420px; }
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.product-card-large img { object-position: center; }
.product-card:nth-child(2) img { object-position: center; }
.product-card:hover img { transform: scale(1.035); }
.product-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 35%, rgba(27,24,22,.68) 100%); }
.product-copy { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 42px; color: #fff; }
.product-copy span { display: block; margin-bottom: 8px; font-size: 10px; letter-spacing: .25em; text-transform: uppercase; }
.product-copy h3 { margin-bottom: 10px; font-size: clamp(32px, 3vw, 48px); }
.product-copy p { max-width: 460px; margin: 0; color: rgba(255,255,255,.8); }
.collection-note { display: flex; align-items: center; justify-content: space-between; gap: 30px; margin-top: 40px; padding-top: 30px; border-top: 1px solid rgba(62,55,50,.18); }
.collection-note p { margin: 0; font-family: var(--serif); font-size: 25px; }

.ritual { background: var(--paper); }
.ritual-grid { --bs-gutter-x: 6.5rem; }
.ritual-photo { position: relative; height: 720px; }
.ritual-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; filter: saturate(.75) contrast(.97); }
.ritual-stamp { position: absolute; z-index: 3; right: -55px; bottom: 45px; width: 180px; height: 180px; display: grid; place-content: center; text-align: center; border-radius: 50%; background: var(--cream); box-shadow: var(--shadow); }
.ritual-stamp span { font-family: var(--serif); font-size: 30px; letter-spacing: .18em; }
.ritual-stamp small { display: block; max-width: 105px; margin-top: 8px; color: var(--taupe); font-size: 8px; letter-spacing: .18em; line-height: 1.6; }
.ritual-steps { margin: 45px 0 0; padding: 0; list-style: none; }
.ritual-steps li { display: grid; grid-template-columns: 56px 1fr; gap: 24px; padding: 25px 0; border-top: 1px solid var(--line); }
.ritual-steps li:last-child { border-bottom: 1px solid var(--line); }
.ritual-steps > li > span { color: var(--gold); font-family: var(--serif); font-size: 17px; }
.ritual-steps h3 { margin-bottom: 7px; font-size: 28px; }
.ritual-steps p { margin: 0; color: var(--muted); font-size: 14px; }

.brand-story { position: relative; min-height: 680px; display: grid; place-items: center; overflow: hidden; }
.brand-story-bg { position: absolute; inset: 0; background: linear-gradient(rgba(43,36,32,.16), rgba(43,36,32,.22)); transform: scale(1.02); }
.brand-story::after { content: ""; position: absolute; inset: 0; background: rgba(245,240,234,.64); backdrop-filter: blur(2px); }
.brand-story-inner { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; }
.brand-story-logo { width: min(540px, 88vw); }
.brand-story-inner p { max-width: 660px; margin: 25px auto 32px; color: var(--taupe-dark); font-family: var(--serif); font-size: 27px; }

.contact { background: var(--dark); color: #f5efe9; }
.contact-grid { --bs-gutter-x: 6rem; }
.contact .eyebrow { color: #c7ab92; }
.contact-copy h2 { max-width: 650px; }
.contact-copy > p:not(.eyebrow):not(.contact-note) { max-width: 560px; color: rgba(255,255,255,.62); }
.contact-links { margin-top: 50px; border-top: 1px solid rgba(255,255,255,.14); }
.contact-links a { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.14); }
.contact-links span { color: rgba(255,255,255,.5); font-size: 10px; letter-spacing: .2em; text-transform: uppercase; }
.contact-links strong { font-family: var(--serif); font-size: 22px; font-weight: 400; }
.contact-note { margin-top: 18px; color: rgba(255,255,255,.38); font-size: 11px; }
.contact-form { padding: 46px; background: #f4eee7; color: var(--ink); }

.contact-form label { display: block; margin-bottom: 20px; color: var(--taupe-dark); font-size: 9px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; margin-top: 9px; padding: 14px 2px; border: 0; border-bottom: 1px solid rgba(62,55,50,.24); border-radius: 0; outline: none; background: transparent; color: var(--ink); font-size: 14px; text-transform: none; letter-spacing: normal; }
.contact-form textarea { resize: vertical; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-bottom-color: var(--taupe-dark); }
.form-status { min-height: 24px; margin: 15px 0 0; color: var(--taupe-dark); font-size: 12px; }

.site-footer { padding: 50px 0; background: #100e0d; color: rgba(255,255,255,.62); }

.brand-footer { color: #f7f1eb; }
.footer-brand p { margin: 4px 0 0; font-family: var(--serif); font-size: 18px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 24px; font-size: 10px; letter-spacing: .15em; text-transform: uppercase; }
.copyright { margin: 0; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.1); font-size: 10px; letter-spacing: .08em; }

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 15px 45px rgba(35,25,19,.22);
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(35,25,19,.28); }
.whatsapp-float:focus-visible { outline: 3px solid rgba(37,211,102,.35); outline-offset: 4px; }
.whatsapp-float i { font-size: 29px; line-height: 1; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .12s; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }

.wax-feature { background: var(--paper); }
.wax-editorial { --bs-gutter-x: 4.25rem; }
.wax-editorial-visual { overflow: hidden; }
.wax-editorial-visual img { width: 100%; height: auto; }
.wax-editorial-copy h2 { max-width: 690px; margin-bottom: 26px; font-size: clamp(56px, 5.5vw, 82px); }
.wax-editorial-copy > p:not(.eyebrow) { max-width: 660px; margin: 0 0 22px; color: var(--muted); font-size: 17px; line-height: 1.8; }
.wax-editorial-copy .button { margin-top: 2px; }
.wax-uses-grid { margin-top: 88px; }
.wax-use-card { min-height: 260px; padding: 10px 30px 22px; border-left: 1px solid var(--line); text-align: center; }
.wax-use-card:first-child { border-left: 0; }
.wax-use-card i { width: 72px; height: 72px; display: grid; place-items: center; margin: 0 auto 24px; border-radius: 50%; background: var(--cream-deep); color: var(--ink); font-size: 24px; }
.wax-use-card h3 { margin-bottom: 14px; font-size: 27px; line-height: 1.1; }
.wax-use-card > span { display: block; width: 28px; height: 1px; margin: 0 auto 17px; background: var(--taupe); }
.wax-use-card p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.8; }
.wax-gallery { margin-top: 78px; }
.wax-gallery-item { margin: 0; }
.wax-gallery-image { overflow: hidden; }
.wax-gallery-image img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.wax-gallery-item figcaption { max-width: 560px; margin: 0 auto 24px; padding: 20px 2px 0; text-align: left; }
.wax-gallery-caption-copy { display: grid; gap: 5px; }
.wax-gallery-caption-copy strong { color: var(--ink); font-family: var(--serif); font-size: 20px; font-weight: 500; line-height: 1.15; }
.wax-gallery-caption-copy > span { color: var(--muted); font-size: 12px; line-height: 1.65; }

@media (max-width: 1050px) {
  .section { padding: 100px 0; }
  .hero-grid { --bs-gutter-x: 2.75rem; }
  .hero-visual { min-height: 570px; }
  .floating-card { right: -10px; }
  .production-area { --bs-gutter-x: 3rem; }
  .wax-editorial { --bs-gutter-x: 3rem; }
  .wax-use-card { padding-inline: 24px; }
  .ritual-grid { --bs-gutter-x: 4rem; }
  .ritual-stamp { right: -30px; }
  .contact-grid { --bs-gutter-x: 3.75rem; }
}

@media (max-width: 991.98px) {
  .hero { min-height: auto; padding: calc(150px + env(safe-area-inset-top)) 0 0; background-image: none; }
  .hero-glow { display: none; }
  .hero-grid { --bs-gutter-x: 0; row-gap: 54px; }
  .hero-copy { padding-bottom: 0; }
  .hero .eyebrow { max-width: 620px; margin-bottom: 28px; line-height: 1.75; }
  .hero h1 { max-width: 720px; font-size: clamp(55px, 10vw, 82px); line-height: .9; }
  .hero-lead { max-width: 650px; font-size: clamp(21px, 3.5vw, 27px); }
  .hero-visual { width: 100vw; min-height: 0; margin-left: calc(50% - 50vw); }
  .hero-photo-wrap { width: 100%; max-width: none; aspect-ratio: 1.22 / 1; }
  .hero-photo-wrap img { box-shadow: none; }
  .hero-vertical, .scroll-cue { display: none; }
  .section-top > div:last-child > p { margin-left: 0; }
  .product-card-large { min-height: 620px; }
  .product-stack .product-card { min-height: 430px; }
  .collection-note { align-items: flex-start; flex-direction: column; }
  .wax-editorial { --bs-gutter-x: 1.5rem; }
  .ritual-photo { height: 620px; max-width: 560px; }
  .ritual-stamp { right: 18px; bottom: 30px; }
  .brand-story { min-height: 560px; }
  .candle-preview-panel { position: relative; top: auto; min-height: 0; }
}

@media (max-width: 767.98px) {
  .wax-use-card { min-height: auto; padding: 32px 24px; border-left: 0; border-top: 1px solid var(--line); }
  .wax-use-card:first-child { border-top: 0; }
  .catalog-landing-copy { text-align: center; }
  .catalog-landing-copy .lead { margin-inline: auto; }
}

@media (max-width: 575.98px) {
  body { font-size: 15px; }
  .section { padding: 82px 0; }
  .brand-footer-logo { width: 188px; }
  h1 { font-size: clamp(52px, 17vw, 74px); }
  h2 { font-size: clamp(42px, 13vw, 60px); }
  .hero { padding-top: calc(137px + env(safe-area-inset-top)); }
  .hero-grid { row-gap: 46px; }
  .hero-lead { font-size: 21px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-actions .text-link, .hero-notes { display: none; }
  .hero-actions .button-primary { color: var(--ink); background: transparent; border-color: #81756c; }
  .hero-photo-wrap { aspect-ratio: .95 / 1; }
  .large-copy { font-size: 23px; }
  .intro-details { margin-top: 34px; }
  .production-area { margin-top: 54px; padding-top: 54px; }
  .production-area-copy { padding-top: 12px; }
  .wax-editorial-copy h2 { font-size: clamp(48px, 14vw, 64px); }
  .wax-uses-grid { margin-top: 62px; }
  .wax-gallery { margin-top: 56px; }
  .wax-gallery-item figcaption { margin-bottom: 20px; padding-top: 16px; }
  .wax-gallery-caption-copy strong { font-size: 19px; }
  .product-card-large { min-height: 470px; }
  .product-stack .product-card { min-height: 390px; }
  .product-copy { padding: 28px; }
  .product-copy h3 { font-size: 34px; }
  .collection-note p { font-size: 22px; }
  .ritual-photo { height: 520px; }
  .ritual-stamp { width: 145px; height: 145px; }
  .ritual-copy h2 { font-size: 51px; }
  .ritual-steps li { grid-template-columns: 42px 1fr; gap: 14px; }
  .brand-story-inner p { font-size: 23px; }
  .contact-form { padding: 28px 22px; }
  .contact-form input, .contact-form textarea, .contact-form select { font-size: 16px; }
  .contact-links a { align-items: flex-start; flex-direction: column; gap: 4px; }
  .footer-links { gap: 16px; }
  .whatsapp-float { right: 16px; bottom: calc(16px + env(safe-area-inset-bottom)); width: 52px; height: 52px; }
  .whatsapp-float i { font-size: 27px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Made-to-order candle builder */
section[id] { scroll-margin-top: 90px; }
.custom-candle { position: relative; overflow: hidden; background: #dfd0c5; }
.custom-candle-page { padding-top: 165px; }
.custom-candle::before { content: ""; position: absolute; width: 520px; height: 520px; top: -250px; right: -190px; border-radius: 50%; background: rgba(255,255,255,.24); pointer-events: none; }
.custom-heading { position: relative; z-index: 1; margin-bottom: 64px; --bs-gutter-x: 5.5rem; }
.custom-heading h1 { max-width: 760px; margin-bottom: 0; }
.custom-heading-copy { color: var(--muted); }
.custom-heading-copy .large-copy { margin-bottom: 14px; }
.custom-heading-copy > p:last-child { margin-bottom: 0; }
.custom-builder { position: relative; z-index: 1; }
.candle-preview-panel { position: sticky; top: 112px; min-height: 720px; padding: 34px; overflow: hidden; background: #211d1a; color: #f8f1e9; box-shadow: 0 30px 80px rgba(55,39,31,.18); }
.preview-kicker { position: relative; z-index: 2; display: block; color: rgba(255,255,255,.52); font-size: 9px; letter-spacing: .24em; text-transform: uppercase; }
.candle-stage { position: relative; height: 420px; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 18px; }
.candle-aura { position: absolute; left: 50%; top: 38%; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle, rgba(210,155,91,.24), rgba(210,155,91,0) 68%); transform: translate(-50%,-50%); }
.preview-vessel { position: relative; z-index: 2; width: 235px; height: 255px; overflow: hidden; border: 1px solid rgba(255,255,255,.34); border-radius: 10px 10px 36px 36px; background: linear-gradient(135deg, rgba(255,255,255,.28), rgba(255,255,255,.08)); box-shadow: inset 12px 0 24px rgba(255,255,255,.08), inset -12px 0 24px rgba(0,0,0,.12), 0 30px 50px rgba(0,0,0,.28); backdrop-filter: blur(4px); }
.preview-vessel::after { content: ""; position: absolute; inset: 8px 12px auto; height: 28px; border-radius: 50%; border-top: 1px solid rgba(255,255,255,.38); opacity: .8; }
.preview-wax { position: absolute; inset: 28px 8px 8px; border-radius: 6px 6px 29px 29px; background: #eee4d4; box-shadow: inset 0 16px 20px rgba(255,255,255,.22); transition: background-color .35s ease; }
.preview-label { position: absolute; z-index: 3; left: 50%; top: 55%; width: 142px; min-height: 82px; display: grid; align-content: center; justify-items: center; padding: 14px 10px; background: transparent; color: #211d1a; border: 1px solid transparent; text-align: center; transform: translate(-50%,-50%); box-shadow: none; transition: color .2s ease; }
.preview-label span { font-family: var(--serif); font-size: 31px; line-height: 1; letter-spacing: .16em; color: inherit; text-shadow: 0 1px 1px rgba(255,255,255,.18); }
.preview-label small { max-width: 120px; margin-top: 8px; overflow: hidden; font-size: 7px; line-height: 1.4; letter-spacing: .16em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; color: inherit; text-shadow: 0 1px 1px rgba(255,255,255,.18); }
.preview-label.is-dark-wax { color: #ffffff; }
.preview-label.is-dark-wax span,
.preview-label.is-dark-wax small { text-shadow: 0 1px 2px rgba(0,0,0,.45); }
.preview-wick { position: absolute; z-index: 5; left: 50%; bottom: 273px; width: 3px; height: 28px; border-radius: 2px; background: #d9c7ac; transform: translateX(-50%); transition: width .25s ease, background .25s ease; }
.preview-wick.is-wood { width: 13px; background: #9b6645; }
.preview-wick.is-double::before, .preview-wick.is-double::after { content: ""; position: absolute; bottom: 0; width: 3px; height: 28px; border-radius: 2px; background: #d9c7ac; }
.preview-wick.is-double { width: 0; background: transparent; }
.preview-wick.is-double::before { left: -8px; }
.preview-wick.is-double::after { right: -8px; }
.preview-flame { position: absolute; z-index: 6; left: 50%; bottom: 299px; width: 24px; height: 40px; border-radius: 55% 45% 55% 45% / 68% 68% 32% 32%; background: radial-gradient(circle at 50% 72%, #fff6c7 0 18%, #eab263 38%, #bc6f38 72%); box-shadow: 0 0 22px rgba(229,154,79,.65); transform: translateX(-50%) rotate(4deg); animation: flameFlicker 2.4s ease-in-out infinite alternate; }
@keyframes flameFlicker { from { transform: translateX(-50%) rotate(2deg) scale(.96); } to { transform: translateX(-50%) rotate(-3deg) scale(1.04); } }
.custom-summary { position: relative; z-index: 2; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.14); }
.summary-title { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin-bottom: 15px; }
.summary-title span { font-family: var(--serif); font-size: 29px; }
.summary-title small { color: #c6a685; font-size: 8px; letter-spacing: .2em; text-transform: uppercase; }
.custom-summary dl { margin: 0; }
.custom-summary dl > div { display: flex; align-items: baseline; justify-content: space-between; gap: 18px; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.custom-summary dt { color: rgba(255,255,255,.42); font-size: 8px; letter-spacing: .16em; text-transform: uppercase; }
.custom-summary dd { margin: 0; text-align: right; font-family: var(--serif); font-size: 17px; }
.candle-builder-form { padding: 48px; background: var(--paper); box-shadow: 0 30px 80px rgba(55,39,31,.08); }
.builder-step { min-width: 0; margin: 0 0 36px; padding: 0 0 34px; border: 0; border-bottom: 1px solid var(--line); }
.builder-step legend { width: 100%; margin-bottom: 20px; color: var(--ink); font-family: var(--serif); font-size: 28px; line-height: 1.15; }
.builder-step legend span { display: inline-block; margin-right: 10px; color: var(--gold); font-family: var(--sans); font-size: 9px; letter-spacing: .16em; vertical-align: middle; }

.choice-card { position: relative; display: block; cursor: pointer; }
.choice-card input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.choice-card-content { min-height: 86px; display: flex; flex-direction: column; justify-content: center; padding: 16px; border: 1px solid var(--line); background: #fff; transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease; }
.choice-card-content strong { font-family: var(--serif); font-size: 20px; font-weight: 500; line-height: 1.15; }
.choice-card-content small { margin-top: 6px; color: var(--muted); font-size: 9px; letter-spacing: .05em; }
.choice-card:hover .choice-card-content { transform: translateY(-2px); border-color: rgba(115,95,81,.42); }
.choice-card input:checked + .choice-card-content { border-color: var(--taupe-dark); background: #f3ebe4; box-shadow: inset 0 0 0 1px var(--taupe-dark); }
.choice-card input:focus-visible + .choice-card-content { outline: 3px solid rgba(182,139,73,.25); outline-offset: 2px; }

.color-choice { position: relative; min-width: 0; display: grid; justify-items: center; gap: 8px; padding: 12px 4px 10px; border: 1px solid transparent; cursor: pointer; }
.color-choice input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.color-dot { width: 38px; height: 38px; border: 1px solid rgba(62,55,50,.16); border-radius: 50%; background: var(--swatch); box-shadow: inset 0 0 0 4px rgba(255,255,255,.35); }
.swatch-natural { --swatch: #eee4d4; }
.swatch-ivory { --swatch: #f5efe3; }
.swatch-rose { --swatch: #d8b9b5; }
.swatch-lavender { --swatch: #b9aec7; }
.swatch-terracotta { --swatch: #b76f57; }
.swatch-charcoal { --swatch: #3e3a38; }
.color-choice small { overflow: hidden; color: var(--muted); font-size: 8px; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.color-choice:has(input:checked) { border-color: var(--taupe-dark); background: #f3ebe4; }
.color-choice input:checked + .color-dot { box-shadow: inset 0 0 0 4px rgba(255,255,255,.55), 0 0 0 2px var(--taupe-dark); }

.extra-choice { position: relative; cursor: pointer; }
.extra-choice input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.extra-choice span { min-height: 48px; display: flex; align-items: center; padding: 12px 14px 12px 42px; border: 1px solid var(--line); color: var(--muted); font-size: 11px; }
.extra-choice span::before { content: ""; position: absolute; left: 15px; width: 14px; height: 14px; border: 1px solid var(--taupe); background: transparent; }
.extra-choice input:checked + span { border-color: var(--taupe-dark); background: #f3ebe4; color: var(--ink); }
.extra-choice input:checked + span::before { background: var(--taupe-dark); box-shadow: inset 0 0 0 3px #f3ebe4; }
.builder-fields { margin-top: 20px; }
.builder-fields label { display: block; color: var(--taupe-dark); font-size: 8px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.builder-fields input { width: 100%; margin-top: 8px; padding: 13px 2px; border: 0; border-bottom: 1px solid rgba(62,55,50,.24); border-radius: 0; outline: 0; background: transparent; color: var(--ink); font-size: 14px; text-transform: none; letter-spacing: normal; }
.builder-action { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.builder-action p { margin: 0 0 3px; font-family: var(--serif); font-size: 20px; }
.builder-action small { display: block; max-width: 420px; color: var(--muted); font-size: 9px; line-height: 1.5; }
.builder-action .button { flex: 0 0 auto; gap: 9px; }
.builder-status { min-height: 20px; margin: 16px 0 0; color: var(--taupe-dark); font-size: 11px; }

@media (max-width: 1050px) {
  .custom-heading { --bs-gutter-x: 3.5rem; }
  .candle-preview-panel { padding: 28px; }
  .candle-builder-form { padding: 38px; }
}

@media (max-width: 991.98px) {
  .custom-candle-page { padding-top: 125px; }
  .custom-heading { --bs-gutter-x: 1.5rem; }
  .candle-stage { height: 390px; }
}

@media (max-width: 575.98px) {
  .custom-heading h1 { font-size: clamp(48px, 15vw, 68px); }
  .candle-preview-panel { padding: 24px 20px; }
  .candle-stage { height: 330px; }
  .preview-vessel { width: 180px; height: 205px; }
  .preview-wax { inset: 25px 7px 7px; }
  .preview-wick { bottom: 222px; }
  .preview-flame { bottom: 248px; }
  .preview-label { width: 116px; min-height: 68px; }
  .preview-label span { font-size: 25px; }
  .candle-builder-form { padding: 30px 20px; }
  .builder-step legend { font-size: 25px; }
  .choice-card-content { min-height: 82px; padding: 14px 12px; }
  .builder-fields input { font-size: 16px; }
  .builder-action { align-items: stretch; flex-direction: column; }
  .builder-action .button { width: 100%; }
}


/* Candle decoration preview */
.preview-decoration { position: absolute; z-index: 2; inset: 13px; overflow: hidden; pointer-events: none; }
.preview-decoration span { position: absolute; display: none; width: 16px; height: 16px; opacity: .88; }
.preview-decoration[data-decoration="flowers"] span { display: block; border-radius: 55% 45% 60% 40%; background: #d8b9b5; box-shadow: 0 0 0 4px rgba(248,239,233,.68); }
.preview-decoration[data-decoration="flowers"] span:nth-child(1) { left: 17%; top: 22%; transform: rotate(20deg); }
.preview-decoration[data-decoration="flowers"] span:nth-child(2) { right: 16%; top: 30%; width: 13px; height: 13px; background:#eadbd3; }
.preview-decoration[data-decoration="flowers"] span:nth-child(3) { left: 24%; bottom: 18%; width: 12px; height: 12px; background:#cfaeab; }
.preview-decoration[data-decoration="flowers"] span:nth-child(4) { right: 24%; bottom: 16%; width: 18px; height: 18px; background:#ead6cf; }
.preview-decoration[data-decoration="botanical"] span { display: block; width: 10px; height: 25px; border-radius: 80% 20% 80% 20%; background: #89947b; }
.preview-decoration[data-decoration="botanical"] span:nth-child(1) { left: 16%; top: 24%; transform: rotate(-34deg); }
.preview-decoration[data-decoration="botanical"] span:nth-child(2) { right: 16%; top: 28%; transform: rotate(32deg); }
.preview-decoration[data-decoration="botanical"] span:nth-child(3) { left: 25%; bottom: 15%; transform: rotate(18deg); background:#aab19d; }
.preview-decoration[data-decoration="botanical"] span:nth-child(4) { right: 22%; bottom: 17%; transform: rotate(-22deg); background:#737f6b; }
.preview-decoration[data-decoration="citrus"] span { display: block; border-radius: 50%; border: 3px solid #c87b38; background: rgba(224,163,75,.36); }
.preview-decoration[data-decoration="citrus"] span:nth-child(1) { left: 13%; top: 21%; width: 27px; height: 27px; }
.preview-decoration[data-decoration="citrus"] span:nth-child(2) { right: 14%; bottom: 17%; width: 22px; height: 22px; }
.preview-decoration[data-decoration="citrus"] span:nth-child(3), .preview-decoration[data-decoration="citrus"] span:nth-child(4) { display: block; width: 7px; height: 34px; border: 0; border-radius: 3px; background:#9b633c; }
.preview-decoration[data-decoration="citrus"] span:nth-child(3) { right: 24%; top: 21%; transform: rotate(38deg); }
.preview-decoration[data-decoration="citrus"] span:nth-child(4) { left: 23%; bottom: 18%; transform: rotate(-30deg); }
.preview-decoration[data-decoration="custom"] span { display: block; border: 1px dashed rgba(78,64,54,.65); border-radius: 50%; background: rgba(255,255,255,.22); }
.preview-decoration[data-decoration="custom"] span:nth-child(1) { left: 18%; top: 24%; }
.preview-decoration[data-decoration="custom"] span:nth-child(2) { right: 16%; top: 31%; width: 12px; height: 12px; }
.preview-decoration[data-decoration="custom"] span:nth-child(3) { left: 27%; bottom: 17%; width: 11px; height: 11px; }
.preview-decoration[data-decoration="custom"] span:nth-child(4) { right: 25%; bottom: 16%; width: 19px; height: 19px; }
.preview-label { z-index: 4; }

/* Shared catalog page */
.button-secondary {
  color: var(--ink);
  background: transparent;
  border-color: rgba(62, 55, 50, .42);
}
.button-secondary:hover {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}
.catalog-page { background: var(--cream); }
.catalog-landing-hero {
  padding: 155px 0 64px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
}
.catalog-landing-hero-grid { --bs-gutter-x: 3rem; }
.catalog-landing-copy h1 { margin-bottom: 26px; }
.catalog-landing-copy .lead {
  max-width: 550px;
  margin: 0;
  color: var(--muted);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.5;
}
.catalog-landing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 30px;
}
.catalog-landing-visual {
  overflow: hidden;
}
.catalog-landing-visual img { width: 100%; height: auto; }
.catalog-category-section { padding-top: 76px; padding-bottom: 42px; }
.catalog-category-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 22px 55px rgba(68, 50, 38, .08);
}
.catalog-category-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #ebe2d8;
}
.catalog-category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.catalog-category-card:hover .catalog-category-media img { transform: scale(1.025); }
.catalog-category-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 30px;
  border-top: 1px solid var(--line);
}
.catalog-category-copy h3 { margin: 0; font-size: clamp(31px, 3vw, 42px); }
.catalog-category-copy p { margin: 0; color: var(--muted); }
.catalog-tag {
  display: inline-block;
  align-self: flex-start;
  padding: 7px 12px;
  color: var(--taupe-dark);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.catalog-specs {
  margin: 2px 0 0;
  padding-left: 19px;
  color: var(--muted);
}
.catalog-specs li { margin-bottom: 8px; padding-left: 4px; }
.catalog-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
  padding-top: 12px;
}
.catalog-info-strip { padding: 32px 0 78px; }
.catalog-info-grid { padding-top: 25px; border-top: 1px solid var(--line); }
.catalog-mini-note {
  padding: 20px;
  background: rgba(255, 255, 255, .5);
  border: 1px solid var(--line);
}
.catalog-mini-note strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
}
.catalog-mini-note span { display: block; color: var(--muted); font-size: 14px; line-height: 1.65; }
.catalog-final-cta {
  padding: 64px 0 88px;
  background: var(--cream-deep);
  border-top: 1px solid var(--line);
}
.catalog-final-cta-box { padding: 38px; color: #fff; background: var(--dark); box-shadow: var(--shadow); }
.catalog-final-cta-box h2 { margin-bottom: 10px; color: #fff; font-size: clamp(38px, 4vw, 58px); }
.catalog-final-cta-box p,
.catalog-final-cta-box .eyebrow { color: rgba(255, 255, 255, .7); }
.catalog-final-cta-box p:last-child { margin-bottom: 0; }

@media (max-width: 767.98px) {
  .catalog-landing-hero { padding-top: 125px; }
  .catalog-category-section { padding-top: 54px; }
  .catalog-category-copy,
  .catalog-final-cta-box { padding: 24px; }
  .catalog-card-actions .button,
  .catalog-final-cta-box .button { width: 100%; }
}

/* Bootstrap integration */
.btn.button { border-radius: 0; }
.form-control,
.form-select { box-shadow: none !important; }
.choice-grid > .choice-card,
.color-grid > .color-choice,
.extras-grid > .extra-choice { margin: 0; }
.choice-card-content,
.extra-choice span { height: 100%; }
.footer-main { --bs-gutter-x: 4rem; }
