/* Angel & Ari Jewelry Co. — restyle: Simple & Dainty softness + Gorjana editorial */

:root {
  --black: #1a1816;
  --near-black: #2a2623;
  --white: #ffffff;
  --ivory: #fffcfa;
  --cream: #fbf7f2;
  --peach: #f5e8dc;
  --warm: #f8efe6;
  --warm-deep: #eadfd3;
  --blush: #e8d5c8;
  --muted: #6f6861;
  --muted-soft: #9a9289;
  --gold: #c4a484;
  --gold-soft: #d4bc9a;
  --gold-deep: #a88b5c;
  --border: rgba(26, 24, 22, 0.07);
  --border-strong: rgba(26, 24, 22, 0.12);
  --shadow-soft: 0 16px 48px rgba(26, 24, 22, 0.05);
  --shadow-card: 0 8px 28px rgba(26, 24, 22, 0.04);
  --font-serif: "Cormorant Garamond", "Times New Roman", Georgia, serif;
  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --header-h: 70px;
  --announce-h: 40px;
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--black);
  background-color: #f4ebe0;
  background-image:
    radial-gradient(ellipse 70% 50% at 50% 32%, rgba(255, 252, 248, 0.35), transparent 70%),
    url("../assets/bg-luxury-cream.jpg");
  background-size: cover, cover;
  background-position: center top, center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* —— Announcement bar —— */
.announce-bar {
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
  text-align: center;
  padding: 0.65rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--near-black);
}

.announce-bar a {
  color: var(--black);
  border-bottom: 1px solid var(--gold);
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.announce-bar a:hover {
  border-bottom-color: var(--black);
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(251, 247, 242, 0.78);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(26, 24, 22, 0.06);
}

.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.75rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-link img {
  height: 26px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.85rem;
}

.nav a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.25s var(--ease);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--black);
}

.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--black);
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 1.5px;
  background: var(--black);
}

.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

/* —— Layout —— */
.main {
  min-height: calc(100vh - var(--header-h) - 240px);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.75rem;
}

.section {
  padding: 5.5rem 0;
}

.section--tight {
  padding: 3.75rem 0 5rem;
}

.section--warm {
  background: rgba(248, 239, 230, 0.82);
}

.section--peach {
  background: rgba(245, 232, 220, 0.78);
  backdrop-filter: blur(2px);
}

.section--soft {
  background: rgba(255, 252, 250, 0.84);
}

.section--dark {
  background: var(--black);
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  font-size: 0.6875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
  margin: 0 0 0.9rem;
}

.section--dark .eyebrow {
  color: var(--gold-soft);
}

h1, h2, h3, .serif {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.6rem, 5.2vw, 3.85rem);
  margin: 0 0 1rem;
}

h2 {
  font-size: clamp(2.1rem, 3.6vw, 2.85rem);
  margin: 0 0 1rem;
}

h3 {
  font-size: 1.5rem;
  margin: 0 0 0.5rem;
}

.lede {
  font-size: 1.0625rem;
  color: var(--muted);
  max-width: 34rem;
  margin: 0;
  line-height: 1.7;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2.75rem;
}

.section-head--center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3rem;
}

.section-head--center .lede {
  margin: 0.35rem auto 0;
}

.section-head .lede {
  max-width: 28rem;
}

.text-link {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--black);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: border-color 0.25s var(--ease), color 0.25s var(--ease);
}

.text-link:hover {
  border-bottom-color: var(--black);
}

.section--dark .text-link {
  color: var(--gold-soft);
  border-bottom-color: rgba(212, 188, 154, 0.5);
}

.section--dark .text-link:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

/* —— Trust strip —— */
.trust-strip {
  background: var(--ivory);
  border-top: none;
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 1.5rem;
}

.trust-strip-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem 1.75rem;
  text-align: center;
}

.trust-strip span {
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}

.trust-strip .sep {
  color: var(--gold);
  letter-spacing: 0;
  font-size: 0.55rem;
}

