:root {
  color-scheme: light;
  --plum: #34283b;
  --plum-deep: #281d2f;
  --plum-panel: #412d45;
  --rose: #7b405e;
  --rose-hover: #68344f;
  --paper: #fffbfc;
  --blush: #f5e9ee;
  --card: #fef8fa;
  --line: #decbd4;
  --muted: #665766;
  --text: #34283b;
  --light-text: #fff7fa;
  --light-muted: #e9dce6;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
}
a { color: inherit; }
a:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 4px;
}
img { display: block; max-width: 100%; }

.announcement {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 7px 18px;
  background: var(--plum-deep);
  color: var(--light-text);
  text-align: center;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.announcement span { color: #efc9dc; }
.site-header {
  min-height: 92px;
  padding: 15px clamp(22px, 5vw, 86px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--paper);
}
.wordmark {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Playfair Display", serif;
  font-size: 1.32rem;
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -.025em;
}
.wordmark em { font-style: italic; color: var(--rose); }
.wordmark small {
  font-family: "DM Sans", sans-serif;
  font-size: .75rem;
  letter-spacing: .35em;
  font-weight: 700;
}
.wordmark-mark {
  font-family: serif;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  color: var(--rose);
}
nav { display: flex; align-items: center; gap: 32px; }
nav a { text-decoration: none; font-size: .875rem; font-weight: 700; letter-spacing: .025em; }
nav a:hover, .reading-card a:hover { color: var(--rose); }
nav .header-link { padding: 12px 16px; border: 1px solid var(--plum); }
nav .header-link:hover { border-color: var(--rose); }

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: 48% 52%;
  background: var(--blush);
}
.hero-copy {
  padding: clamp(55px, 7.1vw, 120px) clamp(28px, 5vw, 85px) 45px max(28px, calc((100vw - 1370px)/2));
  position: relative;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
}
.eyebrow {
  margin: 0;
  color: var(--rose);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .14em;
}
.eyebrow span { padding-right: 8px; }
.hero h1, h2, h3 { font-family: "Playfair Display", serif; font-weight: 500; }
.hero h1 {
  font-size: clamp(3.3rem, 5.25vw, 6rem);
  line-height: 1.08;
  letter-spacing: -.055em;
  margin: 28px 0 24px;
  white-space: nowrap;
}
.hero h1 i { font-weight: 400; color: var(--rose); }
.hero-intro {
  max-width: 480px;
  margin: 0 0 36px;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  text-decoration: none;
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 17px 23px;
  min-height: 54px;
  transition: background .2s, color .2s, transform .2s;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--plum); color: var(--light-text); }
