:root {
  --cream: #f8f0e6;
  --ivory: #fffaf3;
  --linen: #eadfce;
  --maroon: #681b2a;
  --maroon-dark: #3a1018;
  --charcoal: #161111;
  --ink-soft: #514641;
  --gold: #a9874d;
  --gold-soft: #e0c993;
  --white: #ffffff;
  --focus: #f3c969;
  --shadow-soft: 0 28px 80px rgba(34, 16, 12, 0.13);
  --shadow-card: 0 22px 52px rgba(40, 19, 15, 0.11);
  --radius-sm: 8px;
  --radius-md: 8px;
  --container: min(1180px, calc(100vw - 40px));
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
}

@font-face {
  font-family: "Kenao Sans Serif";
  src: local("Kenao Sans Serif"), local("Kenao Sans");
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(224, 201, 147, 0.12), transparent 34rem),
    var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-140%);
  background: var(--charcoal);
  color: var(--white);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement-bar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  min-height: 36px;
  display: grid;
  place-items: center;
  padding: 7px 18px;
  background: linear-gradient(90deg, var(--maroon-dark), var(--maroon), var(--maroon-dark));
  color: var(--ivory);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  top: 36px;
  left: 0;
  right: 0;
  z-index: 50;
  transition: background 220ms ease, box-shadow 220ms ease, backdrop-filter 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 243, 0.9);
  box-shadow: 0 10px 35px rgba(34, 16, 12, 0.09);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: var(--container);
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  border-bottom: 1px solid rgba(255, 250, 243, 0.18);
}

.brand,
.footer-brand {
  display: inline-grid;
  gap: 0;
  min-height: 44px;
  align-content: center;
  color: var(--ivory);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 0.95;
}

.site-header.is-scrolled .brand {
  color: var(--maroon);
}

.brand span,
.footer-brand {
  font-size: 1.5rem;
  letter-spacing: 0.01em;
}

.brand small {
  font-family: var(--font-body);
  font-size: 0.63rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.home2-page .home2-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  color: var(--ivory);
  font-family: "Kenao Sans Serif", "Cormorant Garamond", Georgia, serif;
  text-decoration: none;
}

.home2-page .home2-brand-mark {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 999px;
  object-fit: contain;
  padding: 7px;
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.96), rgba(235, 218, 178, 0.92));
  border: 1px solid rgba(224, 201, 147, 0.54);
  box-shadow: 0 14px 34px rgba(25, 12, 10, 0.28);
}

.home2-page .home2-brand-name {
  display: grid;
  gap: 4px;
  min-width: 0;
  line-height: 0.92;
}

.home2-page .home2-brand-name span {
  font-family: "Kenao Sans Serif", "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.05rem, 1.45vw, 1.46rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home2-page .home2-brand-name small {
  font-family: "Kenao Sans Serif", var(--font-body);
  font-size: clamp(0.62rem, 0.75vw, 0.76rem);
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.home2-page .site-header.is-scrolled .home2-brand {
  color: var(--maroon);
}

.home2-page .hero-bg {
  object-position: 68% 42%;
}

.home2-page .hero-overlay {
  background:
    radial-gradient(circle at 74% 30%, rgba(224, 201, 147, 0.12), transparent 18rem),
    linear-gradient(90deg, rgba(28, 11, 10, 0.92) 0%, rgba(47, 17, 16, 0.76) 42%, rgba(29, 10, 10, 0.24) 74%),
    linear-gradient(180deg, rgba(15, 10, 9, 0.08) 0%, rgba(15, 10, 9, 0.72) 100%);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-header.is-scrolled .nav-menu {
  color: var(--charcoal);
}

.nav-menu a {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-menu a:not(.nav-whatsapp)::after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 240ms ease;
}

.nav-menu a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-whatsapp,
.btn,
.product-cta,
.newsletter button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 200ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
}

.nav-whatsapp {
  padding: 10px 20px;
  background: var(--ivory);
  color: var(--maroon);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.site-header.is-scrolled .nav-whatsapp {
  background: var(--maroon);
  color: var(--ivory);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 250, 241, 0.42);
  border-radius: 50%;
  background: rgba(23, 19, 19, 0.16);
  color: var(--ivory);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

.site-header.is-scrolled .nav-toggle {
  border-color: rgba(111, 29, 43, 0.18);
  background: rgba(111, 29, 43, 0.06);
  color: var(--maroon);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 158px max(20px, calc((100vw - 1180px) / 2)) 88px;
  isolation: isolate;
  background: var(--charcoal);
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 114%;
}

.hero-bg {
  object-fit: cover;
  object-position: 58% 27%;
  z-index: -3;
  will-change: transform;
}

.hero-overlay {
  z-index: -2;
  background:
    radial-gradient(circle at 66% 32%, rgba(224, 201, 147, 0.16), transparent 20rem),
    linear-gradient(90deg, rgba(15, 10, 10, 0.9) 0%, rgba(58, 16, 24, 0.62) 42%, rgba(33, 15, 14, 0.12) 100%),
    linear-gradient(0deg, rgba(15, 10, 10, 0.7) 0%, rgba(15, 12, 12, 0) 46%);
}

.hero-content {
  width: min(720px, 100%);
  color: var(--ivory);
  z-index: 1;
  padding-top: 28px;
}

.hero-location,
.section-label {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label {
  color: var(--gold-soft);
}

.hero-title,
.section-copy h2,
.section-heading h2,
.story-copy h2,
.newsletter h2,
.nap-card h2,
.site-footer h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 0.92;
}

.hero-title {
  max-width: 720px;
  font-size: clamp(4rem, 8.4vw, 7.55rem);
  letter-spacing: 0;
  text-shadow: 0 26px 70px rgba(0, 0, 0, 0.34);
}

.hero-title .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.hero-title .word-inner {
  display: inline-block;
}

.hero-copy {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 250, 243, 0.88);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.8;
}

.hero-actions,
.visit-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 38px;
}

.btn {
  min-width: 190px;
  padding: 14px 24px;
  border: 1px solid transparent;
}

.btn:hover,
.product-cta:hover,
.newsletter button:hover,
.nav-whatsapp:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, #ead7a8, var(--gold-soft));
  color: var(--maroon-dark);
  box-shadow: 0 18px 42px rgba(224, 201, 147, 0.22);
}

