@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Lora:wght@400;500;600;700&display=swap");

:root {
  --bg: #fbf7ef;
  --panel: #fffaf3;
  --card: #ffffff;
  --ink: #241711;
  --muted: #75685d;
  --accent: #bd842f;
  --accent-2: #9f6d22;
  --border: rgba(103, 76, 44, 0.16);
  --shadow: 0 18px 46px rgba(92, 60, 26, 0.08);
  --r-lg: 12px;
  --r-md: 10px;
  --r-sm: 12px;
  --container: 1390px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: Lora, Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  display: block;
  flex: 1 0 auto;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 14px;
  height: 14px;
  color: currentColor;
}

.icon-row {
  display: inline-flex;
  gap: 4px;
  align-items: center;
}

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

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

.container {
  width: min(var(--container), calc(100% - 56px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(251, 247, 239, 0.92));
  border-bottom: 1px solid rgba(180, 131, 58, 0.12);
  box-shadow: 0 10px 30px rgba(92, 60, 26, 0.04);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 96px;
  padding: 12px 0 10px;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3.4vw, 54px);
}

.nav-right {
  justify-content: flex-end;
}

.nav-link {
  position: relative;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.94;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 4px;
  border-radius: 999px;
  font-weight: 600;
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 3px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: left 220ms ease, right 220ms ease, opacity 220ms ease;
}

.nav-link:hover {
  opacity: 1;
  background: transparent;
  color: var(--accent-2);
  transform: translateY(-1px);
}

.nav-link:hover::after {
  left: 6px;
  right: 6px;
  opacity: 1;
}

.dropdown-toggle {
  padding: 11px 18px;
  border: 1px solid rgba(180, 131, 58, 0.22);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(248, 238, 224, 0.76));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 8px 22px rgba(131, 87, 32, 0.08);
  cursor: pointer;
}

.dropdown-toggle:hover,
.dropdown[data-open="true"] .dropdown-toggle {
  color: #fffaf3;
  border-color: rgba(180, 131, 58, 0.72);
  background: linear-gradient(180deg, #c69546, #a96f22);
  box-shadow: 0 12px 26px rgba(151, 95, 26, 0.18);
}

.dropdown-toggle::after {
  display: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  width: clamp(190px, 18vw, 250px);
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}

.icon-btn,
.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.icon-btn {
  cursor: pointer;
}

.icon-btn:hover,
.icon-link:hover {
  color: var(--accent-2);
  background: transparent;
}

.icon-btn svg,
.icon-link svg {
  display: block;
}

.icon-link.cart {
  position: relative;
}

.cart-badge {
  position: absolute;
  right: -6px;
  top: -4px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  display: grid;
  place-items: center;
  border: 2px solid #fbf7ef;
}

.preview-access-banner {
  border-bottom: 1px solid rgba(180, 131, 58, 0.18);
  background:
    linear-gradient(90deg, rgba(183, 125, 39, 0.96), rgba(126, 78, 26, 0.94));
  color: #fffaf3;
}

.preview-access-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-logout-form {
  margin: 0;
}

.preview-logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 250, 243, 0.36);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.12);
  color: inherit;
  cursor: pointer;
  font: 700 11px var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.preview-logout:hover {
  border-color: rgba(255, 250, 243, 0.66);
  background: rgba(255, 250, 243, 0.2);
  transform: translateY(-1px);
}

.dropdown {
  position: relative;
}

.dropdown-toggle svg {
  opacity: 0.78;
  transition: transform 220ms ease, opacity 220ms ease;
}

.dropdown-toggle:hover svg,
.dropdown[data-open="true"] .dropdown-toggle svg {
  opacity: 1;
}

.dropdown[data-open="true"] .dropdown-toggle svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  left: -12px;
  top: calc(100% + 14px);
  width: 308px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.82), transparent 32%),
    linear-gradient(145deg, rgba(255, 253, 249, 0.98), rgba(248, 236, 219, 0.96));
  border: 1px solid rgba(180, 131, 58, 0.24);
  box-shadow:
    0 28px 70px rgba(75, 48, 20, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  border-radius: 22px;
  padding: 14px;
  display: none;
  transform-origin: top left;
  overflow: hidden;
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  left: 34px;
  top: -7px;
  width: 14px;
  height: 14px;
  background: rgba(255, 253, 249, 0.98);
  border-left: 1px solid rgba(180, 131, 58, 0.24);
  border-top: 1px solid rgba(180, 131, 58, 0.24);
  transform: rotate(45deg);
}

.dropdown-menu::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0.42) 42%,
    transparent 58%
  );
  transform: translateX(-120%);
  opacity: 0;
}

.dropdown[data-open="true"] .dropdown-menu,
.dropdown[data-closing="true"] .dropdown-menu {
  display: grid;
  gap: 6px;
}

.dropdown[data-open="true"] .dropdown-menu {
  animation: dropdownBloom 180ms ease both;
}

.dropdown[data-open="true"] .dropdown-menu::after {
  animation: dropdownSheen 780ms 80ms ease both;
}

.dropdown[data-closing="true"] .dropdown-menu {
  animation: dropdownFadeOut 150ms ease both;
}

.dropdown-item {
  position: relative;
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 13px 14px 13px 16px;
  border-radius: 15px;
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.03em;
  background: rgba(255, 252, 247, 0.5);
  border: 1px solid transparent;
  opacity: 0;
  transform: translateY(5px);
  animation: dropdownItemIn 260ms ease both;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.dropdown-item:nth-child(2) {
  animation-delay: 35ms;
}

.dropdown-item:nth-child(3) {
  animation-delay: 70ms;
}

.dropdown-item:nth-child(4) {
  animation-delay: 105ms;
}

.dropdown-item::before {
  content: "✦";
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--accent);
  background: rgba(180, 131, 58, 0.1);
  box-shadow: inset 0 0 0 1px rgba(180, 131, 58, 0.16);
  font-size: 11px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.dropdown-item::after {
  content: "→";
  color: rgba(180, 131, 58, 0.7);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.dropdown-item:hover {
  background: rgba(255, 249, 239, 0.9);
  border-color: rgba(180, 131, 58, 0.18);
  box-shadow: 0 10px 24px rgba(126, 80, 28, 0.08);
  color: var(--accent-2);
  transform: translateX(4px) translateY(-1px);
}

.dropdown-item:hover::before {
  background: linear-gradient(180deg, #c69546, #a96f22);
  color: #fffaf3;
  transform: rotate(12deg) scale(1.06);
}

.dropdown-item:hover::after {
  opacity: 1;
  transform: translateX(0);
}

@keyframes dropdownBloom {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes dropdownFadeOut {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(-6px) scale(0.98);
  }
}

@keyframes dropdownItemIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dropdownSheen {
  0% {
    opacity: 0;
    transform: translateX(-120%);
  }
  30% {
    opacity: 0.65;
  }
  100% {
    opacity: 0;
    transform: translateX(120%);
  }
}

/* Drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 0% 20%, rgba(180, 131, 58, 0.2), transparent 34%),
    rgba(35, 23, 13, 0.42);
  backdrop-filter: blur(4px);
  z-index: 60;
  animation: drawerBackdropIn 220ms ease both;
}

.drawer {
  position: fixed;
  inset: 0 auto 0 0;
  width: min(390px, 90vw);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.9), transparent 30%),
    linear-gradient(155deg, #fffdf8 0%, #f8ecdc 58%, #f1dfc8 100%);
  border-right: 1px solid rgba(180, 131, 58, 0.22);
  border-radius: 0 28px 28px 0;
  box-shadow: 26px 0 78px rgba(54, 34, 15, 0.24);
  z-index: 70;
  transform: translateX(-106%);
  transition: transform 360ms cubic-bezier(0.2, 0.88, 0.22, 1);
  overflow: hidden;
}

.drawer::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.48), transparent 38%),
    radial-gradient(circle at 85% 15%, rgba(180, 131, 58, 0.15), transparent 28%);
}

.drawer::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(180, 131, 58, 0.48), transparent);
}

.drawer[data-open="true"] {
  transform: translateX(0);
}

.drawer-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 24px 22px 18px;
  border-bottom: 1px solid rgba(180, 131, 58, 0.13);
}

.drawer-header .icon-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(180, 131, 58, 0.2);
  background: rgba(255, 252, 247, 0.58);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.drawer-header .icon-btn:hover {
  color: #fffaf3;
  border-color: rgba(180, 131, 58, 0.58);
  background: linear-gradient(180deg, #c69546, #a96f22);
  transform: rotate(90deg) scale(1.03);
}

.drawer-brand {
  width: 210px;
  padding: 7px 10px;
  border-radius: 16px;
  background: rgba(255, 252, 247, 0.5);
  box-shadow: inset 0 0 0 1px rgba(180, 131, 58, 0.08);
}

.drawer-brand img {
  width: 100%;
  height: auto;
}

.drawer-nav {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  padding: 22px 18px 26px;
}

.drawer-link {
  position: relative;
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(180, 131, 58, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.78), rgba(250, 241, 228, 0.62));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 24px rgba(118, 76, 29, 0.05);
  font-size: 14px;
  font-weight: 650;
  letter-spacing: 0.04em;
  overflow: hidden;
  opacity: 0;
  transform: translateX(-12px);
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

button.drawer-link {
  width: 100%;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.drawer-link::before {
  content: "✦";
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(180, 131, 58, 0.1);
  box-shadow: inset 0 0 0 1px rgba(180, 131, 58, 0.14);
  font-size: 11px;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.drawer-link::after {
  content: "→";
  color: rgba(180, 131, 58, 0.62);
  opacity: 0;
  transform: translateX(-5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.drawer[data-open="true"] .drawer-link {
  animation: drawerLinkIn 360ms ease both;
}

.drawer[data-open="true"] .drawer-link:nth-of-type(1) {
  animation-delay: 80ms;
}

.drawer[data-open="true"] .drawer-link:nth-of-type(2) {
  animation-delay: 120ms;
}

.drawer[data-open="true"] .drawer-link:nth-of-type(3) {
  animation-delay: 160ms;
}

.drawer[data-open="true"] .drawer-link:nth-of-type(4) {
  animation-delay: 200ms;
}

.drawer[data-open="true"] .drawer-link:nth-of-type(5) {
  animation-delay: 240ms;
}

.drawer[data-open="true"] .drawer-link:nth-of-type(6) {
  animation-delay: 280ms;
}

.drawer-link:hover {
  color: var(--accent-2);
  border-color: rgba(180, 131, 58, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    0 14px 30px rgba(118, 76, 29, 0.1);
  transform: translateX(5px) translateY(-1px);
}

.drawer-link:hover::before {
  color: #fffaf3;
  background: linear-gradient(180deg, #c69546, #a96f22);
  transform: rotate(12deg) scale(1.05);
}

.drawer-link:hover::after {
  opacity: 1;
  transform: translateX(0);
}

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

.drawer-shop::before {
  content: "☽";
}

.drawer-shop::after {
  content: "⌄";
  opacity: 1;
  transform: none;
}

.drawer-shop[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.drawer-submenu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-inline: 13px;
  transition:
    max-height 220ms ease,
    opacity 180ms ease;
}

.drawer-submenu[data-open="true"] {
  max-height: 260px;
  opacity: 1;
}

.drawer-submenu a {
  display: block;
  margin: 0 0 7px 38px;
  padding: 10px 14px;
  border-left: 1px solid rgba(180, 131, 58, 0.26);
  border-radius: 0 14px 14px 0;
  background: rgba(255, 252, 247, 0.44);
  color: rgba(36, 23, 17, 0.7);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.035em;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.drawer-submenu a:hover {
  color: var(--accent-2);
  background: rgba(180, 131, 58, 0.1);
  transform: translateX(4px);
}

.drawer-home::before {
  content: "⌂";
}

.drawer-custom::before {
  content: "✎";
}

.drawer-consultation::before {
  content: "☎";
}

.drawer-about::before {
  content: "☾";
}

.drawer-reviews::before {
  content: "★";
}

.drawer-contact::before {
  content: "✉";
}

.drawer-account::before {
  content: "♙";
}

.drawer-cart-link::before {
  content: "🛍";
}

.drawer-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180, 131, 58, 0.34), transparent);
  margin: 8px 10px;
  opacity: 0.9;
}

@keyframes drawerBackdropIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes drawerLinkIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hero */
.hero {
  padding: 0 0 44px;
}

.hero-card {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: url("assets/IMG_3418.PNG") bottom/cover no-repeat;
  min-height: 408px;
  border: 1px solid rgba(103, 76, 44, 0.14);
  box-shadow: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
      180deg,
      rgba(255, 250, 242, 0.2) 0%,
      rgba(255, 250, 242, 0.06) 48%,
      rgba(244, 226, 200, 0.16) 100%
    ),
    radial-gradient(circle at 50% 28%, rgba(255, 250, 244, 0.18), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 42px 56px 16px;
  display: grid;
  place-items: center;
  text-align: center;
  row-gap: 0;
}

.hero-copy-panel {
  width: min(790px, 92%);
  padding: clamp(12px, 2vw, 22px) clamp(18px, 3vw, 42px) clamp(14px, 2vw, 22px);
  display: grid;
  justify-items: center;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-size: clamp(46px, 4.35vw, 70px);
  line-height: 0.96;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.96),
    0 2px 0 rgba(255, 252, 246, 0.48),
    0 5px 18px rgba(255, 255, 255, 0.78),
    0 14px 34px rgba(255, 246, 229, 0.58),
    0 24px 54px rgba(255, 237, 205, 0.32);
}

.hero-subtitle {
  margin: 0 0 20px;
  color: rgba(36, 23, 17, 0.78);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.005em;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 13px 30px;
  border: 1px solid transparent;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  transition: transform 120ms ease, background 120ms ease, border-color 120ms ease;
  user-select: none;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(180deg, #c8943f, #ad741f);
  color: #fff;
  box-shadow: 0 12px 24px rgba(151, 95, 26, 0.16);
}

.btn-primary:hover {
  background: var(--accent-2);
}

.btn-outline {
  background: rgba(255, 252, 247, 0.82);
  border-color: rgba(171, 123, 49, 0.6);
  color: var(--ink);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(180, 131, 58, 0.8);
}

.btn-outline.wide {
  padding-inline: 30px;
}

.trust-row {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: min(820px, 100%);
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.78), rgba(255, 246, 234, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow:
    0 16px 42px rgba(92, 60, 26, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.trust-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 9px;
  text-align: left;
  padding: 4px 12px;
  border-right: 1px solid rgba(103, 76, 44, 0.16);
  min-width: 0;
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  color: #a96f22;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(180, 131, 58, 0.18);
  background: rgba(255, 252, 247, 0.78);
  box-shadow: 0 8px 18px rgba(151, 95, 26, 0.08);
}

.trust-text {
  font-size: 10px;
  line-height: 1.18;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  color: rgba(36, 23, 17, 0.84);
  font-weight: 700;
}

.trust-text strong {
  letter-spacing: 0.045em;
  color: var(--ink);
  font-weight: 800;
}

.testimonial-pill {
  margin-top: 22px;
  width: min(680px, 100%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(103, 76, 44, 0.08);
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.stars {
  color: var(--accent);
  white-space: nowrap;
}

.stars .icon {
  width: 14px;
  height: 14px;
}

.testimonial-text {
  color: rgba(36, 23, 17, 0.84);
  font-size: 14px;
}

.testimonial-name {
  margin-left: 8px;
  color: rgba(47, 36, 26, 0.88);
  font-weight: 500;
}

/* Section headers */
.section-header {
  margin: 20px auto 22px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(155, 111, 44, 0.94);
}

.sparkle {
  width: 7px;
  height: 7px;
  background: var(--accent);
  transform: rotate(45deg);
  border-radius: 2px;
  opacity: 0.75;
}

.section-title {
  font-family: var(--font-display);
  margin: 8px 0 0;
  font-size: clamp(34px, 3.05vw, 46px);
  letter-spacing: 0.01em;
  font-weight: 700;
  line-height: 1.05;
}

.ornaments {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 10px;
  opacity: 0.7;
}

.diamond {
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  border: 1px solid rgba(180, 131, 58, 0.7);
  background: rgba(180, 131, 58, 0.15);
  border-radius: 2px;
}

/* Path cards */
.path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.path-card {
  border: 1px solid rgba(103, 76, 44, 0.18);
  border-radius: var(--r-md);
  overflow: hidden;
  background: rgba(255, 252, 247, 0.88);
  box-shadow: none;
  display: grid;
  grid-template-rows: auto auto;
  min-height: 318px;
}

.path-image {
  position: relative;
  height: 188px;
  overflow: hidden;
  display: block;
}

.path-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 220ms ease;
}

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

.path-icon {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(145deg, #fffdf9, #f6eadc);
  border: 1px solid rgba(180, 131, 58, 0.32);
  color: var(--accent);
  margin: -27px auto 0;
  z-index: 2;
  box-shadow:
    0 12px 28px rgba(86, 55, 25, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.path-icon::before,
.value-icon::before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.path-icon svg {
  display: none;
}

.path-card:nth-child(1) .path-icon::before {
  width: 30px;
  height: 30px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23bd842f' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M13 10h16a5 5 0 0 1 5 5v25H17a4 4 0 0 0-4 4V10Z'/%3E%3Cpath d='M17 10v30M21 16h8M21 22h8M21 28h6'/%3E%3Cpath d='M35 9l2 4 4 2-4 2-2 4-2-4-4-2 4-2 2-4Z'/%3E%3C/g%3E%3C/svg%3E");
}

.path-card:nth-child(2) .path-icon::before {
  width: 31px;
  height: 31px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23bd842f' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 25a14 14 0 0 1 28 0'/%3E%3Cpath d='M12 25v9a4 4 0 0 0 4 4h3V25h-7ZM29 25v13h3a4 4 0 0 0 4-4v-9h-7Z'/%3E%3Cpath d='M20 17c2.5-3 5.5-3 8 0M18 42h12'/%3E%3Cpath d='M8 16l2 3 3 2-3 2-2 3-2-3-3-2 3-2 2-3Z'/%3E%3C/g%3E%3C/svg%3E");
}

.path-card:nth-child(3) .path-icon::before {
  width: 31px;
  height: 31px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23bd842f' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 23a7 7 0 1 0-7-7 7 7 0 0 0 7 7Z'/%3E%3Cpath d='M10 42c3-11 25-11 28 0'/%3E%3Cpath d='M36 8l2 4 4 2-4 2-2 4-2-4-4-2 4-2 2-4Z'/%3E%3Cpath d='M9 12l1.5 2.6L13 16l-2.5 1.4L9 20l-1.5-2.6L5 16l2.5-1.4L9 12Z'/%3E%3C/g%3E%3C/svg%3E");
}

.path-card:nth-child(4) .path-icon::before {
  width: 31px;
  height: 31px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23bd842f' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 22h28v19H10V22Z'/%3E%3Cpath d='M7 15h34v7H7v-7ZM24 15v26'/%3E%3Cpath d='M24 15c-5.8 0-10-2.4-10-5.3C14 6.8 18.4 5.2 24 15ZM24 15c5.8 0 10-2.4 10-5.3C34 6.8 29.6 5.2 24 15Z'/%3E%3Cpath d='M38 4l1.6 3.4L43 9l-3.4 1.6L38 14l-1.6-3.4L33 9l3.4-1.6L38 4Z'/%3E%3C/g%3E%3C/svg%3E");
}

.path-body {
  padding: 10px 18px 18px;
  text-align: center;
}

.path-title {
  margin: 6px 0 6px;
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1.05;
}

.path-desc {
  margin: 0 auto 14px;
  max-width: 26ch;
  color: rgba(36, 23, 17, 0.62);
  font-size: 12px;
  line-height: 1.3;
}

.path-cta {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(47, 36, 26, 0.85);
  padding: 10px 12px;
  border-radius: 0;
  font-weight: 700;
}

.path-button {
  position: relative;
  overflow: hidden;
  min-width: 172px;
  border: 1px solid rgba(180, 131, 58, 0.34);
  border-radius: 999px;
  padding: 12px 20px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 238, 0.88)),
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.9), transparent 44%);
  box-shadow:
    0 12px 28px rgba(92, 60, 26, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.path-button::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.72) 46%, transparent 72%);
  transform: translateX(-120%);
  transition: transform 480ms ease;
}

.path-button span {
  position: relative;
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  color: #fffaf3;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 8px 16px rgba(189, 132, 47, 0.22);
  transition: transform 180ms ease;
}

.path-cta:hover {
  color: var(--ink);
}

.path-button:hover {
  transform: translateY(-2px);
  border-color: rgba(180, 131, 58, 0.56);
  background:
    linear-gradient(135deg, rgba(189, 132, 47, 0.14), rgba(255, 252, 247, 0.92)),
    rgba(255, 252, 247, 0.92);
  box-shadow:
    0 18px 36px rgba(92, 60, 26, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.path-button:hover::before {
  transform: translateX(120%);
}

.path-button:hover span {
  transform: translateX(3px);
}

/* Value strip */
.value-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin-top: 18px;
  padding: 18px 16px 0;
  border-top: 0;
}

.value-strip.bottom {
  margin-top: 0;
  padding: 18px 20px;
  border-top: 1px solid rgba(103, 76, 44, 0.1);
  background: rgba(255, 252, 247, 0.72);
}

.value-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  justify-items: start;
  padding: 0 26px;
  border-right: 1px solid rgba(103, 76, 44, 0.16);
}

.value-item:last-child {
  border-right: 0;
}

.value-icon {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  border-radius: 999px;
  color: var(--accent);
  border: 1px solid rgba(180, 131, 58, 0.2);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.9), transparent 36%),
    linear-gradient(145deg, rgba(255, 253, 249, 0.96), rgba(247, 235, 218, 0.78));
  box-shadow:
    0 12px 24px rgba(92, 60, 26, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.value-icon::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(180, 131, 58, 0.1);
  border-radius: inherit;
}

.value-icon .icon {
  display: none;
}

.value-icon > svg {
  display: none;
}

.value-icon::before {
  width: 28px;
  height: 28px;
  position: relative;
  z-index: 1;
}

.value-item:nth-child(1) .value-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23bd842f' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 42c-8.5-6-13-13.5-13-22V11l13-5 13 5v9c0 8.5-4.5 16-13 22Z'/%3E%3Cpath d='M17 25c7-1 12-5 15-12 2 10-2 17-12 21'/%3E%3Cpath d='M20 34c-2-5-1-9 3-12'/%3E%3C/g%3E%3C/svg%3E");
}

.value-item:nth-child(2) .value-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23bd842f' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 39S11 31 11 20a7 7 0 0 1 13-3 7 7 0 0 1 13 3c0 11-13 19-13 19Z'/%3E%3Cpath d='M38 7l1.6 3.4L43 12l-3.4 1.6L38 17l-1.6-3.4L33 12l3.4-1.6L38 7Z'/%3E%3Cpath d='M10 32l1 2.2 2.2 1-2.2 1-1 2.2-1-2.2-2.2-1 2.2-1 1-2.2Z'/%3E%3C/g%3E%3C/svg%3E");
}

