/* ===== Fonts ===== */
@font-face {
  font-family: 'Gafiya';
  src: url('../media/font/Gafiya-Regular.otf') format('opentype');
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: 'Cintarini';
  src: url('../media/font/Cintarini.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}

/* ===== Variables ===== */
:root {
  --background: #ffffff;
  --foreground: #000000;
  --primary: #000000;
  --primary-foreground: #ffffff;
  --secondary: #5c1a12;
  --secondary-foreground: #ffffff;
  --muted-foreground: #6b7280;
  --accent: #f5f5f5;
  --font-sans: 'Bricolage Grotesque', sans-serif;
  --font-heading: 'Gafiya', 'Bricolage Grotesque', serif;
  --gold: #c5a868;
  --header-height: 80px;
}

/* ===== Base ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.intro-active {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.font-heading {
  font-family: var(--font-heading);
}

/* ===== Intro Curtain ===== */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.intro-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-curtain-left,
.intro-curtain-right {
  position: absolute;
  top: 0;
  height: 100%;
  width: 50%;
  overflow: hidden;
  will-change: transform;
  background: transparent;
  transition: transform 2s cubic-bezier(0.65, 0, 0.35, 1);
}

.intro-curtain-left {
  left: 0;
  transform-origin: right center;
}

.intro-curtain-right {
  right: 0;
  transform-origin: left center;
}

.intro-curtain-left img,
.intro-curtain-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-curtain-left img {
  object-position: right center;
}

.intro-curtain-right img {
  object-position: left center;
}

.intro-overlay.reveal .intro-curtain-left {
  transform: translateX(-100%) scaleY(1.05);
}

.intro-overlay.reveal .intro-curtain-right {
  transform: translateX(100%) scaleY(1.05);
}

.intro-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.intro-overlay.reveal .intro-content {
  opacity: 0;
  transform: translateY(-40px) scale(0.95);
  pointer-events: none;
}

.intro-logo {
  font-family: var(--font-heading);
  font-size: clamp(1.625rem, 3.2vw, 2.375rem);
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
  line-height: 1;
  white-space: nowrap;
}

.intro-presents {
  font-family: var(--font-sans);
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 0 0 3rem;
  line-height: 1.4;
}

.intro-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(16px) scale(0.95);
  animation: introCharIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes introCharIn {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.btn-come-inside {
  background: var(--primary-foreground);
  color: var(--primary);
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  font-family: var(--font-sans);
  opacity: 0;
  transform: translateY(16px) scale(0.95);
  transition:
    opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn-come-inside.intro-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.btn-come-inside:hover {
  transform: translateY(0) scale(1.05);
}

.btn-come-inside:active {
  transform: translateY(0) scale(0.95);
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-height);
  transition:
    background 0.3s ease,
    color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.45s ease;
}

body.bridal-scroll-active .site-header {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.site-header.transparent {
  background-image: linear-gradient(to top, #dfe9f30a 0%, rgba(255, 255, 255, 0.081) 100%);    
  color: var(--primary);
}

.site-header.scrolled {
  background-image: linear-gradient(to top, #dfe9f3 0%, white 100%);  
  color: var(--primary);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

/* Home page — solid header, content starts below it */
.page-home main {
  margin-top: var(--header-height);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 1rem;
  max-width: 100%;
}

@media (min-width: 768px) {
  .header-inner {
    padding: 0 2rem;
  }
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
  height: 100%;
}

.menu-toggle {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  display: flex;
}

@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}

.main-nav {
  display: none;
  align-items: center;
  gap: 1.5rem;
  height: 100%;
}

@media (min-width: 992px) {
  .main-nav {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
  white-space: nowrap;
}

.nav-link:hover {
  opacity: 0.8;
}

.nav-item-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.collections-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -2rem;
  width: 100vw;
  background: var(--background);
  color: var(--primary);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  animation: fadeSlideDown 0.2s ease;
}

.nav-item-dropdown:hover .collections-dropdown {
  display: block;
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dropdown-inner {
  display: flex;
  height: 500px;
  padding: 0 2rem;
}

.dropdown-links {
  width: 25%;
  padding: 2rem 0;
  overflow-y: auto;
}

.dropdown-links h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.dropdown-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-links li a {
  display: block;
  padding: 0.5rem 0;
  color: var(--muted-foreground);
  transition: color 0.2s, background 0.2s;
}

.dropdown-links li a:hover {
  color: var(--primary);
}

.dropdown-marquee-wrap {
  width: 75%;
  padding: 2rem;
  overflow: hidden;
  position: relative;
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.dropdown-marquee-wrap.is-dragging {
  cursor: grabbing;
}

.marquee-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  will-change: transform;
}

.marquee-track img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.marquee-item {
  flex-shrink: 0;
  width: 300px;
}

.marquee-item-img {
  width: 300px;
  height: 400px;
  overflow: hidden;
}

.marquee-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.marquee-item:hover img {
  transform: scale(1.05);
}

.marquee-item span {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.header-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.header-logo a {
  pointer-events: auto;
}

@media (min-width: 992px) {
  .header-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    gap: 1rem;
  }

  .header-left {
    justify-self: start;
    min-width: 0;
  }

  .header-logo {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    justify-self: center;
    max-width: 100%;
    min-width: 0;
  }

  .header-right {
    justify-self: end;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .header-inner {
    gap: 0.5rem;
    padding: 0 1.25rem;
  }

  .main-nav {
    gap: 0.75rem;
  }

  .nav-link {
    font-size: 0.75rem;
    letter-spacing: 0.03em;
  }

  .header-logo-text {
    font-size: clamp(0.9rem, 1.5vw, 1.15rem);
    letter-spacing: 0.1em;
    gap: 0.25em;
  }

  .header-logo-sub {
    font-size: 0.58em;
    letter-spacing: 0.05em;
  }
}

.header-logo-text {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.25em;
  transition: color 0.3s ease;
  display: inline-flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: center;
  text-align: center;
  gap: 0.35em;
}

.header-logo-main {
  letter-spacing: inherit;
  white-space: nowrap;
}

.header-logo-desktop {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.35em;
}

.header-logo-mobile {
  display: none;
}

.header-logo-sub {
  font-size: 0.65em;
  letter-spacing: 0.08em;
  font-weight: 700;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .header-logo {
    max-width: calc(100vw - 5.75rem);
    padding: 0 0.25rem;
  }

  .header-logo-text {
    font-size: clamp(1.15rem, 4.2vw, 1.55rem);
    flex-direction: column;
    align-items: center;
    gap: 0.1em;
    letter-spacing: 0.1em;
    line-height: 1.1;
  }

  .header-logo-main {
    letter-spacing: 0.08em;
  }

  .header-logo-sub {
    font-size: 0.68em;
    letter-spacing: 0.05em;
  }

  .header-logo--long .header-logo-text {
    font-size: clamp(0.85rem, 3.4vw, 1.2rem);
    letter-spacing: 0.06em;
  }

  .header-logo-desktop {
    display: none;
  }

  .header-logo-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.1em;
    max-width: 100%;
  }

  .header-logo--long .header-logo-mobile .header-logo-main {
    letter-spacing: 0.05em;
    line-height: 1.15;
    text-align: center;
  }

  .header-logo--long .header-logo-mobile .header-logo-sub {
    font-size: 0.78em;
    letter-spacing: 0.04em;
    line-height: 1.15;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .header-logo {
    max-width: calc(100vw - 5.25rem);
  }

  .header-logo-text {
    font-size: clamp(1.05rem, 4.5vw, 1.35rem);
    letter-spacing: 0.08em;
  }

  .header-logo-sub {
    font-size: 0.7em;
  }

  .header-logo--long .header-logo-text {
    font-size: clamp(0.75rem, 3vw, 1rem);
    letter-spacing: 0.04em;
  }

  .header-logo--long .header-logo-mobile .header-logo-main,
  .header-logo--long .header-logo-mobile .header-logo-sub {
    letter-spacing: 0.03em;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 576px) {
  .header-right {
    gap: 1rem;
  }
}

.header-icon {
  background: none;
  border: none;
  color: inherit;
  cursor: pointer;
  padding: 0;
  display: flex;
}

.header-icon.hidden-mobile {
  display: none;
}

@media (min-width: 576px) {
  .header-icon.hidden-mobile {
    display: flex;
  }
}

/* Header search — expands inline from the search icon */
.header-search {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  border-radius: 999px;
  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    padding 0.25s ease,
    gap 0.25s ease;
}

@media (max-width: 991.98px) {
  .header-search {
    display: none;
  }
}

.header-search.is-open {
  gap: 0.3rem;
  padding: 0.3rem 0.4rem 0.3rem 0.55rem;
  background: #fff;
  color: #111;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
}

.header-search.is-open .header-search-btn {
  color: #111;
}

.page-find-bar {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  pointer-events: none;
  transition: max-width 0.35s ease, opacity 0.25s ease;
}

.header-search.is-open .page-find-bar {
  max-width: min(16rem, calc(100vw - 7rem));
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 576px) {
  .header-search.is-open .page-find-bar {
    max-width: min(18rem, calc(100vw - 10rem));
  }
}

.page-find-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-find-input {
  flex: 1;
  width: 8.5rem;
  min-width: 0;
  border: none;
  outline: none;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: #111;
  background: transparent;
}

.page-find-input::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

.page-find-count {
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.55);
  white-space: nowrap;
}

.page-find-nav,
.page-find-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.page-find-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.page-find-nav:not(:disabled):hover,
.page-find-close:hover {
  background: rgba(0, 0, 0, 0.06);
}

.page-find-mark {
  background: #fff3a3;
  color: inherit;
  padding: 0;
}

.page-find-mark--active {
  background: #ff9632;
  outline: 2px solid #ff9632;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.3s ease;
}

.mobile-menu.open {
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}

.mobile-menu.open .mobile-menu-backdrop {
  opacity: 1;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50%;
  max-width: 20rem;
  background: var(--background);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: 4px 0 24px rgba(0, 0, 0, 0.12);
}

.mobile-menu.open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.mobile-menu-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-nav {
  padding: 1.5rem;
}

.mobile-menu-nav > a {
  display: block;
  padding: 0.75rem 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-menu-item--accordion {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.75rem 0;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font-family: inherit;
  font-size: 1rem;
}

.mobile-menu-chevron {
  width: 1rem;
  height: 1rem;
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.mobile-menu-item--accordion.open .mobile-menu-chevron {
  transform: rotate(180deg);
}

.mobile-menu-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.mobile-menu-item--accordion.open .mobile-menu-submenu {
  max-height: 40rem;
}

.mobile-menu-submenu a {
  display: block;
  padding: 0.5rem 0 0.5rem 1rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 0.9rem;
  color: var(--muted-foreground);
  border-bottom: none;
}

.mobile-menu-submenu a:last-child {
  padding-bottom: 0.75rem;
}

.mobile-menu-submenu a:hover {
  color: var(--primary);
}

/* ===== Section heading decor ===== */
.section-heading-wrap {
  text-align: center;
  margin-bottom: 3rem;
}

.section-heading-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.section-heading-row img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
}

@media (min-width: 768px) {
  .section-heading-row img {
    width: 3rem;
    height: 3rem;
  }
}

.section-heading-row img.flip {
  transform: scaleX(-1);
}

.section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--primary);
  margin: 0;
}

/* ===== Hero ===== */
.hero-section {
  position: relative;
  height: calc(100vh - 64px);
  min-height: 500px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .hero-section {
    height: 52vh;
    min-height: 280px;
    max-height: 400px;
  }

  .hero-bg img {
    object-position: center 22%;
  }

  .hero-content {
    padding: 0 1rem 1rem;
  }
}

@media (min-width: 768px) {
  .hero-section {
    height: calc(100vh - var(--header-height));
    min-height: 500px;
    max-height: none;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
  padding: 0 1rem 2rem;
}

.hero-copy {
  mix-blend-mode: difference;
  color: #fff;
}

.hero-line {
  overflow: hidden;
}

.hero-text {
  transform: translateY(100%);
  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-text.revealed {
  transform: translateY(0);
}

.hero-text.delay-1 {
  transition-delay: 0.15s;
}

.hero-text.delay-2 {
  transition-delay: 0.3s;
}

.hero-title-italic {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(1.1rem, 2.6vw, 1.35rem);
  line-height: 1.25;
  margin: 0;
}

.hero-title-bold {
  font-size: clamp(1.5rem, 4.2vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  margin: 0;
}

/* ===== Models Carousel ===== */
.celebs-section {
  position: relative;
  width: 100%;
  padding: 3rem 0 2.5rem;
  overflow: visible;
}

@media (min-width: 992px) {
  .celebs-section {
    min-height: 100vh;
    padding: 3rem 0;
  }
}

.celebs-carousel-wrap {
  position: relative;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.celebs-carousel {
  position: relative;
  width: 100%;
  height: 540px;
  overflow: hidden;
  touch-action: pan-y;
}

@media (min-width: 768px) {
  .celebs-carousel {
    height: 600px;
  }
}

.celebs-carousel-stage {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1200px;
  perspective-origin: 50% 50%;
  transform-style: preserve-3d;
  isolation: isolate;
}

@media (min-width: 768px) {
  .celebs-carousel-stage {
    perspective: 2000px;
  }
}

.carousel-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16rem;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  contain: layout style;
  transition: none;
}

.celebs-carousel-stage.is-animating .carousel-card {
  will-change: transform, opacity;
}

@media (min-width: 768px) {
  .carousel-card {
    width: 20rem;
  }
}

.card-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 256 / 384;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #0a0a0a;
  box-shadow: 0 15px 30px -8px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.6s ease, border-color 0.6s ease;
}

.card-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  pointer-events: none;
  transition: background 0.6s ease;
  z-index: 4;
}

.carousel-card.is-layer-1 .card-inner::after {
  background: rgba(0, 0, 0, 0.18);
}

.carousel-card.is-layer-2 .card-inner::after {
  background: rgba(0, 0, 0, 0.28);
}

.card-inner.is-center {
  border: 2px solid rgba(255, 215, 0, 0.45);
  box-shadow:
    0 30px 60px -12px rgba(0, 0, 0, 0.3),
    0 0 40px rgba(255, 215, 0, 0.15);
}

.card-inner.is-center::after {
  background: rgba(0, 0, 0, 0);
}

.card-star {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  color: rgba(255, 255, 255, 0.92);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.card-inner.is-center .card-star {
  opacity: 1;
}

.card-inner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.card-inner .card-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 45%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
}

.card-caption {
  position: absolute;
  bottom: 1rem;
  left: 0;
  right: 0;
  z-index: 5;
  text-align: center;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  padding: 0 0.5rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 768px) {
  .card-caption {
    font-size: 0.8rem;
  }
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: background 0.2s, transform 0.2s;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 768px) {
  .carousel-btn {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(4px);
  }
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn.prev {
  left: 0.5rem;
}

.carousel-btn.next {
  right: 0.5rem;
}

@media (min-width: 768px) {
  .carousel-btn.prev {
    left: 1.5rem;
  }

  .carousel-btn.next {
    right: 1.5rem;
  }
}

/* ===== Video Section ===== */
.video-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-section video {
  width: 100%;
  height: auto;
  display: block;
}

/* Home page — full video width, trim height from bottom */
.page-home .video-section {
  height: auto;
  max-height: 90vh;
  background: #1a1a1a;
  overflow: hidden;
}

.page-home .video-section video {
  position: relative;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top center;
  display: block;
}
.video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

.video-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.video-content-title {
  margin: 0;
  font-family: 'Cintarini', var(--font-heading);
  font-size: clamp(2.5rem, 8vw, 5rem);
  line-height: 1.1;
  color: #cabfbf8e;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: none;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.5);
  padding: 0 1rem;
  transition: color 2.8s ease;
}

.video-content-title.is-visible {
  color: #cabfbf;
}

@media (max-width: 767px) {
  .video-content-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}

/* ===== New Arrivals ===== */
.new-arrivals-section {
  position: relative;
  width: 100%;
  padding: 3.5rem 1.5rem 4rem;
  overflow: hidden;
}

@media (min-width: 992px) {
  .new-arrivals-section {
    padding: 6rem 1.5rem;
  }
}

.new-arrivals-heading {
  margin-bottom: 3.5rem;
}

@media (min-width: 992px) {
  .new-arrivals-heading {
    margin-bottom: 6rem;
  }
}

.new-arrivals-scroll {
  overflow: hidden;
  padding-bottom: 0.25rem;
  cursor: grab;
  touch-action: pan-y;
}

.new-arrivals-scroll.is-dragging {
  cursor: grabbing;
  user-select: none;
}

.new-arrivals-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 0 0.25rem;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .new-arrivals-scroll {
    overflow-x: auto;
    scrollbar-width: none;
    cursor: auto;
  }

  .new-arrivals-scroll::-webkit-scrollbar {
    display: none;
  }
}

.product-card {
  flex: 0 0 calc(50vw - 2rem);
  max-width: 16rem;
}

@media (min-width: 768px) {
  .product-card {
    flex: 0 0 calc(33.333vw - 2rem);
    max-width: 18rem;
  }
}

@media (min-width: 992px) {
  .product-card {
    flex: 0 0 calc(25vw - 2rem);
    max-width: 20rem;
  }
}

@media (min-width: 1400px) {
  .product-card {
    flex: 0 0 calc(20vw - 2rem);
  }
}

.product-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-card-image-wrap {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #f5f5f5;
}

.product-card-image-wrap img,
.product-card-image-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card-link:hover .product-card-image-wrap img,
.product-card-link:hover .product-card-image-wrap video {
  transform: scale(1.03);
}

.product-wishlist {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.product-wishlist:hover {
  transform: scale(1.08);
  color: #c5a868;
}

.product-card-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 0 0;
}

.product-card-text h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--primary);
}

.product-price {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--muted-foreground);
}

.product-price .from {
  margin-right: 0.2rem;
}

.product-price .price-current {
  color: var(--primary);
  font-weight: 600;
}

.product-price .price-old {
  margin-left: 0.35rem;
  text-decoration: line-through;
  color: #9ca3af;
}

.product-quick-view {
  flex-shrink: 0;
  color: #6b7280;
  margin-top: 0.1rem;
}

.new-arrivals-scroll-hint {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  height: 1.5rem;
  margin: 2rem auto 0;
  cursor: pointer;
  touch-action: none;
}

.scroll-track {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 4px;
  transform: translateY(-50%);
  background: #e5e7eb;
  border-radius: 999px;
  pointer-events: none;
}

.scroll-thumb {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  width: 1rem;
  height: 0.5rem;
  background: #888;
  border-radius: 999px;
  transform: translate(0, -50%);
  cursor: grab;
  touch-action: none;
}

.new-arrivals-scroll-hint.is-dragging .scroll-thumb {
  cursor: grabbing;
}

.new-arrivals-view-all {
  margin-top: 6rem;
}

/* ===== Categories ===== */
.categories-section {
  position: relative;
  padding: 4rem 1.5rem;
  overflow: hidden;
}

@media (min-width: 992px) {
  .categories-section {
    padding: 6rem 1.5rem;
  }
}

.categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.category-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 0.5rem;
  aspect-ratio: 3 / 4;
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* .category-card:hover img {
  transform: scale(1.04);
} */

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.12) 40%,
    transparent 65%
  );
  display: flex;
  align-items: flex-end;
  padding: 1rem 1.25rem;
  pointer-events: none;
}

@media (min-width: 768px) {
  .category-card-overlay {
    padding: 1.25rem 1.5rem;
  }
}

.category-card-overlay span {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

@media (min-width: 768px) {
  .category-card-overlay span {
    font-size: 1.375rem;
  }
}

.btn-view-all {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  margin: 6rem auto 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: var(--primary);
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: 500;
  gap: 0.75rem;
  transition: opacity 0.2s ease;
}

.btn-view-all img {
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
  flex-shrink: 0;
}

.btn-view-all img.flip {
  transform: scaleX(-1);
}

@media (min-width: 768px) {
  .btn-view-all {
    font-size: 1.125rem;
    gap: 1rem;
  }

  .btn-view-all img {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.btn-view-all:hover {
  opacity: 0.7;
}

/* ===== Bridal Excellence ===== */
.bridal-pin-wrap {
  position: relative;
  height: 400vh;
}

.bridal-section {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100dvh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

body.bridal-scroll-active .bridal-section {
  height: 100vh;
  height: 100dvh;
}

.bridal-title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 5;
  width: 100%;
  padding: 0 1rem;
  pointer-events: none;
  will-change: opacity;
  backface-visibility: hidden;
}

.bridal-title h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 8vw, 6rem);
  line-height: 1.15;
  color: #fff;
  margin: 0;
}

.bridal-title .italic-sub {
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
}

.bridal-cards-wrap {
  position: absolute;
  inset: 0;
  max-width: 1400px;
  margin: 0 auto;
  pointer-events: none;
  z-index: 10;
}

.bridal-card {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13rem;
  aspect-ratio: 3 / 4;
  height: auto;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0;
  will-change: transform, opacity;
  backface-visibility: hidden;
}

@media (min-width: 768px) {
  .bridal-card {
    width: 19rem;
  }
}

@media (min-width: 1200px) {
  .bridal-card {
    width: 21rem;
  }
}

.bridal-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bridal-card .card-tint {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
}

@media (prefers-reduced-motion: reduce) {
  .bridal-pin-wrap {
    height: auto;
  }

  .bridal-section {
    position: relative;
    min-height: 100vh;
    padding: 4rem 1rem;
  }

  .bridal-cards-wrap {
    position: relative;
    inset: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
    max-width: 40rem;
  }

  .bridal-card {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    opacity: 1;
    transform: none !important;
  }
}

/* ===== Festive Special ===== */
.festive-special-section {
  padding: 4rem 1.5rem 5rem;
  background: var(--background);
}

@media (min-width: 992px) {
  .festive-special-section {
    padding: 6rem 1.5rem 7rem;
  }
}

.festive-special-heading {
  margin-bottom: 3rem;
}

@media (min-width: 992px) {
  .festive-special-heading {
    margin-bottom: 4rem;
  }
}

.festive-special-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 1400px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .festive-special-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }
}

.festive-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.festive-card-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 0.5rem;
  background: #f5f5f5;
}

