:root {
  --font-heading: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;
  --espresso: #2b1808;
  --espresso-soft: #47362a;
  --warm-brown: #47362a;
  --muted-brown: #6f5847;
  --cream: #fef7ee;
  --cream-soft: #f8f2e8;
  --warm-sand: #f7efe3;
  --card: #fff8ec;
  --tan: #d9c8a8;
  --tan-soft: rgba(217, 200, 168, 0.42);
  --tan-subtle: rgba(217, 200, 168, 0.2);
  --sage: #c0c39b;
  --sage-hover: #aeb58a;
  --sage-deep: #7c8458;
  --sage-soft: rgba(192, 195, 155, 0.36);
  --coral: #f29a93;
  --coral-soft: #fddcd5;
  --coral-line: rgba(242, 154, 147, 0.72);
  --coral-subtle: rgba(242, 154, 147, 0.22);
  --warm-shadow: rgba(43, 24, 8, 0.1);
  --warm-shadow-strong: rgba(43, 24, 8, 0.16);
  --black: var(--espresso);
  --black-soft: var(--espresso-soft);
  --panel: var(--card);
  --panel-soft: rgba(255, 248, 236, 0.92);
  --ivory: var(--card);
  --ivory-muted: rgba(71, 54, 42, 0.82);
  --ivory-soft: rgba(111, 88, 71, 0.68);
  --sand: var(--sage);
  --sand-strong: var(--sage-hover);
  --sand-deep: var(--sage-deep);
  --bone: var(--cream);
  --bone-deep: var(--warm-sand);
  --taupe: var(--warm-brown);
  --line: var(--coral-line);
  --line-soft: var(--tan-soft);
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  margin: 0;
  overflow-x: hidden;
  background: var(--bone);
  color: var(--black);
  font-family: var(--font-body);
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 248, 236, 0.78), transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(192, 195, 155, 0.2), transparent 30%),
    radial-gradient(circle at 74% 88%, rgba(253, 220, 213, 0.22), transparent 31%),
    linear-gradient(110deg, rgba(255, 248, 236, 0.56), transparent 36%),
    var(--bone);
  content: "";
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.95;
}

html:not(.admin-unlocked) .page-frame {
  display: none;
}

html.admin-unlocked .access-gate {
  display: none;
}

.access-gate {
  display: grid;
  min-height: 100svh;
  place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(253, 220, 213, 0.22), transparent 42%),
    linear-gradient(105deg, rgba(254, 247, 238, 0.86), rgba(247, 239, 227, 0.9)),
    url("public/images/cow-horse-action-sepia-hero.png") center / cover;
  color: var(--black);
  padding: clamp(18px, 3.5vw, 34px);
}

.access-panel {
  position: relative;
  width: min(100%, 660px);
  border: 1px solid rgba(217, 200, 168, 0.58);
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.96), rgba(248, 242, 232, 0.9)),
    var(--ivory);
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 236, 0.86),
    0 30px 90px rgba(43, 24, 8, 0.2);
  padding: clamp(28px, 4.6vw, 52px) clamp(24px, 5.2vw, 58px) clamp(26px, 4.2vw, 42px);
  text-align: center;
  backdrop-filter: blur(16px);
}

.access-panel::before {
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(217, 200, 168, 0.22);
  content: "";
  pointer-events: none;
}

.access-logo {
  width: min(100%, 540px);
  height: auto;
  margin: 0 auto clamp(24px, 3.2vw, 34px);
  object-fit: contain;
  filter:
    drop-shadow(0 1px 0 rgba(255, 248, 236, 0.64))
    drop-shadow(0 8px 16px rgba(43, 24, 8, 0.1));
}

.access-panel h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 3vw, 30px);
  margin: 0 0 16px;
  color: var(--sand-deep);
  font-family: var(--font-body);
  font-size: clamp(14px, 2.2vw, 18px);
  font-weight: 800;
  letter-spacing: 0.22em;
  line-height: 1.2;
  text-transform: uppercase;
}

.access-panel h1::before,
.access-panel h1::after {
  width: clamp(46px, 11vw, 86px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--coral-line), transparent);
  content: "";
}

.access-panel p {
  max-width: 420px;
  margin: 0 auto 28px;
  color: var(--taupe);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.58;
}

.access-form {
  display: grid;
  position: relative;
  gap: 14px;
  text-align: left;
}

.access-form label {
  color: var(--black-soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.access-form input {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--sand-strong);
  background: rgba(255, 248, 236, 0.62);
  color: var(--black);
  font: inherit;
  outline: none;
  padding: 15px 58px 15px 16px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.access-form input:focus {
  border-color: var(--sand-deep);
  background: rgba(255, 248, 236, 0.78);
  box-shadow: 0 0 0 3px rgba(124, 132, 88, 0.16);
}

.access-form button {
  border: 1px solid var(--sand-strong);
  background: var(--sand-strong);
  color: var(--espresso);
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  min-height: 58px;
  padding: 15px 16px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.access-message {
  margin: 0;
  color: #8b3f35;
  font-size: 14px;
  text-align: center;
}

.access-message:empty {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .access-form button:hover {
    border-color: var(--sand-deep);
    background: var(--sage-hover);
    box-shadow: 0 10px 22px rgba(43, 24, 8, 0.14);
    transform: translateY(-1px);
  }
}

.page-frame {
  position: relative;
  width: min(calc(100% - 34px), var(--max));
  min-height: calc(100svh - 34px);
  margin: 17px auto;
  border: 1px solid rgba(217, 200, 168, 0.24);
  background:
    linear-gradient(rgba(255, 248, 236, 0.42), rgba(255, 248, 236, 0.2)) 8px 8px / calc(100% - 16px) calc(100% - 16px) no-repeat,
    linear-gradient(145deg, var(--cream), var(--cream-soft) 56%, var(--warm-sand));
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 236, 0.72),
    0 28px 70px rgba(43, 24, 8, 0.12);
  padding: clamp(28px, 3.5vw, 42px);
}

.site-header {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) max-content;
  align-items: center;
  gap: clamp(30px, 3.4vw, 46px);
  margin-bottom: clamp(54px, 7vw, 86px);
}

.brand,
.site-nav,
.account-actions,
.mobile-menu,
.hero-actions,
.member-strip,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  width: clamp(260px, 23vw, 334px);
  min-width: 0;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  object-position: left center;
  opacity: 0.96;
  filter:
    drop-shadow(0 1px 0 rgba(255, 248, 236, 0.5))
    drop-shadow(0 8px 18px rgba(43, 24, 8, 0.16));
}