.value-item:nth-child(3) .value-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23bd842f' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 42 8 20l8-10h16l8 10-16 22Z'/%3E%3Cpath d='M8 20h32M16 10l8 32 8-32M16 10l8 10 8-10'/%3E%3Cpath d='M39 31l1.3 2.7L43 35l-2.7 1.3L39 39l-1.3-2.7L35 35l2.7-1.3L39 31Z'/%3E%3C/g%3E%3C/svg%3E");
}

.value-item:nth-child(4) .value-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23bd842f' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 42a18 18 0 1 0-18-18 18 18 0 0 0 18 18Z'/%3E%3Cpath d='M7 24h34M24 6c6 6.5 6 29.5 0 36M24 6c-6 6.5-6 29.5 0 36'/%3E%3Cpath d='M35 9l1.5 3L40 14l-3.5 2L35 19l-1.5-3L30 14l3.5-2L35 9Z'/%3E%3C/g%3E%3C/svg%3E");
}

.value-strip.bottom .value-item:nth-child(2) .value-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23bd842f' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 42 8 20l8-10h16l8 10-16 22Z'/%3E%3Cpath d='M8 20h32M16 10l8 32 8-32M16 10l8 10 8-10'/%3E%3Cpath d='M39 31l1.3 2.7L43 35l-2.7 1.3L39 39l-1.3-2.7L35 35l2.7-1.3L39 31Z'/%3E%3C/g%3E%3C/svg%3E");
}

.value-strip.bottom .value-item:nth-child(3) .value-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23bd842f' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 42c-8.5-5.6-13-12.8-13-21.5V11l13-5 13 5v9.5C37 29.2 32.5 36.4 24 42Z'/%3E%3Cpath d='m17.5 24 4.4 4.4 9-10.2'/%3E%3Cpath d='M34 7l1.2 2.4 2.4 1.2-2.4 1.2L34 14.2l-1.2-2.4-2.4-1.2 2.4-1.2L34 7Z'/%3E%3C/g%3E%3C/svg%3E");
}

.value-strip.bottom .value-item:nth-child(4) .value-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23bd842f' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8 15h22v16H8V15Z'/%3E%3Cpath d='M30 21h6l5 6v4H30V21Z'/%3E%3Cpath d='M14 37a4 4 0 1 0 0-8 4 4 0 0 0 0 8ZM35 37a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z'/%3E%3Cpath d='M18 10l1.4 2.8 2.8 1.4-2.8 1.4L18 18.4l-1.4-2.8-2.8-1.4 2.8-1.4L18 10Z'/%3E%3C/g%3E%3C/svg%3E");
}

.value-text strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.value-text span {
  display: block;
  margin-top: 2px;
  color: rgba(36, 23, 17, 0.62);
  font-size: 12px;
}

/* Panels */
.panel {
  margin: 0;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(255, 250, 243, 0.98));
  border-top: 1px solid rgba(103, 76, 44, 0.06);
  border-bottom: 1px solid rgba(103, 76, 44, 0.06);
  padding: 34px 0 0;
}

.reviews .container {
  background: rgba(255, 252, 247, 0.72);
  border-radius: 14px 14px 0 0;
  overflow: hidden;
}

.panel-header {
  text-align: center;
  margin-bottom: 24px;
}

.section-subtitle {
  margin: 14px auto 0;
  max-width: 56ch;
  color: rgba(36, 23, 17, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  padding: 0 58px;
}

.review-card {
  background: rgba(255, 253, 249, 0.66);
  border: 1px solid rgba(103, 76, 44, 0.1);
  border-radius: 8px;
  padding: 18px 22px 20px;
  box-shadow: none;
  min-height: 140px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.review-stars {
  color: var(--accent);
}

.review-stars .icon {
  width: 13px;
  height: 13px;
}

.review-quote {
  margin: 12px 0 18px;
  color: rgba(36, 23, 17, 0.7);
  font-size: 11px;
  line-height: 1.35;
}

.review-person {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-self: start;
}

.avatar {
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, #f3d5bc, #a56f3f);
  border: 1px solid rgba(180, 131, 58, 0.28);
  color: #fffaf3;
  font-weight: 700;
  display: grid;
  place-items: center;
  overflow: hidden;
  position: relative;
}

.avatar::after {
  content: "P";
  font-size: 13px;
}

.avatar-neha::after {
  content: "N";
}

.avatar-arjun {
  background: linear-gradient(135deg, #2f4858, #d6a45f);
}

.avatar-arjun::after {
  content: "A";
}

.avatar-ananya::after {
  content: "A";
}

.person-name {
  font-size: 12px;
  color: rgba(36, 23, 17, 0.64);
}

.stats-strip {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 22px 26px;
  border-top: 1px solid rgba(103, 76, 44, 0.08);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.42), transparent 34%),
    linear-gradient(90deg, #efe1cf, #f6ead9 48%, #efe0cd);
}

.stat {
  display: grid;
  grid-template-columns: 44px minmax(0, max-content);
  grid-template-rows: auto auto;
  justify-content: center;
  column-gap: 14px;
  row-gap: 3px;
  align-items: center;
  min-width: 0;
  padding: 6px 18px;
  border-right: 1px solid rgba(103, 76, 44, 0.14);
}

.stat:last-child {
  border-right: 0;
}

.stat-icon {
  position: relative;
  color: var(--accent);
  display: grid;
  place-items: center;
  grid-row: 1 / span 2;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(180, 131, 58, 0.2);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.95), transparent 38%),
    linear-gradient(145deg, rgba(255, 253, 249, 0.94), rgba(247, 235, 218, 0.68));
  box-shadow:
    0 14px 28px rgba(92, 60, 26, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.stat-icon::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(180, 131, 58, 0.1);
  border-radius: inherit;
}

.stat-icon .icon {
  display: none;
}

.stat-icon::before {
  content: "";
  position: relative;
  z-index: 1;
  display: block;
  width: 29px;
  height: 29px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.stat:nth-child(1) .stat-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23bd842f' stroke-width='2.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 22a7 7 0 1 0-7-7 7 7 0 0 0 7 7Z'/%3E%3Cpath d='M4 41c2.2-9.5 25.8-9.5 28 0'/%3E%3Cpath d='M33 22a5.5 5.5 0 1 0-4.8-8.2'/%3E%3Cpath d='M31 29c6.8.5 11.5 4.2 13 12'/%3E%3Cpath d='M38 6l1.3 2.7L42 10l-2.7 1.3L38 14l-1.3-2.7L34 10l2.7-1.3L38 6Z'/%3E%3C/g%3E%3C/svg%3E");
}

.stat:nth-child(2) .stat-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23bd842f' stroke-width='2.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 9h17a5 5 0 0 1 5 5v27H17a5 5 0 0 0-5 5V9Z'/%3E%3Cpath d='M17 9v32M22 16h8M22 23h8M22 30h6'/%3E%3Cpath d='M37 8l1.4 2.8 2.8 1.4-2.8 1.4L37 16.4l-1.4-2.8-2.8-1.4 2.8-1.4L37 8Z'/%3E%3C/g%3E%3C/svg%3E");
}

.stat:nth-child(3) .stat-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23bd842f' stroke-width='2.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 42a18 18 0 1 0-18-18 18 18 0 0 0 18 18Z'/%3E%3Cpath d='M7 24h34M24 6c6 6.5 6 29.5 0 36M24 6c-6 6.5-6 29.5 0 36'/%3E%3Cpath d='M36 7l1.4 2.8 2.8 1.4-2.8 1.4L36 16.4l-1.4-2.8-2.8-1.4 2.8-1.4L36 7Z'/%3E%3C/g%3E%3C/svg%3E");
}

