h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 16px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.98;
}

h2 {
  font-size: clamp(34px, 4.4vw, 58px);
}

h3 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

h4 {
  font-size: 28px;
  line-height: 1.12;
}

h5 {
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.18;
}

h6 {
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 1.22;
}
:root {
  --bg: #f5f1ea;
  --surface: #fcfaf6;
  --surface-strong: #fffdf9;
  --text: #181411;
  --text-soft: #6d6259;
  --text-inverse: #f8f3ed;
  --accent: #af7b4b;
  --accent-dark: #8f633b;
  --success: #245c45;
  --shadow-sm: 0 12px 30px rgba(30, 22, 16, 0.05);
  --shadow-md: 0 20px 70px rgba(24, 20, 17, 0.09);
  --shadow-lg: 0 28px 90px rgba(24, 20, 17, 0.12);
  --container: minmax(24px, 1fr) minmax(0, 1350px) minmax(24px, 1fr);
  --ease: 0.3s ease;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: radial-gradient(
      circle at top left,
      rgba(255, 255, 255, 0.85),
      transparent 28%
    ),
    linear-gradient(180deg, #f8f3eb 0%, #f5f1ea 42%, #f1ece4 100%);
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
}
.page-shell {
  overflow: hidden;
}
.container,
.section-grid {
  display: grid;
  grid-template-columns: var(--container);
}
.container > *,
.section-grid > * {
  grid-column: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 20px 0;
  border-bottom: 1px solid transparent;
  transition: background-color var(--ease), backdrop-filter var(--ease),
    border-color var(--ease), box-shadow var(--ease), padding var(--ease);
}
.site-header.is-solid {
  background: rgba(252, 250, 246, 0.88);
  backdrop-filter: blur(18px);
  border-color: rgba(24, 20, 17, 0.08);
  box-shadow: 0 10px 35px rgba(24, 20, 17, 0.06);
  padding: 12px 0;
}
.topbar {
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  letter-spacing: 0.08em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(24, 20, 17, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}
.nav-links,
.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links {
  justify-content: center;
}
.nav-link,
.icon-button,
.text-link {
  position: relative;
  transition: color var(--ease), opacity var(--ease), transform var(--ease);
}
.nav-link::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}
.nav-link:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
}
.icon-button {
  width: 46px;
  min-width: 46px;
  height: 46px;
  border: 1px solid rgba(24, 20, 17, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.icon-button--header {
  font-size: 18px;
  color: var(--text);
}
.icon-button--header i {
  line-height: 1;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.icon-button:hover,
.btn:hover,
.product-card:hover .product-card__media img,
.banner-card:hover img,
.instagram-card:hover img,
.gallery-thumb:hover img {
  transform: translateY(-2px);
}
.icon-button:hover {
  border-color: rgba(24, 20, 17, 0.16);
  background: rgba(255, 255, 255, 0.9);
}
.cart-count {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text-inverse);
  font-size: 11px;
  display: none;
  align-items: center;
  justify-content: center;
}

.shatter-banner {
  position: relative;
  width: min(1280px, calc(100% - 48px));
  height: clamp(320px, 44vw, 520px);
  margin: 28px auto 0;
  border-radius: 40px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(24, 20, 17, 0.08);
}
.shard-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
  background: linear-gradient(135deg, rgba(20, 16, 12, 0.18), rgba(20, 16, 12, 0.04));
}
.shard-slide.active {
  opacity: 1;
  pointer-events: auto;
}
.shard-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}
#slide-1::before {
  background-image: linear-gradient(rgba(18, 15, 12, 0.18), rgba(18, 15, 12, 0.32)), url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=1400&q=80");
}
#slide-2::before {
  background-image: linear-gradient(rgba(18, 15, 12, 0.18), rgba(18, 15, 12, 0.32)), url("https://images.unsplash.com/photo-1611930022073-b7a4ba5fcccd?auto=format&fit=crop&w=1400&q=80");
}
.shard-wrapper {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  z-index: 1;
}
.shard {
  position: relative;
  overflow: hidden;
}
.shard::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: 500% 100%;
  background-position: calc(var(--i) * 25%) 50%;
  transform: translateY(0);
  transition: transform 1.1s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.1s ease;
}
#slide-1 .shard::before {
  background-image: linear-gradient(rgba(18, 15, 12, 0.06), rgba(18, 15, 12, 0.16)), url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=1400&q=80");
}
#slide-2 .shard::before {
  background-image: linear-gradient(rgba(18, 15, 12, 0.06), rgba(18, 15, 12, 0.16)), url("https://images.unsplash.com/photo-1611930022073-b7a4ba5fcccd?auto=format&fit=crop&w=1400&q=80");
}
.shard-slide.active .shard::before {
  transform: translateY(0);
  opacity: 1;
}
.shard-slide.is-leaving .shard::before {
  transform: translateY(calc(28px + (var(--i) * 14px)));
  opacity: 0;
}
.shard-content {
  position: absolute;
  inset: auto auto 42px 42px;
  z-index: 2;
  max-width: 520px;
  color: #fff;
}
.shard-content h2 {
  margin: 0;
  font-size: clamp(52px, 8vw, 104px);
  line-height: 0.88;
  letter-spacing: 0.06em;
}
.shard-content p {
  margin: 16px 0 0;
  font-size: clamp(16px, 2vw, 22px);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.88);
}
@media (max-width: 760px) {
  .shatter-banner {
    width: min(100%, calc(100% - 28px));
    height: 320px;
    margin-top: 16px;
    border-radius: 28px;
  }
  .shard-content {
    left: 24px;
    right: 24px;
    bottom: 24px;
  }
  .shard-content p {
    letter-spacing: 0.12em;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  padding: 128px 0 72px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 110px 24px auto 24px;
  height: 620px;
  background: radial-gradient(
      circle at 20% 18%,
      rgba(255, 255, 255, 0.82),
      transparent 34%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.42),
      rgba(255, 255, 255, 0.08)
    );
  border-radius: 48px;
  pointer-events: none;
  z-index: 0;
}
.hero__wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 56px;
  align-items: center;
}
.hero-copy {
  max-width: 620px;
}
.hero-details {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  padding: 18px 22px;
  border: 1px solid rgba(24, 20, 17, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-sm);
}
.hero-details[hidden] {
  display: none;
}
.hero-details__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.hero-details__group {
  display: grid;
  gap: 10px;
}
.hero-details__group h4 {
  margin: 0;
}
.hero-details__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.hero-details__list li {
  position: relative;
  margin: 0;
  padding-left: 22px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-soft);
}
.hero-details__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #181411;
  border-right: 2px solid #181411;
  transform: translateY(-50%) rotate(45deg);
}
.hero-copy .hero__cta {
  margin-top: 34px;
}
.hero-slider__nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 40px;
}
.hero-slider__button {
  width: 58px;
  height: 58px;
}
.hero-slider__progress {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-slider__dot {
  border: 0;
  padding: 0;
  cursor: pointer;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: rgba(24, 20, 17, 0.14);
  transition: transform var(--ease), background-color var(--ease),
    opacity var(--ease);
  opacity: 0.72;
}
.hero-slider__dot.is-active {
  background: var(--text);
  opacity: 1;
  transform: scaleX(1.08);
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin-bottom: 15px;
}
.eyebrow::before {
  content: "";
  width: 48px;
  height: 1px;
  background: rgba(24, 20, 17, 0.2);
}
.hero h1,
.section-title,
.page-title,
.banner-copy h3,
.story-card h3,
.checkout-summary h3,
.drawer__header h3 {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: -0.03em;
  line-height: 0.95;
}
.hero h1 {
  margin: 22px 0 24px;
  font-size: 60px;

}
.hero p,
.section-copy,
.product-card__meta p,
.story-card p,
.testimonial-card p,
.footer-copy,
.product-copy p {
  color: var(--text-soft);
  line-height: 1.75;
  font-size: 16px;
}
.hero__cta,
.button-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.btn {
  border: 0;
  border-radius: 999px;
  padding: 16px 28px;
  transition: transform var(--ease), background-color var(--ease),
    box-shadow var(--ease), color var(--ease), border-color var(--ease);
}
.btn-primary {
  background: var(--text);
  color: var(--text-inverse);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: #000;
  box-shadow: var(--shadow-md);
}
.btn-secondary,
.qty-button,
.tab-button,
.field-input,
.auth-panel,
.checkout-card,
.product-tabs,
.product-card,
.story-card,
.testimonial-card,
.instagram-card,
.banner-card,
.cart-item,
.orders-panel,
.account-dropdown,
.filters-card {
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(24, 20, 17, 0.08);
}
.btn-secondary {
  color: var(--text);
}
.btn-secondary:hover {
  border-color: rgba(24, 20, 17, 0.16);
  box-shadow: var(--shadow-sm);
}

.hero-visual {
  position: relative;
  padding: 34px 28px 34px 26px;
  min-height: 760px;
  display: flex;
  align-items: stretch;
  isolation: isolate;
}
.hero-visual__frame {
  position: relative;
  border-radius: 44px;
  overflow: hidden;
  min-height: 700px;
  width: 100%;
  z-index: 0;
  box-shadow: var(--shadow-lg);
  background: rgba(255, 255, 255, 0.44);
}
.hero-visual__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(24, 20, 17, 0.16),
    rgba(24, 20, 17, 0.28)
  );
  pointer-events: none;
}
.hero-visual__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82);
  transition: opacity 0.45s ease, transform 0.8s ease;
}
.hero-visual__frame img.is-changing {

  transform: scale(1.03);
}
.hero-visual__note,
.stat-card {
  position: absolute;
  background: rgba(255, 251, 245, 0.88);
  border: 1px solid rgba(24, 20, 17, 0.08);
  border-radius: 24px;
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}
.hero-visual__note {
  bottom: 16px;
  left: -4px;
  max-width: 320px;
  z-index: 3;
}
.stat-card {
  top: 84px;
  right: -14px;
  min-width: 286px;
  z-index: 3;
}
.hero-copy p {
  max-width: 58ch;
}
.section {
  padding: 50px 0;
}
.section-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 40px;
}
.section-title,
.page-title {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 58px);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.product-card {
  border-radius: 28px;
  overflow: hidden;
  transition: transform var(--ease), box-shadow var(--ease),
    border-color var(--ease);
}
.product-card:hover,
.story-card:hover,
.banner-card:hover,
.testimonial-card:hover,
.instagram-card:hover,
.checkout-card:hover,
.cart-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(24, 20, 17, 0.12);
}
.product-card__media,
.banner-card,
.instagram-card,
.gallery-main {
  overflow: hidden;
}
.product-card__media img,
.banner-card img,
.instagram-card img,
.gallery-thumb img,
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.product-card__media {
  aspect-ratio: 0.85;
  background: #eee6dd;
}
.product-card__meta {
  padding: 24px;
}
.product-card__meta-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}
.price {
  font-weight: 700;
  color: var(--accent-dark);
}
.tag {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: rgba(24, 20, 17, 0.04);
}