.site-nav {
  justify-self: end;
  justify-content: flex-start;
  gap: clamp(40px, 3.8vw, 56px);
  min-width: 0;
}

.site-nav a,
.signup-link {
  color: var(--black);
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.account-actions {
  position: relative;
  padding-left: clamp(28px, 2.4vw, 36px);
}

.account-actions::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 24px;
  background: var(--line);
  content: "";
  transform: translateY(-50%);
}

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

.menu-toggle {
  appearance: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--tan-soft);
  border-radius: 999px;
  background: rgba(255, 248, 236, 0.64);
  color: var(--black);
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease;
}

.menu-toggle:hover,
.menu-toggle:focus {
  border-color: var(--sand-strong);
  background: rgba(255, 248, 236, 0.92);
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-header.menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.menu-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.signup-link {
  min-height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(124, 132, 88, 0.24);
  background: linear-gradient(135deg, var(--sage), var(--sage-hover));
  color: var(--black);
  box-shadow: 0 12px 24px rgba(43, 24, 8, 0.08);
  padding: 11px 29px;
}

.signup-link:hover,
.signup-link:focus {
  background: var(--sage-hover);
}

.hero {
  display: grid;
  grid-template-columns: minmax(510px, 0.95fr) minmax(500px, 1.05fr);
  align-items: center;
  gap: clamp(42px, 5.5vw, 78px);
}

.hero-copy {
  min-width: 0;
  padding-left: clamp(16px, 3.7vw, 56px);
}

h1 {
  margin-bottom: 26px;
  color: var(--black);
  font-size: clamp(78px, 8.5vw, 144px);
  line-height: 0.88;
}

#hero-title {
  max-width: min(100%, 560px);
  font-size: clamp(84px, 7.9vw, 120px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.92;
}

h1 span {
  display: block;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 25px;
  color: var(--sand-strong);
}

.hero-divider span {
  width: 74px;
  height: 1px;
  background: var(--line);
}

.hero-divider b {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.hero-kicker {
  max-width: 620px;
  margin-bottom: 26px;
  color: var(--taupe);
  line-height: 1.18;
}

.hero-kicker-single {
  margin-bottom: 34px;
}

.hero-kicker span {
  display: block;
}

.hero-kicker-primary {
  color: var(--sand-deep);
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-kicker-secondary {
  margin-top: 8px;
  color: var(--taupe);
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.45vw, 21px);
  font-weight: 500;
  letter-spacing: 0.01em;
  line-height: 1.3;
  text-wrap: pretty;
}

.hero-kicker-secondary:first-child {
  margin-top: 0;
}

.hero-lede {
  max-width: 470px;
  margin-bottom: 38px;
  color: var(--taupe);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.78;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 16px;
}

.mobile-only,
.hero-primary-mobile,
.member-strip-mobile,
.mobile-only-section {
  display: none !important;
}

.button {
  display: inline-flex;
  min-width: 194px;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  font-size: 15px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
}

.button-primary {
  border: 1px solid rgba(124, 132, 88, 0.26);
  background: linear-gradient(135deg, var(--sage), var(--sage-hover));
  box-shadow: 0 13px 26px rgba(43, 24, 8, 0.1);
  color: var(--black);
}

.button-primary:hover,
.button-primary:focus {
  border-color: rgba(124, 132, 88, 0.34);
  background: var(--sage-hover);
}

.button-secondary {
  border: 1px solid var(--coral);
  background: rgba(255, 248, 236, 0.62);
  color: var(--black);
}

.button-secondary:hover,
.button-secondary:focus {
  border-color: var(--coral);
  background: var(--coral-soft);
}

.hero-visual {
  position: relative;
  min-width: 0;
  padding-bottom: 34px;
}

.image-card {
  position: relative;
  min-height: clamp(500px, 40vw, 590px);
  overflow: visible;
  border-radius: 22px;
}

.photo-frame {
  position: relative;
  height: clamp(500px, 40vw, 590px);
  overflow: visible;
  border-radius: 22px;
}

.photo-frame::before,
.photo-frame::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 3;
  height: 100%;
  border-radius: 22px;
  content: "";
  pointer-events: none;
}

.photo-frame::before {
  border: 1px solid rgba(217, 200, 168, 0.3);
  background:
    url("assets/subtle-vintage-photo-edge.png") center / 100% 100% no-repeat,
    linear-gradient(90deg, rgba(43, 24, 8, 0.045), transparent 16px, transparent calc(100% - 16px), rgba(43, 24, 8, 0.035)),
    linear-gradient(180deg, rgba(255, 248, 236, 0.14), transparent 14px, transparent calc(100% - 16px), rgba(242, 154, 147, 0.04));
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 236, 0.28),
    inset 0 0 14px rgba(43, 24, 8, 0.04);
  opacity: 0.58;
}

.photo-frame::after {
  background:
    radial-gradient(8px 3px at 14% 0, rgba(43, 24, 8, 0.05) 0 36%, transparent 44%) top left / 126px 7px repeat-x,
    radial-gradient(7px 3px at 62% 100%, rgba(255, 248, 236, 0.12) 0 34%, transparent 42%) bottom left / 138px 7px repeat-x,
    radial-gradient(3px 8px at 0 27%, rgba(43, 24, 8, 0.04) 0 35%, transparent 44%) top left / 7px 132px repeat-y,
    radial-gradient(3px 7px at 100% 68%, rgba(255, 248, 236, 0.1) 0 33%, transparent 42%) top right / 7px 126px repeat-y,
    linear-gradient(90deg, rgba(43, 24, 8, 0.04), transparent 9px, transparent calc(100% - 9px), rgba(43, 24, 8, 0.03)),
    linear-gradient(180deg, rgba(255, 248, 236, 0.12), transparent 8px, transparent calc(100% - 10px), rgba(43, 24, 8, 0.04));
  opacity: 0.28;
}

