/* House of Vestelle — "The Orangerie" brand tokens (locked 2026-06-15).
   Airy champagne daylight with a single deep-emerald jewel band. */
:root {
  --limewash-ivory: #faf6ee; /* page background */
  --champagne-plaster: #f2e9db; /* surfaces / cards */
  --bronze-ink: #241f19; /* primary text */
  --salon-emerald: #122b23; /* buttons / jewel accents */
  --antique-gold: #c5a059; /* rules, numerals, accents */
  --gold-from: #a98740;
  --gold-to: #e3c684;
  --poudre-blush: #e7cfc4; /* selections, hover washes */

  --font-display: 'Italiana', Georgia, serif;
  --font-body: 'EB Garamond', Georgia, serif;
  --font-accent: 'Marcellus', Georgia, serif;
}

* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
}
body {
  background: var(--limewash-ivory);
  color: var(--bronze-ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

.topbar {
  text-align: center;
  padding: 20px 16px 0;
}
.brand {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.08em;
  margin: 0;
}

.shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 4vh 20px 72px;
}

.eyebrow {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 11px;
  color: var(--antique-gold);
  margin: 0 0 16px;
}

.wordmark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(40px, 9vw, 76px);
  line-height: 1.05;
  margin: 0;
}

.tagline {
  font-style: italic;
  font-size: clamp(18px, 4vw, 24px);
}

/* ---- Quiz ---- */
.quiz-card {
  max-width: 620px;
  margin: 6vh auto 0;
  text-align: center;
}
.quiz-prompt {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 6vw, 44px);
  line-height: 1.1;
  margin: 0 0 32px;
}
.quiz-options {
  display: grid;
  gap: 14px;
}
.quiz-option {
  font-family: var(--font-accent);
  letter-spacing: 0.04em;
  font-size: 16px;
  padding: 18px 22px;
  color: var(--champagne-plaster);
  background: var(--salon-emerald);
  border: 1px solid var(--antique-gold);
  border-radius: 6px;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.quiz-option:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(18, 43, 35, 0.18);
}
.quiz-back {
  margin-top: 28px;
  background: none;
  border: none;
  color: var(--bronze-ink);
  font-family: var(--font-accent);
  letter-spacing: 0.06em;
  font-size: 13px;
  cursor: pointer;
  opacity: 0.7;
}
.quiz-back:hover {
  opacity: 1;
}
.quiz-notes {
  width: 100%;
  margin: 8px 0 18px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--bronze-ink);
  background: var(--champagne-plaster);
  border: 1px solid var(--antique-gold);
  border-radius: 6px;
  resize: vertical;
}
.quiz-notes:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--poudre-blush);
}

/* ---- Lookbook ---- */
.lookbook-head {
  text-align: center;
  margin-bottom: 8px;
}
.look {
  margin: 40px 0;
}
.look-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(22px, 4.5vw, 30px);
  border-bottom: 1px solid var(--antique-gold);
  padding-bottom: 10px;
  margin: 0 0 22px;
}
.look-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 18px;
}
.product-card {
  background: var(--champagne-plaster);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.product-img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}
.product-noimg {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #f7f0e2 0%, var(--champagne-plaster) 100%);
  border-bottom: 1px solid rgba(197, 160, 89, 0.35);
}
.noimg-mark {
  font-size: 26px;
  color: var(--antique-gold);
  opacity: 0.55;
}
.product-body {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.product-slot {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 10px;
  color: var(--antique-gold);
  margin: 0;
}
.product-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  margin: 0;
}
.product-price {
  margin: 0;
  font-size: 15px;
}
.product-rationale {
  margin: 0 0 10px;
  font-style: italic;
  font-size: 14px;
  opacity: 0.85;
}
.btn-shop {
  margin-top: auto;
  text-align: center;
  text-decoration: none;
  font-family: var(--font-accent);
  letter-spacing: 0.05em;
  font-size: 13px;
  padding: 11px 14px;
  color: var(--champagne-plaster);
  background: var(--salon-emerald);
  border: 1px solid var(--antique-gold);
  border-radius: 5px;
  transition: transform 0.18s ease;
}
.btn-shop:hover {
  transform: translateY(-2px);
}
.btn-cart {
  display: inline-block;
  margin-top: 18px;
  text-decoration: none;
  font-family: var(--font-accent);
  letter-spacing: 0.05em;
  font-size: 13px;
  padding: 12px 20px;
  color: var(--bronze-ink);
  border: 1px solid var(--antique-gold);
  border-radius: 5px;
}
.btn-cart:hover {
  background: var(--poudre-blush);
}
.disclosure {
  margin-top: 40px;
  text-align: center;
  font-size: 12px;
  opacity: 0.6;
}

/* ---- Partner attribution (quiz) ---- */
.partner-line {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 10px;
  color: var(--antique-gold);
  margin: 6px 0 0;
}

/* ---- Photographer sign-up (/join) ---- */
.join-card {
  text-align: left;
}
.join-card .quiz-prompt,
.join-card .eyebrow {
  text-align: center;
}
.join-card .tagline {
  text-align: center;
  font-size: clamp(16px, 3.5vw, 19px);
  margin-bottom: 34px;
}
.join-form {
  display: grid;
  gap: 18px;
}
.join-field {
  display: grid;
  gap: 6px;
}
.join-label {
  font-family: var(--font-accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  color: var(--antique-gold);
}
.join-input {
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--bronze-ink);
  background: var(--champagne-plaster);
  border: 1px solid var(--antique-gold);
  border-radius: 6px;
}
.join-input:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--poudre-blush);
}
.join-errors {
  margin: 0 0 18px;
  padding: 12px 16px;
  border: 1px solid #a4452e;
  border-radius: 6px;
  color: #a4452e;
  font-size: 14px;
}
.join-errors p {
  margin: 2px 0;
}
.join-hint {
  font-size: 14px;
  font-style: italic;
  opacity: 0.8;
  text-align: center;
}
.link-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin: 26px 0 10px;
  padding: 16px;
  background: var(--champagne-plaster);
  border: 1px solid var(--antique-gold);
  border-radius: 8px;
}
.link-text {
  font-size: 15px;
  word-break: break-all;
}
.btn-copy {
  font-family: var(--font-accent);
  letter-spacing: 0.05em;
  font-size: 13px;
  padding: 10px 18px;
  color: var(--champagne-plaster);
  background: var(--salon-emerald);
  border: 1px solid var(--antique-gold);
  border-radius: 5px;
  cursor: pointer;
}
.join-card .btn-cart {
  display: block;
  text-align: center;
  margin-top: 22px;
}