.story-layout,
.category-layout,
.checkout-layout,
.product-layout,
.page-layout,
.footer-grid {
  display: grid;
  gap: 24px;
}
.story-layout {
  grid-template-columns: 1fr;
  gap: 30px;
}
.story-panel {
  position: relative;
  isolation: isolate;
  padding: 56px;
  border-radius: 36px;
  overflow: hidden;
  background: url("https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9?auto=format&fit=crop&w=1200&q=80") center/cover;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  color: #ffffff;
  box-shadow: var(--shadow-lg);
}
.story-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at left bottom, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.08) 38%, rgba(0, 0, 0, 0) 62%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28));
  z-index: 0;
}
.story-panel > * {
  position: relative;
  z-index: 1;
}
.story-panel p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 55ch;
}
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.story-card {
  border-radius: 30px;
  padding: 32px;
}
.story-card h3 {
  margin: 0 0 16px;
  font-size: 34px;
}
.category-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.banner-card {
  position: relative;
  min-height: 540px;
  border-radius: 32px;
}
.banner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 15, 12, 0.05),
    rgba(18, 15, 12, 0.58)
  );
}
.banner-copy {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  z-index: 1;
  color: var(--text-inverse);
}
.banner-copy h3 {
  margin: 12px 0;
  font-size: 42px;
}
.testimonial-shell {
  display: grid;
  grid-template-columns: 80px 1fr 80px;
  align-items: center;
  gap: 20px;
}
.testimonial-card {
  padding: 40px;
  border-radius: 30px;
  min-height: 260px;
  display: grid;
  gap: 18px;
}
.slider-button {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(24, 20, 17, 0.08);
  background: rgba(255, 255, 255, 0.64);
  transition: transform var(--ease), background-color var(--ease),
    box-shadow var(--ease);
}
.slider-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.instagram-card {
  border-radius: 24px;
  aspect-ratio: 0.9;
}

.footer {
  padding: 80px 0 40px;
  border-top: 1px solid rgba(24, 20, 17, 0.08);
}
.footer-grid {
  grid-template-columns: 1.3fr repeat(3, 1fr);
  align-items: start;
}
.footer-title {
  margin: 0 0 18px;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.footer-links {
  display: grid;
  gap: 14px;
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(24, 20, 17, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-soft);
  font-size: 14px;
}

.page-hero {
  padding: 80px 0 70px;
}
.page-layout {
  grid-template-columns: 280px 1fr;
  align-items: start;
}
.filters-card,
.checkout-card,
.auth-panel,
.orders-panel,
.account-dropdown {
  border-radius: 28px;
  padding: 28px;
}
.field {
  display: grid;
  gap: 10px;
}
.field-input {
  width: 100%;
  border-radius: 18px;
  border: 1px solid rgba(24, 20, 17, 0.08);
  padding: 14px 16px;
  transition: border-color var(--ease), box-shadow var(--ease),
    background-color var(--ease);
}
.field-input:focus {
  outline: none;
  border-color: rgba(175, 123, 75, 0.5);
  box-shadow: 0 0 0 4px rgba(175, 123, 75, 0.08);
  background: rgba(255, 255, 255, 0.9);
}

.product-layout {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}
.product-gallery {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  position: sticky;
  top: 120px;
}
.gallery-thumbs {
  display: grid;
  gap: 12px;
}
.gallery-thumb,
.qty-button,
.tab-button {
  border: 1px solid rgba(24, 20, 17, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.55);
  transition: transform var(--ease), border-color var(--ease),
    box-shadow var(--ease);
}
.gallery-thumb {
  aspect-ratio: 0.8;
  overflow: hidden;
}
.gallery-thumb.is-active,
.tab-button.is-active {
  border-color: rgba(175, 123, 75, 0.44);
  box-shadow: var(--shadow-sm);
}
.gallery-main {
  border-radius: 36px;
  aspect-ratio: 0.9;
  background: #efe7de;
  box-shadow: var(--shadow-md);
}
.product-copy {
  display: grid;
  gap: 28px;
}
.product-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4.4vw, 58px);
  line-height: 0.95;
  margin: 0;
}
.product-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.qty-picker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.qty-button {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.product-tabs {
  border-radius: 32px;
  padding: 18px;
}
.tab-buttons {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.tab-button {
  padding: 12px 18px;
}
.tab-panel {
  display: none;
  color: var(--text-soft);
  line-height: 1.8;
}
.tab-panel.is-active {
  display: block;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(460px, 100%);
  height: 100vh;
  z-index: 80;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  background: rgba(252, 249, 243, 0.94);
  backdrop-filter: blur(24px);
  border-left: 1px solid rgba(24, 20, 17, 0.08);
  box-shadow: -18px 0 60px rgba(24, 20, 17, 0.12);
  display: grid;
  grid-template-rows: auto 1fr auto;
}
.cart-drawer.is-open {
  transform: translateX(0);
}
.drawer-backdrop,
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(18, 15, 12, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  z-index: 70;
}
.drawer-backdrop.is-visible,
.modal-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.drawer__header,
.drawer__footer {
  padding: 24px;
  border-bottom: 1px solid rgba(24, 20, 17, 0.08);
}
.drawer__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}
.drawer__footer {
  border-top: 1px solid rgba(24, 20, 17, 0.08);
  border-bottom: 0;
}
.drawer__body,
.cart-page-list,
.orders-list {
  padding: 24px;
  overflow-y: auto;
  display: grid;
  gap: 16px;
}
.cart-item {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 16px;
  padding: 16px;
  border-radius: 24px;
}
.cart-item__media {
  width: 92px;
  height: 112px;
  border-radius: 18px;
  overflow: hidden;
  background: #eee6dd;
}
.cart-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item__controls {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.line-total {
  font-weight: 700;
}
.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}
.checkout-layout {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: start;
}
.checkout-summary {
  position: sticky;
  top: 120px;
}
.order-success {
  border-radius: 28px;
  padding: 28px;
  background: rgba(36, 92, 69, 0.08);
  border: 1px solid rgba(36, 92, 69, 0.16);
  display: none;
}
.order-success.is-visible {
  display: block;
}

.auth-modal {
  position: fixed;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -48%) scale(0.96);
  width: min(520px, calc(100% - 32px));
  z-index: 90;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--ease), transform var(--ease);
}
.auth-modal.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.auth-panel {
  box-shadow: var(--shadow-lg);
}
.auth-switch {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
  align-items: center;
}
.auth-forms {
  display: grid;
}
.auth-form {
  display: none !important;
}
.auth-form.is-active {
  display: grid !important;
}
.account-area {
  position: relative;
}
.account-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 300px;
  display: none;
  box-shadow: var(--shadow-md);
}
.account-dropdown.is-open {
  display: grid;
  gap: 18px;
}