.hero-photo {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 0;
  border: 2px solid rgba(255, 248, 236, 0.9);
  border-radius: 22px;
  box-shadow:
    0 28px 64px rgba(43, 24, 8, 0.14),
    0 0 0 1px rgba(217, 200, 168, 0.34),
    inset 0 0 0 1px rgba(255, 248, 236, 0.24);
  animation: hero-photo-breath 11s ease-in-out infinite;
  filter: sepia(0.08) saturate(1.04) brightness(1.08) contrast(0.98);
  object-fit: cover;
  object-position: 62% 44%;
  transform-origin: 50% 50%;
  will-change: transform;
}

.image-warmth {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 22px;
  background:
    radial-gradient(circle at 48% 42%, rgba(255, 248, 236, 0.14) 0 18%, transparent 44%),
    linear-gradient(180deg, rgba(253, 220, 213, 0.18), rgba(71, 54, 42, 0.04));
  pointer-events: none;
}

.overlay-card {
  position: absolute;
  z-index: 4;
  width: 154px;
  --overlay-label-family: var(--font-body);
  --overlay-label-size: 11px;
  --overlay-label-weight: 700;
  --overlay-label-tracking: 0.24em;
  --overlay-heading-family: var(--font-heading);
  --overlay-heading-size: 18px;
  --overlay-heading-weight: 700;
  --overlay-heading-tracking: -0.02em;
  --overlay-heading-leading: 0.98;
  --overlay-body-family: var(--font-body);
  --overlay-body-size: 11px;
  --overlay-body-leading: 1.55;
  border: 1px solid rgba(217, 200, 168, 0.42);
  border-radius: 17px;
  background: rgba(255, 248, 236, 0.94);
  box-shadow: 0 18px 42px rgba(43, 24, 8, 0.1);
  color: var(--black);
  padding: 17px;
  backdrop-filter: blur(10px);
}

@keyframes hero-photo-breath {
  0%,
  100% {
    transform: scale(1) translate3d(0, 0, 0);
  }

  45% {
    transform: scale(1.012) translate3d(-2px, 1px, 0);
  }

  75% {
    transform: scale(1.006) translate3d(1px, -1px, 0);
  }
}

.overlay-card-curated {
  top: 26px;
  left: -48px;
}

.overlay-card-verified {
  right: -28px;
  bottom: 84px;
}

.overlay-card-secure {
  display: none;
  bottom: 58px;
  left: 28px;
}

.mini-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  margin-bottom: 15px;
  border: 1px solid rgba(124, 132, 88, 0.34);
  border-radius: 50%;
  color: var(--sand-deep);
  font-size: 18px;
  line-height: 1;
}

.mini-icon-mark {
  width: 27px;
  height: 27px;
  fill: none;
  overflow: visible;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-icon-shoe {
  stroke-width: 2.2;
}

.mini-icon-shoe-cap {
  stroke-width: 2.45;
}

.mini-icon-check {
  stroke-width: 2.25;
}

.mini-icon-listing-mark {
  width: 27px;
  height: 27px;
}

.mini-icon-listing-sheet,
.mini-icon-listing-clip {
  stroke-width: 1.45;
}

.mini-icon-listing-line {
  opacity: 0.62;
  stroke-width: 1.28;
}

.mini-icon-listing-check {
  stroke-width: 1.9;
}

.mini-icon-secure-mark {
  width: 27px;
  height: 27px;
}

.mini-icon-secure-shield {
  stroke-width: 1.65;
}

.mini-icon-secure-lock {
  stroke-width: 1.55;
}

.overlay-card p {
  margin-bottom: 6px;
  color: var(--sand-deep);
  font-family: var(--overlay-label-family);
  font-size: var(--overlay-label-size);
  font-weight: var(--overlay-label-weight);
  letter-spacing: var(--overlay-label-tracking);
  line-height: 1;
  text-transform: uppercase;
}

.overlay-card h2 {
  margin-bottom: 10px;
  color: var(--black);
  font-family: var(--overlay-heading-family);
  font-size: var(--overlay-heading-size);
  font-weight: var(--overlay-heading-weight);
  letter-spacing: var(--overlay-heading-tracking);
  line-height: var(--overlay-heading-leading);
}

.overlay-card-curated h2 span {
  display: block;
  text-wrap: balance;
}

.overlay-card-curated h2 span + span {
  margin-top: 4px;
}

.overlay-card > span:last-child {
  display: block;
  color: var(--taupe);
  font-family: var(--overlay-body-family);
  font-size: var(--overlay-body-size);
  line-height: var(--overlay-body-leading);
}

.member-strip {
  position: absolute;
  right: 8%;
  bottom: -2px;
  left: 8%;
  z-index: 3;
  min-height: 36px;
  justify-content: center;
  gap: clamp(11px, 1.4vw, 17px);
  border-radius: 999px;
  border: 1px solid rgba(242, 154, 147, 0.42);
  background: rgba(253, 220, 213, 0.9);
  box-shadow: 0 15px 36px rgba(43, 24, 8, 0.1);
  color: var(--black);
  padding: 4px 20px;
}

.california-mark {
  width: clamp(24px, 2.45vw, 31px);
  height: clamp(32px, 3.25vw, 41px);
  flex: 0 0 auto;
}

.california-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.member-strip strong {
  min-width: 0;
  font-size: 11.25px;
  font-weight: 800;
  line-height: 1.24;
  text-align: center;
  text-wrap: balance;
  white-space: nowrap;
}

.value-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(58px, 7vw, 94px);
  padding: clamp(34px, 4.4vw, 58px) clamp(10px, 3vw, 48px);
}

