/* Aroa — site-wide styles */
:root {
  --ivory: #FAF6ED;        /* main background — pale warm parchment */
  --sand: #EDE0C4;         /* soft feature box, used sparingly */
  --stone: #EDE0C4;
  --taupe: #8A7355;        /* supporting text on light — warm bronze */
  --umber: #2B2116;
  --ink: #2B2116;          /* headings + body — deep espresso */
  --charcoal: #3E3122;     /* warm dark-bronze, used sparingly (hover shadows) */
  --hairline: rgba(138, 115, 85, 0.35); /* fine dividers/frames — --taupe @ 35% */
  --faint: #8A7355;
  --deep-stone: #8A7355;   /* supporting text (mobile) */
  --navy: #3E3122;         /* primary buttons, dark boxes, footer — deep espresso-bronze */
  --light: #FBF6EC;        /* text on dark */
  --display: 'Cormorant Garamond', serif;
  --text: 'EB Garamond', serif;
}
* { box-sizing: border-box; margin: 0; }
html { background: var(--ivory); scroll-behavior: smooth; }
body { font-family: var(--text); color: var(--ink); -webkit-font-smoothing: antialiased; background: radial-gradient(ellipse 1400px 900px at 50% -10%, rgba(237,224,196,0.45), transparent 60%), var(--ivory); }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
a { color: inherit; text-decoration: none; }
a:not(.btn):active, .nav-toggle:active { opacity: 0.55; transform: scale(0.97); transition: opacity 0.1s ease, transform 0.1s ease; }
img { display: block; }
button { font-family: var(--text); cursor: pointer; }
.caps { text-transform: uppercase; letter-spacing: 0.22em; font-size: 16px; color: var(--taupe); }
.page { min-height: 100vh; display: flex; flex-direction: column; }
.page-body { flex: 1; }

/* ---- Nav ---- */
.nav { position: sticky; top: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 26px 88px; border-bottom: 1px solid var(--hairline); background: rgba(253, 251, 246, 0.94); backdrop-filter: blur(8px); }
.nav-brand { display: flex; flex-direction: row; align-items: center; gap: 0; }
.nav-brand img { height: 50px; width: auto; transform: translateZ(0); }
.nav-tagline { display: none; }
.nav-links { display: flex; align-items: center; gap: 48px; padding-top: 0; }
.nav-links a { position: relative; display: inline-flex; align-items: center; box-sizing: border-box; font-size: 17px; line-height: 1; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink); padding-bottom: 6px; transition: color 0.25s; }
.nav-links a::after { content: ''; position: absolute; left: 50%; right: 50%; bottom: 0; height: 1px; background: var(--ink); transition: left 0.3s ease, right 0.3s ease; }
.nav-links a:hover::after, .nav-links a.active::after { left: 0; right: 0; }
.nav-links a.nav-join::after { display: none; }
/* ---- Footer ---- */
.footer { background: #FDFBF6; border-top: 1px solid var(--hairline); padding: 60px 80px 44px; display: flex; flex-direction: column; align-items: center; gap: 36px; }
.footer img { height: 56px; opacity: 0.9; }
.footer-links { display: flex; gap: 48px; }
.footer-copy { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 13px; letter-spacing: 0.04em; color: var(--taupe); opacity: 0.8; }
.footer-links a { font-size: 16px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink); transition: color 0.25s; }
.footer-links a:hover { color: var(--taupe); }
.footer-links a.footer-join { color: var(--ink); }
.footer-fine { font-family: 'Jost', sans-serif; font-weight: 300; letter-spacing: 0.06em; font-size: 18px; color: var(--taupe); }

/* ---- Buttons & links ---- */
.btn { position: relative; display: inline-flex; align-items: center; justify-content: center; padding: 19px 40px; background: var(--navy); color: var(--light); border: 1px solid var(--navy); border-radius: 0; font-size: 15px; letter-spacing: 0.24em; text-transform: uppercase; overflow: hidden; z-index: 0; transition: color 0.35s ease; }
.btn::before { content: ''; position: absolute; inset: 0; background: var(--ivory); transform: scaleX(0); transform-origin: left; transition: transform 0.45s cubic-bezier(0.22,1,0.36,1); z-index: -1; }
.btn:hover::before, .btn:focus-visible::before { transform: scaleX(1); }
.btn:hover, .btn:focus-visible { color: var(--navy); }
.hero-cta { border-color: var(--ivory); }
.btn[disabled] { opacity: 0.4; pointer-events: none; }
.btn-ghost { background: transparent; color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--light); }
.textlink { font-size: 15px; letter-spacing: 0.22em; text-transform: uppercase; border-bottom: 1px solid var(--ink); padding-bottom: 5px; transition: opacity 0.25s; }
.textlink:hover { opacity: 0.6; }

/* ---- Forms ---- */
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: 14px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--taupe); }
.field input, .field textarea, .field select { font-family: var(--text); font-size: 19px; color: var(--ink); background: transparent; border: 1px solid var(--hairline); border-radius: 0; padding: 14px 16px; outline: none; transition: border-color 0.25s; border-radius: 0; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--navy); }
.field .err { font-size: 14px; font-style: italic; color: var(--navy); }