.toast-stack {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: grid;
  gap: 12px;
}
.toast {
  min-width: 280px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(24, 20, 17, 0.92);
  color: var(--text-inverse);
  box-shadow: var(--shadow-md);
  transform: translateY(12px);
  opacity: 0;
  transition: opacity var(--ease), transform var(--ease);
}
.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero__wrap,
  .story-layout,
  .checkout-layout,
  .product-layout,
  .page-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    max-width: none;
  }
  .product-grid,
  .instagram-grid,
  .category-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .product-gallery,
  .checkout-summary {
    position: static;
  }
}
@media (max-width: 760px) {
  .shop-hero {
    padding-top: 132px;
  }
  .shop-hero__copy,
  .shop-hero__card,
  .shop-filter-card,
  .shop-note-card,
  .shop-toolbar,
  .shop-empty {
    padding: 24px;
    border-radius: 28px;
  }
  .shop-hero__meta,
  .shop-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 28px;
}
  .shop-filter-card__header {
    flex-direction: column;
  }
}

.shop-section {
  padding-top: 24px;
}
.shop-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}
.shop-sidebar {
  display: grid;
  gap: 24px;
  position: sticky;
  top: 118px;
}
.shop-filter-card,
.shop-note-card,
.shop-toolbar,
.shop-empty {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(24, 20, 17, 0.08);
  box-shadow: var(--shadow-sm);
}
.shop-filter-card,
.shop-note-card {
  border-radius: 32px;
  padding: 30px;
}
.shop-filter-card {
  display: grid;
  gap: 20px;
}
.shop-filter-card__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}
.shop-filter-card__header h3,
.shop-note-card h3,
.shop-toolbar__title,
.shop-empty h3 {
  margin: 14px 0 0;
  font-family: "Cormorant Garamond", serif;
}
.shop-filter-card__header h3,
.shop-note-card h3 {
  font-size: 32px;
  line-height: 0.96;
}
.shop-note-card {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.94), rgba(255,255,255,0.52) 40%),
    linear-gradient(180deg, rgba(245, 238, 230, 0.92), rgba(255, 255, 255, 0.72));
}
.shop-main {
  display: grid;
  gap: 24px;
  align-items: start;
}
.shop-toolbar {
  border-radius: 32px;
  padding: 24px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}
.shop-toolbar__title {
  font-size: clamp(32px, 3.8vw, 46px);
  line-height: 0.96;
}
.shop-toolbar .section-copy {
  margin: 0;
  max-width: 320px;
  text-align: left;
}
.shop-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 28px;
}
.shop-product-grid .product-card {
  border-radius: 28px;
  height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
}
.shop-product-grid .product-card__media {
  aspect-ratio: 1.2;
  min-height: 320px;
}
.shop-product-grid .product-card__meta {
  padding: 18px;
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 220px;
}
.shop-product-grid .product-card h3 {
  margin: 8px 0 0;
  font-size: 20px;
  line-height: 1.02;
}
.shop-product-grid .product-card p {
  font-size: 14px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.shop-product-grid .button-row {
  gap: 12px;
  margin-top: auto;
}
.shop-product-grid .btn {
  padding: 13px 18px;
}
.shop-empty {
  border-radius: 32px;
  padding: 48px 32px;
  text-align: center;
}
.shop-empty h3 {
  font-size: 48px;
  line-height: 0.96;
}
.shop-empty p {
  margin: 12px auto 0;
  max-width: 44ch;
  color: var(--text-soft);
}
@media (max-width: 1100px) {
  .shop-shell,
  .shop-toolbar {
    grid-template-columns: 1fr;
  }
  .shop-sidebar {
    position: static;
  }
  .shop-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .shop-product-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .product-tile__media {
  display: block;
  aspect-ratio: 0.88;
  overflow: hidden;
  position: relative;
}
}
.product-tile__price {
  font-weight: 700;
  color: var(--text);
}
@media (max-width: 760px) {
  .shop-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 28px;
}
  .product-tile__footer {
    align-items: start;
    flex-direction: column;
  }
}



/* Shop Page Repair */
.shop-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}
.shop-sidebar {
  display: grid;
  gap: 24px;
  position: sticky;
  top: 118px;
}
.shop-filter-card,
.shop-toolbar,
.shop-empty,
.shop-menu-card {
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(24, 20, 17, 0.08);
  box-shadow: var(--shadow-sm);
  border-radius: 32px;
}
.shop-filter-card {
  padding: 30px;
  display: grid;
  gap: 20px;
}
.shop-filter-card__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
}
.shop-filter-card__header h3 {
  margin: 14px 0 0;
  font-size: 32px;
  line-height: 0.96;
}
.shop-toolbar {
  padding: 24px 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}