.value-card {
  position: relative;
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-width: 0;
  padding: 0 clamp(28px, 4.4vw, 64px);
}

.value-card + .value-card {
  border-left: 1px solid rgba(217, 200, 168, 0.34);
}

.value-card + .value-card::before {
  position: absolute;
  top: 50%;
  left: -5px;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(217, 200, 168, 0.58);
  background: var(--bone);
  content: "";
  transform: translateY(-50%) rotate(45deg);
}

.value-icon {
  display: grid;
  width: 70px;
  height: 70px;
  place-items: center;
  border: 1px solid rgba(217, 200, 168, 0.58);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 248, 236, 0.94), rgba(192, 195, 155, 0.14) 68%);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 236, 0.66);
  color: var(--sand-deep);
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1;
}

.value-svg {
  width: 42px;
  height: 42px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.4;
}

.value-svg-rosette {
  width: 44px;
  height: 44px;
}

.value-svg-accent {
  stroke-width: 2;
}

.value-svg-detail {
  opacity: 0.46;
  stroke-width: 1.5;
}

.value-icon-california img {
  width: 34px;
  height: auto;
  overflow: visible;
}

.value-card h2 {
  margin-bottom: 14px;
  color: var(--black);
  font-size: clamp(28px, 2.45vw, 39px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-transform: none;
}

.value-card p {
  margin-bottom: 0;
  color: var(--taupe);
  font-family: var(--font-body);
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.72;
}

@media (min-width: 901px) {
  .value-band {
    display: none;
  }

  .about-trust,
  .about-closing {
    display: none;
  }
}

.audience-section {
  margin: clamp(20px, 3.4vw, 42px) 0 clamp(38px, 5vw, 72px);
  padding: 0 clamp(10px, 3.5vw, 52px);
}

.section-heading-compact {
  margin-bottom: clamp(18px, 2.4vw, 26px);
}

.section-heading-compact h2 {
  margin-bottom: 0;
  font-size: clamp(46px, 4.8vw, 72px);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  max-width: 960px;
  margin: 0 auto;
}

.audience-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(217, 200, 168, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.92), rgba(248, 242, 232, 0.66)),
    var(--ivory);
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 236, 0.76),
    0 18px 34px rgba(43, 24, 8, 0.08);
}

.audience-card {
  padding: clamp(22px, 2.6vw, 32px);
}

.audience-card::before {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border: 1px solid rgba(217, 200, 168, 0.11);
  border-radius: 5px;
  content: "";
  pointer-events: none;
}

.audience-card h3 {
  margin: 0 0 12px;
  color: var(--black);
  font-size: clamp(32px, 3vw, 44px);
  line-height: 0.98;
}

.audience-card p {
  margin: 0;
  color: var(--taupe);
  font-size: 15px;
  line-height: 1.76;
}

.how-it-works {
  scroll-margin-top: 28px;
  margin: clamp(38px, 5vw, 74px) 0 clamp(46px, 6vw, 82px);
}

.section-shell {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(90deg, transparent, rgba(242, 154, 147, 0.22), transparent) top / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(217, 200, 168, 0.16), transparent) bottom / 100% 1px no-repeat,
    rgba(255, 248, 236, 0.36);
  padding: clamp(36px, 5vw, 68px) clamp(10px, 3.5vw, 52px);
}

.section-shell::before,
.section-shell::after {
  position: absolute;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(217, 200, 168, 0.58);
  background: var(--bone);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.section-shell::before {
  top: -5px;
}

.section-shell::after {
  bottom: -5px;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-label,
.how-label,
.how-it-works .step-number {
  color: var(--sand-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-label,
.how-label {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 14px;
}

.section-label::before,
.section-label::after,
.how-label::before,
.how-label::after {
  width: 36px;
  height: 1px;
  background: var(--line);
  content: "";
}

.section-heading h2 {
  margin: 0 0 16px;
  color: var(--black);
  font-size: clamp(56px, 6vw, 94px);
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.section-subheadline,
.how-subheadline {
  margin: 0 auto;
  color: var(--sand-deep);
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 600;
  line-height: 1.18;
  text-wrap: balance;
}

.section-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 56px);
  max-width: 1080px;
  margin: 0 auto clamp(30px, 4.5vw, 56px);
}

.section-copy p {
  margin: 0;
  color: var(--taupe);
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.82;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  max-width: 1120px;
  margin: 0 auto;
}

.step-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(217, 200, 168, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.94), rgba(248, 242, 232, 0.7)),
    var(--ivory);
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 236, 0.76),
    0 18px 34px rgba(43, 24, 8, 0.08);
  padding: clamp(22px, 2.7vw, 34px);
}

.step-card::before {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border: 1px solid rgba(217, 200, 168, 0.11);
  border-radius: 5px;
  content: "";
  pointer-events: none;
}

.step-card-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.step-number {
  display: inline-grid;
  min-width: 48px;
  height: 30px;
  place-items: center;
  border: 1px solid rgba(124, 132, 88, 0.62);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.96), rgba(248, 242, 232, 0.78)),
    var(--ivory);
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 236, 0.72),
    0 5px 12px rgba(43, 24, 8, 0.06);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.step-rule {
  flex: 1 1 auto;
  height: 1px;
  background: linear-gradient(90deg, rgba(124, 132, 88, 0.52), transparent);
}