/* —— Hero (soft editorial) —— */
.hero {
  position: relative;
  min-height: min(78vh, 680px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: transparent;
  color: var(--black);
  overflow: hidden;
  padding: 5rem 1.5rem 4.75rem;
  border-bottom: 1px solid rgba(196, 164, 132, 0.28);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 60% at 50% 40%, rgba(255, 252, 248, 0.42), transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 620px;
  margin: 0 auto;
}

.hero-logo {
  width: min(380px, 78vw);
  margin: 0 auto 1.75rem;
  filter: drop-shadow(0 2px 12px rgba(26, 24, 22, 0.06));
}

.hero-tag {
  font-family: var(--font-serif);
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 400;
  color: var(--black);
  margin: 0 0 0.85rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
}

.hero-sub {
  font-size: 0.9375rem;
  color: var(--muted);
  max-width: 28rem;
  margin: 0 auto 2.35rem;
  line-height: 1.75;
}

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

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1.5px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}

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

.btn--primary {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn--primary:hover {
  background: var(--near-black);
  border-color: var(--near-black);
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.btn--gold:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.btn--ghost {
  background: transparent;
  color: var(--black);
  border-color: var(--border-strong);
}

.btn--ghost:hover {
  border-color: var(--black);
  background: rgba(26, 24, 22, 0.03);
}

.btn--outline {
  background: transparent;
  color: var(--black);
  border-color: var(--border-strong);
}

.btn--outline:hover {
  border-color: var(--black);
}

.btn--dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn--dark:hover {
  background: var(--near-black);
}

.btn--full {
  width: 100%;
}

/* —— Collection cards —— */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
}

.collection-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  padding: 2.5rem;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.collection-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.collection-card--everyday {
  background:
    radial-gradient(circle at 85% 20%, rgba(196, 164, 132, 0.2), transparent 45%),
    linear-gradient(165deg, var(--ivory) 0%, var(--warm) 100%);
}

.collection-card--md {
  background:
    radial-gradient(circle at 15% 80%, rgba(196, 164, 132, 0.25), transparent 50%),
    linear-gradient(165deg, var(--peach) 0%, var(--warm-deep) 100%);
  color: var(--black);
}

.collection-card .mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(168, 139, 92, 0.45);
  margin-bottom: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection-card .mark::after {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(196, 164, 132, 0.15);
}

.collection-card h3 {
  font-size: clamp(1.85rem, 2.5vw, 2.25rem);
  margin-bottom: 0.7rem;
}

.collection-card p {
  margin: 0 0 1.6rem;
  max-width: 22rem;
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.collection-card .cta {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--black);
  border-bottom: 1px solid var(--gold);
  align-self: flex-start;
  padding-bottom: 2px;
}

/* —— Product grid —— */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.75rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
  transition: transform 0.35s var(--ease);
}

.product-card:hover {
  transform: translateY(-3px);
}

.product-visual {
  aspect-ratio: 1 / 1.05;
  background: linear-gradient(165deg, var(--ivory) 0%, var(--warm) 48%, #faf6f1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 2px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.product-visual::before {
  content: "";
  position: absolute;
  inset: 20%;
  border: 1px solid rgba(196, 164, 132, 0.4);
  border-radius: 50%;
  opacity: 0.75;
}

.product-visual::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-soft), var(--gold-deep));
  box-shadow: 0 0 0 14px rgba(196, 164, 132, 0.12);
  position: relative;
  z-index: 1;
}

.product-visual[data-shape="hoop"]::before {
  border-radius: 50%;
  inset: 28%;
  border-width: 2px;
}

.product-visual[data-shape="hoop"]::after {
  width: 30px;
  height: 30px;
  background: transparent;
  box-shadow: none;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  border-left-color: transparent;
  transform: rotate(-35deg);
}

.product-visual[data-shape="ring"]::before {
  inset: 32%;
  border-width: 1.5px;
}

.product-visual[data-shape="ring"]::after {
  width: 38px;
  height: 38px;
  background: transparent;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(196, 164, 132, 0.15);
}

.product-visual[data-shape="bracelet"]::before {
  inset: 30% 12%;
  border-radius: 999px;
}

.product-visual[data-shape="bracelet"]::after {
  width: 6px;
  height: 6px;
  box-shadow: 0 0 0 10px rgba(196, 164, 132, 0.12);
}

.product-visual[data-shape="stud"]::before {
  display: none;
}

.product-visual[data-shape="stud"]::after {
  width: 7px;
  height: 7px;
  box-shadow:
    -20px 0 0 0 var(--gold),
    20px 0 0 0 var(--gold),
    0 0 0 12px rgba(196, 164, 132, 0.1);
}