/* ---- Home ---- */
.home-story { display: block; padding: 0 110px; margin: 20px 0 40px; }
.home-story-media { background: var(--navy); border-radius: 0; min-height: 460px; overflow: hidden; }
.home-story-media img { display: block; width: 100%; height: 100%; object-fit: cover; border-radius: 0; }
.home-story-text { display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 16px; padding: 0; max-width: 980px; margin: 0 auto; text-align: center; }
.home-story-text p { font-size: 22px; line-height: 1.5; max-width: 64ch; margin: 0 auto; color: var(--ink); text-wrap: pretty; }
.home-story-text .intro-line { font-family: var(--text); font-size: 26px; letter-spacing: 0.05em; color: var(--umber); margin: 0; }
.home-story-text .lead { font-family: var(--display); font-size: 44px; font-style: italic; font-weight: 400; line-height: 1.18; color: var(--ink); margin: 8px 0 0; max-width: none; display: flex; align-items: center; gap: 28px; white-space: nowrap; }
.home-story-text .lead::before, .home-story-text .lead::after { content: ''; flex: 1; height: 1px; background: var(--hairline); }
.home-story-text .mark { font-family: var(--text); font-size: 26px; font-style: normal; font-weight: 500; color: var(--umber); line-height: 1.4; margin: 24px auto 4px; max-width: 64ch; text-align: center; }

/* ---- Product cards (home + shop) ---- */
.cards { display: grid; grid-template-columns: repeat(8, 1fr); gap: 52px 32px; max-width: 1200px; margin: 0 auto; width: 100%; }
.cards .card { grid-column: span 2; }
.cards .card:nth-child(5) { grid-column: 2 / span 2; }
.cards .card:nth-child(6) { grid-column: 4 / span 2; }
.cards .card:nth-child(7) { grid-column: 6 / span 2; }
.card { display: flex; flex-direction: column; gap: 16px; }
.card-img-frame { display: block; padding: 1px; background: var(--hairline); border: none; box-sizing: border-box; transition: box-shadow 0.3s ease; }
.card-img-mount { display: block; padding: 0; background: var(--ivory); box-sizing: border-box; }
.card-img { display: block; aspect-ratio: 1 / 1; overflow: hidden; background: var(--ivory); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--zoom-speed, 0.6s) cubic-bezier(0.22,1,0.36,1); }
.card:hover .card-img img { transform: scale(var(--card-zoom, 1.03)); }
.card:hover .card-img-frame { box-shadow: 0 18px 34px rgba(46,38,26,0.16); }
.card-cap { display: flex; flex-direction: column; gap: 6px; text-align: center; }
.card-title { display: flex; flex-direction: column; gap: 20px; }
.card-no { font-size: 15px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--taupe); margin-top: 10px; }
.card-nm { font-family: var(--display); font-size: 30px; line-height: 1; }
.card-wh { font-family: 'Jost', sans-serif; font-weight: 300; letter-spacing: 0.03em; font-size: 16px; color: var(--taupe); }
.card-pr { font-size: 17px; color: var(--faint); letter-spacing: 0.06em; }

/* ---- Shop ---- */
.shop-head { padding: 44px 80px 56px; text-align: center; display: flex; flex-direction: column; gap: 20px; align-items: center; }
.shop-head h1 { font-family: var(--display); font-weight: 400; font-size: 58px; }
.shop-head p { font-size: 20px; font-family: 'Jost', sans-serif; font-weight: 300; letter-spacing: 0.03em; color: var(--taupe); max-width: 44ch; }
.shop-grid { padding: 0 60px 110px; }