.festive-card-media img,
.festive-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.festive-card-link:hover .festive-card-media img,
.festive-card-link:hover .festive-card-media video {
  transform: scale(1.03);
}

.festive-wishlist {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  width: 2rem;
  height: 2rem;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.festive-wishlist:hover {
  transform: scale(1.08);
  color: var(--gold);
}

.festive-instagram {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}

@media (min-width: 768px) {
  .festive-instagram {
    font-size: 0.72rem;
  }
}

.festive-card-title {
  margin: 0.85rem 0 0;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.35;
  color: var(--primary);
  text-align: center;
}

@media (min-width: 768px) {
  .festive-card-title {
    font-size: 0.95rem;
    margin-top: 1rem;
  }
}

/* ===== Elegance Blooms ===== */
.elegance-section {
  position: relative;
  width: 100%;
  height: 90vh;
  max-height: 90vh;
  display: block;
  overflow: hidden;
}

.elegance-bg-gray {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(100%);
}

.elegance-bg-color {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  clip-path: circle(0px at 50% 50%);
}

.elegance-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  text-align: center;
  color: var(--secondary-foreground);
  padding: 0 1.5rem 3rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .elegance-content {
    padding-bottom: 4rem;
  }
}

@media (min-width: 992px) {
  .elegance-content {
    padding-bottom: 6rem;
  }
}