.button-primary:hover { background: var(--rose-hover); }
.button-primary:focus-visible { outline-color: var(--plum); }
.hero-note {
  margin: auto 0 0;
  padding-top: 44px;
  color: var(--muted);
  font-size: .875rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.hero-visual { position: relative; min-height: 100%; overflow: hidden; }
.hero-visual img {
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  object-position: 55% center;
}
.visual-caption {
  position: absolute;
  right: 28px;
  bottom: 28px;
  background: rgba(255, 251, 252, .95);
  padding: 12px 17px;
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-size: 1rem;
  color: var(--plum);
}

.readings-section { max-width: 1420px; margin: auto; padding: 105px clamp(22px, 5vw, 70px) 120px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 39px; }
.section-heading h2 {
  font-size: clamp(2.7rem, 4vw, 4.4rem);
  letter-spacing: -.045em;
  line-height: 1.1;
  margin: 14px 0 0;
}
.period { color: var(--rose); }
.section-heading > p { max-width: 340px; color: var(--muted); margin: 0 0 6px; font-size: 1rem; }
.reading-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 15px; }
.reading-card {
  background: var(--card);
  border: 1px solid var(--line);
  min-height: 335px;
  padding: 25px 29px 27px;
  display: flex;
  flex-direction: column;
  transition: border-color .2s, transform .2s;
}
.reading-card:hover { border-color: var(--rose); transform: translateY(-3px); }
.card-top { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card-index { font-size: .875rem; font-weight: 700; letter-spacing: .09em; color: var(--muted); }
.card-price { font-family: "Playfair Display", serif; color: var(--rose); font-size: 1.55rem; }
.card-symbol { font-size: 1.55rem; margin: 18px 0 9px; line-height: 1; }
.reading-card h3 {
  font-size: clamp(1.45rem, 1.8vw, 2rem);
  line-height: 1.25;
  letter-spacing: -.025em;
  margin: 0 0 10px;
}
.reading-card p { color: var(--muted); font-size: 1rem; line-height: 1.65; margin: 0 0 24px; }
.reading-card a {
  margin-top: auto;
  align-self: flex-start;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 3px;
  font-size: .875rem;
  font-weight: 700;
}

.how-section {
  background: var(--plum-panel);
  color: var(--light-text);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}
.how-image { min-height: 440px; }
.how-image img { width: 100%; height: 100%; object-fit: cover; }
.how-copy {
  padding: clamp(55px, 7vw, 105px) clamp(30px, 7vw, 115px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.how-copy .eyebrow { color: #efc9dc; }
.how-copy h2 {
  font-size: clamp(2.55rem, 4vw, 4.5rem);
  line-height: 1.15;
  letter-spacing: -.045em;
  margin: 20px 0;
}
.how-copy p:not(.eyebrow) { max-width: 530px; color: var(--light-muted); margin: 0 0 17px; font-size: 1rem; line-height: 1.7; }
.button-light { color: var(--plum); background: var(--light-text); margin-top: 18px; }
.button-light:hover { background: #f3dce6; }

footer { padding: 52px clamp(22px, 5vw, 86px) 25px; background: #f6edf1; }
.footer-main, .footer-bottom { display: flex; justify-content: space-between; gap: 20px; align-items: center; }
.footer-main { padding-bottom: 50px; }
.footer-brand { font: 500 1.75rem "Playfair Display", serif; letter-spacing: -.03em; }
.footer-brand i { color: var(--rose); }
.footer-main > span:last-child { color: var(--muted); font-size: .875rem; letter-spacing: .04em; }
.footer-bottom { border-top: 1px solid var(--line); padding-top: 20px; color: var(--muted); font-size: .875rem; }
.footer-bottom a { text-decoration: none; }

@media (max-width: 1000px) {
  .hero { grid-template-columns: 53% 47%; min-height: 575px; }
  .hero h1 { font-size: clamp(3rem, 5.5vw, 4.6rem); }
  .reading-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .how-copy { padding: 55px 35px; }
}
@media (max-width: 700px) {
  .announcement { font-size: .75rem; letter-spacing: .025em; gap: 6px; }
  .site-header { min-height: 83px; padding: 13px 20px; gap: 12px; }
  .wordmark { font-size: 1rem; gap: 8px; }
  .wordmark-mark { font-size: 2rem; }
  .wordmark small { font-size: .75rem; letter-spacing: .23em; }
  .site-header nav { gap: 10px; }
  .site-header nav a:not(.header-link) { display: none; }
  .site-header nav .header-link { font-size: .75rem; padding: 9px 10px; white-space: nowrap; }
  .hero { display: flex; flex-direction: column; }
  .hero-copy { padding: 54px 23px 40px; }
  .hero h1 { font-size: clamp(3.1rem, 11vw, 4.7rem); white-space: normal; margin: 22px 0; }
  .hero-intro { font-size: 1rem; }
  .hero-note { padding-top: 30px; }
  .hero-visual { height: 310px; min-height: 310px; }
  .hero-visual img { object-position: 65% 50%; }
  .visual-caption { right: 12px; bottom: 12px; }
  .readings-section { padding: 75px 20px 90px; }
  .section-heading { display: block; }
  .section-heading > p { margin-top: 17px; }
  .reading-grid { grid-template-columns: 1fr; gap: 12px; }
  .reading-card { min-height: 300px; }
  .how-section { display: flex; flex-direction: column; }
  .how-image { min-height: 310px; height: 310px; }
  .how-copy { padding: 55px 23px 65px; }
  footer { padding: 42px 23px 22px; }
  .footer-main, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-main { padding-bottom: 35px; gap: 12px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .reading-card { transition: none; }
}