/* ---- Product page ---- */
.pdp {
  display: grid;
  grid-template-columns: minmax(0, 560px) 1fr;
  gap: 0 64px;
  padding: 64px 80px 40px;
  grid-template-areas:
    "photo name"
    "photo status"
    "photo waitlist"
    "meaning opts"
    "meaning details";
}
.pdp-photo { grid-area: photo; display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.pdp-thumbs { display: flex; gap: 12px; width: 78%; max-width: 500px; }
.pdp-thumb { flex: 1; aspect-ratio: 1/1; padding: 0; background: none; border: 1px solid var(--hairline); border-radius: 0; cursor: pointer; overflow: hidden; transition: border-color 0.2s ease; }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdp-thumb.active { border: 2px solid var(--taupe); }
.pdp-main-frame { width: 78%; max-width: 500px; padding: 1px; background: var(--hairline); }
.pdp-main { width: 100%; aspect-ratio: 1 / 1; overflow: hidden; background: var(--ivory); }
.pdp-main img { width: 100%; height: 100%; object-fit: cover; display: block; transform-origin: center 62%; transition: transform var(--zoom-speed, 0.6s) cubic-bezier(0.22,1,0.36,1); }
.pdp-main:hover img { transform: scale(var(--zoom, 1.6)); }
[data-piece="continuity"] .pdp-main:hover img { transform: scale(1.15); }
@media (prefers-reduced-motion: reduce) { .pdp-main img { transition: none; } .pdp-main:hover img { transform: none; } }
.pdp-name-block { grid-area: name; }
.pdp-no { font-size: 15px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--faint); }
.pdp-name { font-family: var(--display); font-weight: 400; font-size: 64px; line-height: 1; margin-top: 16px; }
.pdp-three { margin-top: 30px; display: flex; flex-direction: column; gap: 6px; }
.pdp-three span { font-family: var(--display); font-style: italic; font-size: 30px; line-height: 1.4; color: var(--umber); }
.pdp-grounding { margin-top: 26px; font-size: 22px; line-height: 1.7; color: var(--ink); max-width: 46ch; text-wrap: pretty; }
.pdp-status { grid-area: status; margin-top: 34px; font-family: 'Jost', sans-serif; font-weight: 300; font-size: 17px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe); }
.pdp-waitlist-block { grid-area: waitlist; margin-top: 22px; display: flex; flex-direction: column; align-items: flex-start; gap: 12px; max-width: 420px; }
.pdp-waitlist { display: inline-block; text-decoration: none; text-align: center; letter-spacing: 0.1em; padding: 17px 28px; font-size: 14px; }
.pdp-waitlist-note { margin-top: 12px; font-family: 'Jost', sans-serif; font-weight: 300; font-size: 16px; letter-spacing: 0.02em; color: var(--taupe); }
.jost-note { font-family: 'Jost', sans-serif; font-weight: 300; letter-spacing: 0.04em; font-style: normal; font-size: 15px; color: var(--faint); }
.pdp-opts { grid-area: opts; margin-top: 32px; display: flex; flex-direction: column; gap: 26px; width: 100%; max-width: 420px; }
.opt-label { font-size: 14px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); margin-bottom: 12px; }
.pdp-meaning { grid-area: meaning; margin-top: -8px; max-width: 500px; text-align: left; }
.pdp-meaning h2 { margin-top: 10px; font-family: var(--display); font-weight: 400; font-size: 30px; }
.pdp-meaning p { margin-top: 16px; font-size: 19px; line-height: 1.7; color: var(--ink); text-wrap: pretty; }
.pdp-details-inline { grid-area: details; list-style: none; padding: 0; margin: 34px 0 0; display: flex; flex-direction: column; gap: 8px; max-width: 420px; }
.pdp-details-inline li { font-size: 16px; line-height: 1.6; color: var(--taupe); }
.metal-opts { display: flex; gap: 10px; flex-wrap: wrap; }
.metal-opt { flex: 1; min-width: 110px; padding: 14px 12px; background: none; border: 1px solid var(--hairline); border-radius: 0; font-family: var(--text); font-size: 16px; line-height: 1.3; color: var(--ink); cursor: pointer; text-align: center; transition: border-color 0.2s ease, background-color 0.2s ease; }
.metal-opt.active { border: 1px solid var(--ink); background: var(--ivory); }
.length-opts { display: flex; gap: 10px; }
.length-opt { flex: 1; padding: 12px; background: none; border: 1px solid var(--hairline); border-radius: 0; font-family: var(--text); font-size: 16px; color: var(--ink); cursor: pointer; transition: border-color 0.2s ease; }
.length-opt.active { border: 1px solid var(--ink); background: var(--ivory); }
.eng-field, .eng-sides > div { margin-top: 10px; }
.eng-sides { display: flex; flex-direction: column; gap: 12px; margin-top: 10px; }
.eng-side-label { display: block; font-size: 13px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--taupe); margin-bottom: 6px; }
.eng-input { width: 100%; max-width: 320px; padding: 12px 14px; border: 1px solid var(--hairline); border-radius: 0; background: var(--ivory); font-family: 'Jost', sans-serif; font-weight: 300; font-size: 16px; color: var(--ink); }
.eng-input:focus { outline: none; border-color: var(--ink); }
.eng-count { display: block; margin-top: 4px; font-family: 'Jost', sans-serif; font-size: 13px; letter-spacing: 0.03em; color: var(--faint); }
.eng-finish-label { margin-top: 18px; }
.finish-opts { display: flex; gap: 10px; margin-top: 6px; }
.finish-opt { flex: 1; padding: 12px; background: none; border: 1px solid var(--hairline); border-radius: 0; font-family: var(--text); font-size: 15px; color: var(--ink); cursor: pointer; transition: border-color 0.2s ease; }
.finish-opt.active { border: 1px solid var(--ink); background: var(--ivory); }
.pdp-next { background: var(--navy); padding: 50px 60px; display: flex; justify-content: space-between; align-items: center; }
.pdp-next a { font-family: var(--display); font-style: italic; font-size: 24px; color: var(--light); transition: opacity 0.25s; }
.pdp-next a:hover { opacity: 0.75; }
.pdp-next-all { color: var(--sand) !important; display: inline-flex; align-items: center; justify-content: center; border: 1px solid currentColor; border-radius: 0; padding: 10px 16px; box-sizing: border-box; }
.pdp-next-all:hover, .pdp-next-all:focus-visible { color: var(--light) !important; opacity: 1; }

/* ---- Info pages ---- */
.info { padding: 44px 80px 150px; max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 34px; }
.info h1 { font-family: var(--display); font-weight: 400; font-size: 58px; text-align: center; }
.info .intro { font-family: var(--display); font-style: italic; font-size: 30px; color: var(--umber); text-align: center; line-height: 1.4; }
.info p { font-size: 22px; line-height: 1.75; color: var(--ink); text-wrap: pretty; }
.info-img image-slot { display: block; width: 100%; height: 480px; }

/* ---- Home hero: full-bleed photo, text above/below pendant ---- */
.home-hero { position: relative; overflow: hidden; aspect-ratio: 16 / 9; display: flex; flex-direction: column; justify-content: space-between; }
.home-hero-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; z-index: 0; }
.home-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(30,24,16,0.55) 0%, rgba(30,24,16,0) 26%, rgba(30,24,16,0) 68%, rgba(30,24,16,0.6) 100%); z-index: 0; }
.home-hero-top { position: relative; z-index: 2; padding: 52px 90px 0; }
.home-hero-top .home-hero-sub { margin-top: 22px; }
.home-hero-bottom { position: relative; z-index: 2; padding: 0 90px 48px; display: flex; flex-direction: column; align-items: center; gap: 22px; }
.home-hero-label { color: var(--ivory); font-size: 15px; letter-spacing: 0.12em; font-weight: 500; text-shadow: 0 2px 10px rgba(20,15,8,0.5); }
.home-hero-heading { margin-top: 14px; font-family: var(--display); font-weight: 400; font-style: normal; letter-spacing: normal; font-size: 52px; line-height: 1.15; color: var(--ivory); text-shadow: 0 2px 14px rgba(20,15,8,0.5); }
.home-hero-sub { font-family: 'Jost', sans-serif; font-style: normal; font-weight: 300; font-size: 21px; line-height: 1.6; color: var(--ivory); margin: 0 auto; max-width: 440px; padding: 0 20px; text-align: center; text-shadow: 0 2px 10px rgba(20,15,8,0.5); }
.home-hero-sub .hero-line { display: block; }