.shop-toolbar__title {
  font-size: clamp(32px, 3.8vw, 46px);
  line-height: 0.96;
}
.shop-menu-card {
  overflow: hidden;
}
.shop-menu-group {
  margin: 0;
  border-bottom: 1px solid rgba(24, 20, 17, 0.08);
}
.shop-menu-group:last-child {
  border-bottom: 0;
}
.shop-menu-group summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
}
.shop-menu-group summary::-webkit-details-marker {
  display: none;
}
.shop-menu-group summary::after {
  content: '+';
  font-size: 18px;
  color: var(--text-soft);
}
.shop-menu-group[open] summary::after {
  content: '-';
}
.shop-menu-list {
  padding: 0 22px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.shop-menu-chip {
  appearance: none;
  border: 1px solid rgba(24, 20, 17, 0.10);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-soft);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1;
}
.shop-menu-chip:hover,
.shop-menu-chip.is-active {
  color: var(--text);
  border-color: rgba(24, 20, 17, 0.18);
  background: #fff;
}
.shop-product-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 28px;
  align-items: start;
}
.product-tile {
  display: grid;
  gap: 16px;
  align-content: start;
}
.product-tile__media {
  display: block;
  aspect-ratio: 0.9;
  overflow: hidden;
  position: relative;
}
.product-tile__media::after {
  content: '';
  position: absolute;
  inset: auto 14% 4% 14%;
  height: 18px;
  background: radial-gradient(ellipse at center, rgba(24, 20, 17, 0.10), rgba(24, 20, 17, 0));
  filter: blur(10px);
  pointer-events: none;
}
.product-tile__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.8s ease;
}
.product-tile:hover .product-tile__media img {
  transform: scale(1.03);
}
.product-tile__body {
  display: grid;
  gap: 10px;
}
.product-tile__title {
  margin: 0;
  font-size: 20px;
  line-height: 1.12;
}
.product-tile__keyword {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-soft);
}
.product-tile__rating {
  font-size: 14px;
  letter-spacing: 0.04em;
  color: var(--text);
}
.product-tile__price-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.product-tile__price {
  font-weight: 700;
  color: var(--text);
}
@media (max-width: 1100px) {
  .shop-shell,
  .shop-toolbar {
    grid-template-columns: 1fr;
  }
  .shop-sidebar {
    position: static;
  }
}
@media (max-width: 760px) {
  .shop-filter-card,
  .shop-toolbar,
  .shop-menu-card {
    padding: 22px;
    border-radius: 28px;
  }
  .shop-product-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
}

/* Shop Final Lock */
.shop-main {
  display: grid !important;
  gap: 24px !important;
  align-items: start !important;
}
.shop-menu-card {
  padding: 0 !important;
  overflow: hidden !important;
}
.shop-menu-group {
  margin: 0 !important;
  border-bottom: 1px solid rgba(24, 20, 17, 0.08) !important;
}
.shop-menu-group:last-child {
  border-bottom: 0 !important;
}
.shop-menu-group > summary {
  list-style: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 18px 22px !important;
  cursor: pointer !important;
  font-weight: 600 !important;
}
.shop-menu-group > summary::-webkit-details-marker {
  display: none !important;
}
.shop-menu-group > summary::after {
  content: '+' !important;
  font-size: 18px !important;
  color: var(--text-soft) !important;
}
.shop-menu-group[open] > summary::after {
  content: '-' !important;
}
.shop-menu-list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px !important;
  padding: 0 22px 18px !important;
}
.shop-menu-chip {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 10px 14px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(24, 20, 17, 0.10) !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: var(--text-soft) !important;
  white-space: nowrap !important;
}
.shop-product-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 34px 28px !important;
  align-items: start !important;
}
.product-tile {
  display: grid !important;
  gap: 16px !important;
  align-content: start !important;
}
.product-tile__media {
  display: block !important;
  aspect-ratio: 0.9 !important;
  overflow: hidden !important;
  position: relative !important;
}
.shop-product-grid .product-tile__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center !important;
}
.product-tile__body {
  display: grid !important;
  gap: 10px !important;
}
@media (max-width: 1100px) {
  .shop-shell {
    grid-template-columns: 1fr !important;
  }
  .shop-sidebar {
    position: static !important;
  }
}
@media (max-width: 760px) {
  .shop-product-grid {
    grid-template-columns: 1fr !important;
    gap: 26px !important;
  }
}

/* Shop card polish */
.shop-product-grid {
  grid-template-columns: repeat(2, minmax(260px, 1fr)) !important;
  gap: 32px 28px !important;
}
.product-tile {
  min-width: 0;
  justify-items: center;
  align-content: start;
}
.product-tile__media {
  width: min(100%, 470px);
  aspect-ratio: 1 !important;
  border-radius: 30px;
  background:
    radial-gradient(circle at top, rgba(255, 255, 255, 0.98), rgba(244, 237, 228, 0.92) 58%, rgba(237, 227, 216, 0.88));
  border: 1px solid rgba(24, 20, 17, 0.08);
  box-shadow: var(--shadow-sm);
}
.product-tile__media::after {
  inset: auto 18% 7% 18% !important;
}
.shop-product-grid .product-tile__media img {
  width: 100% !important;
  height: 100% !important;
  padding: 26px;
  object-fit: contain !important;
  object-position: center !important;
}
.product-tile__quick-actions {
  width: min(100%, 470px);
  display: flex;
  justify-content: center;
  margin-top: -4px;
}
.product-tile__cart-button {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(24, 20, 17, 0.1);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease),
    background-color var(--ease), border-color var(--ease);
}
.product-tile__cart-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: rgba(24, 20, 17, 0.16);
  background: #fff;
}
.product-tile__cart-button i {
  font-size: 16px;
  line-height: 1;
}
.product-tile__body {
  width: min(100%, 470px);
  gap: 12px !important;
  justify-self: center;
}
.product-tile__title {
  text-align: left;
}
.product-tile__title a {
  transition: color var(--ease);
}
.product-tile__title a:hover {
  color: var(--accent-dark);
}
.product-tile__keyword {
  min-height: 46px;
}
.product-tile__rating {
  color: var(--text-soft);
}
.product-tile__price-row {
  justify-content: space-between;
  align-items: center;
  padding-top: 10px;
  border-top: 1px solid rgba(24, 20, 17, 0.08);
}
.product-tile__price {
  font-size: 18px;
  color: var(--accent-dark);
}
@media (max-width: 900px) {
  .shop-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 760px) {
  .shop-shell {
    gap: 22px !important;
  }
  .shop-product-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .shop-toolbar {
    padding: 22px !important;
  }
  .shop-toolbar__title {
    font-size: clamp(28px, 8vw, 38px) !important;
  }
}




/* Shatter Banner Final */
.shatter-banner {
  position: relative !important;
  width: 100% !important;
  height: 900px !important;
  background: #000 !important;
  overflow: hidden !important;
  margin: 0 !important;
  border-radius: 0 !important;
  border: 0 !important;
  box-shadow: none !important;
}

.shard-slide {
  position: absolute !important;
  inset: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 1 !important;
  opacity: 1 !important;
  pointer-events: none !important;
  transition: none !important;
  background: transparent !important;
}

.shard-slide::before {
  content: none !important;
}

.shard-slide.active {
  z-index: 2 !important;
  pointer-events: auto !important;
}

.shard-wrapper {
  position: absolute !important;
  inset: 0 !important;
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

.shard {
  height: 100% !important;
  background-size: 500% 100% !important;
  background-position: calc(var(--i) * 25%) 0 !important;
  background-repeat: no-repeat !important;
  transform: translateY(100%) scaleY(1.5) !important;
  filter: blur(10px) !important;
  transition: transform 1.2s cubic-bezier(0.8, 0, 0.2, 1), filter 0.8s ease !important;
  transition-delay: calc(var(--i) * 0.1s) !important;
}

.shard::before {
  content: none !important;
}

#slide-1 .shard {
  background-image: url('../main-website/banner-1.png') !important;
}

#slide-2 .shard {
  background-image: url('../main-website/banner-2.png') !important;
}

.shard-slide.active .shard {
  transform: translateY(0) scaleY(1) !important;
  filter: blur(0) !important;
}

.shard-content {
  position: relative !important;
  z-index: 10 !important;
  color: #fff !important;
  text-align: center !important;
  opacity: 0 !important;
  transition: all 1s ease 0.8s !important;
  inset: auto !important;
  max-width: none !important;
}

.shard-slide.active .shard-content {
  opacity: 1 !important;
}

.shard-content h2 {
  font-size: 10vw !important;
  font-weight: 900 !important;
  margin: 0 !important;
  letter-spacing: -5px !important;
  line-height: 0.9 !important;
  -webkit-text-stroke: 1px rgba(255,255,255,0.3) !important;
}

.shard-content p {
  margin: 16px 0 0 !important;
  font-size: clamp(16px, 2vw, 24px) !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,0.88) !important;
}