.step-card h3 {
  margin: 0 0 13px;
  color: var(--black);
  font-size: clamp(27px, 2.45vw, 37px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-wrap: balance;
}

.step-card p {
  margin: 0;
  color: var(--taupe);
  font-size: 15px;
  line-height: 1.78;
}

.trust-callout {
  max-width: 820px;
  margin: clamp(28px, 4vw, 48px) auto 0;
  color: var(--black-soft);
  font-family: var(--font-heading);
  font-size: clamp(25px, 3vw, 42px);
  font-weight: 600;
  line-height: 1.16;
  text-align: center;
  text-wrap: balance;
}

.trust-callout::before {
  display: block;
  width: min(220px, 50%);
  height: 1px;
  margin: 0 auto 22px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  content: "";
}

.signup-cta {
  scroll-margin-top: 28px;
  max-width: 980px;
  margin: clamp(32px, 4.8vw, 70px) auto clamp(42px, 5.6vw, 82px);
  border: 1px solid rgba(217, 200, 168, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.92), rgba(248, 242, 232, 0.66)),
    var(--ivory);
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 236, 0.76),
    0 18px 34px rgba(43, 24, 8, 0.08);
  padding: clamp(30px, 4.2vw, 52px) clamp(20px, 4vw, 58px);
  position: relative;
  text-align: center;
}

.signup-cta::before {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border: 1px solid rgba(217, 200, 168, 0.11);
  border-radius: 5px;
  content: "";
  pointer-events: none;
}

.signup-cta h2 {
  position: relative;
  z-index: 1;
  max-width: 740px;
  margin: 0 auto 14px;
  color: var(--black);
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: 0.96;
  text-wrap: balance;
}

.signup-cta p {
  position: relative;
  z-index: 1;
  margin: 0 auto 24px;
  color: var(--taupe);
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.7;
}

.signup-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.about-section {
  scroll-margin-top: 28px;
  margin: clamp(42px, 5.6vw, 82px) 0 clamp(48px, 6vw, 88px);
}

.about-shell {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  background:
    linear-gradient(90deg, transparent, rgba(217, 200, 168, 0.14), transparent) top / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(217, 200, 168, 0.12), transparent) bottom / 100% 1px no-repeat,
    linear-gradient(145deg, rgba(255, 248, 236, 0.5), rgba(248, 242, 232, 0.28));
  padding: clamp(38px, 5.2vw, 72px) clamp(10px, 3.5vw, 52px);
}

.about-shell::before,
.about-shell::after {
  position: absolute;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid rgba(217, 200, 168, 0.58);
  background: var(--bone);
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.about-shell::before {
  top: -5px;
}

.about-shell::after {
  bottom: -5px;
}

.about-hero {
  max-width: 880px;
  margin: 0 auto clamp(32px, 4.8vw, 58px);
  text-align: center;
}

.about-hero h2 {
  margin: 0 0 16px;
  color: var(--black);
  font-size: clamp(56px, 6vw, 94px);
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.about-hero p:last-child {
  max-width: 780px;
  margin: 24px auto 0;
  color: var(--taupe);
  font-size: clamp(16px, 1.15vw, 18px);
  line-height: 1.82;
}

.about-story {
  display: grid;
  grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(24px, 4.8vw, 64px);
  max-width: 1120px;
  align-items: stretch;
  margin: 0 auto clamp(26px, 4.2vw, 48px);
}

.about-place,
.about-mission {
  min-width: 0;
}

.about-place {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  border: 1px solid rgba(217, 200, 168, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.88), rgba(192, 195, 155, 0.2)),
    var(--ivory);
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 236, 0.74),
    0 18px 34px rgba(43, 24, 8, 0.07);
  padding: clamp(24px, 3vw, 36px);
}

.about-place::before {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border: 1px solid rgba(217, 200, 168, 0.12);
  border-radius: 5px;
  content: "";
  pointer-events: none;
}

.about-place-mark {
  position: absolute;
  top: clamp(22px, 2.8vw, 34px);
  right: clamp(22px, 2.8vw, 34px);
  width: clamp(72px, 8vw, 108px);
}

.about-place-mark img {
  display: block;
  opacity: 0.2;
  width: 100%;
  height: auto;
}

.about-place-star {
  position: absolute;
  top: 63.2%;
  left: 36.7%;
  width: 18%;
  height: auto;
  color: var(--sand-deep);
  fill: currentColor;
  filter: drop-shadow(0 1px 2px rgba(43, 24, 8, 0.28));
  transform: translate(-50%, -50%);
}

.about-place-label {
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
  color: var(--sand-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-place h3 {
  position: relative;
  z-index: 1;
  max-width: 360px;
  margin: 0;
  color: var(--black);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.95;
  text-wrap: balance;
}

.about-mission {
  display: grid;
  align-content: center;
  gap: 18px;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(22px, 3.6vw, 42px) 0;
}

.about-mission p {
  margin: 0;
  color: var(--taupe);
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.82;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(15px, 2vw, 24px);
  max-width: 1120px;
  margin: 0 auto;
}

.about-value-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(217, 200, 168, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.92), rgba(248, 242, 232, 0.66)),
    var(--ivory);
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 236, 0.76),
    0 18px 34px rgba(43, 24, 8, 0.08);
  padding: clamp(22px, 2.5vw, 32px);
}

.about-value-card::before {
  position: absolute;
  top: 12px;
  right: 12px;
  bottom: 12px;
  left: 12px;
  border: 1px solid rgba(217, 200, 168, 0.11);
  border-radius: 5px;
  content: "";
  pointer-events: none;
}

.about-card-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 20px;
  border: 1px solid rgba(217, 200, 168, 0.58);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 248, 236, 0.94), rgba(192, 195, 155, 0.15) 68%);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 236, 0.66);
  color: var(--sand-deep);
}

.about-card-icon--asset {
  position: relative;
  overflow: hidden;
}

.about-card-icon--asset img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  max-width: none;
  object-fit: cover;
  transform: translate(-50%, -50%);
}

.about-value-card h3 {
  margin: 0 0 14px;
  color: var(--black);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-wrap: balance;
}

.about-value-card p {
  margin: 0;
  color: var(--taupe);
  font-size: 15px;
  line-height: 1.78;
}

.about-trust {
  max-width: 940px;
  margin: clamp(24px, 3.8vw, 44px) auto 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: clamp(22px, 3vw, 34px) 0;
}

.about-trust p {
  margin: 0 auto;
  max-width: 790px;
  color: var(--taupe);
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.82;
  text-align: center;
}