.stat:nth-child(4) .stat-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23bd842f' stroke-width='2.35' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 6l5.1 12.1 13 .9-9.9 8.4 3.1 12.7L24 33.4 12.7 40.1l3.1-12.7L5.9 19l13-.9L24 6Z'/%3E%3Cpath d='M39 5l1.2 2.5 2.5 1.2-2.5 1.2L39 12.4l-1.2-2.5-2.5-1.2 2.5-1.2L39 5Z'/%3E%3C/g%3E%3C/svg%3E");
}

.stat-number {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.2vw, 38px);
  font-weight: 700;
  line-height: 0.95;
  text-align: left;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

.stat-label {
  margin: 0;
  color: rgba(36, 23, 17, 0.76);
  font-size: 13px;
  line-height: 1.15;
  grid-column: 2;
  text-align: left;
  white-space: nowrap;
}

/* How it works */
.how {
  padding: 30px 0 28px;
  background: #fffaf3;
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 12px;
  padding: 0 58px;
}

.step {
  background: rgba(255, 253, 249, 0.68);
  border: 1px solid rgba(103, 76, 44, 0.12);
  border-radius: 8px;
  padding: 24px 18px 20px;
  text-align: center;
  position: relative;
  min-height: 180px;
  box-shadow: none;
}

.step-number {
  position: absolute;
  left: 50%;
  top: -16px;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  border-radius: 999px;
  margin: 0;
  display: grid;
  place-items: center;
  background: var(--accent);
  border: 1px solid rgba(255, 250, 242, 0.9);
  color: #fff;
  font-weight: 600;
}

.step-icon {
  position: relative;
  color: var(--accent);
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  margin: 8px auto 16px;
  border-radius: 999px;
  border: 1px solid rgba(180, 131, 58, 0.18);
  background:
    radial-gradient(circle at 30% 22%, rgba(255, 255, 255, 0.96), transparent 36%),
    linear-gradient(145deg, rgba(255, 253, 249, 0.96), rgba(247, 235, 218, 0.68));
  box-shadow:
    0 16px 32px rgba(92, 60, 26, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.step-icon::after {
  content: "";
  position: absolute;
  inset: 9px;
  border: 1px solid rgba(180, 131, 58, 0.1);
  border-radius: inherit;
}

.step-icon svg {
  display: none;
}

.step-icon::before {
  content: "";
  position: relative;
  z-index: 1;
  display: block;
  width: 38px;
  height: 38px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.step:nth-of-type(1) .step-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23bd842f' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 9h17a5 5 0 0 1 5 5v27H17a5 5 0 0 0-5 5V9Z'/%3E%3Cpath d='M17 9v32M22 16h8M22 23h8M22 30h6'/%3E%3Cpath d='M38 7l1.3 2.7L42 11l-2.7 1.3L38 15l-1.3-2.7L34 11l2.7-1.3L38 7Z'/%3E%3C/g%3E%3C/svg%3E");
}

.step:nth-of-type(2) .step-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23bd842f' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 8h20v32H12V8Z'/%3E%3Cpath d='M18 16h9M18 23h9M18 30h6'/%3E%3Cpath d='M33 33 42 24l-4-4-9 9-1 5 5-1Z'/%3E%3Cpath d='M39 7l1.1 2.4 2.4 1.1-2.4 1.1L39 14l-1.1-2.4-2.4-1.1 2.4-1.1L39 7Z'/%3E%3C/g%3E%3C/svg%3E");
}

.step:nth-of-type(3) .step-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23bd842f' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 39c7-5.2 13-11.7 13-20a13 13 0 0 0-26 0c0 8.3 6 14.8 13 20Z'/%3E%3Cpath d='M18 20a6 6 0 0 1 12 0M20 28h8'/%3E%3Cpath d='M38 8l1.3 2.7L42 12l-2.7 1.3L38 16l-1.3-2.7L34 12l2.7-1.3L38 8Z'/%3E%3Cpath d='M10 31l1 2.2 2.2 1-2.2 1-1 2.2-1-2.2-2.2-1 2.2-1 1-2.2Z'/%3E%3C/g%3E%3C/svg%3E");
}

.step:nth-of-type(4) .step-icon::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48'%3E%3Cg fill='none' stroke='%23bd842f' stroke-width='2.25' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M24 4l4 11 11 4-11 4-4 11-4-11-11-4 11-4 4-11Z'/%3E%3Cpath d='M38 29l2 5 5 2-5 2-2 5-2-5-5-2 5-2 2-5ZM10 6l1.4 3 3 1.4-3 1.4-1.4 3-1.4-3-3-1.4 3-1.4L10 6Z'/%3E%3C/g%3E%3C/svg%3E");
}

.step-title {
  font-family: var(--font-display);
  font-size: 18px;
  margin: 8px 0 6px;
}

.step-desc {
  margin: 0;
  color: rgba(36, 23, 17, 0.68);
  font-size: 12px;
}

.step-arrow {
  display: grid;
  place-items: center;
  font-size: 18px;
  color: rgba(180, 131, 58, 0.75);
}

/* Signature */
.signature {
  padding: 48px 0 0;
  background: #fffaf3;
  border-bottom: 1px solid rgba(103, 76, 44, 0.08);
}

.signature-shell {
  position: relative;
  padding: 0 0 38px;
  border-top: 1px solid rgba(103, 76, 44, 0.12);
  border-bottom: 1px solid rgba(103, 76, 44, 0.12);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.86), rgba(255, 250, 243, 0.58));
}

.signature-shell::before,
.signature-shell::after {
  display: none;
}

.signature-heading {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(280px, 0.5fr);
  gap: 24px;
  align-items: end;
  max-width: none;
  margin: 0 0 28px;
  padding: 30px 0 22px;
  text-align: left;
  border-bottom: 1px solid rgba(103, 76, 44, 0.1);
}

.signature-eyebrow {
  margin: 0 0 8px;
  color: rgba(155, 111, 44, 0.98);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.signature-heading .section-title,
.signature-heading .section-subtitle {
  margin-left: 0;
  margin-right: 0;
}

.signature-title-stack {
  min-width: 0;
}

.signature-lead {
  margin: 0;
  max-width: 42ch;
  color: rgba(36, 23, 17, 0.66);
  font-size: 14px;
  line-height: 1.65;
}

.signature-footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(103, 76, 44, 0.1);
}

.signature-footer-note {
  margin: 0;
  max-width: 46ch;
  color: rgba(36, 23, 17, 0.66);
  font-size: 14px;
  line-height: 1.65;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 0;
  padding: 0;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0;
  border: 1px solid rgba(103, 76, 44, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.72);
  box-shadow: none;
  text-align: left;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 131, 58, 0.28);
  background: rgba(255, 252, 247, 0.96);
}

.product-card-frame {
  display: flex;
  flex: 1;
  flex-direction: column;
  border: 0;
  border-radius: 8px 8px 0 0;
  background: transparent;
  overflow: hidden;
}

.product-card-mark {
  align-self: flex-start;
  margin: 14px 14px 0;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(180, 131, 58, 0.28);
  border-radius: 0;
  background: transparent;
  color: rgba(155, 111, 44, 0.98);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.product-image {
  display: grid;
  place-items: center;
  height: 260px;
  overflow: hidden;
  margin: 12px 14px 0;
  padding: 16px;
  border-radius: 6px;
  background: rgba(246, 234, 220, 0.62);
  box-shadow: inset 0 0 0 1px rgba(103, 76, 44, 0.06);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transform: scale(1);
  transition: transform 220ms ease;
}

.product-card:nth-child(1) .product-image img {
  object-position: center;
}

.product-card:nth-child(2) .product-image img {
  object-position: center;
}

.product-card:nth-child(3) .product-image img {
  object-position: center;
}

.product-card:nth-child(4) .product-image img {
  object-position: center;
}

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

.product-card-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 16px 16px 0;
  text-align: left;
}

.product-meta-row {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.product-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1;
  letter-spacing: 0;
}

.product-sub {
  margin: 0;
  color: rgba(155, 111, 44, 0.94);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.product-price {
  margin: 0;
  font-size: 23px;
  font-weight: 700;
  color: rgba(36, 23, 17, 0.9);
  white-space: nowrap;
}

.product-card-note {
  margin: 0;
  min-height: 4.8em;
  color: rgba(36, 23, 17, 0.66);
  font-size: 13px;
  line-height: 1.6;
}

.product-card .btn {
  width: 100%;
  margin: 0;
  padding: 12px 18px;
  border-radius: 6px;
  font-size: 11px;
  min-height: 50px;
}

.product-card .btn-primary {
  background: linear-gradient(180deg, #c8943f, #ad741f);
  color: #fff;
}

.product-card .btn-outline {
  background: rgba(255, 252, 247, 0.9);
}

.product-card-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 18px 16px 10px;
}

.product-card-detail {
  width: auto;
  max-width: none;
  margin: 0 16px 16px;
  min-height: 48px;
}

.center-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* CTA split */
.cta-split {
  margin-top: 20px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
  background: rgba(255, 252, 247, 0.75);
  border: 1px solid rgba(103, 76, 44, 0.1);
  border-bottom: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 306px;
}

.cta-image {
  background: url("assets/473A11D9-7C3B-497D-A91E-8956810C502A.png") center/cover no-repeat;
}

.cta-body {
  padding: 38px 72px;
  display: grid;
  align-content: center;
  gap: 10px;
}

.cta-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 3vw, 44px);
  line-height: 1.1;
}

.cta-desc {
  margin: 0;
  color: rgba(36, 23, 17, 0.72);
  font-size: 14px;
  max-width: 40ch;
}

/* Footer */
.site-footer {
  padding: 34px 0 30px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.62), transparent 28%),
    linear-gradient(180deg, #fbf7ef, #f3e4d1);
  border-top: 1px solid rgba(103, 76, 44, 0.08);
  flex-shrink: 0;
}

.footer-inner {
  display: grid;
  gap: 22px;
}

.footer-main,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-logo {
  display: block;
  width: min(230px, 58vw);
  padding: 8px 10px;
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.42);
  box-shadow: inset 0 0 0 1px rgba(180, 131, 58, 0.08);
}

.footer-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-copy {
  max-width: 46ch;
  margin: 6px 0 0;
  color: rgba(36, 23, 17, 0.64);
  font-size: 13px;
  line-height: 1.6;
}

.footer-contact,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-contact {
  justify-content: flex-end;
}

.footer-contact a,
.footer-links a {
  color: rgba(36, 23, 17, 0.72);
  font-size: 13px;
  font-weight: 650;
}

.footer-contact a {
  padding: 10px 14px;
  border: 1px solid rgba(180, 131, 58, 0.16);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.52);
}

.footer-links a {
  text-decoration: underline;
  text-decoration-color: rgba(180, 131, 58, 0.28);
  text-underline-offset: 4px;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}

.footer-contact a:hover,
.footer-links a:hover {
  color: var(--accent-2);
  text-decoration-color: var(--accent);
}

.footer-note {
  color: rgba(36, 23, 17, 0.6);
  font-size: 13px;
}

/* FAQ */
.faq-section {
  padding: 58px 0 66px;
  background:
    radial-gradient(circle at 84% 0%, rgba(189, 132, 47, 0.1), transparent 26%),
    linear-gradient(180deg, #fffaf3, #f6eadc);
}

.faq-list {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(103, 76, 44, 0.12);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.88), rgba(250, 241, 228, 0.72));
  box-shadow: 0 18px 46px rgba(92, 60, 26, 0.07);
  overflow: hidden;
}

.faq-item summary {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;
  gap: 14px;
  padding: 20px 22px;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 700;
  line-height: 1.1;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fffaf3;
  background: linear-gradient(180deg, #c69546, #a96f22);
  font-family: var(--font-body);
  font-size: 20px;
  transition: transform 180ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 22px 22px;
  color: rgba(36, 23, 17, 0.7);
  line-height: 1.7;
}

.faq-answer p {
  margin: 12px 0 0;
}

.faq-answer ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.faq-answer li {
  margin: 6px 0;
}

/* How it works journey page */
.how-page {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.62), transparent 24%),
    linear-gradient(180deg, #fbf7ef, #f3e3cf);
}

.how-journey {
  padding: 30px 0 42px;
}

.how-journey-panel {
  overflow: hidden;
  border: 1px solid rgba(103, 76, 44, 0.11);
  border-radius: 22px;
  background:
    radial-gradient(circle at 18% 6%, rgba(255, 255, 255, 0.74), transparent 22%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(248, 239, 226, 0.96));
  box-shadow: 0 24px 70px rgba(92, 60, 26, 0.1);
}

.how-journey-header {
  display: grid;
  grid-template-columns: 60px 1fr 60px;
  align-items: center;
  gap: 18px;
  padding: clamp(34px, 5vw, 58px) 34px 24px;
  text-align: center;
}

.how-sparkle {
  color: var(--accent);
  font-size: clamp(26px, 3vw, 38px);
}

.how-journey-header h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 92px);
  line-height: 0.92;
  letter-spacing: 0.12em;
}

.how-journey-header p {
  margin: 18px auto 0;
  color: rgba(36, 23, 17, 0.78);
  font-size: clamp(16px, 1.6vw, 22px);
}

.how-timeline {
  position: relative;
  padding: 18px clamp(18px, 4vw, 58px) 0;
}

.how-timeline::before {
  content: "";
  position: absolute;
  top: 82px;
  bottom: 132px;
  left: clamp(48px, 5.5vw, 74px);
  border-left: 1px dashed rgba(180, 131, 58, 0.56);
}

.how-timeline-step {
  position: relative;
  display: grid;
  grid-template-columns: 70px 128px minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: 24px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid rgba(103, 76, 44, 0.08);
}

.how-timeline-step:first-child {
  border-top: 1px solid rgba(103, 76, 44, 0.1);
}

.how-timeline-step:not(:last-child)::after {
  content: "▾";
  position: absolute;
  left: 29px;
  bottom: -12px;
  z-index: 2;
  color: var(--accent);
  font-size: 18px;
}

.how-step-number {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #ca9131, #a96f22);
  color: #fffaf3;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(151, 95, 26, 0.18);
}

.how-step-icon {
  width: 112px;
  height: 112px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(180, 131, 58, 0.14);
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255, 252, 247, 0.64);
  box-shadow: inset 0 0 0 12px rgba(255, 252, 247, 0.36);
}

.how-step-copy h2 {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 42px);
  line-height: 1.02;
}

.how-step-copy h2 span {
  color: var(--accent);
  font-size: 0.62em;
  vertical-align: middle;
}

.how-step-copy p {
  margin: 10px 0 0;
  max-width: 38ch;
  color: rgba(36, 23, 17, 0.74);
  font-size: 15px;
  line-height: 1.65;
}

.how-step-image {
  height: 236px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(103, 76, 44, 0.12);
  border-radius: 16px;
  background: #f4e5d2;
}

.how-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-ready-cta {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 42px 20px 40px;
  text-align: center;
  background:
    linear-gradient(90deg, rgba(239, 214, 181, 0.8), rgba(255, 249, 241, 0.76), rgba(239, 214, 181, 0.8)),
    url("assets/IMG_3418.PNG") center/cover no-repeat;
}

.how-ready-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 250, 243, 0.5);
}

.how-ready-cta > * {
  position: relative;
  z-index: 1;
}

.how-ready-cta p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 34px);
}