/* ---- Hero CTA ---- */
.hero-cta { margin-top: 0; white-space: nowrap; letter-spacing: 0.06em; }

/* ---- Nav: Join treatment ---- */
.nav-links a.nav-join { position: relative; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; box-sizing: border-box; color: var(--light); background: var(--navy); border: 1px solid var(--navy); border-radius: 0; padding: 10px 18px; margin: 0; font-weight: 400; line-height: 1; letter-spacing: 0.18em; flex-shrink: 0; white-space: nowrap; transition: color 0.22s ease; z-index: 0; }
.nav-links a.nav-join::before { content: ''; position: absolute; inset: 0; background: var(--ivory); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; z-index: -1; }
.nav-links a.nav-join:hover::before, .nav-links a.nav-join:focus-visible::before { transform: scaleX(1); }
.nav-links a.nav-join:hover, .nav-links a.nav-join:focus-visible, .nav-links a.nav-join.active { color: var(--navy); }

/* ---- Homepage: Stay close + About, paired ---- */
.home-pair-wrap { padding: 60px 110px 60px; }
.home-pair { max-width: 940px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; }
.home-pair-box { background: transparent; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); padding: 52px 44px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 18px; text-align: center; }
.home-pair-box p { font-size: 20px; line-height: 1.65; color: var(--ink); text-wrap: pretty; }
.home-pair-quote { font-family: var(--display); font-style: italic; font-size: 30px; line-height: 1.3; }
.home-pair-box .btn { margin-top: auto; padding: 17px 22px; letter-spacing: 0.14em; white-space: nowrap; }

/* ---- Stay close to Aroa (Shop page) ---- */
.stay-wrap { padding: 30px 80px 70px; }
.stay { max-width: 640px; margin: 0 auto; background: transparent; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); padding: 52px 40px; text-align: center; }
.stay-inner { max-width: 560px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.stay h2 { font-family: var(--display); font-weight: 400; font-style: italic; font-size: 38px; line-height: 1.2; color: var(--ink); }
.stay p { font-size: 20px; line-height: 1.65; color: var(--ink); text-wrap: pretty; }
.stay .btn { margin-top: 6px; padding: 17px 22px; letter-spacing: 0.14em; white-space: nowrap; }

/* ---- The Seven, in gold ---- */
.gold { padding: 64px 80px; border-top: 1px solid var(--hairline); }
.gold-inner { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 26px; text-align: center; }
.gold-head { color: var(--taupe); }
.gold-copy { font-size: 21px; line-height: 1.75; color: var(--ink); max-width: 60ch; text-wrap: pretty; }
.gold-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; width: 100%; max-width: 620px; margin-top: 14px; }
.gold-card { background: none; border: none; padding: 0; cursor: pointer; display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; font: inherit; }
.gold-card-img { display: block; width: 100%; aspect-ratio: 1 / 1; overflow: hidden; background: var(--ivory); border: 1px solid var(--hairline); }
.gold-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.gold-card:hover .gold-card-img img { transform: scale(1.05); }
.gold-card-nm { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 15px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--umber); }
.gold-card-note { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 13px; line-height: 1.5; letter-spacing: 0.02em; color: var(--taupe); max-width: 20ch; }
.gold-open { margin-top: 16px; }
.gold-form { width: 100%; max-width: 560px; margin-top: 26px; text-align: left; display: flex; flex-direction: column; gap: 22px; background: var(--sand); padding: 34px 32px; }
.gold-form-intro { font-size: 19px; line-height: 1.7; color: var(--ink); text-align: center; text-wrap: pretty; }
.gold-form form { display: flex; flex-direction: column; gap: 22px; }
.gold-form input[readonly] { background: var(--sand); color: var(--umber); cursor: default; }
.gold-sent { max-width: 560px; margin-top: 26px; font-family: var(--display); font-style: italic; font-size: 24px; line-height: 1.55; color: var(--umber); text-align: center; }

/* ---- About page ---- */
.about section { width: 100%; }
.about-trio { max-width: 1180px; margin: 0 auto; padding: 96px 40px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; align-items: stretch; }
.about-box { background: transparent; border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); padding: 52px 36px; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; gap: 16px; text-align: center; }
.about-box + .about-box { border-left: 1px solid var(--hairline); }
.about-box h1, .about-box p { font-family: var(--text); font-weight: 400; font-style: normal; font-size: 19px; line-height: 1.65; color: var(--ink); text-wrap: pretty; }
.about-box h1, .about .about-final { font-family: var(--display); font-style: italic; font-size: 30px; line-height: 1.3; }
.about-box .about-cta { margin-top: 6px; padding-top: 0; }
.about-box .about-cta .btn { white-space: nowrap; }
.about-label { display: block; font-family: 'Jost', sans-serif; font-weight: 400; font-size: 14px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--taupe); }