.btn-ghost {
  border-color: rgba(255, 250, 243, 0.42);
  background: rgba(255, 250, 243, 0.06);
  color: var(--ivory);
  backdrop-filter: blur(8px);
}

.btn-ghost.dark {
  border-color: rgba(111, 29, 43, 0.26);
  color: var(--maroon);
}

.hero-cards {
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 66px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 178px));
  gap: 14px;
}

.floating-card {
  min-height: 184px;
  padding: 22px;
  border: 1px solid rgba(255, 250, 243, 0.22);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 250, 243, 0.17), rgba(255, 250, 243, 0.07));
  color: var(--ivory);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
  will-change: transform;
}

.floating-card span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
}

.floating-card h2 {
  margin: 18px 0 8px;
  font-family: var(--font-display);
  font-size: 1.7rem;
  line-height: 1;
}

.floating-card p {
  margin: 0;
  color: rgba(255, 250, 243, 0.76);
  font-size: 0.82rem;
  line-height: 1.5;
}

.marquee-strip {
  overflow: hidden;
  background: var(--maroon-dark);
  color: var(--gold-soft);
  border-block: 1px solid rgba(220, 198, 154, 0.22);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee-track span {
  padding: 14px 0;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section-pad {
  padding: clamp(86px, 11vw, 152px) 0;
}

.section-grid,
.section-heading,
.shop-toolbar,
.mini-cart,
.product-grid,
.trust-grid,
.policy-row,
.gallery-grid,
.testimonial-grid,
.faq-list,
.newsletter-box,
.nap-card,
.site-footer {
  width: var(--container);
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(44px, 8vw, 108px);
  align-items: center;
}

.editorial-image,
.fit-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  background: var(--linen);
}

.editorial-image img,
.fit-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.section-copy h2,
.section-heading h2,
.story-copy h2,
.newsletter h2 {
  font-size: clamp(2.8rem, 6vw, 5.35rem);
  color: var(--maroon-dark);
}

.section-copy p,
.section-heading p,
.story-copy p,
.policy-row p,
.nap-card p {
  color: var(--ink-soft);
}

.section-copy > p:not(.section-label),
.section-heading > p {
  max-width: 640px;
  margin: 24px 0 0;
  font-size: 1.02rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span,
.status-badge,
.filter-btn,
.mini-cart button {
  border-radius: 999px;
  border: 1px solid rgba(111, 29, 43, 0.18);
  background: rgba(255, 250, 241, 0.74);
  color: var(--maroon);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.trust-row span {
  padding: 9px 13px;
}

.collections {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--cream), #fbf5ec);
}

.section-heading {
  margin-bottom: 50px;
}

.story {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 12%, rgba(224, 201, 147, 0.12), transparent 26rem),
    var(--maroon-dark);
  color: var(--ivory);
}

.story-copy {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin: 0 auto;
  padding-top: 80px;
}

.story-copy h2 {
  max-width: 720px;
  color: var(--ivory);
}

.story-layers {
  position: absolute;
  inset: 0;
  width: var(--container);
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}

.new-arrivals {
  background: var(--ivory);
}

.shop-toolbar {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(150px, 190px);
  gap: 20px;
  align-items: end;
  margin-bottom: 22px;
}

.search-field,
.sort-field,
.newsletter label {
  display: grid;
  gap: 8px;
}

.search-field span,
.sort-field span,
.newsletter label span {
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-field input,
.sort-field select,
.newsletter input {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(111, 29, 43, 0.18);
  border-radius: 999px;
  background: var(--white);
  color: var(--charcoal);
  padding: 0 18px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-btn,
.mini-cart button {
  min-height: 44px;
  padding: 0 14px;
  cursor: pointer;
}

.filter-btn.is-active {
  background: var(--maroon);
  color: var(--ivory);
  border-color: var(--maroon);
}

.mini-cart {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 26px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(111, 29, 43, 0.1);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #ffffff, #fffaf3);
  box-shadow: 0 16px 42px rgba(45, 21, 18, 0.075);
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.product-card.is-hidden {
  display: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-card:hover img {
  transform: scale(1.05);
}

.status-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 8px 11px;
  background: rgba(255, 250, 241, 0.9);
}

.wishlist-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 250, 241, 0.54);
  border-radius: 50%;
  background: rgba(23, 19, 19, 0.38);
  color: var(--ivory);
  cursor: pointer;
}

.wishlist-btn.is-active {
  background: var(--maroon);
}

.product-info {
  padding: 24px 24px 26px;
}

.product-info p {
  margin: 0 0 8px;
  color: var(--maroon);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-info h3 {
  color: var(--maroon-dark);
}

.product-info span {
  display: block;
  margin-top: 12px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.product-info strong {
  display: block;
  margin-top: 16px;
  color: var(--charcoal);
}

.product-cta {
  width: 100%;
  margin-top: 18px;
  padding: 12px 16px;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-dark));
  color: var(--ivory);
}

.empty-state {
  width: var(--container);
  margin: 26px auto 0;
  color: var(--maroon);
  font-weight: 700;
}

.custom-fits {
  background: #f9f1e7;
}

.fit-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.fit-list li {
  position: relative;
  padding-left: 22px;
  margin: 10px 0;
  color: var(--ink-soft);
}

.fit-list li::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.trust-grid article,
.testimonial-grid article,
.nap-card,
.newsletter-box,
.map-card,
.policy-row {
  border: 1px solid rgba(111, 29, 43, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 250, 243, 0.86);
}

.trust-grid article {
  padding: 22px;
}

.trust-grid h3 {
  font-size: 1.55rem;
  color: var(--maroon-dark);
}

.trust-grid p,
.testimonial-grid p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.policy-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
  padding: 22px;
}

.gallery {
  background:
    linear-gradient(180deg, #171111, #211316);
  color: var(--ivory);
}

.gallery .section-heading h2,
.gallery .section-heading p {
  color: var(--ivory);
}

.gallery .section-label {
  color: var(--gold-soft);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 14px;
}

.tile {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-sm);
  filter: saturate(0.94) contrast(0.98);
}

.tile.tall {
  grid-row: span 2;
}

.tile.wide {
  grid-column: span 2;
}

.testimonials {
  background: #f8f0e6;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.testimonial-grid article {
  padding: 28px;
}

.testimonial-grid p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.12;
  color: var(--maroon-dark);
}