@media (max-width: 760px) {
  .shatter-banner {
    height: 100svh !important;
  }

  .shard-content h2 {
    font-size: 18vw !important;
  }

  .shard-content p {
    font-size: 14px !important;
    padding: 0 20px !important;
    letter-spacing: 0.12em !important;
  }
}

/* Contact page */
.contact-section {
  padding-top: 34px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.contact-sidebar {
  display: grid;
  gap: 22px;
  position: sticky;
  top: 118px;
}

.contact-card,
.contact-form {
  background: rgba(255, 255, 255, 0.66);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(24, 20, 17, 0.08);
  border-radius: 32px;
  box-shadow: var(--shadow-sm);
}

.contact-card {
  padding: 30px;
}

.contact-card--story h3,
.contact-form__intro h2 {
  margin: 14px 0 0;
  font-size: clamp(34px, 4vw, 46px);
  line-height: 0.96;
}

.contact-card--story .section-copy,
.contact-form__intro .section-copy {
  margin: 16px 0 0;
}

.contact-card--details {
  display: grid;
  gap: 18px;
}

.contact-detail {
  display: grid;
  gap: 6px;
}

.contact-detail strong {
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.contact-detail a,
.contact-detail span {
  font-size: 18px;
  line-height: 1.5;
}

.contact-form {
  padding: 34px;
  display: grid;
  gap: 18px;
}

.contact-form__intro {
  display: grid;
  gap: 14px;
  margin-bottom: 6px;
}

.contact-form__split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form .button-row {
  margin-top: 8px;
}

@media (max-width: 1100px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-sidebar {
    position: static;
  }
}

@media (max-width: 760px) {
  .contact-card,
  .contact-form {
    padding: 24px;
    border-radius: 28px;
  }

  .contact-form__split {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact-detail a,
  .contact-detail span {
    font-size: 16px;
  }
}

.before-after-section {
  padding-top: 10px;
}
.before-after-shell {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
  align-items: center;
  padding: 34px;
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.42) 36%),
    linear-gradient(135deg, rgba(248, 242, 233, 0.98), rgba(240, 232, 221, 0.9));
  border: 1px solid rgba(24, 20, 17, 0.08);
  box-shadow: var(--shadow-md);
}
.before-after-copy {
  display: grid;
  gap: 22px;
  align-content: start;
}
.before-after-copy .section-title {

}
.before-after-copy .section-copy {
 
  margin: 0;
}
.before-after-ritual {
  display: grid;
  gap: 20px;
}
.before-after-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}
.before-after-steps::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: 17px;
  height: 1px;
  background: linear-gradient(90deg, rgba(24, 20, 17, 0.1), rgba(175, 123, 75, 0.32), rgba(24, 20, 17, 0.1));
}
.before-after-step {
  position: relative;
  display: grid;
  gap: 12px;
  padding-top: 30px;
}
.before-after-step::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--surface-strong);
  border: 1px solid rgba(175, 123, 75, 0.48);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.72);
}
.before-after-step__time {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.before-after-step p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
  font-size: 14px;
  max-width: 22ch;
}
.before-after-highlight {
  display: grid;
  gap: 10px;
  padding: 18px 0 0 18px;
  border-left: 1px solid rgba(24, 20, 17, 0.1);
}
.before-after-highlight__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-dark);
}
.before-after-highlight p {
  margin: 0;
  color: var(--text);
  line-height: 1.75;
  max-width: 48ch;
}
.before-after-board {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 12px 0;
}
.comparison-card {
  display: grid;
  gap: 14px;
  align-content: start;
  max-width: 270px;
}
.comparison-card--before {
  align-self: start;
  transform: translateY(-28px);
}
.comparison-card--after {
  align-self: end;
  transform: translateY(34px);
}
.comparison-card__label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0 0 10px;
  border-bottom: 1px solid rgba(24, 20, 17, 0.12);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}
.comparison-card--after .comparison-card__label {
  color: var(--success);
  border-bottom-color: rgba(36, 92, 69, 0.2);
}
.comparison-card__media {
  position: relative;
  aspect-ratio: 0.82;
  border-radius: 28px;
  overflow: hidden;
  background: #eadfce;
}
.comparison-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 20, 17, 0.02), rgba(24, 20, 17, 0.14));
}
.comparison-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.comparison-card__footer {
  display: grid;
  gap: 10px;
  padding: 0 2px;
}
.comparison-card__footer h3 {
  margin: 0;
  font-size: 34px;
  line-height: 0.96;
}
.comparison-card__footer p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}
.comparison-divider {
  position: relative;
  width: 170px;
  height: 170px;
  transform: translateY(8px) rotate(8deg);
}
.comparison-divider::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 220 220' fill='none'%3E%3Cpath d='M40 32c42-20 79 9 77 52-3 46-43 63-26 96 19 36 84 38 126 11' stroke='%238f633b' stroke-width='5' stroke-linecap='round'/%3E%3Cpath d='M165 177c12-2 21-6 34-14' stroke='%238f633b' stroke-width='5' stroke-linecap='round'/%3E%3Cpath d='M179 151l20 12-20 16' stroke='%238f633b' stroke-width='5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media (max-width: 1100px) {
  .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .before-after-shell {
    grid-template-columns: 1fr;
  }
  .before-after-copy .section-title {
    max-width: none;
  }
}
@media (max-width: 900px) {
  .before-after-steps,
  .before-after-board {
    grid-template-columns: 1fr;
  }
  .before-after-steps::before {
    left: 7px;
    right: auto;
    top: 12px;
    bottom: 12px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(24, 20, 17, 0.1), rgba(175, 123, 75, 0.32), rgba(24, 20, 17, 0.1));
  }
  .before-after-step {
    padding-top: 0;
    padding-left: 28px;
  }
  .before-after-step::before {
    top: 2px;
  }
  .comparison-divider {
    width: 100%;
    height: 72px;
  }
}
@media (max-width: 760px) {
  .story-grid {
    grid-template-columns: 1fr;
  }
  .before-after-shell {
    padding: 24px;
    border-radius: 30px;
    gap: 24px;
  }
  .comparison-card {
    gap: 12px;
  }
  .comparison-card__media {
    aspect-ratio: 0.9;
    border-radius: 22px;
  }
  .comparison-card__footer h3 {
    font-size: 28px;
  }
}