.how-ready-cta h2 {
  margin: 0;
  color: var(--accent-2);
  font-family: var(--font-display);
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1;
}

.how-ready-cta .btn {
  min-width: 320px;
  justify-content: center;
  margin-top: 8px;
  font-size: 22px;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
}

.how-value-strip.value-strip.bottom {
  margin-top: 0;
}

/* Responsive */
@media (max-width: 1024px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
    grid-template-areas:
      "burger brand icons"
      "navl navl navr";
    row-gap: 10px;
  }

  #drawer-open {
    grid-area: burger;
  }

  .brand {
    grid-area: brand;
    width: 210px;
  }

  .header-icons {
    grid-area: icons;
  }

  .nav-left {
    grid-area: navl;
  }

  .nav-right {
    grid-area: navr;
  }

  .path-grid,
  .review-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 0;
  }

  .signature-shell {
    padding: 0 0 34px;
  }

  .signature-heading {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }

  .signature-footer {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .step-arrow {
    display: none;
  }

  .cta-split {
    grid-template-columns: 1fr;
  }

  .cta-image {
    min-height: 200px;
  }

  .cta-body {
    padding: 34px 32px;
  }

  .stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 14px;
  }

  .stat:nth-child(2) {
    border-right: 0;
  }

  .how-timeline-step {
    grid-template-columns: 62px 104px minmax(0, 1fr);
  }

  .how-step-image {
    grid-column: 2 / -1;
    height: 280px;
  }

  .how-timeline::before {
    left: 49px;
  }

  .how-step-icon {
    width: 96px;
    height: 96px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .header-inner {
    min-height: 76px;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .brand {
    width: 172px;
  }

  .hero-card {
    min-height: 620px;
    background-position: center;
  }

  .hero-content {
    padding: 42px 18px 22px;
  }

  .hero-copy-panel {
    width: min(100%, 560px);
    border-radius: 20px;
    padding: 22px 18px 20px;
  }

  .hero-title {
    font-size: clamp(38px, 12vw, 52px);
    line-height: 0.96;
    letter-spacing: 0.04em;
  }

  .trust-row {
    grid-template-columns: 1fr 1fr;
    row-gap: 16px;
    border-radius: 22px;
    padding: 14px;
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(3) {
    border-right: 1px solid rgba(103, 76, 44, 0.16);
  }

  .testimonial-pill {
    border-radius: 18px;
    flex-direction: column;
    gap: 6px;
    padding: 12px 14px;
  }

  .path-grid,
  .review-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 0;
    padding: 0;
  }

  .product-image {
    height: clamp(280px, 82vw, 410px);
    margin: 12px 12px 0;
  }

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

  .product-card-detail {
    width: auto;
  }

  .signature-shell {
    padding: 0 0 28px;
    border-radius: 0;
  }

  .signature-heading {
    margin-bottom: 24px;
    padding: 24px 0 18px;
  }

  .product-card-copy {
    padding: 18px 16px 0;
  }

  .product-meta-row {
    flex-direction: column;
    gap: 8px;
  }

  .product-card-note {
    min-height: 0;
  }

  .steps {
    grid-template-columns: 1fr;
    row-gap: 28px;
  }

  .value-strip,
  .stats-strip {
    grid-template-columns: 1fr 1fr;
  }

  .value-item {
    padding: 12px 10px;
    gap: 10px;
  }

  .value-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .value-icon::before {
    width: 25px;
    height: 25px;
  }

  .value-item:nth-child(2) {
    border-right: 0;
  }

  .stats-strip {
    padding-inline: 16px;
  }

  .stat {
    grid-template-columns: 38px minmax(0, 1fr);
    justify-items: center;
    justify-content: start;
    column-gap: 10px;
    padding: 8px 6px;
  }

  .stat-icon {
    width: 38px;
    height: 38px;
  }

  .stat-icon::before {
    width: 25px;
    height: 25px;
  }

  .step-icon {
    width: 64px;
    height: 64px;
  }

  .step-icon::before {
    width: 34px;
    height: 34px;
  }

  .stat-number {
    font-size: clamp(24px, 7vw, 32px);
  }

  .stat-number,
  .stat-label {
    grid-column: 2;
    text-align: left;
    margin-top: 0;
  }

  .footer-main,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-contact {
    justify-content: flex-start;
  }

  .footer-logo {
    width: min(210px, 72vw);
  }

  .faq-section {
    padding: 44px 0 52px;
  }

  .faq-item summary {
    padding: 18px;
  }

  .faq-answer {
    padding-inline: 18px;
  }

  .how-journey {
    padding-top: 18px;
  }

  .how-journey-panel {
    border-radius: 18px;
  }

  .how-journey-header {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 34px 18px 18px;
  }

  .how-sparkle {
    display: none;
  }

  .how-journey-header h1 {
    letter-spacing: 0.06em;
  }

  .how-timeline {
    padding: 10px 18px 0;
  }

  .how-timeline::before,
  .how-timeline-step::after {
    display: none;
  }

  .how-timeline-step {
    grid-template-columns: 54px 1fr;
    gap: 14px;
    align-items: start;
    padding: 22px 0;
  }

  .how-step-number {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .how-step-icon {
    grid-column: 2;
    grid-row: 1;
    width: 76px;
    height: 76px;
    justify-self: end;
  }

  .how-step-copy {
    grid-column: 1 / -1;
  }

  .how-step-copy h2,
  .how-step-copy p {
    max-width: none;
  }

  .how-step-image {
    grid-column: 1 / -1;
    height: 230px;
  }

  .how-ready-cta {
    padding: 34px 18px;
  }

  .how-ready-cta .btn {
    min-width: 0;
    width: min(100%, 320px);
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .dropdown[data-open="true"] .dropdown-item,
  .drawer[data-open="true"] .drawer-link {
    opacity: 1;
    transform: none;
  }

  .drawer-submenu {
    transition: none;
  }
}

/* Editorial content pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0;
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.9), rgba(247, 235, 218, 0.92)),
    url("assets/IMG_3418.PNG") center/cover no-repeat;
  border-bottom: 1px solid rgba(103, 76, 44, 0.08);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.7), transparent 28%),
    radial-gradient(circle at 78% 24%, rgba(189, 132, 47, 0.12), transparent 24%);
}

.about-page-hero {
  background:
    linear-gradient(90deg, rgba(255, 252, 247, 0.96), rgba(247, 235, 218, 0.7)),
    url("assets/IMG_3418.PNG") center/cover no-repeat;
}

.reviews-page-hero {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(246, 232, 211, 0.88)),
    url("assets/IMG_3436.PNG") center/cover no-repeat;
}

.contact-page-hero {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(246, 232, 211, 0.88)),
    url("assets/IMG_3417.PNG") center/cover no-repeat;
}

.legal-page-hero {
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(246, 232, 211, 0.9)),
    url("assets/IMG_3418.PNG") center/cover no-repeat;
}

.page-hero-grid,
.page-hero-centered {
  position: relative;
  z-index: 1;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.page-hero-centered {
  max-width: 780px;
  text-align: center;
}

.page-kicker {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.page-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.98;
  letter-spacing: 0.015em;
}

.page-lead {
  max-width: 62ch;
  margin: 18px 0 0;
  color: rgba(36, 23, 17, 0.72);
  font-size: 16px;
  line-height: 1.65;
}

.page-hero-centered .page-lead {
  margin-inline: auto;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.page-hero-image,
.page-image-card,
.page-card,
.feature-card,
.testimonial-card,
.contact-form,
.review-shot {
  border: 1px solid rgba(103, 76, 44, 0.12);
  box-shadow: 0 18px 46px rgba(92, 60, 26, 0.08);
}

.page-hero-image,
.page-image-card {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 252, 247, 0.7);
}

.page-hero-image img,
.page-image-card img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.page-section {
  padding: 62px 0;
  background: var(--bg);
}

.soft-section {
  background: linear-gradient(180deg, #fffaf3, #f6eadc);
}

.page-split {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 0.72fr);
  gap: 28px;
  align-items: stretch;
}

.page-card {
  border-radius: 22px;
  padding: clamp(28px, 4vw, 52px);
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.78), transparent 28%),
    rgba(255, 252, 247, 0.78);
}

.editorial-card p:not(.page-kicker) {
  max-width: 68ch;
  color: rgba(36, 23, 17, 0.7);
  font-size: 15px;
  line-height: 1.75;
}

.page-section-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.page-section-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 50px);
  line-height: 1.05;
}

.page-section-copy {
  margin: 12px auto 0;
  color: rgba(36, 23, 17, 0.68);
  line-height: 1.65;
}

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

.feature-card,
.testimonial-card {
  border-radius: 20px;
  padding: 24px;
  background: rgba(255, 252, 247, 0.74);
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fffaf3;
  background: linear-gradient(180deg, #c69546, #a96f22);
  box-shadow: 0 10px 20px rgba(151, 95, 26, 0.16);
}

.feature-card h3 {
  margin: 16px 0 8px;
  font-family: var(--font-display);
  font-size: 24px;
}

.feature-card p,
.testimonial-card {
  color: rgba(36, 23, 17, 0.68);
  line-height: 1.6;
}

.review-page-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid rgba(103, 76, 44, 0.12);
  border-radius: 22px;
  background: linear-gradient(90deg, #efe1cf, #f8eddd, #efe1cf);
  box-shadow: 0 18px 46px rgba(92, 60, 26, 0.08);
}

.review-page-stats div {
  padding: 24px 18px;
  text-align: center;
  border-right: 1px solid rgba(103, 76, 44, 0.12);
}

.review-page-stats div:last-child {
  border-right: 0;
}

.review-page-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1;
}

.review-page-stats span {
  display: block;
  margin-top: 6px;
  color: rgba(36, 23, 17, 0.68);
  font-size: 13px;
}

.review-gallery {
  columns: 4 240px;
  column-gap: 18px;
  counter-reset: review-shot;
}

.review-shot {
  display: block;
  break-inside: avoid;
  margin: 0 0 18px;
  padding: 12px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.78), transparent 34%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(248, 236, 219, 0.86));
  position: relative;
  overflow: hidden;
  counter-increment: review-shot;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.review-shot:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 58px rgba(92, 60, 26, 0.14);
}

.review-shot::after {
  content: "Review " counter(review-shot);
  position: absolute;
  left: 22px;
  bottom: 20px;
  border-radius: 999px;
  padding: 6px 10px;
  background: rgba(255, 252, 247, 0.88);
  color: rgba(155, 111, 44, 0.98);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(92, 60, 26, 0.12);
  backdrop-filter: blur(8px);
}

.review-shot img {
  width: 100%;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(103, 76, 44, 0.08);
}

.review-lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.review-lightbox[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
}

.review-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(189, 132, 47, 0.18), transparent 34%),
    rgba(24, 15, 10, 0.72);
  backdrop-filter: blur(10px);
  cursor: zoom-out;
}

.review-lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: min(88vh, 900px);
  display: grid;
  place-items: center;
}

.review-lightbox-dialog figure {
  margin: 0;
  width: min(680px, 86vw);
  border: 1px solid rgba(255, 252, 247, 0.22);
  border-radius: 26px;
  padding: clamp(12px, 2vw, 18px);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(246, 234, 220, 0.94));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}

.review-lightbox-dialog img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 18px;
}

.review-lightbox-dialog figcaption {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 12px 4px 2px;
  color: rgba(36, 23, 17, 0.74);
  font-size: 13px;
}

.review-lightbox-dialog figcaption strong {
  color: var(--accent-2);
  white-space: nowrap;
}

.review-lightbox-close,
.review-lightbox-btn {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 252, 247, 0.32);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.92);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  transition: transform 160ms ease, background 160ms ease;
}

.review-lightbox-close:hover,
.review-lightbox-btn:hover {
  transform: translateY(-1px) scale(1.03);
  background: #fff;
}

.review-lightbox-close {
  top: -18px;
  right: max(0px, calc(50% - 362px));
  width: 42px;
  height: 42px;
  font-size: 28px;
  line-height: 1;
}

.review-lightbox-btn {
  top: 50%;
  width: 54px;
  height: 54px;
  font-size: 42px;
  line-height: 1;
}

.review-lightbox-btn.previous {
  left: 0;
}

.review-lightbox-btn.next {
  right: 0;
}

.video-review-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.72), transparent 32%),
    linear-gradient(180deg, #fbf7ef, #f4e8d8);
}

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

.video-review-card {
  border: 1px solid rgba(103, 76, 44, 0.12);
  border-radius: 24px;
  padding: 14px 14px 22px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(255, 252, 247, 0.8);
  box-shadow: 0 18px 46px rgba(92, 60, 26, 0.08);
}

.video-review-frame {
  min-height: 210px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(36, 23, 17, 0.24), rgba(36, 23, 17, 0.08)),
    url("assets/IMG_3418.PNG") center/cover no-repeat;
  overflow: hidden;
}

.video-review-frame span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.9);
  color: var(--accent-2);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.video-review-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #1c130f;
}

.video-review-card .page-kicker {
  margin-top: 18px;
}

.video-review-card h3 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: 30px;
  line-height: 1.05;
}

.video-review-card p:not(.page-kicker) {
  margin: 10px 0 0;
  color: rgba(36, 23, 17, 0.68);
  line-height: 1.6;
}

.testimonial-card {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--ink);
}

.testimonial-card span {
  display: block;
  margin-top: 18px;
  font-family: var(--font-body);
  color: rgba(36, 23, 17, 0.62);
  font-size: 13px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(340px, 0.62fr);
  gap: 26px;
  align-items: start;
}

.contact-cards {
  grid-template-columns: 1fr;
}

.contact-direct-card {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.8), transparent 32%),
    linear-gradient(145deg, rgba(255, 252, 247, 0.86), rgba(242, 224, 199, 0.7));
}

.contact-direct-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: 12px;
  padding: 10px 14px;
  border: 1px solid rgba(180, 131, 58, 0.18);
  border-radius: 999px;
  color: var(--accent-2);
  background: rgba(255, 252, 247, 0.68);
  font-weight: 750;
}

.contact-form {
  border-radius: 24px;
  padding: 28px;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.82), transparent 30%),
    rgba(255, 252, 247, 0.82);
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(36, 23, 17, 0.72);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(103, 76, 44, 0.14);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(189, 132, 47, 0.22);
  border-color: rgba(189, 132, 47, 0.5);
}

.form-note {
  margin: 14px 0 0;
  color: rgba(36, 23, 17, 0.58);
  font-size: 12px;
}

.custom-journal-page {
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 255, 255, 0.78), transparent 28%),
    linear-gradient(180deg, #fffaf3 0%, #fbf7ef 44%, #f6eadc 100%);
}

.custom-journal-hero {
  position: relative;
  padding: clamp(54px, 7vw, 92px) 0;
  border-bottom: 1px solid rgba(103, 76, 44, 0.1);
}

.custom-journal-hero::before,
.custom-journal-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.custom-journal-hero::before {
  inset: 8% auto auto -120px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(189, 132, 47, 0.12), transparent 70%);
}

.custom-journal-hero::after {
  right: -90px;
  bottom: 10%;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(180, 131, 58, 0.12);
}

.custom-journal-grid,
.custom-order-grid,
.custom-fit-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(28px, 4vw, 54px);
  align-items: center;
}

.custom-journal-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.72fr);
}

.custom-journal-copy h1,
.custom-wish-card h2,
.custom-fit-grid h2,
.custom-process-section .section-heading h2 {
  margin: 0;
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.025em;
}

.custom-journal-copy h1 {
  max-width: 780px;
  font-size: clamp(48px, 6.4vw, 92px);
}

.custom-journal-copy > p:not(.page-kicker),
.custom-fit-grid > div > p,
.custom-wish-card > p,
.custom-guidance-card p,
.custom-process-grid p,
.custom-faq-grid p {
  color: rgba(36, 23, 17, 0.68);
  line-height: 1.7;
}

.custom-journal-copy > p:not(.page-kicker) {
  max-width: 62ch;
  margin: 22px 0 0;
  font-size: 17px;
}

.custom-journal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.custom-journal-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(180, 131, 58, 0.18);
  border-radius: 999px;
  color: rgba(36, 23, 17, 0.82);
  background: rgba(255, 252, 247, 0.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(92, 60, 26, 0.07);
}

.custom-journal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.custom-journal-visual {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  border: 1px solid rgba(103, 76, 44, 0.12);
  border-radius: 32px;
  background:
    radial-gradient(circle at 25% 0%, rgba(255, 255, 255, 0.82), transparent 34%),
    linear-gradient(145deg, rgba(255, 252, 247, 0.9), rgba(236, 213, 184, 0.58));
  box-shadow: 0 30px 80px rgba(92, 60, 26, 0.14);
}

.custom-journal-visual::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 252, 247, 0.7);
  border-radius: 24px;
}

.custom-journal-visual img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.custom-journal-note-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  padding: 18px;
  border: 1px solid rgba(180, 131, 58, 0.18);
  border-radius: 20px;
  background: rgba(255, 252, 247, 0.84);
  box-shadow: 0 18px 42px rgba(92, 60, 26, 0.12);
  backdrop-filter: blur(14px);
}

.custom-journal-note-card span {
  color: var(--accent-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.custom-journal-note-card strong {
  display: block;
  margin-top: 4px;
  font-family: var(--font-display);
  font-size: 34px;
  line-height: 1;
}

.custom-journal-note-card p {
  margin: 8px 0 0;
  color: rgba(36, 23, 17, 0.64);
  font-size: 13px;
}

.custom-order-section {
  padding: clamp(52px, 7vw, 84px) 0;
}

.custom-order-grid {
  grid-template-columns: minmax(0, 0.92fr) minmax(300px, 0.54fr);
}

.custom-wish-card,
.custom-guidance-card,
.custom-process-grid article,
.custom-fit-list div,
.custom-faq-grid details {
  border: 1px solid rgba(103, 76, 44, 0.12);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.82), transparent 34%),
    rgba(255, 252, 247, 0.82);
  box-shadow: 0 18px 46px rgba(92, 60, 26, 0.08);
}

.custom-wish-card {
  padding: clamp(28px, 4vw, 46px);
  border-radius: 28px;
}

.custom-wish-card h2,
.custom-fit-grid h2,
.custom-process-section .section-heading h2 {
  font-size: clamp(34px, 4.2vw, 58px);
}

.custom-wish-card label {
  display: block;
  margin: 26px 0 10px;
  color: rgba(36, 23, 17, 0.76);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.custom-wish-card textarea {
  width: 100%;
  min-height: 220px;
  resize: vertical;
  border: 1px solid rgba(103, 76, 44, 0.16);
  border-radius: 20px;
  padding: 18px 18px;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 252, 247, 0.72));
  font: inherit;
  font-size: 15px;
  line-height: 1.7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.custom-wish-card textarea:focus {
  outline: none;
  border-color: rgba(189, 132, 47, 0.56);
  box-shadow:
    0 0 0 4px rgba(189, 132, 47, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.75);
  transform: translateY(-1px);
}

.custom-wish-card textarea[data-invalid="true"] {
  border-color: rgba(148, 48, 34, 0.48);
  box-shadow: 0 0 0 4px rgba(148, 48, 34, 0.09);
}

.custom-wish-helper,
.custom-wish-error {
  margin: 10px 0 0;
  font-size: 12px;
}

.custom-wish-helper {
  color: rgba(36, 23, 17, 0.54);
}

.custom-wish-error {
  color: #8a3022;
  font-weight: 700;
}

.custom-submit-btn {
  width: 100%;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
  min-height: 54px;
}

.custom-guidance-card {
  border-radius: 26px;
  padding: clamp(24px, 3vw, 34px);
}

.custom-guidance-card ul {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.custom-guidance-card li {
  position: relative;
  padding-left: 34px;
  color: rgba(36, 23, 17, 0.72);
  font-weight: 650;
}

.custom-guidance-card li::before {
  content: "✦";
  position: absolute;
  left: 0;
  top: -2px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255, 252, 247, 0.78);
  box-shadow: inset 0 0 0 1px rgba(180, 131, 58, 0.18);
}

.custom-guidance-highlight {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(180, 131, 58, 0.16);
  border-radius: 18px;
  background: rgba(247, 235, 218, 0.54);
}

.custom-guidance-highlight strong {
  display: block;
  color: var(--ink);
}

.custom-process-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.94), rgba(246, 234, 220, 0.9)),
    url("assets/IMG_3418.PNG") center/cover no-repeat;
}

.custom-process-section .section-heading {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.custom-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.custom-process-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  border-radius: 24px;
  padding: 26px 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.custom-process-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 131, 58, 0.28);
  box-shadow: 0 24px 54px rgba(92, 60, 26, 0.12);
}

.custom-process-grid article span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 999px;
  color: #fffaf3;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  font-weight: 850;
  box-shadow: 0 10px 22px rgba(189, 132, 47, 0.24);
}

.custom-process-grid h3 {
  margin: 22px 0 10px;
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1.05;
}

.custom-fit-section {
  background: var(--bg);
}

.custom-fit-grid {
  grid-template-columns: minmax(0, 0.7fr) minmax(320px, 0.9fr);
}

.custom-fit-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.custom-fit-list div {
  min-height: 104px;
  border-radius: 20px;
  padding: 22px;
  color: rgba(36, 23, 17, 0.78);
  font-weight: 750;
}

.custom-faq-strip {
  padding: 0 0 clamp(58px, 7vw, 92px);
  background: var(--bg);
}

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

.custom-faq-grid details {
  border-radius: 20px;
  padding: 20px;
}

.custom-faq-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-weight: 850;
  list-style: none;
}

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

.custom-faq-grid summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-size: 20px;
  line-height: 1;
}

.custom-faq-grid details[open] summary::after {
  content: "–";
}

.legal-content {
  max-width: 920px;
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid rgba(103, 76, 44, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.76), transparent 30%),
    rgba(255, 252, 247, 0.82);
  box-shadow: 0 18px 46px rgba(92, 60, 26, 0.08);
}

.legal-content h2 {
  margin: 28px 0 10px;
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 36px);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: rgba(36, 23, 17, 0.72);
  line-height: 1.75;
}

.legal-content a {
  color: var(--accent-2);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.about-intro-grid,
.about-highlight-grid,
.founder-grid {
  display: grid;
  gap: 28px;
  align-items: stretch;
}

.about-intro-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.52fr);
}

.about-copy-card {
  min-height: 100%;
}

.about-offer-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(103, 76, 44, 0.12);
  border-radius: 24px;
  padding: clamp(26px, 3vw, 38px);
  background:
    radial-gradient(circle at 24% 0%, rgba(255, 255, 255, 0.84), transparent 34%),
    linear-gradient(145deg, rgba(255, 252, 247, 0.92), rgba(241, 224, 200, 0.76));
  box-shadow: 0 18px 46px rgba(92, 60, 26, 0.08);
}

.about-offer-panel::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 130px;
  height: 130px;
  border: 1px solid rgba(180, 131, 58, 0.16);
  border-radius: 999px;
}

.offer-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.offer-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(36, 23, 17, 0.76);
  font-weight: 600;
}

.offer-list li::before {
  content: "✦";
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 28px;
  place-items: center;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(255, 252, 247, 0.78);
  box-shadow: inset 0 0 0 1px rgba(180, 131, 58, 0.16);
}

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

.about-highlight-card {
  border: 1px solid rgba(103, 76, 44, 0.12);
  border-radius: 24px;
  padding: clamp(26px, 4vw, 44px);
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.74), transparent 30%),
    rgba(255, 252, 247, 0.78);
  box-shadow: 0 18px 46px rgba(92, 60, 26, 0.08);
}

.about-highlight-card h2 {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.08;
}

.about-highlight-card p:not(.page-kicker) {
  margin: 14px 0 0;
  color: rgba(36, 23, 17, 0.68);
  line-height: 1.65;
}

.founder-section {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.96), rgba(246, 234, 220, 0.94)),
    url("assets/IMG_3418.PNG") center/cover fixed;
}

.founder-grid {
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 0.92fr);
  align-items: center;
}

.founder-portrait {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(103, 76, 44, 0.13);
  border-radius: 28px;
  min-height: 560px;
  background: rgba(255, 252, 247, 0.78);
  box-shadow: 0 28px 70px rgba(92, 60, 26, 0.13);
}

.founder-portrait::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 1;
  pointer-events: none;
  border: 1px solid rgba(255, 252, 247, 0.72);
  border-radius: 22px;
}

.founder-portrait img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center top;
}

.founder-story-card {
  backdrop-filter: blur(10px);
}

.founder-story-card p:not(.page-kicker) {
  max-width: 78ch;
}

@media (max-width: 1024px) {
  .page-hero-grid,
  .page-split,
  .contact-layout,
  .about-intro-grid,
  .founder-grid,
  .custom-journal-grid,
  .custom-order-grid,
  .custom-fit-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .testimonial-grid,
  .about-highlight-grid,
  .custom-process-grid,
  .custom-faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-page-stats,
  .how-stats-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-page-stats div:nth-child(2) {
    border-right: 0;
  }

  .how-stats-strip .stat:nth-child(2) {
    border-right: 0;
  }
}

@media (max-width: 768px) {
  .page-hero {
    padding: 54px 0;
  }

  .page-actions,
  .feature-grid,
  .testimonial-grid,
  .about-highlight-grid,
  .custom-process-grid,
  .custom-fit-list,
  .custom-faq-grid {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .testimonial-grid,
  .about-highlight-grid,
  .custom-process-grid {
    display: grid;
  }

  .custom-journal-visual,
  .custom-journal-visual img {
    min-height: 420px;
  }

  .custom-journal-actions {
    flex-direction: column;
  }

  .custom-journal-actions .btn {
    width: 100%;
  }

  .custom-wish-card,
  .custom-guidance-card {
    padding: 24px;
  }

  .custom-wish-card textarea {
    min-height: 190px;
  }

  .review-page-stats,
  .how-stats-strip,
  .how-value-strip.value-strip.bottom {
    grid-template-columns: 1fr;
  }

  .review-video-grid {
    grid-template-columns: 1fr;
  }

  .review-lightbox {
    padding: 14px;
  }

  .review-lightbox-dialog figure {
    width: 100%;
  }

  .review-lightbox-close {
    top: -12px;
    right: -8px;
  }

  .review-lightbox-btn {
    top: auto;
    bottom: -8px;
    width: 46px;
    height: 46px;
    font-size: 34px;
  }

  .review-lightbox-btn.previous {
    left: 18px;
  }

  .review-lightbox-btn.next {
    right: 18px;
  }

  .review-page-stats div {
    border-right: 0;
    border-bottom: 1px solid rgba(103, 76, 44, 0.12);
  }

  .review-page-stats div:last-child {
    border-bottom: 0;
  }

  .founder-portrait,
  .founder-portrait img {
    min-height: 440px;
  }

  .how-stats-strip .stat {
    border-right: 0;
    border-bottom: 1px solid rgba(103, 76, 44, 0.12);
  }

  .how-stats-strip .stat:last-child {
    border-bottom: 0;
  }
}

/* Shop catalog */
.shop-page {
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 255, 255, 0.75), transparent 26%),
    linear-gradient(180deg, #fbf7ef 0%, #f4e8d8 54%, #fbf7ef 100%);
}

.shop-hero {
  padding: 34px 0 24px;
}

.shop-hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  gap: 28px;
  align-items: stretch;
  border: 1px solid rgba(103, 76, 44, 0.12);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 54px);
  background:
    linear-gradient(90deg, rgba(255, 252, 247, 0.94), rgba(255, 248, 239, 0.82)),
    url("assets/IMG_3418.PNG") center/cover no-repeat;
  box-shadow: 0 26px 70px rgba(92, 60, 26, 0.1);
}