.elegance-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 1rem;
}

.elegance-content p {
  display: none;
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 72rem;
  margin: 0 auto 1rem;
  line-height: 1.6;
}

@media (min-width: 576px) {
  .elegance-content p {
    display: block;
  }
}

.elegance-content a {
  font-size: clamp(1rem, 2vw, 1.25rem);
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 767px) {
  .elegance-section {
    height: auto;
    max-height: none;
  }

  .elegance-bg-gray {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center top;
  }

  .elegance-bg-color {
    object-fit: contain;
    object-position: center top;
  }

  .elegance-content {
    padding: 0 1rem 2rem;
  }

  .elegance-content h2 {
    font-size: clamp(1.1rem, 4.5vw, 1.5rem);
    line-height: 1.3;
  }
}

/* ===== Need Assistance ===== */
.assistance-section {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
  .assistance-section {
    padding: 4rem 1.5rem;
  }
}

@media (min-width: 992px) {
  .assistance-section {
    padding: 5rem 1.5rem;
  }
}

.assistance-section .section-heading {
  color: var(--primary-foreground);
}

.assistance-section p {
  text-align: center;
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 42rem;
  margin: 0 auto 2rem;
  opacity: 0.8;
}

.btn-book-call {
  display: block;
  margin: 0 auto;
  background: var(--secondary-foreground);
  color: var(--primary);
  text-decoration: none;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: var(--font-sans);
}