.testimonial-grid span {
  display: block;
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  border: 1px solid rgba(111, 29, 43, 0.13);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  padding: 20px 24px;
}

.faq-list summary {
  cursor: pointer;
  color: var(--maroon-dark);
  font-weight: 800;
}

.faq-list p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.visit {
  background: #f9f1e7;
}

address {
  margin-top: 24px;
  color: var(--ink-soft);
  font-style: normal;
}

.hours {
  margin-top: 12px;
}

.map-card {
  min-height: 430px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(111, 29, 43, 0.9), rgba(23, 19, 19, 0.86)),
    radial-gradient(circle at 32% 22%, rgba(224, 201, 147, 0.28), transparent 18rem),
    repeating-linear-gradient(45deg, rgba(255, 250, 243, 0.08) 0 1px, transparent 1px 42px);
  color: var(--ivory);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.map-card span {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 0.95;
}

.newsletter-box {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 430px);
  gap: 30px;
  align-items: end;
  padding: clamp(28px, 5vw, 54px);
  background:
    radial-gradient(circle at 18% 0%, rgba(224, 201, 147, 0.18), transparent 26rem),
    var(--maroon-dark);
  color: var(--ivory);
}

.newsletter h2 {
  color: var(--ivory);
}

.newsletter form {
  display: grid;
  gap: 12px;
}

.newsletter input {
  background: rgba(255, 250, 241, 0.95);
}

.newsletter button {
  border: 0;
  background: var(--gold-soft);
  color: var(--maroon-dark);
  cursor: pointer;
}

.nap {
  padding-top: 0;
}

.nap-card {
  padding: 28px;
}

.nap-card h2 {
  font-size: 2.4rem;
  color: var(--maroon-dark);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 34px;
  padding: 54px 0;
  color: rgba(255, 250, 241, 0.74);
}

footer.site-footer {
  width: 100%;
  background: #151010;
}

.site-footer > div {
  width: auto;
}

.site-footer h2 {
  margin-bottom: 16px;
  color: var(--ivory);
  font-size: 1.35rem;
}

.site-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  margin: 2px 0;
  color: var(--ivory);
}

.site-footer p {
  max-width: 390px;
}

.sticky-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: none;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  background: #1f9d55;
  color: var(--white);
  box-shadow: 0 14px 34px rgba(31, 157, 85, 0.3);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reveal {
  will-change: transform, opacity;
}

@media (max-width: 980px) {
  :root {
    --container: min(100vw - 30px, 760px);
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    right: 15px;
    left: 15px;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(111, 29, 43, 0.1);
    border-radius: var(--radius-md);
    background: var(--ivory);
    color: var(--charcoal);
    box-shadow: var(--shadow-card);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu a {
    padding: 13px;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-whatsapp {
    justify-self: start;
    margin: 8px 0 4px;
    background: var(--maroon);
    color: var(--ivory);
  }

  .hero {
    min-height: 100svh;
    padding-top: 124px;
    padding-bottom: 34px;
    align-items: end;
  }

  .hero-bg {
    object-position: 63% 18%;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 75% 18%, rgba(224, 201, 147, 0.18), transparent 16rem),
      linear-gradient(180deg, rgba(20, 12, 10, 0.18) 0%, rgba(32, 14, 15, 0.64) 42%, rgba(15, 10, 10, 0.94) 100%),
      linear-gradient(90deg, rgba(58, 16, 24, 0.76), rgba(33, 15, 14, 0.08));
  }

  .hero-title {
    max-width: 680px;
    font-size: clamp(3.45rem, 12.2vw, 5.45rem);
    line-height: 0.96;
  }

  .hero-cards {
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    margin-top: 38px;
  }

  .floating-card {
    min-height: auto;
    padding: 18px 16px;
  }

  .floating-card h2 {
    font-size: 1.38rem;
  }

  .floating-card p {
    font-size: 0.78rem;
  }

  .section-grid,
  .shop-toolbar,
  .newsletter-box,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .story {
    min-height: auto;
    padding-bottom: 90px;
  }

  .story-layers {
    position: relative;
    left: auto;
    transform: none;
    display: grid;
    grid-template-columns: repeat(3, minmax(190px, 1fr));
    gap: 16px;
    overflow-x: auto;
    margin-top: 36px;
  }

  .product-grid,
  .testimonial-grid,
  .policy-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .sticky-whatsapp {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 24px, 480px);
  }

  .announcement-bar {
    min-height: 34px;
    font-size: 0.68rem;
    text-align: center;
  }

  .site-header {
    top: 34px;
  }

  .nav-shell {
    min-height: 70px;
  }

  .brand span {
    font-size: 1.2rem;
  }

  .hero {
    padding-inline: 14px;
    min-height: 100svh;
  }

  .hero-location {
    margin-bottom: 12px;
  }

  .hero-title {
    font-size: clamp(3.05rem, 15.6vw, 4.4rem);
    line-height: 0.94;
  }

  .hero-copy {
    max-width: 92%;
    margin-top: 20px;
    line-height: 1.72;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 26px;
  }

  .btn {
    width: 100%;
  }

  .section-pad {
    padding: 74px 0;
  }

  .section-copy h2,
  .section-heading h2,
  .story-copy h2,
  .newsletter h2 {
    font-size: clamp(2.35rem, 11vw, 3.25rem);
  }

  .hero-cards {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 30px;
  }

  .floating-card {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 14px;
    align-items: start;
    padding: 16px;
  }

  .floating-card span {
    grid-row: span 2;
    padding-top: 3px;
  }

  .floating-card h2 {
    margin: 0 0 6px;
  }

  .product-info {
    padding: 22px;
  }

  .product-grid,
  .testimonial-grid,
  .policy-row,
  .trust-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .mini-cart {
    justify-content: stretch;
  }

  .mini-cart button {
    flex: 1;
  }

  .gallery-grid {
    grid-auto-rows: 230px;
  }

  .tile.tall,
  .tile.wide {
    grid-column: auto;
    grid-row: auto;
  }
}

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