.our-products-section .section-header {
  align-items: center;
}
.our-products-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.our-products-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.products-carousel {
  display: grid;
  gap: 24px;
}
.products-carousel__viewport {
  overflow: hidden;
}
.products-carousel__track {
  display: flex;
  gap: 24px;
  align-items: stretch;
  transition: transform 0.55s ease;
  will-change: transform;
}
.products-carousel__track > .product-card {
  min-width: 0;
  height: 100%;
}
.products-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.products-carousel__dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 999px;
  background: rgba(24, 20, 17, 0.14);
  transition: transform var(--ease), background-color var(--ease), opacity var(--ease);
  opacity: 0.72;
}
.products-carousel__dot.is-active {
  background: var(--accent-dark);
  opacity: 1;
  transform: scale(1.18);
}
.our-products-nav .slider-button:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.products-carousel__track > .product-card {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media (max-width: 1100px) {
  .our-products-actions {
    width: 100%;
    justify-content: space-between;
  }
}
@media (max-width: 760px) {
  .our-products-actions {
    display: grid;
    justify-content: start;
    gap: 14px;
  }
  .products-carousel__track {
    gap: 18px;
  }
}

.trust-section {
  padding: 30px 20px;
  padding-top: 30px;
  background: linear-gradient(180deg, rgba(248, 245, 242, 0.95), rgba(244, 238, 229, 0.88));
}
.container {
  max-width: 1400px;
  margin: auto;
}
.trust-intro {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}
.trust-intro > div:first-child {
  max-width: none;
}
.trust-intro .section-title {
  font-size: clamp(30px, 3.4vw, 52px);
  white-space: nowrap;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 28px;
}
.approach-card,
.affiliation-shell,
.final-cta {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(24, 20, 17, 0.08);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(16px);
}
.approach-card {
  padding: 30px 28px;
  border-radius: 28px;
  transition: transform var(--ease), box-shadow var(--ease);
}
.approach-card:hover,
.affiliation-badge:hover {
  transform: translateY(-4px);
}
.approach-card__icon,
.affiliation-badge i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(24, 20, 17, 0.06);
  color: var(--accent-dark);
  font-size: 24px;
  margin-bottom: 20px;
}
.approach-card h3,
.affiliation-copy h3 {
  margin: 0 0 14px;
  font-size: 32px;
  line-height: 0.98;
}
.approach-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.75;
}
.affiliation-shell {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: 30px;
  padding: 34px 30px;
  border-radius: 30px;
  margin-bottom: 28px;
  align-items: center;
}
.affiliation-copy {

}
.affiliation-badges {
  display: grid;
  grid-template-columns: repeat(3, minmax(170px, 1fr));
  gap: 18px;
  align-items: stretch;
}
.affiliation-badge {
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  gap: 10px;
  min-height: 100%;
  padding: 24px 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 20, 17, 0.06);
  transition: transform var(--ease), box-shadow var(--ease);
}
.affiliation-badge i {
  margin-bottom: 0;
}
.affiliation-badge span {
  font-weight: 700;
  line-height: 1.5;
}
@media (max-width: 1200px) {
  .affiliation-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 900px) {
  .affiliation-badges {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .affiliation-badges {
    grid-template-columns: 1fr;
  }
}
.final-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 34px;
}
.final-cta__copy .section-title {
  margin-bottom: 16px;
}
.final-cta__actions {
  display: grid;
  gap: 14px;
  min-width: 240px;
}
.brand-story-intro-section {
  padding-top: 10px;
}
.brand-story-intro {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 30px;
  align-items: center;
  padding: 34px;
  border-radius: 40px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.42) 34%),
    linear-gradient(135deg, rgba(248, 242, 233, 0.98), rgba(241, 233, 224, 0.92));
  border: 1px solid rgba(24, 20, 17, 0.08);
  box-shadow: var(--shadow-md);
}
.brand-story-intro__copy {
  display: grid;
  gap: 20px;
  align-content: start;
}
.brand-story-intro__copy .section-title {

}
.brand-story-intro__copy .section-copy {
  margin: 0;
  max-width: 58ch;
}
.brand-story-intro__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.brand-story-intro__visual {
  position: relative;
  min-height: 520px;
  padding: 18px 0 18px 18px;
}
.brand-story-intro__image-frame {
  height: 100%;
  min-height: 520px;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.brand-story-intro__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-story-intro__note {
  position: absolute;
  left: -10px;
  bottom: 28px;
  max-width: 290px;
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 251, 245, 0.92);
  border: 1px solid rgba(24, 20, 17, 0.08);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}
.brand-story-intro__note strong {
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.brand-story-intro__note span {
  color: var(--text-soft);
  line-height: 1.65;
  font-size: 14px;
}
@media (max-width: 1100px) {
  .brand-story-intro {
    grid-template-columns: 1fr;
  }
  .brand-story-intro__copy .section-title {
    max-width: none;
  }
  .brand-story-intro__visual {
    min-height: auto;
    padding: 0;
  }
  .brand-story-intro__image-frame {
    min-height: 420px;
  }
  .brand-story-intro__note {
    left: 20px;
  }
}
@media (max-width: 760px) {
  .brand-story-intro {
    padding: 24px;
    border-radius: 30px;
    gap: 24px;
  }
  .brand-story-intro__image-frame {
    min-height: 320px;
    border-radius: 24px;
  }
  .brand-story-intro__note {
    position: static;
    max-width: none;
  }
}

/* Brand story luxe pass */
.brand-story-intro {
  position: relative;
  gap: 42px;
  padding: 46px;
  border-radius: 42px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.52) 34%),
    linear-gradient(135deg, rgba(249, 244, 237, 0.98), rgba(238, 229, 219, 0.94));
  box-shadow: 0 28px 90px rgba(24, 20, 17, 0.12);
  overflow: hidden;
}
.brand-story-intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 255, 255, 0.95), transparent 22%),
    radial-gradient(circle at 82% 84%, rgba(175, 123, 75, 0.1), transparent 25%);
  pointer-events: none;
}
.brand-story-intro__copy {
  position: relative;
  z-index: 1;
  gap: 24px;
}
.brand-story-intro__copy .eyebrow {
  letter-spacing: 0.24em;
}
.brand-story-intro__copy .section-title {

  font-size: 50px;
  line-height: 0.91;
}
.brand-story-intro__copy .section-copy {
  max-width: 54ch;
  font-size: 17px;
  line-height: 1.9;
}
.brand-story-intro__copy .section-copy:first-of-type {
  padding-left: 22px;
  border-left: 1px solid rgba(175, 123, 75, 0.45);
}
.brand-story-intro__actions {
  margin-top: 8px;
}
.brand-story-intro__visual {
  position: relative;
  min-height: 560px;
  padding: 24px 0 32px 32px;
}
.brand-story-intro__visual::before {
  content: "";
  position: absolute;
  top: 7%;
  right: 4%;
  width: 62%;
  height: 62%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.08) 68%, transparent 72%);
  filter: blur(14px);
}
.brand-story-intro__image-frame {
  position: relative;
  z-index: 1;
  min-height: 560px;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(24, 20, 17, 0.18);
}
.brand-story-intro__image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(24, 20, 17, 0.04), rgba(24, 20, 17, 0.2));
}
.brand-story-intro__image-frame img {
  transform: scale(1.03);
}
.brand-story-intro__note {
  left: 4px;
  bottom: 34px;
  z-index: 2;
  max-width: 320px;
  gap: 10px;
  padding: 22px 24px;
  border-radius: 28px;
  background: rgba(255, 251, 245, 0.94);
  box-shadow: 0 22px 55px rgba(24, 20, 17, 0.14);
}
.brand-story-intro__note strong {
  font-size: 13px;
  letter-spacing: 0.16em;
}
.brand-story-intro__note span {
  line-height: 1.8;
}
@media (max-width: 1100px) {
  .brand-story-intro {
    gap: 28px;
    padding: 34px;
  }
  .brand-story-intro__copy .section-title {
    max-width: none;
  }
  .brand-story-intro__visual {
    min-height: auto;
    padding: 10px 0 0;
  }
  .brand-story-intro__image-frame {
    min-height: 460px;
  }
  .brand-story-intro__note {
    left: 22px;
  }
}
@media (max-width: 760px) {
  .brand-story-intro {
    padding: 24px;
    gap: 22px;
    border-radius: 30px;
  }
  .brand-story-intro__copy .section-title {
    font-size: clamp(38px, 10vw, 54px);
  }
  .brand-story-intro__copy .section-copy:first-of-type {
    padding-left: 20px;
  }
  .brand-story-intro__image-frame {
    min-height: 320px;
    border-radius: 24px;
  }
  .brand-story-intro__note {
    position: static;
    max-width: none;
    margin-top: 16px;
  }
}