.btn-book-call:hover {
  opacity: 0.9;
}

/* ===== Boutiques ===== */
.boutiques-section {
  padding: 5rem 0;
  background: #fff;
  overflow: hidden;
}

@media (min-width: 992px) {
  .boutiques-section {
    padding: 8rem 0;
  }
}

.boutique-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 5rem;
}

@media (min-width: 992px) {
  .boutique-row {
    flex-direction: row;
    gap: 5rem;
    margin-bottom: 8rem;
  }

  .boutique-row.reverse {
    flex-direction: row-reverse;
  }
}

.boutique-image-wrap {
  width: 100%;
  position: relative;
}

@media (min-width: 992px) {
  .boutique-image-wrap {
    width: 50%;
  }
}

.boutique-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 2px;
  /* background: #f3f4f6;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12); */
}

.boutique-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.boutique-image-wrap:hover img {
  transform: scale(1.05);
}

.boutique-image .img-overlay {
  position: absolute;
  inset: 0;
  /* background: rgba(0, 0, 0, 0.1); */
  transition: background 0.5s;
}

.boutique-image-wrap:hover .img-overlay {
  background: transparent;
}

.boutique-corner {
  display: none;
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  width: 6rem;
  height: 6rem;
  border-right: 2px solid rgba(0, 0, 0, 0.3);
  border-bottom: 2px solid rgba(0, 0, 0, 0.3);
  z-index: -1;
}