/* Premium refinement pass: mobile-first polish, richer local-business sections, and safer responsive sizing. */
html,
body {
  max-width: 100%;
}

body {
  overflow-x: clip;
}

.site-header {
  padding-inline: 0;
}

.nav-shell {
  min-height: clamp(68px, 7vw, 82px);
}

.hero {
  min-height: max(720px, 100svh);
  padding-top: clamp(130px, 14vh, 170px);
  padding-bottom: clamp(36px, 8vh, 96px);
}

.hero-bg {
  object-position: 62% 30%;
  transform-origin: center;
}

.hero-overlay {
  background:
    radial-gradient(circle at 68% 30%, rgba(224, 201, 147, 0.16), transparent 19rem),
    linear-gradient(90deg, rgba(14, 9, 10, 0.94) 0%, rgba(58, 16, 24, 0.62) 44%, rgba(30, 14, 14, 0.18) 100%),
    linear-gradient(0deg, rgba(15, 10, 10, 0.76) 0%, rgba(15, 12, 12, 0.04) 50%);
}

.hero-location {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero-location::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

.hero-title {
  max-width: 690px;
  font-size: clamp(3.7rem, 7.6vw, 7rem);
  line-height: 0.94;
}

.hero-copy {
  max-width: 520px;
}

.hero-actions .btn {
  min-height: 50px;
}

.floating-card {
  position: relative;
  overflow: hidden;
}

.floating-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(224, 201, 147, 0.18);
  pointer-events: none;
}

.floating-card span {
  position: relative;
  display: inline-flex;
}

.floating-card h2,
.floating-card p {
  position: relative;
}

.section-heading.compact-heading {
  margin-bottom: 28px;
}

.about-grid {
  align-items: center;
}

.editorial-image {
  position: relative;
  isolation: isolate;
}

.editorial-image::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 1px solid rgba(169, 135, 77, 0.32);
  background: rgba(248, 240, 230, 0.72);
}

.collections {
  overflow: hidden;
}

.story {
  min-height: 760px;
  display: grid;
  align-items: center;
}

.story-copy {
  max-width: var(--container);
  padding-top: 0;
}

.story-copy p:not(.section-label) {
  max-width: 570px;
  color: rgba(255, 250, 243, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.1rem);
}

.story-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 600px;
  margin-top: 28px;
}

.story-pills span {
  border: 1px solid rgba(224, 201, 147, 0.32);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-layers {
  pointer-events: none;
}

.shop-toolbar {
  border: 1px solid rgba(111, 29, 43, 0.1);
  border-radius: var(--radius-md);
  padding: clamp(14px, 2vw, 20px);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 16px 42px rgba(45, 21, 18, 0.05);
}

.mini-cart {
  justify-content: space-between;
  align-items: center;
}

.mini-cart button {
  background: rgba(104, 27, 42, 0.07);
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card img {
  background: linear-gradient(135deg, var(--linen), var(--ivory));
}

.product-info {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.product-info h3 {
  overflow-wrap: anywhere;
}

.product-info strong {
  margin-top: auto;
  padding-top: 16px;
}

.wishlist-btn {
  color: rgba(255, 250, 243, 0.72);
  font-size: 0.94rem;
  line-height: 1;
}

.wishlist-btn.is-active {
  color: var(--ivory);
}

.trust {
  background:
    linear-gradient(180deg, var(--ivory), #f8efe5);
}

.trust-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
}

.trust-grid article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: clamp(20px, 2vw, 28px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 250, 243, 0.78));
  box-shadow: 0 18px 45px rgba(45, 21, 18, 0.07);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.trust-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(169, 135, 77, 0.32);
  box-shadow: var(--shadow-card);
}

.trust-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 50%;
  background: rgba(104, 27, 42, 0.08);
  color: var(--maroon);
}

.trust-icon svg {
  width: 30px;
  height: 30px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-grid h3 {
  font-size: clamp(1.45rem, 2vw, 1.75rem);
}

.policy-row {
  background: rgba(255, 255, 255, 0.58);
}

.faq {
  background:
    radial-gradient(circle at 10% 10%, rgba(224, 201, 147, 0.12), transparent 24rem),
    var(--ivory);
}

.faq-list {
  max-width: 860px;
}

.faq-list details {
  padding: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 14px 34px rgba(45, 21, 18, 0.055);
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(104, 27, 42, 0.08);
  color: var(--maroon);
  font-size: 1.1rem;
  line-height: 1;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 22px 22px;
}

.visit {
  background:
    linear-gradient(180deg, #f9f1e7, #fffaf3);
}

.visit-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  gap: clamp(26px, 5vw, 72px);
}

.visit address {
  padding: 18px;
  border-left: 3px solid var(--gold);
  background: rgba(255, 255, 255, 0.52);
}

.map-card {
  min-height: auto;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(224, 201, 147, 0.24);
  background:
    linear-gradient(135deg, rgba(58, 16, 24, 0.9), rgba(22, 17, 17, 0.84)),
    radial-gradient(circle at 30% 25%, rgba(224, 201, 147, 0.2), transparent 15rem);
}

.map-pin {
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  color: var(--gold-soft);
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-card span {
  max-width: 360px;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.map-card p {
  max-width: 310px;
  margin: 14px auto 0;
  color: rgba(255, 250, 243, 0.72);
}

.newsletter {
  padding-top: clamp(46px, 8vw, 92px);
}

.newsletter-box {
  grid-template-columns: minmax(0, 1fr) minmax(250px, 360px);
  align-items: center;
  padding: clamp(22px, 4vw, 38px);
}

.newsletter-box > div:first-child p:not(.section-label) {
  max-width: 520px;
  color: rgba(255, 250, 243, 0.72);
}

.newsletter input {
  min-height: 46px;
}

.newsletter button {
  min-height: 46px;
}

.newsletter-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2px;
}

.newsletter-actions a,
.nap-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(224, 201, 147, 0.32);
  border-radius: 999px;
  padding: 9px 16px;
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nap {
  padding-top: 0;
  padding-bottom: clamp(54px, 8vw, 92px);
}

.nap-card {
  max-width: 900px;
  padding: clamp(20px, 3vw, 30px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 243, 0.7));
  box-shadow: 0 16px 40px rgba(45, 21, 18, 0.065);
}

.nap-card h2 {
  margin-bottom: 18px;
}

.nap-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid rgba(111, 29, 43, 0.09);
}