/* FAQ */
.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-q { width: 100%; background: none; border: none; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 4px; font-family: var(--display); font-size: 24px; color: var(--ink); }
.faq-q .ind { font-family: var(--text); font-size: 22px; color: var(--taupe); transition: transform 0.3s; }
.faq-q.open .ind { transform: rotate(45deg); }
.faq-a { overflow: hidden; transition: max-height 0.35s ease; max-height: 0; }
.faq-a p { padding: 0 4px 28px; font-size: 21px; line-height: 1.7; color: var(--umber); max-width: 60ch; }

/* ---- Cart ---- */
.cart { padding: 90px 80px 120px; max-width: 880px; margin: 0 auto; width: 100%; display: flex; flex-direction: column; gap: 0; }
.cart h1 { font-family: var(--display); font-weight: 400; font-size: 52px; text-align: center; margin-bottom: 60px; }
.cart-row { display: grid; grid-template-columns: 110px 1fr auto auto; gap: 30px; align-items: center; padding: 28px 0; border-top: 1px solid var(--hairline); }
.cart-row:last-of-type { border-bottom: 1px solid var(--hairline); }
.cart-row img { width: 110px; height: 110px; object-fit: cover; }
.cart-meta { display: flex; flex-direction: column; gap: 7px; }
.cart-nm { font-family: var(--display); font-size: 28px; line-height: 1; }
.cart-var { font-size: 18px; color: var(--taupe); font-style: italic; }
.cart-remove { background: none; border: none; padding: 0; font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--faint); border-bottom: 1px solid transparent; align-self: flex-start; }
.cart-remove:hover { color: var(--ink); border-bottom-color: var(--ink); }
.qty { display: flex; align-items: center; border: 1px solid var(--hairline); }
.qty button { background: none; border: none; width: 36px; height: 40px; font-size: 18px; color: var(--umber); }
.qty span { width: 34px; text-align: center; font-size: 16px; }
.cart-price { font-family: var(--display); font-size: 22px; min-width: 90px; text-align: right; }
.cart-total { display: flex; justify-content: space-between; align-items: baseline; padding: 34px 0 10px; }
.cart-total .t-label { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--taupe); }
.cart-total .t-amt { font-family: var(--display); font-size: 34px; }
.cart-note { font-style: italic; font-size: 15px; color: var(--faint); text-align: right; }
.cart-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 44px; }
.cart-empty { text-align: center; display: flex; flex-direction: column; gap: 30px; align-items: center; padding: 40px 0 60px; }
.cart-empty p { font-family: var(--display); font-style: italic; font-size: 28px; color: var(--umber); }

/* ---- Checkout ---- */
.checkout { padding: 90px 60px 120px; max-width: 1060px; margin: 0 auto; width: 100%; }
.checkout h1 { font-family: var(--display); font-weight: 400; font-size: 52px; text-align: center; margin-bottom: 60px; }
.co-grid { display: grid; grid-template-columns: 1fr 380px; gap: 70px; align-items: start; }
.co-form { display: flex; flex-direction: column; gap: 44px; }
.co-section { display: flex; flex-direction: column; gap: 18px; }
.co-section h2 { font-family: var(--display); font-weight: 400; font-size: 28px; padding-bottom: 14px; border-bottom: 1px solid var(--hairline); }
.co-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.co-pay { display: flex; flex-direction: column; gap: 10px; }
.co-pay-opt { display: flex; align-items: center; gap: 14px; border: 1px solid var(--hairline); border-radius: 0; padding: 17px 20px; cursor: pointer; transition: border-color 0.25s; font-size: 19px; color: var(--umber); }
.co-pay-opt:hover { border-color: var(--taupe); }
.co-pay-opt.sel { border-color: var(--ink); color: var(--ink); }
.co-pay-opt .dot { width: 14px; height: 14px; border-radius: 50%; border: 1px solid var(--taupe); display: inline-block; }
.co-pay-opt.sel .dot { background: var(--ink); border-color: var(--ink); }
.co-summary { border: 1px solid var(--hairline); padding: 34px 30px; display: flex; flex-direction: column; gap: 18px; position: sticky; top: 30px; }
.co-summary h2 { font-family: var(--display); font-weight: 400; font-size: 26px; padding-bottom: 14px; border-bottom: 1px solid var(--hairline); }
.co-line { display: flex; justify-content: space-between; gap: 16px; font-size: 19px; color: var(--umber); }
.co-line .nm { max-width: 24ch; }
.co-line.total { border-top: 1px solid var(--hairline); padding-top: 16px; font-family: var(--display); font-size: 22px; color: var(--ink); }
.co-fine { font-style: italic; font-size: 14px; color: var(--faint); }

/* ---- Confirmation ---- */
.confirm { padding: 140px 80px 160px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 30px; }
.confirm h1 { font-family: var(--display); font-weight: 400; font-size: 52px; }
.confirm p { font-size: 22px; line-height: 1.7; color: var(--umber); max-width: 46ch; }
.confirm .ord { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--faint); }

/* ---- Contact ---- */
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.contact-sent { font-family: var(--display); font-style: italic; font-size: 26px; color: var(--umber); text-align: center; padding: 30px 0; }