.boutique-row.reverse .boutique-corner {
  right: auto;
  left: -1rem;
  border-right: none;
  border-left: 2px solid rgba(0, 0, 0, 0.3);
}

@media (min-width: 992px) {
  .boutique-corner {
    display: block;
  }
}

.boutique-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .boutique-info {
    width: 50%;
    align-items: flex-start;
    text-align: left;
  }
}

.boutique-location {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
}

.boutique-name {
  font-family: var(--font-heading);
  font-size: clamp(1.775rem, 4vw, 2rem);
  color: #111827;
  margin: 0;
}

.boutique-divider {
  width: 3rem;
  height: 2px;
  background: rgba(0, 0, 0, 0.5);
}

.boutique-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: #4b5563;
  max-width: 28rem;
}

@media (min-width: 992px) {
  .boutique-detail {
    flex-direction: row;
    align-items: flex-start;
  }
}

.boutique-detail svg {
  flex-shrink: 0;
  color: var(--primary);
  margin-top: 0.25rem;
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #111827;
  color: #fff;
  border: none;
  padding: 1.25rem 2rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
  font-family: var(--font-sans);
}

.btn-directions:hover {
  background: var(--primary);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* ===== Footer ===== */
.site-footer {
  background: #000;
  color: #fff;
  width: 100%;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

@media (min-width: 576px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-col {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

@media (min-width: 576px) {
  .footer-col {
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.35);
  }

  .footer-col:nth-child(2n) {
    border-right: none;
  }
}

@media (min-width: 992px) {
  .footer-col {
    border-right: 1px solid rgba(255, 255, 255, 0.35);
  }

  .footer-col:nth-child(2n) {
    border-right: 1px solid rgba(255, 255, 255, 0.35);
  }

  .footer-col:last-child {
    border-right: none;
  }
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
  color: #fff;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li + li {
  margin-top: 0.5rem;
}

.footer-col a {
  display: inline-block;
  font-size: 0.9375rem;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  text-underline-offset: 0.2em;
  transition: text-decoration-color 0.6s ease;
}

.footer-col a:hover {
  text-decoration: underline;
  text-decoration-color: #fff;
  text-decoration-thickness: 1px;
}

.footer-logo-wrap {
  padding: 0rem 1rem ;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.footer-logo-link {
  display: block;
  color: inherit;
  text-decoration: none;
  width: 100%;
  max-width: none;
}

.footer-logo-inner {
  position: relative;
  width: 100%;
  padding: clamp(0.75rem, 2vw, 1.5rem) 0;
}

.footer-logo-text {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 8vw, 8.5rem);
  line-height: 1;
  letter-spacing: 0.06em;
  color: #fff;
  white-space: nowrap;
  transition: text-shadow 0.45s ease, -webkit-text-stroke 0.45s ease;
}

.footer-logo-link:hover .footer-logo-text {
  -webkit-text-stroke: 0.5px rgba(255, 255, 255, 0.85);
  text-shadow:
    0 0 6px rgba(255, 255, 255, 0.95),
    0 0 18px rgba(255, 255, 255, 0.65),
    0 0 36px rgba(255, 255, 255, 0.35);
}

.footer-brand-mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3em;
  width: 100%;
  letter-spacing: 0.2em;
}

.footer-brand-main,
.footer-brand-sub {
  display: inline-block;
}

.footer-brand-sub {
  position: relative;
}

@media (max-width: 575px) {
  .footer-logo-text {
    font-size: clamp(2.25rem, 12vw, 4.5rem);
    white-space: normal;
    line-height: 1.05;
  }

  .footer-brand-mark {
    flex-direction: column;
    align-items: center;
    gap: 0.08em;
    letter-spacing: 0.18em;
  }
}

.footer-reg {
  position: absolute;
  top: -0.7em;
  left: 100%;
  margin-left: 0.06em;
  font-size: 0.26em;
  line-height: 1;
  letter-spacing: 0;
  font-family: var(--font-sans);
}

.footer-copyright {
  padding: 1rem 1.5rem 1.25rem;
  text-align: center;
}

.footer-copyright p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}

@media (min-width: 576px) {
  .footer-copyright p {
    font-size: 0.8125rem;
  }
}

.footer-copyright a {
  color: inherit;
  text-decoration: none;
}

.footer-copyright a:hover {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.nav-link.is-active {
  opacity: 0.65;
}

/* ===== About Page ===== */
.about-page {
  background: var(--background);
}

.about-main {
  margin-top: var(--header-height);
}

.about-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.about-section {
  padding: 5rem 0;
}

@media (min-width: 768px) {
  .about-section {
    padding: 6rem 0;
  }
}

.about-section--dark {
  background: #000;
  color: #fff;
}

.about-section--tint {
  background: rgba(0, 0, 0, 0.04);
}

.about-section--timeline {
  background: #faf7f4;
}

.about-timeline-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.about-timeline-eyebrow {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.about-timeline-head h2 {
  margin: 0 0 1.25rem;
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--secondary);
}

.about-timeline-rule {
  display: block;
  width: 3.5rem;
  height: 2px;
  margin: 0 auto;
  background: var(--gold);
}

.about-timeline {
  max-width: 44rem;
  margin: 0 auto;
}

.about-timeline-item {
  display: grid;
  grid-template-columns: 2.75rem 1fr;
  gap: 0 2rem;
  position: relative;
  padding-bottom: 3.25rem;
}

.about-timeline-item:last-child {
  padding-bottom: 0;
}

.about-timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 1.3125rem;
  top: 2.75rem;
  bottom: 0;
  width: 2px;
  background: var(--secondary);
  transform: translateX(-50%);
}

.about-timeline-marker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--secondary);
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.about-timeline-icon {
  color: var(--gold);
  font-size: 0.875rem;
  line-height: 1;
}