.product-visual[data-shape="twin"]::before {
  inset: 22%;
}

.product-visual[data-shape="twin"]::after {
  width: 8px;
  height: 8px;
  box-shadow:
    -16px 0 0 0 var(--gold),
    16px 0 0 0 var(--gold),
    0 0 0 16px rgba(196, 164, 132, 0.1);
}

.product-visual[data-shape="disc"]::before {
  inset: 24%;
}

.product-badge {
  position: absolute;
  top: 0.9rem;
  right: 0.9rem;
  left: auto;
  z-index: 2;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.38rem 0.7rem;
  background: var(--blush);
  border: none;
  color: var(--black);
  border-radius: 999px;
}

.product-body {
  padding: 1.15rem 0.15rem 0.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.25rem;
}

.product-collection {
  font-size: 0.625rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold-deep);
}

.product-body h3 {
  font-size: 1.28rem;
  margin: 0;
  letter-spacing: 0.01em;
}

.product-body p {
  margin: 0.3rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  flex: 1;
  line-height: 1.55;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.9rem;
  padding-top: 0;
  border-top: none;
  font-size: 0.8125rem;
  color: var(--muted-soft);
}

.product-meta .view {
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--black);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}

/* —— Page hero (inner pages) —— */
.page-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 4.75rem 1.5rem 3.25rem;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(245, 232, 220, 0.55) 0%, rgba(251, 247, 242, 0.35) 100%);
}


.page-hero h1 {
  margin-bottom: 0.85rem;
}

.page-hero .lede {
  margin: 0 auto;
}

/* —— Story —— */
.story-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3.75rem;
  align-items: start;
}

.story-aside {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
}

.story-panel {
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 50% 42%, rgba(196, 164, 132, 0.32), transparent 55%),
    linear-gradient(165deg, var(--warm-deep), var(--peach));
  border: 1px solid var(--border);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 1rem;
  overflow: hidden;
}

.story-panel--photo {
  position: relative;
  padding: 0;
  display: block;
  background: var(--peach);
  border-radius: 12px;
  border: 1px solid rgba(196, 164, 132, 0.58);
  box-shadow:
    0 0 0 7px rgba(251, 247, 242, 0.92),
    0 14px 36px rgba(26, 24, 22, 0.07);
  overflow: hidden;
}

.story-panel--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  border-radius: 11px;
}

.story-panel--photo .caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  padding: 2.5rem 1rem 1rem;
  background: linear-gradient(180deg, transparent, rgba(26, 24, 22, 0.55));
  color: #fff;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.story-panel .mono {
  font-family: var(--font-serif);
  font-size: 3.25rem;
  font-style: italic;
  color: var(--gold-deep);
  line-height: 1;
}

.story-panel .caption {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.prose p {
  color: var(--muted);
  margin: 0 0 1.25rem;
  font-size: 1.0625rem;
}

.prose p:last-child {
  margin-bottom: 0;
}

.prose strong {
  color: var(--black);
  font-weight: 500;
}

/* —— Waitlist / forms —— */
.waitlist {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

.waitlist-form,
.notify-form,
.contact-form {
  display: flex;
  gap: 0.75rem;
}

.contact-form {
  flex-direction: column;
  gap: 0.85rem;
}

.waitlist-form {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
}

.notify-form {
  flex-direction: column;
}

.form-success {
  display: none;
}

.form-success.is-visible {
  display: block;
}

.waitlist-form input[type="email"] {
  flex: 1 1 240px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  text-align: left;
}

.field label {
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
}

.field input,
.field textarea,
.field select,
.waitlist-form input,
.notify-form input {
  width: 100%;
  padding: 0.95rem 1.15rem;
  border: 1px solid var(--border-strong);
  border-radius: 2px;
  background: var(--ivory);
  color: var(--black);
  outline: none;
  transition: border-color 0.25s var(--ease);
}

.section--dark .field input,
.section--dark .waitlist-form input {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.section--peach .waitlist-form input,
.section--warm .waitlist-form input {
  background: var(--ivory);
}

.field input:focus,
.field textarea:focus,
.waitlist-form input:focus,
.notify-form input:focus {
  border-color: var(--gold);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.8125rem;
  color: var(--muted-soft);
  margin: 0.5rem 0 0;
}

.form-success {
  display: none;
  padding: 1rem 1.25rem;
  background: rgba(196, 164, 132, 0.18);
  border: 1px solid rgba(196, 164, 132, 0.4);
  border-radius: 2px;
  font-size: 0.9375rem;
  color: var(--black);
  margin-top: 0.75rem;
}

.form-success.is-visible {
  display: block;
}

.section--dark .form-success {
  color: var(--white);
  background: rgba(197, 165, 114, 0.12);
}

/* —— Contact / care —— */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
}

.care-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.care-list li {
  padding: 1.2rem 1.35rem;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 2px;
}

.care-list strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.care-list span {
  font-size: 0.9rem;
  color: var(--muted);
}

/* —— Product detail —— */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem;
  align-items: center;
  padding: 4rem 0 5.5rem;
}

.product-detail-visual {
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 48%, rgba(196, 164, 132, 0.24), transparent 50%),
    linear-gradient(165deg, var(--ivory), var(--warm));
  border: 1px solid var(--border);
  border-radius: 2px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
}