.shop-hero-copy h1,
.journal-detail-copy h1,
.shop-results-top h2,
.shop-cta-panel h2 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}

.shop-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(46px, 5.4vw, 82px);
  letter-spacing: 0.02em;
}

.shop-hero-copy p:not(.page-kicker),
.shop-cta-panel p,
.journal-detail-copy .detail-description {
  max-width: 64ch;
  color: rgba(36, 23, 17, 0.72);
  line-height: 1.7;
}

.shop-hero-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.shop-finder {
  align-self: center;
  border: 1px solid rgba(180, 131, 58, 0.22);
  border-radius: 26px;
  padding: 26px;
  background: rgba(255, 252, 247, 0.82);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74), 0 18px 46px rgba(92, 60, 26, 0.08);
  backdrop-filter: blur(8px);
}

.finder-label,
.shop-search-label,
.language-filter span,
.filter-heading span {
  display: block;
  color: rgba(155, 111, 44, 0.95);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.finder-label {
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 30px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink);
}

.shop-search-wrap {
  margin-top: 8px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  border: 1px solid rgba(103, 76, 44, 0.13);
  border-radius: 999px;
  padding: 12px 16px 12px 18px;
  background: rgba(255, 255, 255, 0.84);
}

.shop-search {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
}

.shop-search-wrap span {
  color: var(--accent);
  font-size: 22px;
}

.shop-suggestion-row {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.shop-suggestion-row button,
.category-chip,
.filter-heading button {
  border: 1px solid rgba(180, 131, 58, 0.22);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.72);
  color: rgba(36, 23, 17, 0.76);
  cursor: pointer;
  font: inherit;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.shop-suggestion-row button {
  padding: 7px 12px;
  font-size: 12px;
}

.shop-suggestion-row button:hover,
.category-chip:hover,
.filter-heading button:hover {
  transform: translateY(-1px);
  border-color: rgba(180, 131, 58, 0.55);
  background: rgba(255, 255, 255, 0.92);
}

.shop-value-strip {
  padding: 0 0 28px;
}

.shop-values {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(103, 76, 44, 0.1);
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(90deg, #efe1cf, #f8ecdc 48%, #efe0cd);
}

.shop-values div {
  padding: 18px;
  text-align: center;
  border-right: 1px solid rgba(103, 76, 44, 0.12);
}

.shop-values div:last-child {
  border-right: 0;
}

.shop-values strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 0.95;
}

.shop-values span {
  display: block;
  margin-top: 4px;
  color: rgba(36, 23, 17, 0.68);
  font-size: 12px;
}

.shop-new {
  padding: 48px 0 50px;
}

.homepage-new-arrivals {
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(255, 250, 243, 0.76));
  border-top: 1px solid rgba(103, 76, 44, 0.08);
  border-bottom: 1px solid rgba(103, 76, 44, 0.08);
}

.homepage-new-arrivals .panel-header {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.5fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
  padding-bottom: 20px;
  text-align: left;
  border-bottom: 1px solid rgba(103, 76, 44, 0.1);
}