.about-timeline-icon--text {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.about-timeline-content h3 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  line-height: 1.2;
  color: var(--secondary);
}

.about-timeline-content p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted-foreground);
}

.about-timeline-content strong {
  color: var(--secondary);
  font-weight: 600;
}

@media (max-width: 575px) {
  .about-timeline-item {
    grid-template-columns: 2.25rem 1fr;
    gap: 0 1.25rem;
    padding-bottom: 2.5rem;
  }

  .about-timeline-marker {
    width: 2.25rem;
    height: 2.25rem;
  }

  .about-timeline-item:not(:last-child)::after {
    left: 1.0625rem;
    top: 2.25rem;
  }

  .about-timeline-icon--text {
    font-size: 0.5625rem;
  }
}

.about-section--express {
  padding-bottom: 7rem;
}

.about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  color: #fff;
  overflow: hidden;
}

.about-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-hero-video--mobile {
  display: block;
}

.about-hero-video--desktop {
  display: none;
}

@media (min-width: 768px) {
  .about-hero-video--mobile {
    display: none;
  }

  .about-hero-video--desktop {
    display: block;
  }
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.about-hero-content {
  position: relative;
  z-index: 1;
  max-width: 56rem;
  padding: 2rem 1rem;
  text-align: center;
}

.about-hero-content h1 {
  margin: 0 0 1.5rem;
  font-size: clamp(2.75rem, 8vw, 4.5rem);
  line-height: 1.05;
}

.about-hero-content p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.7;
}