/* Global mobile responsiveness pass */
@media (max-width: 1024px) {
  body {
    overflow-x: hidden;
  }

  .site-header {
    padding: 14px 0;
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
    gap: 14px 16px;
  }

  .brand {
    grid-area: brand;
    min-width: 0;
    font-size: clamp(26px, 4vw, 32px);
  }

  .nav-links {
    grid-area: nav;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 12px 18px;
    min-width: 0;
  }

  .header-actions {
    grid-area: actions;
    justify-content: flex-end;
    gap: 12px;
  }

  .hero {
    min-height: auto;
    padding: 88px 0 48px;
  }

  .hero::before {
    inset: 72px 16px auto;
    height: min(520px, 62vw);
    border-radius: 34px;
  }

  .hero-visual {
    min-height: auto;
    padding: 18px 12px 36px;
  }

  .hero-visual__frame {
    min-height: 520px;
  }

  .stat-card,
  .hero-visual__note {
    position: static;
    max-width: none;
  }

  .section-header,
  .testimonial-shell,
  .footer-bottom,
  .before-after-board,
  .before-after-steps {
    grid-template-columns: 1fr;
  }

  .testimonial-shell {
    justify-items: start;
  }

  .footer-bottom {
    display: grid;
  }

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

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

  .checkout-layout,
  .product-layout,
  .story-layout,
  .category-layout,
  .contact-layout,
  .brand-story-intro,
  .before-after-shell {
    grid-template-columns: 1fr;
  }

  .product-gallery,
  .checkout-summary,
  .contact-sidebar {
    position: static;
    top: auto;
  }
}

@media (max-width: 760px) {
  :root {
    --container: minmax(16px, 1fr) minmax(0, 1350px) minmax(16px, 1fr);
  }

  .site-header,
  .site-header.is-solid {
    padding: 10px 0;
  }

  .topbar {
    gap: 12px;
  }

  .brand {
    font-size: 24px;
    gap: 10px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }

  .nav-links {
    gap: 10px 14px;
    font-size: 14px;
  }

  .icon-button,
  .icon-button--header {
    width: 42px;
    min-width: 42px;
    height: 42px;
  }

  .account-dropdown {
    width: min(320px, calc(100vw - 32px));
    right: 0;
  }

  .shatter-banner {
    height: min(100svh, 720px) !important;
  }

  .hero {
    padding: 72px 0 40px;
  }

  .hero::before {
    inset: 56px 12px auto;
    height: 360px;
    border-radius: 24px;
  }

  .hero h1 {
    margin: 18px 0 18px;
    font-size: clamp(40px, 12vw, 58px);
  }

  .hero-details {
    gap: 12px;
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 20px;
  }

  .hero-details__group p {
    font-size: 14px;
    line-height: 1.55;
  }

  .hero-copy .hero__cta,
  .button-row {
    margin-top: 24px;
    gap: 12px;
  }

  .hero-slider__nav {
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-slider__button,
  .slider-button {
    width: 52px;
    height: 52px;
  }

  .hero-visual {
    padding: 8px 0 0;
    gap: 16px;
  }

  .hero-visual__frame {
    min-height: 360px;
    border-radius: 28px;
  }

  .stat-card,
  .hero-visual__note,
  .story-card,
  .contact-card,
  .contact-form,
  .comparison-card,
  .filters-card,
  .checkout-card,
  .auth-panel,
  .orders-panel,
  .account-dropdown {
    padding: 20px;
    border-radius: 24px;
  }

  .section {
    padding: 36px 0;
  }

  .page-hero {
    padding: 44px 0 24px;
  }

  .section-header {
    gap: 16px;
    margin-bottom: 24px;
  }

  .section-title,
  .page-title,
  .product-title,
  .banner-copy h3,
  .story-card h3,
  .comparison-card__footer h3 {
    font-size: clamp(30px, 10vw, 42px);
  }

  .product-grid,
  .instagram-grid,
  .footer-grid,
  .trust-grid,
  .before-after-steps {
    grid-template-columns: 1fr;
  }

  .story-panel,
  .banner-card {
    min-height: 380px;
  }

  .story-panel {
    padding: 28px 24px;
    border-radius: 28px;
  }

  .banner-copy {
    left: 20px;
    right: 20px;
    bottom: 20px;
  }

  .testimonial-card {
    min-height: auto;
    padding: 24px;
    border-radius: 24px;
  }

  .trust-section {
    padding: 56px 16px;
  }

  .trust-card {
    padding: 28px 20px;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .gallery-main {
    order: -1;
    border-radius: 24px;
  }

  .product-copy {
    gap: 20px;
  }

  .qty-picker,
  .product-meta,
  .tab-buttons {
    flex-wrap: wrap;
  }

  .cart-item {
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: start;
  }

  .cart-item__media {
    width: 72px;
    height: 88px;
  }

  .line-total {
    grid-column: 2;
  }

  .drawer__header,
  .drawer__footer,
  .drawer__body,
  .cart-page-list,
  .orders-list {
    padding: 18px;
  }

  .drawer__footer .button-row,
  .checkout-summary .button-row,
  .auth-switch,
  .contact-form .button-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .auth-modal {
    width: calc(100% - 20px);
  }

  .auth-switch {
    gap: 10px;
    margin-bottom: 18px;
  }

  .auth-switch .icon-button {
    justify-self: end;
  }

  .toast-stack {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }

  .toast {
    min-width: 0;
    width: 100%;
  }

  .footer {
    padding: 56px 0 28px;
  }

  .footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    gap: 10px;
    font-size: 13px;
  }
}

@media (max-width: 560px) {
  .topbar {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "actions"
      "nav";
  }

  .header-actions {
    justify-content: flex-start;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
  }

  .nav-link {
    display: inline-flex;
    width: fit-content;
  }

  .hero::before {
    display: none;
  }

  .hero-visual__frame {
    min-height: 300px;
  }

  .brand-story-intro,
  .before-after-shell,
  .shop-filter-card,
  .shop-toolbar,
  .shop-menu-card,
  .shop-empty {
    padding: 18px !important;
    border-radius: 22px !important;
  }

  .contact-form__split,
  .page-layout {
    grid-template-columns: 1fr;
  }

  .cart-drawer {
    width: 100%;
  }

  .summary-line {
    font-size: 14px;
  }
}

@media (max-width: 560px) {
  .auth-modal .page-layout,
  [data-checkout-form] .page-layout {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 560px) {
  .page-layout {
    grid-template-columns: 1fr !important;
  }
}

.mobile-nav-toggle {
  display: none;
  position: relative;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}

.mobile-nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform var(--ease), opacity var(--ease);
}

@media (max-width: 760px) {
  .mobile-nav-toggle {
    display: inline-flex;
    grid-area: toggle;
  }

  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand toggle"
      "actions actions"
      "nav nav";
    align-items: center;
  }

  .brand {
    grid-area: brand;
  }

  .header-actions {
    grid-area: actions;
    justify-content: flex-start;
  }

  .nav-links {
    grid-area: nav;
    display: none;
    width: 100%;
    padding: 16px 0 4px;
    border-top: 1px solid rgba(24, 20, 17, 0.08);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-link {
    display: inline-flex;
    width: fit-content;
  }

  .site-header.is-menu-open {
    background: rgba(252, 250, 246, 0.96);
    backdrop-filter: blur(18px);
    border-color: rgba(24, 20, 17, 0.08);
    box-shadow: 0 10px 35px rgba(24, 20, 17, 0.06);
  }

  .mobile-nav-toggle.is-active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .mobile-nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }
}

@media (max-width: 560px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand toggle"
      "actions actions"
      "nav nav";
  }

  .header-actions {
    justify-content: flex-start;
  }

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

@media (max-width: 760px) {
  .header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
    width: auto;
    margin-left: auto;
    gap: 10px;
  }

  .account-area {
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 560px) {
  .header-actions {
    justify-self: start;
    margin-left: 0;
  }
}

/* Banner sizing fix */
.shatter-banner {
  width: min(100%, calc(100% - 32px)) !important;
  max-width: 1280px !important;
  height: clamp(320px, 52vw, 760px) !important;
  min-height: 320px !important;
  margin: 18px auto 0 !important;
  border-radius: 32px !important;
}

.shard {
  background-size: cover !important;
  background-position: center !important;
}