.homepage-new-arrivals .page-kicker,
.homepage-new-arrivals .section-title {
  grid-column: 1;
  margin-left: 0;
  margin-right: 0;
}

.homepage-new-arrivals .section-subtitle {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  max-width: 42ch;
  align-self: end;
  font-size: 14px;
  line-height: 1.65;
}

.new-arrivals-slider {
  position: relative;
  isolation: isolate;
}

.new-arrivals-slider::before,
.new-arrivals-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 42px;
  pointer-events: none;
}

.new-arrivals-slider::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 250, 243, 0.96), transparent);
}

.new-arrivals-slider::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 250, 243, 0.96), transparent);
}

.new-arrivals-viewport {
  overflow: hidden;
  border-radius: 8px;
}

.new-arrivals-rail {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding: 2px;
  padding: 2px 2px 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(180, 131, 58, 0.45) transparent;
}

.new-arrivals-rail::-webkit-scrollbar {
  height: 8px;
}

.new-arrivals-rail::-webkit-scrollbar-track {
  background: rgba(103, 76, 44, 0.06);
  border-radius: 999px;
}

.new-arrivals-rail::-webkit-scrollbar-thumb {
  background: rgba(180, 131, 58, 0.45);
  border-radius: 999px;
}

.new-arrivals-rail .journal-card {
  flex: 0 0 clamp(270px, 22vw, 315px);
  scroll-snap-align: start;
}

.homepage-new-arrivals .journal-card {
  border-color: rgba(103, 76, 44, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: none;
}

.homepage-new-arrivals .journal-card:hover {
  border-color: rgba(180, 131, 58, 0.28);
  background: rgba(255, 252, 247, 0.98);
  box-shadow: none;
}

.homepage-new-arrivals .journal-card-image {
  height: 218px;
  margin: 14px 14px 0;
  border-radius: 6px;
  background: rgba(246, 234, 220, 0.62);
  box-shadow: inset 0 0 0 1px rgba(103, 76, 44, 0.06);
}

.homepage-new-arrivals .journal-card-image img {
  transform: scale(1);
}

.homepage-new-arrivals .journal-card:hover .journal-card-image img {
  transform: scale(1.035);
}

.homepage-new-arrivals .journal-card-body {
  padding: 16px 16px 18px;
}

.homepage-new-arrivals .journal-card-badges {
  min-height: 0;
}

.homepage-new-arrivals .journal-card-badges span {
  border-radius: 0;
  padding: 0 0 7px;
  border-bottom: 1px solid rgba(180, 131, 58, 0.26);
  background: transparent;
  letter-spacing: 0.16em;
}

.homepage-new-arrivals .journal-card-category {
  margin-top: 13px;
  font-size: 10px;
  letter-spacing: 0.16em;
  line-height: 1.45;
}

.homepage-new-arrivals .journal-card h3 {
  margin-top: 8px;
  font-size: clamp(25px, 2vw, 32px);
  letter-spacing: 0;
}

.homepage-new-arrivals .journal-card.compact p:not(.journal-card-category) {
  min-height: 4.2em;
  -webkit-line-clamp: 3;
}

.homepage-new-arrivals .journal-card-actions {
  gap: 14px;
  padding-top: 16px;
}

.homepage-new-arrivals .journal-card-quick-actions {
  grid-template-columns: 1fr;
}

.homepage-new-arrivals .journal-card-quick-actions .btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  gap: 10px;
  min-height: 58px;
  border-radius: 6px;
  justify-content: center;
  box-shadow:
    0 14px 28px rgba(151, 95, 26, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  animation: cartCtaPulse 4.8s ease-in-out infinite;
}

.homepage-new-arrivals .journal-card-quick-actions .btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.24) 42%, transparent 62%);
  transform: translateX(-120%);
  animation: cartCtaSheen 4.8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.homepage-new-arrivals .journal-card-quick-actions .btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 34px rgba(151, 95, 26, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.cart-btn-icon,
.cart-btn-label {
  position: relative;
  z-index: 1;
}

.cart-btn-icon {
  display: inline-grid;
  width: 19px;
  height: 19px;
  place-items: center;
  transform: translateY(-1px);
}

.cart-btn-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.homepage-new-arrivals .journal-card-quick-actions .btn:hover .cart-btn-icon {
  animation: cartIconNudge 520ms ease;
}

.homepage-new-arrivals .journal-card-footer strong {
  font-size: 21px;
}

.homepage-new-arrivals .journal-card-footer .btn {
  border-radius: 6px;
  padding: 10px 16px;
}

@keyframes cartCtaPulse {
  0%,
  78%,
  100% {
    transform: translateY(0);
    box-shadow:
      0 14px 28px rgba(151, 95, 26, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.2);
  }

  84% {
    transform: translateY(-1px);
    box-shadow:
      0 18px 34px rgba(151, 95, 26, 0.24),
      inset 0 1px 0 rgba(255, 255, 255, 0.22);
  }
}

@keyframes cartCtaSheen {
  0%,
  70% {
    transform: translateX(-120%);
  }

  88%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes cartIconNudge {
  0%,
  100% {
    transform: translateY(-1px) translateX(0);
  }

  45% {
    transform: translateY(-1px) translateX(3px);
  }
}

.slider-arrow {
  position: absolute;
  top: 42%;
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(180, 131, 58, 0.36);
  border-radius: 50%;
  background: rgba(255, 252, 247, 0.96);
  color: var(--accent-2);
  cursor: pointer;
  font-family: Georgia, serif;
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 10px 24px rgba(92, 60, 26, 0.12);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.slider-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(180, 131, 58, 0.62);
  background: rgba(255, 255, 255, 0.98);
}

.slider-arrow.previous {
  left: -18px;
}

.slider-arrow.next {
  right: -18px;
}

.shop-catalog {
  padding: 28px 0 56px;
}

.shop-catalog-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.shop-filter-panel,
.shop-results-panel,
.shop-cta-panel,
.detail-card {
  border: 1px solid rgba(103, 76, 44, 0.12);
  border-radius: 24px;
  background: rgba(255, 252, 247, 0.78);
  box-shadow: 0 18px 46px rgba(92, 60, 26, 0.08);
}

.shop-filter-panel {
  position: sticky;
  top: 118px;
  padding: 20px;
}

.filter-heading {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.filter-heading button {
  padding: 7px 11px;
  font-size: 12px;
}

.category-chip-grid {
  margin-top: 16px;
  display: grid;
  gap: 9px;
}

.category-chip {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  padding: 11px 12px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
}

.category-chip[aria-pressed="true"] {
  background: linear-gradient(180deg, #c8943f, #ad741f);
  border-color: transparent;
  color: #fff;
}

.language-filter {
  display: grid;
  gap: 8px;
  margin-top: 20px;
}

.language-filter select {
  width: 100%;
  border: 1px solid rgba(103, 76, 44, 0.16);
  border-radius: 14px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  font: inherit;
}

.filter-note {
  margin-top: 18px;
  border-radius: 18px;
  padding: 16px;
  background: rgba(246, 234, 220, 0.78);
  color: rgba(36, 23, 17, 0.68);
  font-size: 13px;
  line-height: 1.55;
}

.filter-note strong {
  display: block;
  color: var(--ink);
}

.shop-results-panel {
  padding: clamp(20px, 3vw, 34px);
}

.shop-results-top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.shop-results-top h2 {
  font-size: clamp(32px, 3vw, 48px);
}

.shop-result-count {
  margin: 0;
  color: rgba(36, 23, 17, 0.64);
  font-weight: 700;
}

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

.journal-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid rgba(103, 76, 44, 0.13);
  border-radius: 18px;
  background: rgba(255, 252, 247, 0.86);
  box-shadow: 0 16px 34px rgba(92, 60, 26, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.journal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(180, 131, 58, 0.28);
  box-shadow: 0 22px 48px rgba(92, 60, 26, 0.1);
}

.journal-card-image {
  display: block;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #ead8c1, #fff8ef);
}

.journal-card.compact .journal-card-image {
  height: 210px;
}

.journal-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 220ms ease;
}

.journal-card:hover .journal-card-image img {
  transform: scale(1.06);
}

.journal-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
  text-align: left;
}

.journal-card.compact .journal-card-body {
  padding-bottom: 20px;
}

.journal-card-badges,
.detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 24px;
}

.journal-card-badges span,
.detail-badges span {
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(180, 131, 58, 0.12);
  color: rgba(155, 111, 44, 0.98);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journal-card-category {
  margin: 10px 0 0;
  color: rgba(155, 111, 44, 0.88);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journal-card h3 {
  margin: 8px 0 0;
  font-family: var(--font-display);
  font-size: 27px;
  line-height: 1;
}

.journal-card p:not(.journal-card-category) {
  margin: 9px 0 0;
  color: rgba(36, 23, 17, 0.66);
  font-size: 13px;
  line-height: 1.55;
}

.journal-card.compact p:not(.journal-card-category) {
  display: -webkit-box;
  min-height: 4.65em;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.language-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.language-pills span {
  border: 1px solid rgba(103, 76, 44, 0.12);
  border-radius: 999px;
  padding: 5px 9px;
  background: rgba(255, 255, 255, 0.68);
  color: rgba(36, 23, 17, 0.68);
  font-size: 11px;
  font-weight: 700;
}

.journal-card-actions {
  display: grid;
  gap: 16px;
  margin-top: auto;
  padding-top: 18px;
}

.journal-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.journal-card-footer strong {
  font-size: 18px;
}

.journal-card-quick-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.journal-card-quick-actions .btn {
  width: 100%;
}

.journal-card-footer .btn {
  padding: 9px 14px;
  font-size: 10px;
}

.no-results {
  border: 1px dashed rgba(180, 131, 58, 0.36);
  border-radius: 18px;
  padding: 28px;
  text-align: center;
  background: rgba(255, 252, 247, 0.66);
}

.no-results h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 30px;
}

.shop-cta-band {
  padding: 0 0 64px;
}

.shop-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(24px, 4vw, 42px);
}

.shop-cta-panel h2 {
  font-size: clamp(30px, 3.2vw, 48px);
}

/* Journal detail pages */
.journal-detail-page {
  background: linear-gradient(180deg, #fbf7ef, #f4e8d8 52%, #fbf7ef);
}

.journal-detail-hero {
  padding: 42px 0 36px;
}

.journal-detail-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.journal-detail-image-wrap {
  overflow: hidden;
  border: 1px solid rgba(103, 76, 44, 0.14);
  border-radius: 30px;
  background: rgba(255, 252, 247, 0.78);
  box-shadow: 0 30px 72px rgba(92, 60, 26, 0.13);
}

.journal-detail-image-wrap img {
  width: 100%;
  height: min(640px, 70vh);
  object-fit: cover;
  object-position: center;
}

.journal-detail-copy {
  border: 1px solid rgba(103, 76, 44, 0.12);
  border-radius: 30px;
  padding: clamp(26px, 4vw, 48px);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.78), transparent 34%),
    rgba(255, 252, 247, 0.82);
  box-shadow: 0 22px 60px rgba(92, 60, 26, 0.09);
}

.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(155, 111, 44, 0.95);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journal-detail-copy h1 {
  font-size: clamp(48px, 5.8vw, 86px);
}

.detail-price {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
}

.language-options {
  margin-top: 18px;
}

.language-options p {
  margin: 0 0 8px;
  color: rgba(155, 111, 44, 0.9);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.variant-selector {
  margin-top: 18px;
}

.variant-option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.variant-option {
  border: 1px solid rgba(180, 131, 58, 0.26);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.88);
  color: var(--ink);
  padding: 0.82rem 1rem;
  font: inherit;
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.variant-option:hover,
.variant-option[data-active="true"] {
  transform: translateY(-1px);
  border-color: rgba(180, 131, 58, 0.6);
  background: rgba(255, 249, 241, 0.96);
  box-shadow: 0 10px 20px rgba(92, 60, 26, 0.08);
}

.variant-feedback {
  min-height: 1.2em;
  margin: 10px 0 0;
  color: rgba(120, 85, 36, 0.78);
  font-size: 0.92rem;
}

.variant-feedback.is-inline {
  margin-top: 14px;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.detail-shipping-note {
  margin: 18px 0 0;
  color: rgba(36, 23, 17, 0.58);
  font-size: 13px;
}

.journal-detail-content,
.detail-related {
  padding: 18px 0 50px;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 22px;
}

.detail-card {
  padding: clamp(24px, 3vw, 36px);
}

.detail-benefits {
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 13px;
}

.detail-benefits li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  color: rgba(36, 23, 17, 0.74);
  line-height: 1.55;
}

.detail-benefits li::before {
  content: "✦";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  color: var(--accent);
  background: rgba(180, 131, 58, 0.12);
}

.detail-bestfor h2 {
  margin: 16px 0 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
}

.detail-bestfor p {
  color: rgba(36, 23, 17, 0.68);
  line-height: 1.65;
}

.product-mockup {
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 255, 255, 0.88), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(236, 205, 160, 0.22), transparent 34%),
    linear-gradient(180deg, #fbf7ef, #f2e7d8 48%, #fbf7ef);
}

.product-promise-strip {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(103, 76, 44, 0.08);
  border-bottom: 1px solid rgba(103, 76, 44, 0.08);
  background:
    linear-gradient(90deg, rgba(232, 210, 181, 0.86), rgba(255, 250, 243, 0.98), rgba(232, 210, 181, 0.86));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.product-promise-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 16px;
  color: rgba(36, 23, 17, 0.88);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-promise-inner span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.product-line-icon {
  width: 22px;
  height: 22px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-line-icon.mini {
  width: 14px;
  height: 14px;
  color: var(--accent);
}

.product-line-icon.large {
  width: 42px;
  height: 42px;
}

.product-mockup .journal-detail-hero {
  padding: 22px 0 28px;
}

.product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 22px;
  color: rgba(36, 23, 17, 0.54);
  font-size: 12px;
}

.product-breadcrumbs a {
  color: rgba(36, 23, 17, 0.64);
}

.product-breadcrumbs span:last-child {
  color: rgba(36, 23, 17, 0.86);
  font-weight: 700;
}

.product-mockup .journal-detail-grid {
  grid-template-columns: minmax(420px, 0.94fr) minmax(420px, 0.86fr);
  gap: clamp(26px, 3.6vw, 48px);
  align-items: start;
}

.product-gallery {
  min-width: 0;
}

.product-mockup .journal-detail-image-wrap {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(135deg, #ead9c1, #fff8ef);
  box-shadow: 0 18px 48px rgba(92, 60, 26, 0.1);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-mockup .journal-detail-image-wrap:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 62px rgba(92, 60, 26, 0.14);
}

.product-mockup .journal-detail-image-wrap img {
  display: block;
  height: min(520px, 58vh);
  transition: transform 360ms ease;
}

.product-mockup .journal-detail-image-wrap:hover img {
  transform: scale(1.018);
}

.gallery-zoom {
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(180, 131, 58, 0.35);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.92);
  color: var(--accent-2);
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(92, 60, 26, 0.16);
  display: grid;
  place-items: center;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease;
}

.gallery-zoom:hover,
.gallery-nav-arrow:hover,
.product-review-arrow:hover {
  transform: translateY(-2px);
  border-color: rgba(180, 131, 58, 0.72);
  background: rgba(255, 255, 255, 0.98);
}

.gallery-thumb-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 34px;
  gap: 14px;
  align-items: center;
  margin-top: 16px;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  min-width: 0;
}

.gallery-nav-arrow,
.product-review-arrow {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(180, 131, 58, 0.28);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.72);
  color: var(--accent-2);
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 22px rgba(92, 60, 26, 0.08);
  transition: transform 170ms ease, border-color 170ms ease, background 170ms ease;
}