.about-split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .about-split {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .about-split--reverse .about-split-media {
    order: -1;
  }
}

.about-split-text h2,
.about-centered h2,
.about-section-head h2,
.about-dual h2,
.about-express h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: var(--primary);
}

.about-section--dark .about-split-text h2,
.about-section--dark h2,
.about-centered h2 {
  color: #fff;
}

.about-split-text p,
.about-dual p {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

.about-section--dark p {
  color: rgba(255, 255, 255, 0.88);
}

.about-split-media {
  position: relative;
  height: 28rem;
  border-radius: 0.5rem;
  overflow: hidden;
}

.about-split-media--tall {
  height: 32rem;
}

.about-split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 767px) {
  .about-split-media--tall {
    display: none;
  }
}

.about-centered {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.about-lead {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.75;
  color: #fff;
  margin: 0 0 1.5rem;
}

.about-muted {
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.about-section-head {
  max-width: 42rem;
  margin: 0 auto 4rem;
  text-align: center;
}

.about-section-head p {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--muted-foreground);
  line-height: 1.75;
}

.about-accent {
  margin-top: 1rem !important;
  color: var(--primary) !important;
  font-style: italic;
}

.about-store-address-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
}

.about-store-address {
  margin: 0;
  max-width: 36rem;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--muted-foreground);
}

.about-philosophy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .about-philosophy-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
  }
}

.about-philosophy-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.5rem;
  background: #fff;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-philosophy-card:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.about-philosophy-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.about-philosophy-card p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: var(--primary);
}

.about-philosophy-note {
  margin: 3rem auto 0;
  max-width: 42rem;
  text-align: center;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--muted-foreground);
}

.about-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  color: var(--primary);
}

.about-checklist li::before {
  content: '';
  flex-shrink: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--primary);
}

.about-quote {
  margin: 0;
  padding-left: 1rem;
  border-left: 4px solid var(--primary);
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--primary);
}

.about-stores-grid {
  display: grid;
  gap: 2rem;
}

.about-stores-single {
  display: flex;
  justify-content: center;
}

.about-stores-single .about-store-card {
  width: 100%;
  max-width: 42rem;
}

@media (min-width: 768px) {
  .about-stores-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-store-card h3 {
  margin: 1rem 0 0;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-align: center;
  color: var(--primary);
}

.about-store-image {
  position: relative;
  height: 25rem;
  border-radius: 0.75rem;
  overflow: hidden;
}

.about-store-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.about-store-card:hover .about-store-image img {
  transform: scale(1.1);
}

.about-dual {
  display: grid;
  gap: 3rem;
}

@media (min-width: 768px) {
  .about-dual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
  }
}

.about-dual h2 {
  font-size: 1.875rem;
  color: #fff;
}

.about-express {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}

.about-express-decor {
  width: 6rem;
  height: auto;
  margin: 0 auto 1rem;
  opacity: 0.5;
}

.about-express p {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

.about-express-tagline {
  margin: 1.5rem 0 0;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  color: var(--primary);
}

.about-reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-reveal-delay {
  transition-delay: 0.12s;
}

.about-reveal-delay-2 {
  transition-delay: 0.24s;
}

.about-reveal-delay-3 {
  transition-delay: 0.36s;
}

@media (prefers-reduced-motion: reduce) {
  .about-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .about-philosophy-card:hover,
  .about-store-card:hover .about-store-image img {
    transform: none;
    box-shadow: none;
  }
}

/* ===== Contact Page ===== */
.contact-page {
  background: var(--background);
}

.contact-main {
  margin-top: var(--header-height);
}

.contact-hero {
  position: relative;
  width: 100%;
  height: 40vh;
  min-height: 280px;
  overflow: hidden;
}

.contact-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
}

.contact-hero-title {
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  line-height: 1.1;
  color: #fff;
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-hero-title.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-body {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.contact-grid {
  display: grid;
  gap: 3rem;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-section-title {
  margin: 0 0 1.5rem;
  font-family: var(--font-sans);
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.2;
  color: var(--primary);
}

.contact-lead {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-detail-item h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-sans);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary);
}

.contact-detail-item p,
.contact-detail-item a {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--muted-foreground);
}