/* ---- Catalogue state (pre-launch) ---- */
.opt-static { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 16px; letter-spacing: 0.03em; line-height: 1.6; color: var(--umber); margin-top: 4px; }
.stone-list { list-style: none; padding: 0; margin: 6px 0 12px; display: flex; flex-direction: column; gap: 14px; }
.stone-list li { display: flex; align-items: center; gap: 14px; padding: 10px 12px; border: 1px solid transparent; cursor: pointer; transition: border-color 0.2s ease; }
.stone-list li.active { border-color: var(--ink); background: var(--ivory); }
.stone-dot { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; position: relative; box-shadow: 0 2px 5px rgba(44,37,32,0.28), inset -3px -3px 6px rgba(0,0,0,0.28), inset 2px 3px 5px rgba(255,255,255,0.55); border: 1px solid rgba(44,37,32,0.18); }
.stone-dot::after { content: ''; position: absolute; top: 14%; left: 20%; width: 34%; height: 20%; background: rgba(255,255,255,0.9); border-radius: 50%; transform: rotate(-25deg); filter: blur(0.4px); }
.stone-text { display: flex; flex-direction: column; gap: 2px; }
.stone-nm { font-size: 18px; color: var(--umber); }
.stone-mn { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 15px; letter-spacing: 0.03em; color: var(--taupe); }
.pdp-add { text-decoration: none; }
.pdp-next-all { font-family: var(--text); font-style: normal; font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.opt-tag { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 12px; letter-spacing: 0.06em; text-transform: none; color: var(--faint); margin-left: 8px; }
.form-consent { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 15px; line-height: 1.6; letter-spacing: 0.02em; color: var(--taupe); }
.form-alt { font-family: 'Jost', sans-serif; font-weight: 300; font-size: 16px; letter-spacing: 0.02em; color: var(--taupe); text-align: center; }
.form-alt a, .err a { border-bottom: 1px solid currentColor; }
.contact-send { align-self: center; }

/* ---- Mobile menu button (hidden on desktop) ---- */
.nav-toggle { display: none; background: none; border: none; border-radius: 0; padding: 10px; width: 46px; height: 46px; flex-direction: column; justify-content: center; gap: 6px; }
.nav-toggle span { display: block; height: 1px; width: 24px; background: var(--ink); transition: transform 0.28s ease, opacity 0.2s ease; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ================= RESPONSIVE ================= */
html, body { max-width: 100%; overflow-x: hidden; }
img, image-slot { max-width: 100%; }

/* --- Laptop --- */
@media (max-width: 1200px) {
  .nav { padding: 24px 44px; }
  .nav-links { gap: 34px; }
  .home-hero-top { padding: 40px 44px 0; }
  .home-hero-bottom { padding: 0 44px 40px; }
  .home-hero-heading { font-size: 42px; }
  .home-story { padding: 0 44px; margin: 0 0 90px; }
  .home-story-media { min-height: 380px; }
  .shop-head { padding: 38px 44px 100px; }
  .shop-grid { padding: 0 44px 90px; }
  .pdp { padding: 56px 44px 32px; gap: 0 44px; }
  .footer { padding: 48px 44px; }
}

/* --- Tablet --- */
@media (max-width: 900px) {
  .nav { padding: 18px 28px; position: sticky; flex-wrap: wrap; border-bottom: none; }
  .nav-brand img { height: 40px; }
  .nav-toggle { display: flex; }
  .nav-links { display: none; }
  .nav-links.open { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0; width: 100%; order: 3; padding-top: 14px; margin-top: 16px; border-top: 1px solid var(--hairline); }
  .nav-links.open a { font-size: 15px; letter-spacing: 0.2em; padding: 15px 2px; border-bottom: none; }
  .nav-links.open a::after { display: none; }
  .nav-links.open a.active { border-bottom: none; text-decoration: underline; text-underline-offset: 7px; }
  .nav-links.open a.nav-join { align-self: center; margin-top: 18px; width: 100%; padding: 16px 22px; background: var(--navy); color: var(--light); border: 1px solid var(--navy); border-radius: 0; text-decoration: none; }
  .nav-links.open a.nav-join:hover, .nav-links.open a.nav-join.active { text-decoration: none; color: var(--navy); }

  .home-hero { aspect-ratio: unset; height: 480px; }
  .home-hero-photo { object-position: center 8%; }
  .home-hero::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 95% 60% at 50% 100%, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.28) 45%, rgba(0,0,0,0) 78%); z-index: 1; }
  .home-hero-sub .hero-line:not(:last-child) { margin-bottom: 8px; }
  .home-hero-top { padding: 28px 20px 0; text-align: center; align-items: center; }
  .home-hero-bottom { padding: 0 20px 32px; text-align: center; align-items: center; gap: 16px; }
  .home-hero-heading { font-size: clamp(24px, 7.2vw, 32px); }
  .home-hero-sub { font-size: 20px; max-width: 380px; line-height: 1.75; }
  .hero-cta { width: auto; max-width: calc(100% - 40px); font-size: 13px; letter-spacing: 0.08em; padding: 15px 28px; min-height: 48px; background: var(--navy); color: var(--ivory); border-color: var(--navy); }
  .hero-cta::before { background: var(--ivory); }
  .hero-cta:hover, .hero-cta:focus-visible { color: var(--navy); }

  .about-trio { grid-template-columns: 1fr; padding: 44px 26px; gap: 0; }
  .about-box { padding: 38px 30px; border-left: none; border-top: 1px solid var(--hairline); }
  .about-box:first-child { border-top: none; }
  .about-box + .about-box { border-left: none; }

  .home-story { padding: 0 26px; margin: 0 0 70px; }
  .home-story-media { min-height: 320px; }
  .home-story-text { padding: 0; gap: 20px; }
  .home-story-text p { font-size: 20px; }
  .home-story-text .intro-line { font-size: 17px; }
  .home-story-text .lead { font-size: 34px; }
  .home-story-text .mark { font-size: 20px; }

  .shop-head { padding: 30px 26px 74px; gap: 14px; }
  .shop-head h1 { font-size: 38px; }
  .shop-head p { font-size: 18px; }
  .shop-grid { padding: 0 26px 74px; }

  .cards { grid-template-columns: repeat(2, 1fr); gap: 40px 22px; }
  .cards .card,
  .cards .card:nth-child(5),
  .cards .card:nth-child(6),
  .cards .card:nth-child(7) { grid-column: 1 / -1; max-width: 260px; margin: 0 auto; }
  .card-nm { font-size: 25px; }
  .card-wh { font-size: 14px; }
  .card-pr { font-size: 15px; }

  .pdp { grid-template-columns: 1fr; gap: 0; padding: 44px 26px 32px; grid-template-areas: "photo" "name" "status" "waitlist" "opts" "meaning" "details"; }
  .pdp-main-frame { width: 100%; max-width: 420px; }
  .pdp-photo { align-items: center; }
  .pdp-thumbs { width: 100%; max-width: 420px; }
  .pdp-name-block, .pdp-three, .pdp-grounding, .pdp-status { text-align: center; margin-left: auto; margin-right: auto; }
  .pdp-name { font-size: 44px; }
  .pdp-three span { font-size: 25px; }
  .pdp-grounding { font-size: 20px; margin-top: 26px; }
  .pdp-status { margin-top: 26px; font-size: 15px; }
  .pdp-opts { max-width: 100%; }
  .pdp-waitlist { max-width: 100%; }
  .pdp-meaning { width: 100%; max-width: 100%; margin-top: 44px; }
  .hero-cta { margin-top: 0; white-space: nowrap; max-width: 100%; text-align: center; }
  .stay-wrap { padding: 24px 26px 44px; }
  .stay { padding: 38px 30px; }
  .home-pair-wrap { padding: 26px; }
  .home-pair { grid-template-columns: 1fr; gap: 0; }
  .home-pair-box { padding: 38px 30px; }
  .stay h2 { font-size: 31px; }
  .stay p { font-size: 19px; }
  .gold { padding: 48px 26px; }
  .gold-inner { gap: 22px; }
  .gold-copy { font-size: 19px; }
  .gold-cards { gap: 18px; max-width: 100%; }
  .gold-card-nm { font-size: 14px; letter-spacing: 0.1em; }
  .gold-card-note { font-size: 13px; }
  .gold-form-intro { font-size: 18px; }
  .gold-sent { font-size: 21px; }
  .pdp-meaning h2 { font-size: 26px; }
  .pdp-meaning p { font-size: 18px; }
  .pdp-next { padding: 36px 26px; gap: 16px; }
  .pdp-next a { font-size: 18px; }

  .info { padding: 30px 26px 110px; gap: 26px; }
  .about-name-word { font-size: 40px; }
  .info h1 { font-size: 38px; }
  .info .intro { font-size: 23px; }
  .info p { font-size: 19px; }
  .info-img image-slot { height: 320px; }
  .faq-q { font-size: 20px; padding: 22px 2px; }
  .faq-a p { font-size: 18px; }

  .footer { padding: 64px 26px 56px; gap: 28px; }
  .footer img { height: 42px; }
  .footer-links { gap: 26px; flex-wrap: wrap; justify-content: center; }
  .footer-links a { font-size: 13px; }
  .footer-fine { font-size: 15px; text-align: center; }

  .btn { padding: 17px 30px; font-size: 13px; letter-spacing: 0.2em; }
  .home-pair-box .btn { width: 100%; max-width: 280px; }
  .caps { font-size: 13px; }
  .hero-cta { font-size: 13px; letter-spacing: 0.08em; padding: 15px 28px; }
}