.gallery-thumb {
  height: 98px;
  overflow: hidden;
  border: 1px solid rgba(103, 76, 44, 0.12);
  border-radius: 12px;
  padding: 0;
  background: rgba(255, 252, 247, 0.82);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(92, 60, 26, 0.07);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.gallery-thumb[data-active="true"],
.gallery-thumb:hover {
  transform: translateY(-3px);
  border-color: rgba(180, 131, 58, 0.7);
  box-shadow:
    0 16px 34px rgba(92, 60, 26, 0.12),
    inset 0 0 0 2px rgba(255, 252, 247, 0.88);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-mockup .journal-detail-copy {
  border: 0;
  border-radius: 0;
  padding: 8px 0 0;
  background: transparent;
  box-shadow: none;
}

.product-mockup .journal-detail-copy h1 {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.018em;
  margin: 14px 0 0;
}

.detail-tagline {
  margin: 6px 0 0;
  color: rgba(36, 23, 17, 0.72);
  font-size: 15px;
}

.product-mockup .detail-price {
  margin-top: 20px;
  font-size: clamp(32px, 3.2vw, 42px);
}

.product-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 16px;
  color: rgba(36, 23, 17, 0.7);
  font-size: 13px;
}

.product-stars,
.product-testimonial-grid .review-stars {
  color: var(--accent);
  letter-spacing: 0.18em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.7);
}

.product-rating strong {
  color: var(--ink);
}

.product-rating em {
  border-left: 1px solid rgba(103, 76, 44, 0.18);
  padding-left: 12px;
  font-style: normal;
}

.product-feature-icons,
.product-trust-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.product-feature-icons div,
.product-trust-row div {
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.product-feature-icons span,
.product-trust-row span {
  width: 50px;
  height: 50px;
  border: 1px solid rgba(180, 131, 58, 0.28);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--accent-2);
  background: rgba(255, 252, 247, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 22px rgba(92, 60, 26, 0.06);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.product-feature-icons div:hover span,
.product-trust-row div:hover span,
.product-info-grid .detail-card:hover .info-card-icon {
  transform: translateY(-2px);
  border-color: rgba(180, 131, 58, 0.55);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 14px 30px rgba(92, 60, 26, 0.12);
}

.product-feature-icons p,
.product-trust-row p {
  margin: 0;
  color: rgba(36, 23, 17, 0.72);
  font-size: 12px;
  line-height: 1.35;
}

.product-mockup .detail-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 24px;
}

.product-mockup .detail-actions .btn {
  min-height: 52px;
  position: relative;
  overflow: hidden;
}

.product-mockup .detail-actions .btn::after,
.product-bottom-cta .btn::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.26), transparent);
  transition: transform 520ms ease;
}

.product-mockup .detail-actions .btn:hover::after,
.product-bottom-cta .btn:hover::after {
  transform: translateX(120%);
}

.product-trust-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-top: 18px;
  border-top: 1px solid rgba(103, 76, 44, 0.1);
}

.product-trust-row span {
  width: 38px;
  height: 38px;
  font-size: 16px;
}

.product-mockup .journal-detail-content {
  padding: 8px 0 42px;
}

.product-info-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(103, 76, 44, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 252, 247, 0.82);
  box-shadow: 0 16px 42px rgba(92, 60, 26, 0.06);
}

.product-info-grid .detail-card {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  border-right: 1px solid rgba(103, 76, 44, 0.1);
  padding: 26px 24px;
  transition: background 180ms ease, transform 180ms ease;
}

.product-info-grid .detail-card:hover {
  background: rgba(255, 255, 255, 0.35);
}

.product-info-grid .detail-card:last-child {
  border-right: 0;
}

.info-card-icon {
  color: var(--accent);
  width: 54px;
  height: 54px;
  margin: 0 auto 12px;
  border: 1px solid rgba(180, 131, 58, 0.2);
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 252, 247, 0.72);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.product-info-grid h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.08;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.product-info-grid .detail-benefits {
  gap: 10px;
}

.product-info-grid .detail-benefits li {
  grid-template-columns: 18px 1fr;
  gap: 8px;
  font-size: 12px;
}

.product-info-grid .detail-benefits li::before {
  content: "✓";
  width: 18px;
  height: 18px;
  background: transparent;
}

.detail-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
  color: rgba(36, 23, 17, 0.72);
  font-size: 12px;
}

.detail-steps li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  align-items: center;
}

.detail-steps span {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(180, 131, 58, 0.32);
  border-radius: 999px;
  color: var(--accent-2);
}

.product-love-section,
.manifestation-kit,
.product-faq-cta {
  padding: 8px 0 38px;
}

.product-review-carousel {
  position: relative;
}

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

.product-testimonial-grid .review-card {
  min-height: 174px;
  padding: 24px 26px;
  border-radius: 16px;
  background: rgba(255, 252, 247, 0.78);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-testimonial-grid .review-card:hover,
.kit-card:hover,
.product-faq-card:hover,
.product-bottom-cta:hover {
  transform: translateY(-3px);
  border-color: rgba(180, 131, 58, 0.24);
  box-shadow: 0 20px 48px rgba(92, 60, 26, 0.1);
}

.product-testimonial-grid .review-person {
  justify-self: center;
  margin-top: 12px;
}

.product-avatar {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, #f7d9bd 0 28%, #b77a43 29% 100%);
  border: 1px solid rgba(180, 131, 58, 0.28);
  box-shadow: 0 10px 20px rgba(92, 60, 26, 0.12);
  color: rgba(255, 250, 243, 0.95);
}

.product-avatar.masculine {
  background:
    radial-gradient(circle at 50% 30%, #c9dded 0 28%, #4f6f7f 29% 100%);
}

.product-avatar svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
}

.product-review-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
}

.product-review-arrow.previous {
  left: -18px;
}

.product-review-arrow.next {
  right: -18px;
}

.manifestation-kit .container {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.72), rgba(244, 230, 211, 0.58));
  padding: 20px 24px 24px;
  border: 1px solid rgba(103, 76, 44, 0.08);
}

.kit-card {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(103, 76, 44, 0.12);
  border-radius: 16px;
  padding: 14px;
  background: rgba(255, 252, 247, 0.82);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.kit-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
}

.kit-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.04;
}

.kit-card p {
  margin: 8px 0;
  color: rgba(36, 23, 17, 0.68);
  font-size: 13px;
  line-height: 1.45;
}

.kit-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 20px;
}

.kit-card .btn {
  min-height: 0;
  padding: 9px 20px;
  font-size: 11px;
}

.product-faq-cta-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.25fr);
  gap: 22px;
}

.product-faq-card,
.product-bottom-cta {
  border: 1px solid rgba(103, 76, 44, 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 252, 247, 0.84);
  box-shadow: 0 18px 46px rgba(92, 60, 26, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-faq-card {
  padding: 24px;
}

.product-faq-card h2,
.product-bottom-cta h2 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 34px);
}

.product-faq-card details {
  border-top: 1px solid rgba(103, 76, 44, 0.1);
}

.product-faq-card summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 0;
  color: rgba(36, 23, 17, 0.86);
  font-weight: 600;
}

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

.product-faq-card summary::after {
  content: "+";
  float: right;
  color: var(--accent);
}

.product-faq-card details[open] summary::after {
  content: "–";
}

.product-faq-card p {
  margin: 0 0 14px;
  color: rgba(36, 23, 17, 0.66);
  font-size: 13px;
  line-height: 1.5;
}

.product-bottom-cta {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  align-items: center;
}

.product-bottom-image {
  min-height: 260px;
  height: 100%;
  background: url("assets/473A11D9-7C3B-497D-A91E-8956810C502A.png") center/cover no-repeat;
}

.product-bottom-cta > div:last-child {
  padding: clamp(24px, 3vw, 42px);
}

.product-bottom-cta p {
  color: rgba(36, 23, 17, 0.68);
  line-height: 1.55;
}

.product-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
}

.product-gallery-lightbox[data-open="true"] {
  display: grid;
}

.product-lightbox-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(36, 23, 17, 0.68);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.product-lightbox-dialog {
  position: relative;
  z-index: 1;
  max-width: min(920px, 92vw);
  max-height: 86vh;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 252, 247, 0.96);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.32);
}

.product-lightbox-dialog img {
  display: block;
  max-width: 100%;
  max-height: 86vh;
  object-fit: contain;
}

.product-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(180, 131, 58, 0.28);
  border-radius: 999px;
  background: rgba(255, 252, 247, 0.92);
  color: var(--ink);
  cursor: pointer;
  font-size: 26px;
}

@media (max-width: 1120px) {
  .product-mockup .journal-detail-grid,
  .product-info-grid,
  .product-faq-cta-grid {
    grid-template-columns: 1fr;
  }

  .product-info-grid .detail-card {
    border-right: 0;
    border-bottom: 1px solid rgba(103, 76, 44, 0.1);
  }

  .product-info-grid .detail-card:last-child {
    border-bottom: 0;
  }

  .product-testimonial-grid,
  .kit-grid {
    grid-template-columns: 1fr;
  }

  .product-testimonial-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-testimonial-grid::-webkit-scrollbar {
    display: none;
  }

  .product-testimonial-grid .review-card {
    flex: 0 0 min(82vw, 380px);
    scroll-snap-align: center;
  }
}

@media (max-width: 768px) {
  .product-promise-inner {
    justify-content: flex-start;
    overflow-x: auto;
    padding-block: 9px;
  }

  .product-mockup .journal-detail-image-wrap img {
    height: 430px;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(4, minmax(88px, 1fr));
    overflow-x: auto;
  }

  .gallery-thumb-row {
    grid-template-columns: 30px minmax(0, 1fr) 30px;
    gap: 8px;
  }

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

  .product-trust-row,
  .product-bottom-cta {
    grid-template-columns: 1fr;
  }

  .kit-card {
    grid-template-columns: 105px 1fr;
  }

  .product-review-arrow.previous {
    left: -6px;
  }

  .product-review-arrow.next {
    right: -6px;
  }
}

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

.cart-selected-card {
  display: flex;
  gap: 18px;
  align-items: center;
  max-width: 720px;
  margin-top: 24px;
  border: 1px solid rgba(103, 76, 44, 0.12);
  border-radius: 24px;
  padding: 18px;
  background: rgba(255, 252, 247, 0.82);
  box-shadow: 0 18px 46px rgba(92, 60, 26, 0.08);
}

.cart-selected-card img {
  width: 128px;
  height: 128px;
  border-radius: 18px;
  object-fit: cover;
}

.cart-selected-card h2 {
  margin: 6px 0;
  font-family: var(--font-display);
  font-size: 34px;
}

.cart-selected-card p {
  margin: 0 0 8px;
  color: rgba(36, 23, 17, 0.68);
}

.cart-selected-card .cart-custom-wish {
  margin: 12px 0;
  padding: 12px 14px;
  border: 1px solid rgba(180, 131, 58, 0.16);
  border-radius: 14px;
  background: rgba(247, 235, 218, 0.52);
  color: rgba(36, 23, 17, 0.74);
}

/* Display typography refresh */
:is(
  .hero-title,
  .section-title,
  .path-title,
  .step-title,
  .cta-title,
  .faq-title,
  .page-title,
  .page-section-title,
  .feature-card h3,
  .testimonial-card,
  .review-page-stats strong,
  .contact-direct-card h3,
  .contact-form h2,
  .legal-content h2,
  .about-highlight-card h2,
  .founder-story-card h2,
  .how-journey-header h1,
  .how-step-copy h2,
  .how-ready-cta h2,
  .shop-hero-copy h1,
  .journal-detail-copy h1,
  .shop-results-top h2,
  .shop-cta-panel h2,
  .journal-card h3,
  .detail-price,
  .detail-bestfor h2,
  .cart-selected-card h2,
  .stub-title,
  .stub-section-title
) {
  font-family: var(--font-display);
}

@media (max-width: 1120px) {
  .journal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .shop-hero-panel,
  .shop-catalog-layout,
  .journal-detail-grid,
  .detail-content-grid {
    grid-template-columns: 1fr;
  }

  .shop-filter-panel {
    position: static;
  }
}

@media (max-width: 768px) {
  .shop-hero {
    padding-top: 20px;
  }

  .shop-hero-panel {
    padding: 22px;
    border-radius: 22px;
  }

  .shop-hero-copy h1 {
    font-size: clamp(40px, 13vw, 58px);
  }

  .shop-values,
  .journal-grid {
    grid-template-columns: 1fr;
  }

  .new-arrivals-slider::before,
  .new-arrivals-slider::after {
    width: 28px;
  }

  .homepage-new-arrivals .panel-header {
    grid-template-columns: 1fr;
    gap: 10px;
    text-align: left;
  }

  .homepage-new-arrivals .section-title {
    max-width: none;
  }

  .homepage-new-arrivals .section-subtitle {
    grid-column: 1;
    grid-row: auto;
  }

  .new-arrivals-rail .journal-card {
    flex-basis: min(82vw, 315px);
  }

  .homepage-new-arrivals .journal-card-image {
    height: clamp(210px, 58vw, 260px);
  }

  .homepage-new-arrivals .journal-card-quick-actions {
    grid-template-columns: 1fr;
  }

  .slider-arrow {
    width: 38px;
    height: 38px;
    font-size: 28px;
  }

  .slider-arrow.previous {
    left: -8px;
  }

  .slider-arrow.next {
    right: -8px;
  }

  .shop-values div {
    border-right: 0;
    border-bottom: 1px solid rgba(103, 76, 44, 0.12);
  }

  .shop-values div:last-child {
    border-bottom: 0;
  }

  .shop-results-top,
  .shop-cta-panel,
  .journal-card-footer,
  .cart-selected-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .homepage-new-arrivals .journal-card-footer {
    align-items: center;
    flex-direction: row;
  }

  .journal-detail-image-wrap img {
    height: 420px;
  }

  .cart-selected-card img {
    width: 100%;
    height: 220px;
  }
}

/* Stub pages */
.stub-hero {
  padding: 56px 0 44px;
  background: linear-gradient(
      180deg,
      rgba(251, 247, 240, 0.92),
      rgba(247, 241, 231, 0.92)
    ),
    url("assets/IMG_3434.PNG") center/cover no-repeat;
  border-bottom: 1px solid rgba(47, 36, 26, 0.08);
}

.stub-title {
  font-family: var(--font-display);
  margin: 0;
  font-size: clamp(34px, 3.4vw, 52px);
  letter-spacing: 0.04em;
}

.stub-subtitle {
  margin: 10px 0 0;
  color: rgba(47, 36, 26, 0.7);
  max-width: 64ch;
}

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

.stub-section {
  padding: 44px 0;
}

.stub-section-title {
  font-family: var(--font-display);
  margin: 0;
  font-size: 28px;
}

.stub-section-text {
  margin: 10px 0 0;
  color: rgba(47, 36, 26, 0.7);
}

/* Announcement banner */
.announcement-banner {
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(178, 129, 55, 0.18);
}

