:root {
  --bg: #ffffff;
  --bg-soft: #f4f4f4;
  --surface: rgba(255, 255, 255, 0.92);
  --surface-strong: rgba(244, 244, 244, 0.96);
  --surface-light: rgba(255, 255, 255, 0.78);
  --border: #c0c0c0;
  --border-strong: rgba(192, 192, 192, 0.98);
  --text: #151515;
  --text-soft: rgba(21, 21, 21, 0.82);
  --muted: rgba(21, 21, 21, 0.62);
  --gold: #3a3a3a;
  --gold-soft: #151515;
  --sand: #151515;
  --shadow: 0 22px 60px rgba(21, 21, 21, 0.08);
  --radius-lg: 2px;
  --radius-md: 2px;
  --radius-sm: 2px;
  --container: min(1120px, calc(100vw - 2rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  min-width: 320px;
  padding-bottom: 6rem;
  background:
    radial-gradient(circle at top, rgba(192, 192, 192, 0.18), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f4f4f4 56%, #ffffff 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

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

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

button {
  font: inherit;
}

.page-shell {
  overflow-x: clip;
  position: relative;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  z-index: -1;
  width: 18rem;
  height: 18rem;
  filter: blur(36px);
  opacity: 0.3;
  pointer-events: none;
}

.page-shell::before {
  top: 6rem;
  right: -4rem;
  background: rgba(192, 192, 192, 0.22);
}

.page-shell::after {
  bottom: 12rem;
  left: -4rem;
  background: rgba(58, 58, 58, 0.08);
}

.section,
.cta-final {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem max(1.1rem, calc((100% - var(--container)) / 2 + 1.1rem));
  background: transparent;
  border: none;
  border-radius: 0;
  backdrop-filter: none;
  transition: background 320ms ease, backdrop-filter 320ms ease, box-shadow 320ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 4px 24px rgba(21, 21, 21, 0.08);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.brand-mark {
  width: 2.85rem;
  height: 2.85rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #151515, #3a3a3a);
  color: #ffffff;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.brand-copy {
  display: grid;
  gap: 0.15rem;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  letter-spacing: 0.04em;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 55;
  width: min(20rem, 84vw);
  height: 100vh;
  height: 100svh;
  display: grid;
  align-content: start;
  gap: 0.2rem;
  padding: 6.4rem 1.25rem 1.5rem;
  background: rgba(255, 255, 255, 0.98);
  border-right: 1px solid var(--border);
  box-shadow: 18px 0 36px rgba(21, 21, 21, 0.12);
  overflow-y: auto;
  transform: translateX(calc(-100% - 1rem));
  visibility: hidden;
  transition: transform 260ms ease, visibility 260ms ease;
}

.site-nav.is-open {
  transform: translateX(0);
  visibility: visible;
}

.site-nav a {
  color: var(--text-soft);
  font-size: 1rem;
  padding: 0.95rem 0;
  border-bottom: 1px solid rgba(192, 192, 192, 0.5);
}

.site-nav a:last-child {
  border-bottom: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold);
}

.menu-toggle {
  appearance: none;
  display: inline-grid;
  align-content: center;
  gap: 0.28rem;
  width: 2.85rem;
  height: 2.85rem;
  padding: 0.75rem;
  border: 1px solid rgba(192, 192, 192, 0.9);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 10px 24px rgba(21, 21, 21, 0.08);
  cursor: pointer;
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  background: var(--bg-soft);
  border-color: var(--border-strong);
}

.menu-toggle-line {
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: transform 220ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(1) {
  transform: translateY(0.48rem) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-line:nth-child(3) {
  transform: translateY(-0.48rem) rotate(-45deg);
}

.menu-backdrop {
  appearance: none;
  position: fixed;
  inset: 0;
  z-index: 45;
  height: 100vh;
  height: 100svh;
  border: none;
  padding: 0;
  background: rgba(21, 21, 21, 0.24);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.menu-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

.hero {
  position: relative;
  width: 100%;
  margin: 0;
  height: 100vh;
  height: 100svh;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(7rem, 16vh, 10rem) 0 4rem;
  background: url("assets/mobile.webp") center center / cover no-repeat;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 21, 21, 0.18) 0%, rgba(21, 21, 21, 0.04) 26%, rgba(255, 255, 255, 0.26) 58%, rgba(255, 255, 255, 0.9) 100%);
  z-index: 0;
}

.hero-content,
.section-brand,
.cta-final {
  position: relative;
}

.hero-content {
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.92;
}

.hero h1 {
  max-width: 30ch;
  font-size: clamp(2.6rem, 7.5vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.hero-text,
.section-heading p,
.section-brand-content p,
.product-card p {
  color: var(--text-soft);
  line-height: 1.75;
}

.hero-text {
  max-width: 38rem;
  margin: 0;
  font-size: clamp(1.05rem, 2.8vw, 1.18rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
  margin-top: 0.35rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.3rem;
  padding: 0.85rem 1.35rem;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible,
.carousel-button:hover,
.carousel-button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, #3a3a3a, #151515);
  color: #ffffff;
  box-shadow: 0 16px 30px rgba(58, 58, 58, 0.18);
}

.button-secondary,
.button-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible,
.button-ghost:hover,
.button-ghost:focus-visible,
.carousel-button:hover,
.carousel-button:focus-visible {
  background: var(--bg-soft);
  border-color: var(--border-strong);
}

.button:focus-visible,
.carousel-button:focus-visible,
.menu-toggle:focus-visible,
.site-nav a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.product-card,
.section-brand,
.cta-final {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.carousel-tag,
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.7rem;
  border-radius: var(--radius-sm);
  background: rgba(58, 58, 58, 0.08);
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-panel strong {
  display: block;
  margin-top: 0.85rem;
  font-size: 1.1rem;
}

.section {
  padding: 1.5rem 0 0.5rem;
}

.section-heading {
  display: grid;
  gap: 0.75rem;
  max-width: 42rem;
}

.section h2 {
  font-size: clamp(2.5rem, 8vw, 4rem);
}

.carousel-shell {
  margin-top: 1.75rem;
}

.carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.carousel-controls {
  display: flex;
  gap: 0.7rem;
}

.carousel-button {
  width: 2.9rem;
  height: 2.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(82%, 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.product-card {
  scroll-snap-align: start;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 244, 244, 0.98));
}

.product-card img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: rgba(244, 244, 244, 0.96);
}

.product-card-content {
  display: grid;
  gap: 0.85rem;
  padding: 1.25rem;
}

.product-card-content h3 {
  margin: 0;
  font-size: 1.3rem;
  font-family: "Cormorant Garamond", serif;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.35rem;
}

.product-meta strong {
  color: var(--sand);
  font-size: 0.96rem;
}

.product-meta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.7rem;
  padding: 0.7rem 1rem;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, #3a3a3a, #151515);
  color: #ffffff;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-meta a:hover,
.product-meta a:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(21, 21, 21, 0.12);
}

.section-religious .product-meta a {
  min-height: 2.35rem;
  padding: 0.55rem 0.85rem;
  font-size: 0.9rem;
}

.section-brand {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top left, rgba(192, 192, 192, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(244, 244, 244, 0.98));
}

.section-brand-content {
  max-width: 44rem;
}

.brand-panel {
  padding: 1.3rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border);
}

.brand-panel span {
  display: inline-block;
  color: var(--gold);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-religious .product-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 244, 244, 0.98));
}

.cta-final {
  display: grid;
  gap: 1.2rem;
  align-items: center;
  padding: 1.75rem;
  margin-top: 3rem;
  margin-bottom: 2.5rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at left center, rgba(192, 192, 192, 0.35), transparent 28%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(244, 244, 244, 0.98));
}

.cta-final h2 {
  font-size: clamp(2.2rem, 7vw, 3.5rem);
}

.mobile-cta {
  position: fixed;
  inset: auto 1rem 1rem;
  z-index: 24;
  min-height: 2.9rem;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  box-shadow: 0 18px 36px rgba(21, 21, 21, 0.14);
}

@media (min-width: 700px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    padding-inline: 1.4rem;
  }

  .site-nav {
    display: inline-flex;
  }

  .site-nav {
    position: static;
    z-index: auto;
    width: auto;
    align-items: center;
    gap: 1.35rem;
    padding: 0;
    background: transparent;
    border-right: none;
    box-shadow: none;
    transform: none;
    visibility: visible;
  }

  .site-nav a {
    padding: 0;
    font-size: 0.94rem;
    border-bottom: none;
  }

  .menu-toggle,
  .menu-backdrop {
    display: none;
  }

  .hero {
    min-height: 100vh;
    min-height: 100svh;
    padding: clamp(8rem, 14vh, 10rem) 0 5rem;
    background-image: url("assets/desktop.webp");
  }

  .hero::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.84) 34%, rgba(255, 255, 255, 0.38) 58%, rgba(255, 255, 255, 0.12) 78%, rgba(255, 255, 255, 0) 100%);
  }

  .carousel-track {
    grid-auto-columns: minmax(18rem, 24rem);
  }

  .section-brand {
    grid-template-columns: minmax(0, 1.35fr) minmax(18rem, 0.9fr);
    align-items: end;
    padding: 2rem;
  }

  .cta-final {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 2rem;
  }

  .mobile-cta {
    display: none;
  }
}

@media (min-width: 980px) {
  .hero {
    padding-bottom: 5.5rem;
  }

  .product-card-content {
    padding: 1.35rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