.product-detail-visual .orbit {
  width: 42%;
  aspect-ratio: 1;
  border: 1px solid rgba(196, 164, 132, 0.5);
  border-radius: 50%;
  position: relative;
}

.product-detail-visual .orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--gold-soft), var(--gold-deep));
  box-shadow: 0 0 0 18px rgba(196, 164, 132, 0.12);
}

.product-detail-info .status {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.42rem 0.8rem;
  background: var(--blush);
  border: none;
  border-radius: 999px;
  color: var(--black);
  margin-bottom: 1.25rem;
}

.product-detail-info h1 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
}

.product-detail-info .price-note {
  font-size: 0.9375rem;
  color: var(--muted-soft);
  margin: 0.5rem 0 1.5rem;
}

.notify-box {
  margin-top: 2rem;
  padding: 1.65rem;
  background: var(--ivory);
  border: 1px solid var(--border);
  border-radius: 2px;
}

.notify-box h3 {
  font-size: 1.3rem;
  margin-bottom: 0.35rem;
}

.notify-box > p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0 0 1rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 1.5rem;
  transition: color 0.25s var(--ease);
}

.back-link:hover {
  color: var(--black);
}

/* —— Footer —— */
.site-footer {
  background: var(--near-black);
  color: rgba(255, 255, 255, 0.55);
  padding: 3.75rem 0 2rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.75rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand img {
  height: 22px;
  width: auto;
  margin-bottom: 0.85rem;
  opacity: 0.9;
}

.footer-brand p {
  margin: 0;
  max-width: 240px;
  font-size: 0.875rem;
  line-height: 1.6;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

.footer-nav h4 {
  font-family: var(--font-sans);
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 500;
  margin: 0 0 1rem;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-nav a {
  font-size: 0.875rem;
  transition: color 0.25s var(--ease);
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.8125rem;
}

/* —— Empty / missing product —— */
.empty-state {
  text-align: center;
  padding: 5rem 1.5rem;
}

.empty-state h1 {
  font-size: 2rem;
}

/* —— Responsive —— */
@media (max-width: 900px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem 1.25rem;
  }

  .story-layout,
  .product-detail,
  .split {
    grid-template-columns: 1fr;
  }

  .story-aside {
    position: static;
  }

  .story-panel {
    aspect-ratio: 16 / 9;
    min-height: 220px;
  }

  .hero {
    border-bottom-color: rgba(196, 164, 132, 0.22);
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 62px;
  }

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

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(245, 232, 220, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    gap: 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
  }

  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border);
  }

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

  .collection-card {
    min-height: 280px;
  }

  .logo-link img {
    height: 22px;
  }

  .waitlist-form {
    flex-direction: column;
  }

  .waitlist-form .btn {
    width: 100%;
  }

  .trust-strip .sep {
    display: none;
  }

  .trust-strip-inner {
    gap: 0.55rem 1.25rem;
  }

  .announce-bar {
    font-size: 0.68rem;
    padding: 0.55rem 1rem;
  }
}

@media (max-width: 520px) {
  .product-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.75rem 0;
  }

  .footer-top {
    flex-direction: column;
  }

  .hero {
    min-height: auto;
    padding: 4rem 1.25rem 3.5rem;
  }
}


@media (max-width: 720px) {
  body {
    background-attachment: scroll;
    background-position: center top;
  }
}