.announcement-banner.variant-aurora {
  background:
    linear-gradient(90deg, rgba(193, 144, 66, 0.96), rgba(164, 103, 32, 0.94)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent);
  color: #fffaf3;
}

.announcement-banner-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  min-height: 46px;
  text-align: center;
}

.announcement-banner-inner p {
  margin: 0;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
}

.announcement-banner-inner a {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 250, 243, 0.34);
  background: rgba(255, 250, 243, 0.12);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Storefront upgrades */
.cart-page,
.checkout-page,
.account-page,
.consultation-page {
  background:
    radial-gradient(circle at top left, rgba(194, 153, 90, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 252, 246, 0.98), rgba(249, 243, 232, 0.98));
}

.cart-hero,
.account-hero,
.consultation-hero,
.checkout-shell {
  padding: 72px 0 42px;
}

.cart-hero-grid,
.account-hero-grid,
.consultation-hero-grid,
.checkout-grid,
.cart-layout,
.consultation-layout {
  display: grid;
  gap: 26px;
}

.cart-hero-grid,
.account-hero-grid,
.consultation-hero-grid {
  grid-template-columns: 1.35fr 0.85fr;
  align-items: start;
}

.cart-hero-note,
.consultation-hero-card,
.account-tab-row,
.checkout-summary-card,
.cart-summary-card,
.account-card,
.account-form-card,
.consultation-form-card,
.policy-card,
.policy-copy-block,
.order-outcome-card {
  border: 1px solid rgba(141, 101, 40, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 46px rgba(89, 57, 23, 0.08);
  backdrop-filter: blur(10px);
}

.cart-hero-note,
.consultation-hero-card,
.checkout-summary-card,
.cart-summary-card,
.account-card,
.account-form-card,
.consultation-form-card,
.policy-card,
.policy-copy-block,
.order-outcome-card {
  padding: 22px;
}

.cart-hero-note strong,
.consultation-hero-card h2,
.cart-toolbar h2,
.checkout-empty h2,
.account-order-card h3 {
  font-family: var(--font-display);
}

.cart-layout {
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, 0.8fr);
  align-items: start;
}

.cart-toolbar,
.cart-coupon-row,
.checkout-actions,
.checkout-stepper,
.account-order-card,
.account-tab-row {
  display: flex;
  gap: 16px;
}

.cart-toolbar {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
}

.cart-items-stack,
.payment-choice-stack,
.checkout-form-grid,
.checkout-summary-list,
.account-order-list,
.consultation-side-stack {
  display: grid;
  gap: 18px;
}

.cart-line-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 20px;
  padding: 18px;
  border: 1px solid rgba(136, 100, 44, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
}

.cart-line-item img {
  width: 120px;
  height: 140px;
  object-fit: cover;
  border-radius: 18px;
}

.cart-line-copy h2,
.lookup-success h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.cart-line-copy p {
  margin: 0;
}

.cart-inline-note {
  margin-top: 10px !important;
  color: var(--accent-2);
}

.cart-line-controls {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}

.text-link {
  padding: 0;
  border: 0;
  background: none;
  color: var(--accent-2);
  font: inherit;
  cursor: pointer;
}

.cart-line-controls label,
.cart-field,
.checkout-form-card label,
.account-form-card label,
.consultation-form-card label,
.lookup-form label {
  display: grid;
  gap: 8px;
}

.cart-line-controls select,
.cart-summary-card input,
.cart-summary-card select,
.checkout-form-card input,
.checkout-form-card textarea,
.checkout-form-card select,
.account-form-card input,
.consultation-form-card input,
.consultation-form-card select,
.consultation-form-card textarea,
.lookup-form input {
  border: 1px solid rgba(141, 101, 40, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  padding: 0.95rem 1rem;
  color: var(--ink);
  font: inherit;
}

.cart-line-price,
.cart-total-grid strong,
.account-order-meta strong {
  font-size: 1.3rem;
}

.cart-summary-panel,
.checkout-grid aside {
  display: grid;
  gap: 18px;
}

.cart-coupon-row {
  align-items: center;
}

.cart-coupon-row input {
  flex: 1;
}

.cart-feedback,
.cart-estimate,
.checkout-shipping-note,
.account-inline-success,
.lookup-empty {
  margin: 0;
  color: var(--muted);
}

.mini-cart-shell {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
}

.mini-cart-backdrop {
  position: fixed;
  inset: 0;
  border: 0;
  background: rgba(36, 23, 17, 0.18);
  pointer-events: auto;
}

.mini-cart-popover {
  position: absolute;
  width: min(360px, calc(100vw - 32px));
  border: 1px solid rgba(141, 101, 40, 0.16);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 26px 62px rgba(89, 57, 23, 0.18);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.mini-cart-popover[data-open="true"] {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mini-cart-header,
.mini-cart-total,
.mini-cart-footer-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mini-cart-header,
.mini-cart-body,
.mini-cart-footer {
  padding: 18px;
}

.mini-cart-header {
  border-bottom: 1px solid rgba(141, 101, 40, 0.12);
}

.mini-cart-close {
  border: 0;
  background: none;
  color: var(--ink);
  font-size: 1.5rem;
  cursor: pointer;
}

.mini-cart-body {
  display: grid;
  gap: 14px;
  max-height: 420px;
  overflow-y: auto;
}

.mini-cart-item {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 12px;
  align-items: center;
}

.mini-cart-item img {
  width: 68px;
  height: 82px;
  object-fit: cover;
  border-radius: 14px;
}

.mini-cart-item strong,
.mini-cart-item p,
.mini-cart-item span {
  display: block;
}

.mini-cart-item p,
.mini-cart-item span {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.mini-cart-footer {
  border-top: 1px solid rgba(141, 101, 40, 0.12);
  display: grid;
  gap: 14px;
}

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

.mini-cart-footer-actions .btn {
  flex: 1 1 0;
  text-align: center;
}

.mini-cart-empty {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.mobile-cart-strip {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 88;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(36, 23, 17, 0.94);
  color: #fffaf3;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.2);
  pointer-events: auto;
}

.mobile-cart-strip-copy,
.mobile-cart-strip strong {
  display: block;
}

.payment-choice {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid rgba(144, 105, 46, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.payment-choice.is-active {
  border-color: rgba(180, 131, 58, 0.34);
  box-shadow: inset 0 0 0 1px rgba(180, 131, 58, 0.18);
}

.payment-choice input {
  margin-top: 4px;
}

.payment-choice strong,
.payment-choice small,
.payment-choice em {
  display: block;
}

.payment-choice small,
.payment-choice em {
  color: var(--muted);
  font-style: normal;
}

.cart-total-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 12px;
}

.cart-split-grid,
.checkout-total-grid.is-emphasis {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(180, 131, 58, 0.14);
}

.cart-split-grid strong,
.checkout-total-grid.is-emphasis strong {
  color: var(--accent-2);
}

.cart-checkout-btn,
.checkout-actions {
  margin-top: 16px;
}

.cart-empty-state,
.checkout-empty,
.order-outcome-card {
  text-align: center;
}

.checkout-grid {
  grid-template-columns: 1fr minmax(320px, 380px);
  align-items: start;
}

.checkout-stepper {
  flex-wrap: wrap;
  margin-top: 22px;
}

.checkout-stepper span {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(180, 131, 58, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.checkout-stepper .is-active {
  color: var(--accent-2);
  border-color: rgba(180, 131, 58, 0.28);
}

.checkout-form-grid {
  max-width: 1080px;
}

.checkout-form-card {
  padding: 24px;
  border-radius: 26px;
  border: 1px solid rgba(141, 101, 40, 0.14);
  background: rgba(255, 255, 255, 0.76);
}

.checkout-field-grid.two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkout-field-grid.three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.checkout-inline-check {
  display: flex !important;
  align-items: center;
  gap: 12px;
}

.checkout-inline-check input {
  width: auto;
}

.feature-check {
  align-self: end;
  padding-bottom: 8px;
}

.checkout-summary-list > div,
.account-order-card {
  display: flex;
  justify-content: space-between;
}

.checkout-redesign {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 0%, rgba(185, 134, 55, 0.12), transparent 28%),
    linear-gradient(180deg, #fffaf2 0%, #f7efe3 46%, #fbf8f1 100%);
}

.checkout-hero-compact {
  padding: clamp(42px, 6vw, 72px) 0 28px;
}

.checkout-hero-row,
.checkout-conversion-grid,
.checkout-trust-row,
.checkout-final-bar,
.checkout-card-head {
  display: grid;
  gap: 20px;
}

.checkout-hero-row {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  align-items: end;
}

.checkout-hero-copy {
  max-width: 760px;
}

.checkout-hero-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.checkout-hero-copy p:not(.page-kicker) {
  max-width: 620px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.checkout-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 12px;
  border: 1px solid rgba(141, 101, 40, 0.14);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  list-style: none;
  box-shadow: 0 18px 46px rgba(89, 57, 23, 0.07);
}

.checkout-progress li {
  display: grid;
  justify-items: center;
  gap: 8px;
  min-width: 0;
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.checkout-progress span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(141, 101, 40, 0.18);
  border-radius: 50%;
  background: #fffdf8;
  color: var(--accent-2);
}

.checkout-progress .is-active {
  color: var(--ink);
}

.checkout-progress .is-active span {
  border-color: rgba(176, 123, 43, 0.42);
  background: linear-gradient(135deg, #d7a545, #a56d1d);
  color: #fffaf3;
}

.checkout-trust-band {
  border-block: 1px solid rgba(141, 101, 40, 0.1);
  background: rgba(255, 255, 255, 0.42);
}

.checkout-trust-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 14px 0;
}

.checkout-trust-row span {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 0.94rem;
}

.checkout-trust-row span::before {
  position: absolute;
  top: 0.15em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #4f7d5c;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.72);
  content: "";
}

.checkout-workspace {
  padding: 34px 0 clamp(58px, 8vw, 96px);
}

.checkout-conversion-grid {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  align-items: start;
}

.checkout-flow {
  max-width: none;
}

.checkout-form-card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 42px rgba(89, 57, 23, 0.06);
}

.checkout-card-emphasis {
  border-color: rgba(79, 125, 92, 0.22);
  background:
    linear-gradient(135deg, rgba(79, 125, 92, 0.08), rgba(255, 255, 255, 0.9) 42%),
    rgba(255, 255, 255, 0.84);
}

.checkout-card-head {
  gap: 6px;
  margin-bottom: 18px;
}

.checkout-card-head h2,
.checkout-help-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1;
}

.checkout-summary-column {
  position: relative;
}

.checkout-summary-sticky {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 16px;
}

.checkout-summary-sticky .checkout-summary-card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
}

.checkout-help-card {
  padding: 20px;
  border: 1px solid rgba(141, 101, 40, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 42px rgba(89, 57, 23, 0.06);
}

.checkout-help-card p:not(.page-kicker) {
  margin: 10px 0 14px;
  color: var(--muted);
}

.checkout-help-card a {
  color: var(--accent-2);
  font-weight: 800;
  text-transform: uppercase;
}

.checkout-final-bar {
  grid-template-columns: minmax(180px, auto) minmax(260px, 1fr);
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(141, 101, 40, 0.14);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 46px rgba(89, 57, 23, 0.08);
}

.checkout-submit-btn {
  min-height: 64px;
  justify-content: center;
}

.checkout-submit-btn span,
.checkout-submit-btn small {
  display: block;
}

.checkout-submit-btn small {
  margin-top: 3px;
  color: rgba(255, 250, 243, 0.78);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
}

.account-tab-row {
  flex-wrap: wrap;
}

.account-tab-chip {
  border: 1px solid rgba(180, 131, 58, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.85rem 1.1rem;
  color: var(--ink);
  font: inherit;
  cursor: pointer;
}

.account-tab-chip[aria-pressed="true"] {
  background: linear-gradient(180deg, #c89b4f, #a77224);
  color: #fffaf3;
}

.account-order-card {
  padding: 18px;
  border: 1px solid rgba(141, 101, 40, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.64);
  align-items: center;
}

.account-inline-success {
  min-height: 1.2em;
}

.lookup-result {
  margin-top: 18px;
}

.lookup-success {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(141, 101, 40, 0.12);
}

.consultation-layout {
  grid-template-columns: minmax(0, 1.2fr) 0.8fr;
}

.consultation-hero-card ul {
  padding-left: 18px;
  margin: 14px 0 0;
}

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

.policy-card h2,
.order-outcome-card h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
}

.policy-copy-stack {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 20px;
}

.order-outcome-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.success-shell {
  background:
    radial-gradient(circle at top left, rgba(196, 161, 93, 0.2), transparent 28%),
    linear-gradient(180deg, #f7f0e3, #faf6ee);
}

.failure-shell {
  background:
    radial-gradient(circle at top left, rgba(176, 115, 83, 0.18), transparent 24%),
    linear-gradient(180deg, #f9eee8, #faf6ee);
}

@media (max-width: 1024px) {
  .cart-layout,
  .consultation-layout,
  .shipping-policy-grid,
  .policy-copy-stack,
  .cart-hero-grid,
  .account-hero-grid,
  .consultation-hero-grid,
  .checkout-grid,
  .checkout-hero-row,
  .checkout-conversion-grid {
    grid-template-columns: 1fr;
  }

  .checkout-summary-sticky {
    position: static;
  }
}

@media (max-width: 760px) {
  .announcement-banner-inner,
  .cart-toolbar,
  .cart-line-item,
  .cart-line-controls,
  .checkout-actions,
  .checkout-final-bar,
  .account-order-card {
    display: grid;
  }

  .announcement-banner-inner {
    padding: 10px 0;
  }

  .cart-line-item {
    grid-template-columns: 1fr;
  }

  .journal-card-quick-actions {
    grid-template-columns: 1fr;
  }

  .checkout-field-grid.two,
  .checkout-field-grid.three,
  .checkout-trust-row,
  .checkout-progress {
    grid-template-columns: 1fr;
  }

  .checkout-hero-compact {
    padding-top: 32px;
  }

  .checkout-progress {
    justify-items: stretch;
  }

  .checkout-progress li {
    grid-template-columns: 34px 1fr;
    align-items: center;
    justify-items: start;
    text-align: left;
  }

  .checkout-final-bar {
    grid-template-columns: 1fr;
  }

  .mobile-cart-strip {
    display: flex;
  }
}

/* Node/EJS backend pages */
.hero-grid,
.catalog-filter {
  display: grid;
  gap: 24px;
  align-items: center;
}

.hero {
  padding: clamp(56px, 8vw, 108px) 0;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
}

.hero-copy h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 7rem);
  line-height: 0.92;
}

.hero-copy p {
  max-width: 660px;
  color: var(--muted);
}

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

.hero-product {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-product img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.catalog-filter {
  grid-template-columns: minmax(160px, 220px) minmax(180px, 1fr) auto;
  margin-top: 22px;
}

.catalog-filter input,
.catalog-filter select,
.detail-actions input,
.detail-actions select,
.detail-actions textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: #fffaf3;
  color: var(--ink);
  font: inherit;
  padding: 0.9rem 1rem;
}

.detail-actions label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.is-hidden {
  display: none;
}

.static-page {
  padding: 80px 0;
}

.site-footer h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
}

.site-footer a {
  display: block;
  margin-top: 7px;
}

@media (max-width: 860px) {
  .hero-grid,
  .catalog-filter {
    grid-template-columns: 1fr;
  }
}