@media (max-width: 1024px) {
  .shatter-banner {
    height: clamp(300px, 58vw, 560px) !important;
    border-radius: 26px !important;
  }
}

@media (max-width: 760px) {
  .shatter-banner {
    width: calc(100% - 24px) !important;
    height: clamp(240px, 72vw, 420px) !important;
    min-height: 240px !important;
    margin-top: 12px !important;
    border-radius: 22px !important;
  }

  .shard-wrapper {
    grid-template-columns: repeat(4, 1fr) !important;
  }
}

@media (max-width: 560px) {
  .shatter-banner {
    width: calc(100% - 20px) !important;
    height: clamp(220px, 78vw, 340px) !important;
    min-height: 220px !important;
    border-radius: 18px !important;
  }
}

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
  }

  .header-actions {
    grid-area: actions;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
    width: auto;
    margin-left: auto;
    gap: 10px;
  }

  .mobile-nav-toggle {
    order: -1;
  }
}

@media (max-width: 560px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "nav nav";
  }

  .header-actions {
    justify-self: end;
    margin-left: auto;
  }
}

@media (max-width: 760px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas:
      "brand toggle actions"
      "nav nav nav";
    column-gap: 10px;
    row-gap: 12px;
  }

  .mobile-nav-toggle {
    grid-area: toggle;
    order: 0;
    justify-self: end;
  }

  .header-actions {
    grid-area: actions;
    justify-self: end;
    margin-left: 0;
  }
}

@media (max-width: 560px) {
  .topbar {
    grid-template-columns: minmax(0, 1fr) auto auto;
    grid-template-areas:
      "brand toggle actions"
      "nav nav nav";
  }

  .mobile-nav-toggle,
  .header-actions {
    justify-self: end;
  }
}

/* Mobile banner fallback */
@media (max-width: 760px) {
  .shard-slide {
    opacity: 0 !important;
    transition: opacity 0.45s ease !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
  }

  .shard-slide.active {
    opacity: 1 !important;
  }

  .shard-wrapper,
  .shard {
    display: none !important;
  }

  #slide-1 {
    background-image: linear-gradient(rgba(18, 15, 12, 0.12), rgba(18, 15, 12, 0.18)), url('../main-website/banner-1.png') !important;
  }

  #slide-2 {
    background-image: linear-gradient(rgba(18, 15, 12, 0.12), rgba(18, 15, 12, 0.18)), url('../main-website/banner-2.png') !important;
  }
}

/* Desktop banner restore */
@media (min-width: 761px) {
  .shard {
    background-size: 500% 100% !important;
    background-position: calc(var(--i) * 25%) 0 !important;
    background-repeat: no-repeat !important;
  }
}

/* Full-width banner */
.shatter-banner {
  width: calc(100% - 32px) !important;
  max-width: none !important;
}

@media (min-width: 761px) {
  .shatter-banner {
    width: calc(100% - 48px) !important;
    height: clamp(360px, 46vw, 820px) !important;
    margin: 18px auto 0 !important;
  }
}

/* Sticky header fix */
.page-shell {
  overflow-x: hidden;
  overflow-y: visible;
}

/* Fixed header fallback */
body {
  padding-top: 104px;
}

.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  background: rgba(252, 250, 246, 0.94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(24, 20, 17, 0.08);
  box-shadow: 0 10px 35px rgba(24, 20, 17, 0.06);
}

@media (max-width: 760px) {
  body {
    padding-top: 90px;
  }
}

/* Header restore */
body {
  padding-top: 0 !important;
}

.site-header {
  position: sticky !important;
  top: 0 !important;
  left: auto !important;
  width: auto !important;
  z-index: 200;
  background: rgba(252, 250, 246, 0.94) !important;
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(24, 20, 17, 0.08) !important;
  box-shadow: 0 10px 35px rgba(24, 20, 17, 0.06) !important;
}

.page-shell {
  overflow-x: hidden !important;
  overflow-y: visible !important;
}

/* Final header and banner lock */
body {
  padding-top: 0 !important;
}

.page-shell {
  padding-top: 96px;
  overflow-x: hidden !important;
  overflow-y: visible !important;
}

.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 300 !important;
  background: rgba(252, 250, 246, 0.94) !important;
  backdrop-filter: blur(18px) !important;
  border-bottom: 1px solid rgba(24, 20, 17, 0.08) !important;
  box-shadow: 0 10px 35px rgba(24, 20, 17, 0.06) !important;
}

@media (max-width: 760px) {
  .page-shell {
    padding-top: 84px;
  }
}

@media (min-width: 761px) {
  .shard-slide {
    opacity: 0 !important;
    pointer-events: none !important;
  }

  .shard-slide.active {
    opacity: 1 !important;
    pointer-events: auto !important;
  }
}

/* Fixed header offset for pages without .page-shell */
body > .site-header + main {
  padding-top: 96px;
}

@media (max-width: 760px) {
  body > .site-header + main {
    padding-top: 84px;
  }
}

/* Auth modal polish */
.auth-modal {
  width: min(520px, calc(100% - 32px)) !important;
}

.auth-panel {
  padding: 30px 34px 32px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.88), transparent 32%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(244, 238, 229, 0.96));
  border: 1px solid rgba(24, 20, 17, 0.07);
  box-shadow: 0 34px 90px rgba(24, 20, 17, 0.18) !important;
}

.auth-switch {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 46px;
  margin-bottom: 18px;
}

.auth-back-button {
  border: 0;
  background: transparent;
  color: var(--text-soft);
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0;
}

.auth-back-button:hover,
.auth-text-button:hover {
  color: var(--accent-dark);
}

.auth-panel .auth-forms {
  display: grid;
}

.auth-panel form {
  display: grid;
  gap: 16px;
  padding: 12px 0 0;
  background: transparent;
  border: 0;
}

.auth-panel form strong {
  font-size: 30px;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  margin-bottom: 10px;
  text-align: center;
  color: var(--text);
}

.auth-helper {
  margin: -4px 0 2px;
  text-align: center;
  color: var(--text-soft);
  line-height: 1.7;
}

.auth-panel .field-input {
  min-height: 58px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 20, 17, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.auth-panel .btn[type="submit"] {
  min-height: 56px;
  border-radius: 18px;
  margin-top: 2px;
  font-weight: 700;
}

.auth-form--login .btn[type="submit"] {
  background: var(--text);
  color: var(--text-inverse);
  box-shadow: 0 18px 34px rgba(24, 20, 17, 0.14);
}

.auth-form--login .btn[type="submit"]:hover {
  background: #000;
}

.auth-text-button {
  border: 0;
  background: transparent;
  color: var(--accent-dark);
  font-weight: 700;
  padding: 0;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-soft);
  margin: 4px 0 2px;
}

.auth-divider::before,
.auth-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(24, 20, 17, 0.14);
}

.auth-divider span {
  font-size: 14px;
}

.auth-create-button {
  min-height: 52px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border: 1px solid rgba(24, 20, 17, 0.1);
  justify-self: center;
  min-width: 230px;
  box-shadow: 0 16px 30px rgba(24, 20, 17, 0.08);
}

.auth-create-button:hover {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(24, 20, 17, 0.18);
}

.auth-form--signup .btn[type="submit"],
.auth-form--reset .btn[type="submit"] {
  background: var(--text);
  color: var(--text-inverse);
}

@media (max-width: 760px) {
  .auth-modal {
    width: calc(100% - 20px) !important;
  }

  .auth-panel {
    padding: 22px 20px 24px;
    border-radius: 24px;
  }

  .auth-switch {
    margin-bottom: 10px;
  }

  .auth-panel form strong {
    font-size: 24px;
  }

  .auth-panel .field-input,
  .auth-panel .btn[type="submit"] {
    border-radius: 16px;
  }

  .auth-create-button {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 1100px) {
  .trust-intro,
  .affiliation-shell,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .trust-intro .section-title {
    white-space: normal;
  }
}