.about-closing {
  max-width: 860px;
  margin: clamp(28px, 4vw, 48px) auto 0;
  color: var(--black-soft);
  font-family: var(--font-heading);
  font-size: clamp(29px, 3.3vw, 48px);
  font-weight: 600;
  line-height: 1.12;
  text-align: center;
  text-wrap: balance;
}

.about-closing::before {
  display: block;
  width: min(220px, 50%);
  height: 1px;
  margin: 0 auto 22px;
  background: linear-gradient(90deg, transparent, var(--line), transparent);
  content: "";
}

.contact-section {
  scroll-margin-top: 28px;
  margin: clamp(38px, 5vw, 74px) 0 clamp(42px, 6vw, 78px);
}

.contact-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent, rgba(242, 154, 147, 0.22), transparent) top / 100% 1px no-repeat,
    linear-gradient(145deg, rgba(255, 248, 236, 0.62), rgba(248, 242, 232, 0.34)),
    rgba(255, 248, 236, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 248, 236, 0.62);
  padding: clamp(36px, 5vw, 68px) clamp(16px, 4vw, 58px);
}

.contact-shell::before {
  position: absolute;
  top: 16px;
  right: 16px;
  bottom: 16px;
  left: 16px;
  border: 1px solid rgba(217, 200, 168, 0.12);
  border-radius: 5px;
  content: "";
  pointer-events: none;
}

.contact-intro {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto clamp(16px, 2.4vw, 24px);
  text-align: center;
}

.contact-intro h2 {
  margin: 0 0 16px;
  color: var(--black);
  font-size: clamp(54px, 5.8vw, 92px);
  letter-spacing: -0.02em;
  line-height: 0.95;
}

.contact-subheadline {
  max-width: 700px;
  margin: 0 auto 18px;
  color: var(--sand-deep);
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 600;
  line-height: 1.18;
  text-wrap: balance;
}

.contact-body {
  max-width: 760px;
  margin: 0 auto;
  color: var(--taupe);
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.82;
}

.contact-email-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(14px, 1.9vw, 22px);
  max-width: 760px;
  margin: 0 auto clamp(22px, 3.4vw, 34px);
  border: 1px solid rgba(217, 200, 168, 0.48);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 248, 236, 0.98), rgba(248, 242, 232, 0.78)),
    var(--ivory);
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 236, 0.8),
    0 18px 38px rgba(43, 24, 8, 0.1);
  padding: clamp(18px, 2vw, 24px);
}

.contact-email-card::after {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(242, 154, 147, 0.42), transparent);
  content: "";
  pointer-events: none;
}

.contact-email-icon {
  display: grid;
  width: clamp(46px, 3.5vw, 52px);
  height: clamp(46px, 3.5vw, 52px);
  place-items: center;
  border: 1px solid rgba(217, 200, 168, 0.58);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 248, 236, 0.96), rgba(192, 195, 155, 0.18) 68%);
  color: var(--sand-deep);
}

.contact-email-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.3;
}

.contact-email-copy {
  min-width: 0;
}

.contact-email-copy span {
  display: block;
  margin-bottom: 4px;
  color: var(--sand-deep);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.contact-email-copy a {
  display: inline-block;
  max-width: 100%;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: clamp(26px, 2.3vw, 32px);
  font-weight: 700;
  line-height: 1;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-decoration-color: rgba(242, 154, 147, 0.52);
  text-decoration-thickness: 1px;
  text-underline-offset: 7px;
}

.contact-email-copy a:hover,
.contact-email-copy a:focus {
  color: var(--sand-deep);
}

.contact-email-button {
  min-width: 168px;
  min-height: 46px;
  padding: 0 20px;
  white-space: nowrap;
}

.contact-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  max-width: 1120px;
  margin: 0 auto;
}

.contact-card {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(217, 200, 168, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 248, 236, 0.92), rgba(248, 242, 232, 0.68)),
    var(--ivory);
  box-shadow:
    inset 0 0 0 1px rgba(255, 248, 236, 0.74),
    0 16px 32px rgba(43, 24, 8, 0.07);
  padding: clamp(22px, 2.6vw, 32px);
}

.contact-card::before {
  display: block;
  width: 48px;
  height: 1px;
  margin-bottom: 18px;
  background: var(--line);
  content: "";
}