.nap-row span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(104, 27, 42, 0.08);
  color: var(--maroon);
  font-size: 0.68rem;
  font-weight: 900;
}

.nap-row p {
  margin: 0;
}

.nap-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.nap-actions a {
  border-color: rgba(104, 27, 42, 0.18);
  color: var(--maroon);
}

.site-footer {
  position: relative;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(150px, 0.7fr) minmax(240px, 1.2fr) repeat(3, minmax(150px, 0.82fr));
  align-items: start;
  gap: clamp(24px, 4vw, 56px);
  padding: clamp(58px, 7vw, 88px) max(24px, calc((100vw - 1180px) / 2)) clamp(44px, 5vw, 64px);
  border-top: 1px solid rgba(224, 201, 147, 0.2);
  background:
    radial-gradient(circle at 12% 0%, rgba(224, 201, 147, 0.12), transparent 24rem),
    linear-gradient(180deg, #241015, #151010);
}

.footer-brand-panel {
  width: clamp(124px, 12vw, 154px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  justify-self: start;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 250, 241, 0.96), transparent 56%),
    linear-gradient(145deg, #fff8e8, #d8c58f);
  border: 1px solid rgba(224, 201, 147, 0.55);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.footer-brand-panel img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  display: block;
}

.footer-intro p {
  margin-top: 24px;
}

.footer-group nav {
  display: grid;
  gap: 8px;
}

.site-footer h2 {
  margin: 0 0 18px;
  letter-spacing: 0.04em;
}

.site-footer p {
  margin: 0 0 18px;
  max-width: 340px;
}

.site-footer a {
  width: fit-content;
  line-height: 1.25;
}

.site-footer a:hover {
  color: var(--gold-soft);
}

.sticky-whatsapp {
  bottom: max(16px, env(safe-area-inset-bottom));
}

@media (max-width: 1180px) {
  .hero-cards {
    grid-template-columns: repeat(3, minmax(0, 164px));
  }

  .trust-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: minmax(130px, 0.7fr) minmax(220px, 1.15fr) repeat(2, minmax(160px, 1fr));
  }

  .footer-group:last-child {
    grid-column: 3 / span 2;
  }
}