.contact-detail-item a {
  display: inline-block;
  transition: color 0.2s ease;
}

.contact-detail-item a:hover {
  color: var(--primary);
}

.contact-form-wrap {
  background: #f9fafb;
  padding: 2rem;
  border-radius: 0.5rem;
}

.contact-form-title {
  margin: 0 0 1.5rem;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contact-field label {
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
  color: var(--primary);
}

.contact-field input,
.contact-field textarea,
.contact-field select {
  width: 100%;
  min-height: 2.25rem;
  padding: 0.5rem 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  color: var(--primary);
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.375rem;
  outline: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-field textarea {
  min-height: 7.5rem;
  resize: vertical;
  line-height: 1.5;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: var(--muted-foreground);
}

.contact-field input:focus,
.contact-field textarea:focus,
.contact-field select:focus {
  border-color: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.contact-select-wrap {
  position: relative;
}

.contact-select-wrap select {
  appearance: none;
  padding-right: 2.25rem;
  cursor: pointer;
}

.contact-select-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.5;
}

.contact-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--muted-foreground);
  cursor: pointer;
}

.contact-consent-label input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  min-height: 1rem;
  margin-top: 0.125rem;
  flex-shrink: 0;
  padding: 0;
  border-radius: 0.25rem;
  accent-color: var(--primary);
  cursor: pointer;
}

.contact-consent-label a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-consent-label a:hover {
  color: var(--secondary);
}

.contact-submit {
  width: 100%;
  min-height: 2.25rem;
  padding: 0.5rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-submit:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.88);
}

.contact-submit:disabled {
  opacity: 0.85;
  cursor: default;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.contact-form-status {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  line-height: 1.5;
  text-align: center;
}

.contact-form-status.is-success {
  color: #1a7f37;
}

.contact-form-status.is-error {
  color: #b42318;
}

.contact-map-section {
  margin-top: 4rem;
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-map-title {
  margin: 0 0 1.5rem;
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 400;
  text-align: center;
  color: var(--primary);
}

.contact-map-wrap {
  width: 100%;
  height: 400px;
  background: #e5e7eb;
  border-radius: 0.5rem;
  overflow: hidden;
}

.contact-reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-reveal-delay {
  transition-delay: 0.12s;
}

@media (prefers-reduced-motion: reduce) {
  .contact-hero-title,
  .contact-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== Collection Page (Ready to Wear) ===== */
.collection-page {
  background: var(--background);
}

.collection-main {
  margin-top: var(--header-height);
}

.collection-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 4;
  overflow: hidden;
  background: #f5f5f5;
}

@media (max-width: 767px) {
  .collection-banner {
    aspect-ratio: 16 / 9;
    min-height: 210px;
  }

  .collection-banner img {
    object-position: center 35%;
  }
}

.collection-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-heading-wrap {
  position: relative;
  z-index: 1;
  padding: 4rem 1.5rem;
  text-align: center;
}

@media (min-width: 992px) {
  .collection-heading-wrap {
    padding: 4rem 1.5rem;
    margin-top: 0;
  }
}

.collection-heading-wrap .section-heading {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--primary);
}

.collection-heading-wrap.collection-reveal {
  opacity: 0;
  transform: translateY(1.5rem);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.collection-heading-wrap.collection-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.collection-products {
  padding: 0 1.5rem 5rem;
}

.collection-products-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 640px) {
  .collection-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
  }
}

@media (min-width: 992px) {
  .collection-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.collection-grid .product-card {
  flex: unset;
  max-width: none;
  width: 100%;
}

.collection-reveal {
  opacity: 0;
  transform: translateY(1.75rem);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.collection-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.collection-reveal-delay-1 {
  transition-delay: 0.08s;
}

.collection-reveal-delay-2 {
  transition-delay: 0.16s;
}

.collection-reveal-delay-3 {
  transition-delay: 0.24s;
}

.product-wishlist.is-active {
  color: #c51104;
}

.product-wishlist.is-active svg {
  fill: #c51104;
  stroke: #c51104;
}

@media (prefers-reduced-motion: reduce) {
  .collection-reveal,
  .collection-heading-wrap.collection-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== Policy Pages ===== */
.policy-page {
  background: var(--background);
}

.policy-main {
  margin-top: var(--header-height);
}

.policy-hero {
  position: relative;
  width: 100%;
  height: 40vh;
  min-height: 280px;
  overflow: hidden;
}

.policy-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.policy-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
}

.policy-hero-title {
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  line-height: 1.1;
  color: #fff;
  text-align: center;
  padding: 0 1rem;
}

.policy-body {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 1.25rem 5rem;
}

.policy-content {
  color: var(--foreground);
}

.policy-updated {
  margin: 0 0 1.5rem;
  font-size: 0.9rem;
  color: var(--muted-foreground);
  letter-spacing: 0.02em;
}

.policy-content > p {
  margin: 0 0 1.25rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--foreground);
}

.policy-section {
  margin-top: 2.5rem;
}

.policy-section h2 {
  margin: 0 0 1rem;
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--foreground);
}

.policy-section p {
  margin: 0 0 1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--foreground);
}

.policy-section ul {
  margin: 0;
  padding-left: 1.25rem;
  list-style: disc;
}

.policy-section li {
  margin-bottom: 0.65rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--foreground);
}

.policy-section li:last-child {
  margin-bottom: 0;
}

.policy-note {
  margin-top: 1rem;
  font-style: italic;
  color: var(--muted-foreground);
}