.contact-card-label {
  display: block;
  margin-bottom: 11px;
  color: var(--sand-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-card h3 {
  margin: 0 0 13px;
  color: var(--black);
  font-size: clamp(28px, 2.6vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.98;
  text-wrap: balance;
}

.contact-card p {
  margin: 0;
  color: var(--taupe);
  font-size: 15px;
  line-height: 1.76;
}

.site-footer {
  flex-direction: column;
  gap: 10px;
  padding-top: 8px;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  width: min(270px, 72vw);
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
}

.footer-logo {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  opacity: 0.82;
}

.footer-rule {
  position: relative;
  width: min(430px, 60%);
  height: 1px;
  margin-top: -8px;
  background: var(--line-soft);
}

.site-footer p {
  margin: 0;
  color: var(--sand-deep);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.site-footer .footer-copyright {
  max-width: 100%;
  margin-top: 3px;
  color: var(--ivory-soft);
  font-size: 10px;
  letter-spacing: 0.16em;
  line-height: 1.6;
}

@media (max-width: 1180px) and (min-width: 901px) {
  .site-header {
    grid-template-columns: max-content 1fr max-content;
    gap: clamp(22px, 2.4vw, 30px);
  }

  .site-nav {
    gap: clamp(24px, 2.8vw, 34px);
  }

  .site-nav a,
  .signup-link {
    font-size: 13px;
  }

  .account-actions {
    padding-left: 26px;
  }

  .signup-link {
    min-height: 36px;
    padding: 8px 17px;
  }

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

  .hero-copy {
    padding-left: 0;
  }

  .hero-visual {
    width: min(860px, 100%);
    margin: 0 auto;
  }

  .overlay-card-curated {
    left: 24px;
  }

  .overlay-card-verified {
    right: 24px;
  }

  .overlay-card-secure {
    bottom: 96px;
    left: 24px;
  }

  .step-card {
    padding: 26px;
  }

  .about-story {
    gap: 30px;
  }

  .about-value-card {
    padding: 26px;
  }

  .contact-email-card {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .contact-email-button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: relative;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 14px;
    margin-bottom: 32px;
  }

  .site-nav,
  .account-actions {
    display: none;
  }

  .menu-toggle {
    display: flex;
    justify-self: end;
  }

  .mobile-menu {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    left: 0;
    z-index: 10;
    display: grid;
    visibility: hidden;
    gap: 4px;
    border: 1px solid rgba(217, 200, 168, 0.46);
    border-radius: 8px;
    background:
      linear-gradient(145deg, rgba(255, 248, 236, 0.98), rgba(248, 242, 232, 0.86)),
      var(--ivory);
    box-shadow:
      inset 0 0 0 1px rgba(255, 248, 236, 0.72),
      0 22px 46px rgba(43, 24, 8, 0.18);
    opacity: 0;
    padding: 12px;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

  .site-header.menu-open .mobile-menu {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-menu a {
    border-radius: 5px;
    color: var(--black);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 11px 12px;
    text-transform: uppercase;
  }

  .mobile-menu a:hover,
  .mobile-menu a:focus {
    background: rgba(192, 195, 155, 0.18);
    color: var(--sand-deep);
  }

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

  .hero-copy {
    padding-left: 0;
  }

  .hero-visual {
    width: min(860px, 100%);
    margin: 0 auto;
  }

  .overlay-card-curated {
    left: 24px;
  }

  .overlay-card-verified {
    right: 24px;
  }

  .overlay-card-secure {
    bottom: 96px;
    left: 24px;
  }

  .steps-grid,
  .audience-grid,
  .about-story,
  .about-values,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .about-story,
  .about-values {
    max-width: 700px;
  }

  .about-place {
    min-height: 280px;
  }

  .contact-email-card {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .contact-email-button {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .contact-section,
  .contact-shell,
  .contact-intro,
  .contact-email-card,
  .contact-cards,
  .contact-card {
    box-sizing: border-box;
    max-width: 100%;
  }

  .contact-section {
    overflow-x: hidden;
  }

  .contact-shell {
    width: 100%;
    overflow-x: hidden;
    padding-right: clamp(16px, 5vw, 24px);
    padding-left: clamp(16px, 5vw, 24px);
  }

  .contact-intro {
    width: 100%;
  }

  .contact-email-card {
    width: 100%;
    max-width: 100%;
    margin-bottom: 28px;
  }

  .contact-email-card > * {
    min-width: 0;
  }

  .contact-email-copy {
    width: 100%;
    max-width: 100%;
  }

  .contact-email-copy a {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .contact-email-button {
    max-width: 100%;
    justify-self: stretch;
    padding-right: 16px;
    padding-left: 16px;
    white-space: normal;
    text-align: center;
  }

  .contact-cards {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .access-gate {
    padding: 16px;
  }

  .access-panel {
    padding: 28px 22px 24px;
  }

  .access-panel::before {
    inset: 9px;
  }

  .access-logo {
    width: min(100%, 420px);
    margin-bottom: 22px;
  }

  .access-panel h1 {
    gap: 12px;
    margin-bottom: 13px;
    font-size: 13px;
    letter-spacing: 0.18em;
    white-space: nowrap;
  }

  .access-panel h1::before,
  .access-panel h1::after {
    flex: 1 1 24px;
    width: auto;
    min-width: 22px;
  }

  .access-panel p {
    margin-bottom: 23px;
    font-size: 15px;
  }

  .access-form {
    gap: 12px;
  }

  .access-form input,
  .access-form button {
    min-height: 54px;
  }

  .page-frame {
    width: min(calc(100% - 18px), var(--max));
    min-height: calc(100svh - 18px);
    margin: 9px auto;
    padding: 18px 18px 28px;
  }

  .site-header {
    gap: 10px;
    margin-bottom: 14px;
  }

  .brand {
    width: clamp(196px, 45vw, 276px);
  }

  .brand-logo {
    width: 100%;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    gap: 4px;
  }

  .menu-toggle span {
    width: 16px;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .hero {
    row-gap: 18px;
  }

  .hero-visual {
    padding-bottom: 0;
  }

  h1 {
    margin-bottom: 12px;
    font-size: clamp(66px, 22vw, 92px);
  }

  #hero-title {
    max-width: 100%;
    font-size: clamp(46px, 14.2vw, 62px);
    line-height: 0.9;
  }

  .hero-divider {
    gap: 13px;
    margin-bottom: 12px;
  }

  .hero-divider span {
    width: 58px;
  }

  .hero-divider b {
    font-size: 24px;
  }

  .hero-kicker {
    width: min(100%, 27ch);
    max-width: 292px;
    margin-bottom: 16px;
  }

  .hero-kicker-single {
    margin-bottom: 16px;
  }

  .hero-kicker-primary {
    font-size: 13px;
    letter-spacing: 0.1em;
  }

  .hero-kicker-secondary {
    font-size: 16px;
    line-height: 1.25;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 9px;
  }

  .desktop-only,
  .hero-primary-desktop,
  .member-strip-desktop,
  .value-band,
  .section-copy,
  .how-label,
  .how-subheadline,
  .step-card-desktop,
  .trust-callout {
    display: none !important;
  }

  .mobile-only {
    display: contents !important;
  }

  .hero-primary-mobile {
    display: inline-flex !important;
  }

  .member-strip-mobile {
    display: flex !important;
  }

  .mobile-only-section {
    display: block !important;
  }

  .signup-cta.mobile-only-section {
    display: none !important;
  }

  .audience-section.mobile-only-section {
    display: none !important;
  }

  .member-strip {
    align-items: center;
    flex-direction: row;
  }

  .member-strip strong {
    white-space: normal;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .image-card {
    display: flex;
    min-height: 0;
    height: auto;
    flex-direction: column;
    margin-bottom: 0;
  }

  .photo-frame {
    height: 390px;
    min-height: 390px;
    overflow: hidden;
  }

  .hero-photo {
    flex: 0 0 auto;
    height: 100%;
    object-position: 56% 46%;
  }

  .image-warmth {
    background:
      radial-gradient(circle at 48% 42%, rgba(255, 248, 236, 0.12) 0 18%, transparent 44%),
      linear-gradient(180deg, rgba(253, 220, 213, 0.16) 0%, rgba(71, 54, 42, 0.04) 58%, rgba(43, 24, 8, 0.24) 100%);
    height: auto;
  }

  .overlay-card {
    position: relative;
    width: 100%;
    border-radius: 14px;
    --overlay-label-size: 10px;
    --overlay-label-tracking: 0.2em;
    --overlay-heading-size: 24px;
    --overlay-body-size: 14px;
    --overlay-body-leading: 1.62;
    padding: 22px 20px;
  }

  .overlay-card-curated,
  .overlay-card-verified,
  .overlay-card-secure {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: block;
    margin-top: 14px;
  }

  .image-card > .overlay-card {
    display: none;
  }

  .mini-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
  }

  .mini-icon-mark,
  .mini-icon-listing-mark,
  .mini-icon-secure-mark {
    width: 28px;
    height: 28px;
  }

  .overlay-card p {
    margin-bottom: 5px;
  }

  .overlay-card h2 {
    margin-bottom: 7px;
  }

  .member-strip {
    position: absolute;
    right: 7%;
    bottom: 14px;
    left: 7%;
    width: auto;
    margin: 0 auto;
    border-radius: 999px;
    gap: 9px;
    min-height: 42px;
    padding: 6px 14px;
  }

  .california-mark {
    width: 21px;
    height: 28px;
  }

  .member-strip strong {
    font-size: 10.75px;
    line-height: 1.22;
  }

  .how-it-works,
  .audience-section,
  .signup-cta,
  .about-section,
  .contact-section {
    margin: 34px 0 46px;
  }

  .section-shell,
  .about-shell,
  .contact-shell {
    padding: 38px 0 42px;
  }

  .contact-shell {
    padding-right: clamp(14px, 4.5vw, 20px);
    padding-left: clamp(14px, 4.5vw, 20px);
  }

  .section-heading,
  .about-hero,
  .contact-intro {
    margin-bottom: 20px;
  }

  .contact-intro {
    margin-bottom: 24px;
  }

  .section-label,
  .how-label {
    margin-bottom: 12px;
    font-size: 11px;
    letter-spacing: 0.15em;
  }

  .section-label::before,
  .section-label::after,
  .how-label::before,
  .how-label::after {
    width: 24px;
  }

  .section-heading h2,
  .about-hero h2,
  .contact-intro h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .section-subheadline,
  .how-subheadline,
  .contact-subheadline {
    font-size: 22px;
  }

  .step-card p,
  .about-hero p:last-child,
  .about-mission p,
  .about-value-card p,
  .about-trust p,
  .contact-body,
  .contact-card p {
    font-size: 14px;
    line-height: 1.72;
  }

  .steps-grid,
  .audience-grid,
  .about-values {
    gap: 14px;
  }

  .contact-cards {
    display: grid;
  }

  .step-card,
  .audience-card,
  .about-value-card,
  .contact-card {
    padding: 22px 20px;
  }

  .step-card h3,
  .audience-card h3,
  .about-value-card h3,
  .contact-card h3 {
    font-size: clamp(25px, 8vw, 32px);
  }

  .audience-section {
    padding: 0;
  }

  .audience-card p {
    font-size: 14px;
    line-height: 1.68;
  }

  .step-card-top {
    margin-bottom: 16px;
  }

  .step-card p {
    line-height: 1.66;
  }

  .signup-cta {
    padding: 30px 20px 32px;
  }

  .signup-cta h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .signup-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .about-place {
    min-height: 240px;
    padding: 22px 20px;
  }

  .about-mission {
    padding: 22px 8px;
  }

  .about-place h3 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .about-card-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 17px;
  }

  .about-closing {
    font-size: clamp(24px, 8vw, 34px);
  }

  .contact-email-card {
    gap: 14px;
    padding: 22px 20px 26px;
  }

  .contact-email-card::after {
    right: 14px;
    left: 14px;
  }

  .contact-email-icon {
    width: 54px;
    height: 54px;
  }

  .contact-email-icon svg {
    width: 32px;
    height: 32px;
  }

  .contact-email-copy a {
    font-size: clamp(21px, 5.8vw, 27px);
    line-height: 1.08;
  }

  .site-footer p {
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .site-footer .footer-copyright {
    font-size: 9px;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 420px) {
  .page-frame {
    padding-top: 16px;
    padding-right: 14px;
    padding-left: 14px;
  }

  .brand {
    width: clamp(168px, 54vw, 218px);
  }

  .brand-logo {
    width: 100%;
  }

  .image-card {
    height: auto;
    min-height: 0;
  }

  .photo-frame {
    height: 326px;
    min-height: 326px;
  }

  .member-strip {
    right: 6%;
    bottom: 12px;
    left: 6%;
    min-height: 40px;
    padding: 6px 12px;
  }

  .member-strip strong {
    font-size: 10.25px;
  }

  .step-card,
  .audience-card,
  .signup-cta,
  .about-value-card,
  .contact-card {
    padding: 20px 16px;
  }

  .step-card::before,
  .audience-card::before,
  .signup-cta::before,
  .about-value-card::before,
  .about-place::before,
  .contact-shell::before {
    inset: 9px;
  }

  .step-number {
    min-width: 46px;
  }

  .contact-email-card {
    padding: 20px 16px 24px;
  }

  .contact-email-copy a {
    font-size: clamp(19px, 5.6vw, 23px);
  }
}

@media (max-width: 900px) {
  .contact-cards {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-photo {
    animation: none;
    transform: none;
  }
}