@media (max-width: 980px) {
  body {
    overflow-x: hidden;
  }

  .hero {
    min-height: max(760px, 100svh);
    padding-top: 124px;
    padding-bottom: 30px;
  }

  .hero-bg {
    object-position: 62% 18%;
  }

  .hero-title {
    font-size: clamp(3rem, 12vw, 5.35rem);
  }

  .hero-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .story {
    display: block;
    min-height: auto;
  }

  .story-copy {
    padding-top: 0;
  }

  .story-layers {
    width: var(--container);
    pointer-events: auto;
  }

  .visit-grid {
    grid-template-columns: 1fr;
  }

  .map-card {
    aspect-ratio: 16 / 10;
  }

  .site-footer {
    grid-template-columns: 136px 1fr;
  }

  .footer-group,
  .footer-group:last-child {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100vw - 28px, 480px);
  }

  .announcement-bar {
    min-height: 34px;
    padding-inline: 12px;
    line-height: 1.35;
  }

  .site-header {
    top: 34px;
  }

  .nav-shell {
    min-height: 66px;
  }

  .nav-menu {
    top: 64px;
    left: 14px;
    right: 14px;
  }

  .hero {
    min-height: auto;
    padding: 122px 14px 28px;
  }

  .hero-bg {
    object-position: 59% 12%;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at 64% 15%, rgba(224, 201, 147, 0.14), transparent 13rem),
      linear-gradient(180deg, rgba(29, 10, 13, 0.16) 0%, rgba(36, 12, 16, 0.72) 42%, rgba(15, 10, 10, 0.95) 100%),
      linear-gradient(90deg, rgba(58, 16, 24, 0.66), rgba(33, 15, 14, 0.1));
  }

  .hero-location {
    font-size: clamp(0.64rem, 2.3vw, 0.72rem);
    letter-spacing: 0.13em;
  }

  .hero-location::before {
    width: 22px;
  }

  .hero-title {
    max-width: 340px;
    font-size: clamp(2.85rem, 14vw, 4.05rem);
    line-height: 0.94;
  }

  .hero-copy {
    max-width: 340px;
    font-size: clamp(0.95rem, 4vw, 1.04rem);
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-actions .btn {
    min-height: 50px;
  }

  .hero-cards {
    margin-top: 24px;
  }

  .floating-card {
    padding: 14px 15px;
  }

  .floating-card::before {
    inset: 8px;
  }

  .floating-card p {
    display: none;
  }

  .section-pad {
    padding: 62px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-copy h2,
  .section-heading h2,
  .story-copy h2,
  .newsletter h2 {
    font-size: clamp(2.28rem, 10.5vw, 3.1rem);
    line-height: 0.98;
  }

  .editorial-image::after {
    inset: 12px -8px -8px 12px;
  }

  .trust-row,
  .story-pills,
  .filter-buttons,
  .newsletter-actions,
  .nap-actions {
    gap: 8px;
  }

  .trust-row span,
  .story-pills span {
    font-size: 0.66rem;
    padding: 8px 10px;
  }

  .shop-toolbar {
    padding: 14px;
  }

  .filter-btn {
    flex: 1 1 auto;
  }

  .mini-cart {
    gap: 8px;
  }

  .product-card {
    border-radius: 10px;
  }

  .status-badge {
    max-width: calc(100% - 74px);
    white-space: normal;
    line-height: 1.25;
  }

  .trust-grid article {
    min-height: auto;
  }

  .policy-row {
    padding: 18px;
  }

  .gallery-grid {
    grid-auto-rows: 210px;
  }

  .testimonial-grid article {
    padding: 22px;
  }

  .testimonial-grid p {
    font-size: 1.45rem;
  }

  .visit-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .map-card {
    aspect-ratio: auto;
    min-height: 260px;
    padding: 24px 18px;
  }

  .newsletter-box {
    gap: 18px;
  }

  .newsletter form {
    gap: 10px;
  }

  .newsletter-actions a,
  .nap-actions a {
    flex: 1 1 145px;
  }

  .nap-row {
    grid-template-columns: 38px 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 54px 20px 88px;
  }

  .footer-brand-panel {
    width: 126px;
    max-width: 126px;
    border-radius: 26px;
  }

  .footer-group nav {
    gap: 6px;
  }

  .sticky-whatsapp {
    right: 14px;
    bottom: max(12px, env(safe-area-inset-bottom));
    min-height: 46px;
    padding-inline: 16px;
  }
}

@media (max-width: 360px) {
  :root {
    --container: min(100vw - 22px, 360px);
  }

  .brand span {
    font-size: 1.06rem;
  }

  .brand small {
    font-size: 0.55rem;
    letter-spacing: 0.24em;
  }

  .home2-page .home2-brand {
    gap: 9px;
  }

  .home2-page .home2-brand-mark {
    width: 42px;
    height: 42px;
    padding: 6px;
  }

  .home2-page .home2-brand-name span {
    font-size: 0.9rem;
    letter-spacing: 0.06em;
  }

  .home2-page .home2-brand-name small {
    font-size: 0.48rem;
    letter-spacing: 0.32em;
  }

  .home2-page .hero-bg {
    object-position: 63% 22%;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .hero {
    padding-inline: 11px;
  }

  .hero-title {
    max-width: 300px;
    font-size: clamp(2.56rem, 13.4vw, 3.22rem);
  }

  .hero-copy {
    max-width: 300px;
    line-height: 1.58;
  }

  .btn,
  .product-cta {
    font-size: 0.7rem;
    letter-spacing: 0.05em;
  }

  .product-info {
    padding: 18px;
  }

  .faq-list summary {
    padding-inline: 18px;
  }

  .faq-list p {
    padding-inline: 18px;
  }
}

@media (max-width: 330px) {
  .announcement-bar {
    font-size: 0.62rem;
  }

  .hero-title {
    font-size: 2.42rem;
  }

  .hero-cards {
    gap: 8px;
  }

  .floating-card {
    grid-template-columns: 28px 1fr;
  }

  .floating-card h2 {
    font-size: 1.22rem;
  }
}

/* Horizontal collections bug fix: full-card desktop pin and natural mobile swipe. */
:root {
  --container-width: 1180px;
}

.collections-section {
  overflow: hidden;
}

@media (max-width: 899px) {
}

@media (max-width: 360px) {
}

/* Mobile refinement for trust and updates sections: prevent narrow crushed cards. */
@media (max-width: 860px) {
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .newsletter-box {
    grid-template-columns: 1fr;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .trust .section-heading h2 {
    font-size: clamp(2.2rem, 10vw, 2.9rem);
    line-height: 1.02;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-grid article {
    display: grid;
    grid-template-columns: 52px minmax(0, 1fr);
    column-gap: 15px;
    row-gap: 4px;
    align-items: start;
    padding: 18px;
  }

  .trust-icon {
    grid-row: 1 / span 2;
    width: 46px;
    height: 46px;
    margin: 0;
  }

  .trust-icon svg {
    width: 26px;
    height: 26px;
  }

  .trust-grid h3 {
    margin: 0;
    font-size: clamp(1.45rem, 6.5vw, 1.85rem);
    line-height: 1.02;
  }

  .trust-grid p {
    margin: 6px 0 0;
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .newsletter {
    padding-block: 46px;
  }

  .newsletter-box {
    gap: 18px;
    padding: 22px;
    border-radius: 10px;
  }

  .newsletter h2 {
    max-width: 12ch;
    font-size: clamp(2.2rem, 10.5vw, 2.85rem);
    line-height: 1.02;
  }

  .newsletter-box > div:first-child p:not(.section-label) {
    max-width: 28ch;
    margin-top: 14px;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .newsletter form {
    width: 100%;
    max-width: none;
  }

  .newsletter label span {
    color: rgba(224, 201, 147, 0.88);
  }

  .newsletter input,
  .newsletter button {
    min-height: 50px;
  }

  .newsletter-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .newsletter-actions a {
    width: 100%;
    min-width: 0;
    padding-inline: 12px;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .trust-grid article {
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 12px;
    padding: 16px;
  }

  .trust-icon {
    width: 42px;
    height: 42px;
  }

  .newsletter-box {
    padding: 18px;
  }

  .newsletter h2 {
    max-width: 11ch;
    font-size: clamp(2rem, 10vw, 2.38rem);
  }

  .newsletter-actions {
    grid-template-columns: 1fr;
  }
}

/* Story/parallax section refinement: controlled editorial grid with no text/card overlap. */
.story {
  min-height: 90vh;
  display: grid;
  align-items: center;
  padding-block: clamp(84px, 10vw, 140px);
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 14%, rgba(224, 201, 147, 0.14), transparent 28rem),
    linear-gradient(135deg, #351018 0%, #1a1111 58%, #2a1215 100%);
}

.story-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.story-copy {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 100%;
  margin: 0;
  padding-top: 0;
}

.story-copy .section-label {
  color: var(--gold-soft);
}

.story-copy h2 {
  max-width: 620px;
  color: var(--ivory);
  font-size: clamp(2.6rem, 6vw, 5.8rem);
  line-height: 0.95;
}

.story-copy p:not(.section-label) {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 250, 243, 0.78);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.78;
}

.story-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 580px;
  margin-top: 30px;
}

.story-pills span {
  border: 1px solid rgba(224, 201, 147, 0.32);
  border-radius: 999px;
  padding: 9px 13px;
  color: var(--gold-soft);
  background: rgba(255, 250, 243, 0.05);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-layers {
  position: relative;
  inset: auto;
  left: auto;
  width: 100%;
  min-height: 620px;
  margin: 0;
  transform: none;
  overflow: visible;
  pointer-events: auto;
}

.story-card {
  position: absolute;
  display: grid;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(224, 201, 147, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 76% 14%, rgba(255, 241, 208, 0.28), transparent 16rem),
    linear-gradient(145deg, rgba(255, 250, 243, 0.16), rgba(104, 27, 42, 0.36)),
    linear-gradient(135deg, #4b1820, #1e1313);
  color: var(--ivory);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  will-change: transform;
}

.story-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255, 250, 243, 0.13);
  border-radius: 13px;
  pointer-events: none;
}

.story-card span {
  position: absolute;
  top: 24px;
  left: 24px;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-card svg {
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(62%, 260px);
  transform: translate(-50%, -52%);
  stroke: rgba(255, 250, 243, 0.68);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.story-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 28px 30px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 0.98;
}

.story-card-main {
  left: 13%;
  top: 7%;
  z-index: 1;
  width: min(70%, 450px);
  min-height: 520px;
}

.story-card-main h3 {
  max-width: 230px;
  margin-left: auto;
  padding-left: 24px;
}

.story-card-top {
  right: 0;
  top: 0;
  z-index: 3;
  width: min(45%, 290px);
  min-height: 300px;
}

.story-card-bottom {
  left: 0;
  bottom: 2%;
  z-index: 2;
  width: clamp(180px, 36%, 250px);
  min-height: 270px;
}

@media (max-width: 1024px) {
  .story-inner {
    grid-template-columns: minmax(0, 46%) minmax(0, 54%);
    gap: 34px;
  }

  .story-layers {
    min-height: 560px;
  }

  .story-card-main {
    width: 74%;
    min-height: 470px;
  }

  .story-card-top {
    width: 46%;
    min-height: 270px;
  }

  .story-card-bottom {
    width: 48%;
    min-height: 260px;
  }
}

@media (max-width: 860px) {
  .story {
    min-height: auto;
    display: block;
    padding-block: 68px;
  }

  .story-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .story-copy h2 {
    max-width: 100%;
    font-size: clamp(2.34rem, 11vw, 3.7rem);
  }

  .story-layers {
    min-height: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    overflow: visible;
  }

  .story-card,
  .story-card-main,
  .story-card-top,
  .story-card-bottom {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 190px;
    align-content: start;
    padding: 24px;
    transform: none !important;
  }

  .story-card span {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    margin-bottom: 16px;
  }

  .story-card svg {
    inset: 50% 22px auto auto;
    width: min(38%, 180px);
    opacity: 0.88;
    transform: translateY(-38%);
  }

  .story-card h3 {
    max-width: 62%;
    padding: 0;
    font-size: clamp(1.88rem, 8vw, 2.35rem);
  }

  .story-card-main h3 {
    max-width: 62%;
    margin-left: 0;
    padding-left: 0;
  }
}

@media (max-width: 430px) {
  .story {
    padding-block: 62px;
  }

  .story-copy p:not(.section-label) {
    line-height: 1.68;
  }

  .story-pills span {
    font-size: 0.66rem;
    padding: 8px 10px;
  }
}

/* SFB S-shaped collection journey */
.collections-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(76px, 9vw, 122px);
  background:
    radial-gradient(circle at 18% 12%, rgba(224, 201, 147, 0.16), transparent 28rem),
    linear-gradient(180deg, var(--cream), #fff9ef 48%, #f7eddf);
}

.collections-section .section-heading {
  width: var(--container);
  margin-inline: auto;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.collections-section .section-heading h2 {
  max-width: 900px;
}

.collections-section .section-heading p:last-child {
  max-width: 760px;
}

.journey-canvas {
  position: relative;
  width: min(var(--container-width), calc(100vw - 48px));
  min-height: 1240px;
  margin: 0 auto;
  isolation: isolate;
}

.journey-svg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.journey-base-path,
.journey-progress-path,
.journey-connector {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.journey-base-path {
  stroke: rgba(169, 135, 77, 0.2);
  stroke-width: 4;
}

.journey-progress-path {
  stroke: var(--gold-soft);
  stroke-width: 5;
  stroke-linecap: round;
  filter: drop-shadow(0 10px 22px rgba(169, 135, 77, 0.18));
}

.journey-connector {
  stroke: rgba(169, 135, 77, 0.42);
  stroke-width: 1.4;
  stroke-dasharray: 5 8;
}

.journey-node {
  fill: var(--ivory);
  stroke: var(--gold-soft);
  stroke-width: 4;
  filter: drop-shadow(0 10px 18px rgba(104, 27, 42, 0.16));
  transform-box: fill-box;
  transform-origin: center;
}

.journey-card {
  position: absolute;
  z-index: 2;
  width: clamp(286px, 29vw, 366px);
  min-height: 184px;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 14px;
  border: 1px solid rgba(169, 135, 77, 0.22);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.96), rgba(248, 238, 222, 0.9));
  box-shadow: 0 26px 70px rgba(62, 36, 28, 0.13);
  backdrop-filter: blur(10px);
}

.journey-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 18px;
  pointer-events: none;
}

.journey-card img {
  width: 100%;
  height: 100%;
  min-height: 150px;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.journey-card-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 9px;
}

.journey-number {
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.journey-card h3 {
  margin: 0;
  color: var(--maroon-dark);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.3vw, 2.08rem);
  line-height: 0.96;
}

.journey-card p {
  margin: 0;
  color: rgba(48, 38, 34, 0.72);
  font-size: 0.94rem;
  line-height: 1.48;
}

.journey-card a {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
  padding: 0 15px;
  border: 1px solid rgba(104, 27, 42, 0.18);
  border-radius: 999px;
  background: rgba(104, 27, 42, 0.06);
  color: var(--maroon);
  font-size: 0.73rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.15;
  text-transform: uppercase;
}

.journey-card a:hover,
.journey-card a:focus-visible {
  background: var(--maroon);
  color: var(--ivory);
}

.journey-card-01 {
  top: 42px;
  left: 0;
}

.journey-card-02 {
  top: 218px;
  right: 0;
}

.journey-card-03 {
  top: 404px;
  left: 30px;
}

.journey-card-04 {
  top: 596px;
  right: 24px;
}

.journey-card-05 {
  top: 786px;
  left: 0;
}

.journey-card-06 {
  top: 974px;
  right: 0;
}

@media (max-width: 1040px) and (min-width: 768px) {
  .journey-canvas {
    width: min(100vw - 36px, 880px);
    min-height: 1210px;
  }

  .journey-card {
    width: clamp(266px, 35vw, 318px);
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    padding: 12px;
  }

  .journey-card img {
    min-height: 138px;
  }

  .journey-card-01,
  .journey-card-05 {
    left: 0;
  }

  .journey-card-03 {
    left: 18px;
  }

  .journey-card-02,
  .journey-card-06 {
    right: 0;
  }

  .journey-card-04 {
    right: 18px;
  }
}

@media (max-width: 767px) {
  .collections-section {
    padding-block: 64px;
  }

  .collections-section .section-heading {
    width: var(--container);
    margin-bottom: 28px;
  }

  .journey-canvas {
    width: var(--container);
    min-height: 0;
    display: grid;
    gap: 18px;
    padding-left: 28px;
  }

  .journey-canvas::before {
    content: "";
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(224, 201, 147, 0.14), rgba(169, 135, 77, 0.72), rgba(224, 201, 147, 0.14));
  }

  .journey-svg {
    display: none;
  }

  .journey-card,
  .journey-card-01,
  .journey-card-02,
  .journey-card-03,
  .journey-card-04,
  .journey-card-05,
  .journey-card-06 {
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 0;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 13px;
    padding: 12px;
    border-radius: 20px;
  }

  .journey-card::before {
    content: "";
    position: absolute;
    top: 24px;
    left: -25px;
    width: 14px;
    height: 14px;
    border: 3px solid var(--gold-soft);
    border-radius: 999px;
    background: var(--ivory);
    box-shadow: 0 0 0 7px rgba(224, 201, 147, 0.16);
  }

  .journey-card img {
    min-height: 108px;
    aspect-ratio: 4 / 5;
  }

  .journey-card-copy {
    gap: 7px;
  }

  .journey-card h3 {
    font-size: clamp(1.38rem, 7vw, 1.82rem);
  }

  .journey-card p {
    font-size: 0.86rem;
    line-height: 1.42;
  }

  .journey-card a {
    min-height: 38px;
    padding-inline: 12px;
    font-size: 0.65rem;
  }
}

@media (max-width: 360px) {
  .journey-canvas {
    padding-left: 24px;
    gap: 15px;
  }

  .journey-card,
  .journey-card-01,
  .journey-card-02,
  .journey-card-03,
  .journey-card-04,
  .journey-card-05,
  .journey-card-06 {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }

  .journey-card img {
    min-height: 96px;
    border-radius: 14px;
  }

  .journey-card p {
    font-size: 0.81rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .journey-card,
  .journey-node,
  .journey-progress-path {
    opacity: 1 !important;
    transform: none !important;
  }
}

.legal-page {
  background:
    radial-gradient(circle at 18% 4%, rgba(224, 201, 147, 0.14), transparent 30rem),
    var(--ivory);
  overflow-x: clip;
}

.legal-page .site-header {
  background: rgba(255, 250, 243, 0.92);
  box-shadow: 0 10px 35px rgba(34, 16, 12, 0.09);
  backdrop-filter: blur(14px);
}

.legal-page .nav-shell {
  border-bottom-color: rgba(111, 29, 43, 0.1);
}

.legal-page .home2-brand,
.legal-page .site-header.is-scrolled .home2-brand {
  color: var(--maroon);
}

.legal-page .nav-menu,
.legal-page .site-header.is-scrolled .nav-menu {
  color: var(--charcoal);
}

.legal-page .nav-whatsapp,
.legal-page .site-header.is-scrolled .nav-whatsapp {
  background: var(--maroon);
  color: var(--ivory);
}

.legal-page .nav-toggle,
.legal-page .site-header.is-scrolled .nav-toggle {
  border-color: rgba(111, 29, 43, 0.18);
  background: rgba(111, 29, 43, 0.06);
  color: var(--maroon);
}

.legal-hero {
  width: min(var(--container-width, 1180px), calc(100vw - 40px));
  margin: 0 auto;
  padding: clamp(150px, 15vw, 190px) 0 clamp(58px, 8vw, 90px);
}

.legal-hero h1 {
  max-width: 940px;
  margin: 0;
  color: var(--maroon-dark);
  font-family: var(--font-display);
  font-size: clamp(3.6rem, 8vw, 7.4rem);
  font-weight: 600;
  line-height: 0.9;
}

.legal-hero p:not(.section-label) {
  max-width: 760px;
  margin: 28px 0 18px;
  color: rgba(48, 38, 34, 0.72);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.legal-hero span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid rgba(104, 27, 42, 0.14);
  border-radius: 999px;
  background: rgba(255, 250, 241, 0.74);
  color: var(--maroon);
  padding: 0 14px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-content {
  width: min(var(--container-width, 1180px), calc(100vw - 40px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-inline: auto;
  padding-top: 0;
}

.legal-card {
  min-width: 0;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(169, 135, 77, 0.2);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 250, 241, 0.98), rgba(248, 238, 222, 0.9));
  box-shadow: 0 20px 58px rgba(62, 36, 28, 0.08);
}

.legal-card-feature {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at 100% 0%, rgba(224, 201, 147, 0.18), transparent 22rem),
    linear-gradient(145deg, rgba(255, 250, 241, 0.98), rgba(248, 238, 222, 0.92));
}

.legal-card h2 {
  margin: 0 0 14px;
  color: var(--maroon-dark);
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  line-height: 0.98;
}

.legal-card p,
.legal-card li {
  color: rgba(48, 38, 34, 0.72);
}

.legal-card p {
  margin: 0 0 14px;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a:not(.btn) {
  color: var(--maroon);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}

.legal-card ol {
  display: grid;
  gap: 10px;
  margin: 0 0 22px;
  padding-left: 22px;
}

.legal-card .btn {
  width: fit-content;
}

@media (max-width: 860px) {
  .legal-content {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .legal-hero,
  .legal-content {
    width: min(100vw - 28px, 480px);
  }

  .legal-hero {
    padding-top: 116px;
    padding-bottom: 46px;
  }

  .legal-hero h1 {
    font-size: clamp(3rem, 15vw, 4.35rem);
  }

  .legal-card {
    border-radius: 20px;
  }

  .legal-card .btn {
    width: 100%;
  }
}