@media (min-width: 901px) and (max-width: 1200px) {
  .home-hero-sub { max-width: 320px; font-size: 19px; }
  .home-hero-top, .home-hero-bottom { padding-left: 6%; padding-right: 6%; }
}
@media (min-width: 901px) {
  .home-hero { aspect-ratio: unset; height: clamp(540px, 74vh, 660px); justify-content: flex-start; }
  .home-hero-photo { object-position: 65% 50%; }
  .home-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.15) 42%, rgba(0,0,0,0) 58%); z-index: 1; }
  .home-hero-top { padding: 56px 7% 0; align-items: flex-start; text-align: left; }
  .home-hero-top .home-hero-heading { text-shadow: 0 1px 3px rgba(0,0,0,0.15); }
  .home-hero-top .home-hero-sub { margin-top: 38px; }
  .home-hero-bottom { padding: 32px 7% 48px; align-items: flex-start; text-align: left; gap: 20px; }
  .home-hero-sub { font-size: 25px; line-height: 1.55; max-width: 420px; width: 100%; margin: 0; padding: 0; text-align: left; text-shadow: 0 1px 3px rgba(0,0,0,0.15); }
  .hero-cta { margin-top: 0; }
}

/* --- Phone --- */
@media (max-width: 560px) {
  .nav { padding: 14px 18px; }
  .footer { border-top: none; }
  .nav-brand img { height: 34px; }
  .home-hero { height: 480px; min-height: 0; justify-content: flex-start; }
  .home-hero-photo { object-position: center 8%; }
  .home-hero-top { padding: 22px 18px 0; }
  .home-hero-top .home-hero-sub { margin-top: 16px; }
  .home-hero-bottom { position: absolute; left: 0; right: 0; top: 300px; padding: 0 18px; }
  .home-hero-heading { font-size: clamp(22px, 7vw, 28px); }
  .home-hero-label { font-size: 13px; color: var(--ivory); }
  .home-hero-sub { font-size: 19px; max-width: 320px; line-height: 1.7; }
  .home-hero-bottom { gap: 20px; }
  .hero-cta { font-size: 13px; padding: 15px 22px; }
  .home-hero::after { background: linear-gradient(to bottom, rgba(30,24,16,0.5) 0%, rgba(30,24,16,0.05) 40%, rgba(30,24,16,0.18) 62%, rgba(30,24,16,0.78) 100%); }
  .home-hero::before { display: none; }
  .home-story { padding: 0 16px; margin: 0 0 56px; }
  .home-story-media { min-height: 240px; }
  .home-story-text { padding-top: 28px; }
  .home-story-text .intro-line { margin-bottom: 4px; }
  .home-story-text p { font-size: 18px; }
  .home-story-text .lead { font-size: 26px; white-space: normal; justify-content: center; margin-top: 24px; }
  .home-story-text .lead::before, .home-story-text .lead::after { display: none; }
  .home-story-text .mark { font-size: 18px; }
  .shop-head { padding: 24px 18px 60px; }
  .shop-grid { padding: 0 18px 60px; }
  .cards { gap: 32px 16px; }
  .card-nm { font-size: 22px; }
  .pdp-main-frame { width: 100%; max-width: 100%; }
  .pdp-name { font-size: 37px; }
  .pdp-three span { font-size: 21px; }
  .pdp-grounding { font-size: 18px; }
  .pdp-meaning { padding: 0; margin-top: 44px; }
  .pdp-waitlist-note { font-size: 15px; color: var(--deep-stone); }
  .stay-wrap { padding: 20px 16px 32px; }
  .stay { padding: 32px 24px; }
  .home-pair-wrap { padding: 16px; }
  .home-pair-box { padding: 32px 24px; }
  .stay h2 { font-size: 27px; }
  .stay p { font-size: 18px; }
  .gold { padding: 36px 18px; }
  .gold-head { color: var(--deep-stone); }
  .gold-copy { font-size: 18px; }
  .gold-cards { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .gold-card { gap: 9px; }
  .gold-card-nm { font-size: 13px; letter-spacing: 0.06em; line-height: 1.35; color: var(--deep-stone); }
  .gold-card-note { font-size: 12.5px; line-height: 1.45; color: var(--deep-stone); max-width: none; }
  .gold-open { width: 100%; }
  .gold-form-intro { font-size: 17px; color: var(--deep-stone); }
  .gold-sent { font-size: 19px; }
  .pdp-next { flex-direction: column; align-items: center; text-align: center; padding: 34px 22px; gap: 16px; }
  .info { padding: 24px 18px 86px; }
  .about-band { min-height: 240px; }
  .info h1 { font-size: 32px; }
  .info .intro { font-size: 20px; }
  .info p { font-size: 18px; }
  .field input, .field textarea, .field select { font-size: 17px; }
  .contact-send { align-self: stretch; }
  .footer { padding: 36px 18px; }
}

/* ================= PHONE READABILITY (<=560px) =================
   Small functional text lifted to 15-16px, --taupe/--faint replaced with
   --deep-stone on light grounds, and light Jost weights raised to 400.
   Mobile only. Large headings and --ink/--umber text are left untouched. */
@media (max-width: 560px) {
  .caps { font-size: 15px; color: var(--deep-stone); }
  .home-hero-label { color: var(--ivory); opacity: 1; }
  .home-seven { font-size: 15px; color: var(--deep-stone); }
  .home-recognise { font-weight: 400; font-size: 17px; }

  .card-wh { font-size: 15px; font-weight: 400; color: var(--deep-stone); }
  .card-pr { font-size: 16px; color: var(--deep-stone); }

  .shop-head p { font-weight: 400; }

  .pdp-no { font-size: 15px; color: var(--deep-stone); }
  .pdp-status { font-size: 16px; font-weight: 400; color: var(--deep-stone); }
  .pdp-details-inline li { font-size: 16px; }
  .opt-label { font-size: 15px; color: var(--deep-stone); }
  .opt-static { font-size: 16px; font-weight: 400; }
  .stone-nm { font-size: 17px; }
  .stone-mn { font-size: 15px; font-weight: 400; color: var(--deep-stone); }
  .jost-note { font-weight: 400; font-size: 16px; }
  .pdp-added { font-size: 16px; color: var(--umber); }
  .pdp-next-all { font-size: 15px; }
  .faq-q .ind { color: var(--deep-stone); }

  .btn { font-size: 15px; }
  .textlink { font-size: 15px; }

  .field label { font-size: 15px; color: var(--deep-stone); }
  .field .err { font-size: 15px; }
  .opt-tag { font-size: 14px; font-weight: 400; color: var(--deep-stone); }
  .form-consent { font-size: 16px; font-weight: 400; color: var(--deep-stone); }
  .form-alt { font-size: 16px; font-weight: 400; color: var(--deep-stone); }

  .footer-links a { font-size: 15px; color: var(--ink); }
  .footer-fine { font-size: 16px; font-weight: 400; color: var(--taupe); }
}

/* ---- Accessible focus ring (keyboard nav) ---- */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}
.nav-links a.nav-join:focus-visible, .pdp-next-all:focus-visible { outline-offset: 3px; }
.skip-link { position: absolute; left: -9999px; top: 0; background: var(--navy); color: var(--light); padding: 12px 20px; font-family: 'Jost', sans-serif; font-size: 14px; letter-spacing: 0.08em; z-index: 1000; }
.skip-link:focus { left: 12px; top: 12px; }
