/* =========================================================
   Nicolas & Cristina — V1 Classique éditorial (crème & or)
   Palette : #f7f1e6 / #efe6d4 / #2a1f15 / #a8916a / #7a3b2e
   ========================================================= */
:root {
  --bg:       #f7f1e6;
  --bg-alt:   #efe6d4;
  --ink:      #2a1f15;
  --muted:    #6b5d48;
  --gold:     #a8916a;
  --gold-dk:  #8a7650;
  --line:     rgba(120,100,70,0.28);
  --accent:   #7a3b2e;
  --cream:    #f7ecd4;
  --serif:    'Cormorant Garamond', 'Times New Roman', serif;
  --display:  'Italiana', 'Cormorant Garamond', serif;
  --mono:     'DM Mono', ui-monospace, monospace;
  --text-blue: #296ea1;  
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg); color: var(--ink);
  font-family: var(--serif);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
img { max-width: 100%; display: block; }

.text-blue {color:var(--text-blue);}

/* Override Bootstrap defaults subtly */
.btn { border-radius: 0; }

/* ---------- Shared pieces ---------- */
.wd-eyebrow {
  font-family: var(--mono);
  font-size: 16px; letter-spacing: 0.38em;
  text-transform: uppercase; color: var(--gold);
}
.wd-display  { font-family: var(--display); font-weight: 400; }
.wd-serif    { font-family: var(--serif); }
.wd-mono     { font-family: var(--mono); }

.wd-section {
  padding: 120px 40px;
}
@media (min-width: 768px) { .wd-section { padding: 140px 80px; } }

.wd-section--alt  { background: #efd7bd; }
.wd-section--dark { background: #efd7bd; color: var(--cream); }

.wd-title {
  font-family: var(--display);
  font-size: clamp(48px, 7vw, 78px);
  line-height: 1; margin: 20px 0 12px;
  letter-spacing: 0.01em; font-weight: 400;
}
.wd-subtitle {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(18px, 2vw, 22px);
  color: var(--muted); max-width: 560px; margin: 0 auto;
}

.wd-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; margin: 0 auto; width: 240px;
}
.wd-divider span {
  flex: 1; height: 1px; background: var(--gold); opacity: 0.5;
}
.wd-divider--light span { background: var(--text-blue);}
.wd-divider--dark  span { background: var(--text-blue);}

.wd-head {
  text-align: center; margin-bottom: 70px;
}

/* ---------- Navigation ---------- */
.wd-nav {
  position: absolute; top: 24px; left: 0; right: 0; z-index: 20;
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 32px; color: #fff7ea;
  font-family: var(--mono);
}
@media (min-width: 768px) { .wd-nav { padding: 0 56px; } }

.wd-nav__mark a,
.wd-nav__date {
  font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase;
  color: inherit; text-decoration: none;
}
.wd-nav__links {
  display: flex; gap: 28px; align-items: center;
}
.wd-nav__links a {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase; color: inherit; text-decoration: none;
  opacity: 0.9; transition: opacity .2s;
}
.wd-nav__links a:hover { opacity: 1; }
.wd-nav__cta {
  border: 1px solid rgba(255,247,234,0.6);
  padding: 8px 14px;
}
.wd-nav__cta:hover { background: rgba(255,247,234,0.15); }
.wd-nav__logout { opacity: 0.65 !important; }

.wd-nav__toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 30px; height: 24px; flex-direction: column; justify-content: space-between;
}
.wd-nav__toggle span {
  display: block; height: 1px; background: currentColor;
}

/* Solid nav once scrolled */
.wd-nav.is-scrolled {
  position: fixed; top: 0; padding-top: 16px; padding-bottom: 16px;
  background: #efd7bd;
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(6px);
}

@media (max-width: 960px) {
  .wd-nav__toggle { display: flex; }
  .wd-nav__links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    background: rgba(247, 241, 230, 0.98);
    color: var(--ink);
    padding: 24px 32px; gap: 18px;
    display: none; box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  }
  .wd-nav__links.is-open { display: flex; }
  .wd-nav__links a { color: var(--ink); }
  .wd-nav__date { display: none; }
}

/* ---------- Flash ---------- */
.wd-flash {
  position: fixed; top: 20px; left: 50%; transform: translateX(-50%);
  padding: 14px 22px; font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  z-index: 100; max-width: 92%;
}
.wd-flash--success { background: var(--ink); color: var(--cream); }
.wd-flash--error   { background: var(--accent); color: var(--cream); }
.wd-flash--info    { background: var(--gold); color: var(--cream); }

/* ---------- Hero ---------- */
.wd-hero {
  position: relative; width: 100%;
  height: 100vh; min-height: 680px; max-height: 960px;
  overflow: hidden;
}
.wd-hero__bg {
  position: absolute; inset: 0;
  background: url('../img/bg.jpeg') center/cover no-repeat;
}
@media (max-width: 399.98px) {
  .wd-hero__bg {
    background-image: url('../img/bg-mobile.jpeg');
  }
}
.wd-hero__inner {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff7ea; text-align: center; padding: 0 24px;
}
.wd-hero__kicker {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.5em; text-transform: uppercase; opacity: 0.9;
}
.wd-hero__names {
  font-family: var(--display);
  font-size: clamp(64px, 13vw, 140px);
  line-height: 0.9; margin: 0;
  letter-spacing: 0.02em;
}
.wd-hero__amp {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(32px, 5vw, 56px);
  margin: -4px 0; 
}
.wd-hero__meta {
  font-family: var(--mono); font-size: 12px;
  letter-spacing: 0.45em; text-transform: uppercase; margin-top: 22px;
}
.wd-hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.4em;
  text-transform: uppercase; color: #fff7ea; opacity: 0.8;
  animation: wd-bounce 2.4s infinite;
}
@keyframes wd-bounce {
  0%,100% { transform: translate(-50%, 0); opacity: .8; }
  50%     { transform: translate(-50%, 8px); opacity: .4; }
}

/* ---------- Countdown ---------- */
.wd-countdown {
  display: flex; justify-content: center; gap: 24px;
  flex-wrap: wrap;
}
@media (min-width: 768px) { .wd-countdown { gap: 48px; } }

.wd-cd-unit { text-align: center; min-width: 86px; }
.wd-cd-num {
  font-family: var(--serif); font-size: clamp(48px, 7vw, 72px);
  font-weight: 300; line-height: 1; color: var(--ink);
  letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}
.wd-cd-lbl {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.35em; text-transform: uppercase;
  color: var(--gold); margin-top: 8px;
}
.wd-cd-sep {
  font-family: var(--display); font-size: clamp(48px, 7vw, 72px);
  color: var(--gold); opacity: 0.4; line-height: 1;
  align-self: flex-start;
}

/* ---------- Story ---------- */
.wd-story-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px;
  max-width: 1040px; margin: 0 auto;
}
@media (min-width: 768px) {
  .wd-story-grid { grid-template-columns: repeat(2, 1fr); gap: 64px; }
}
.wd-story-item { display: flex; gap: 28px; }
.wd-story-year {
  flex-shrink: 0; width: 70px;
}
.wd-story-year span {
  font-family: var(--display); font-size: 44px; color: var(--gold); line-height: 1;
}
.wd-story-year hr {
  border: 0; width: 40px; height: 1px; background: var(--gold);
  margin: 10px 0 0;
}
.wd-story-item h3 {
  font-family: var(--serif); font-size: 26px; font-weight: 500;
  color: var(--ink); margin: 0 0 10px;
}
.wd-story-item p {
  font-family: var(--serif); font-size: 18px; line-height: 1.6;
  color: var(--muted); margin: 0;
}

.wd-photo-trio {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  max-width: 1040px; margin: 100px auto 0;
}
@media (min-width: 768px) {
  .wd-photo-trio { grid-template-columns: 1fr 1.3fr 1fr; }
  .wd-photo-trio > div:nth-child(1) { padding-top: 40px; }
  .wd-photo-trio > div:nth-child(3) { padding-top: 80px; }
}

/* ---------- Photo placeholder ---------- */
.wd-ph {
  position: relative; width: 100%; overflow: hidden;
  background-color: #e8dfd0;
  background-image: repeating-linear-gradient(35deg, #e8dfd0 0 7px, #d9ccb6 7px 14px);
}
.wd-ph--3x4 { aspect-ratio: 3/4; }
.wd-ph--4x5 { aspect-ratio: 4/5; }
.wd-ph--1x1 { aspect-ratio: 1/1; }
.wd-ph--2x1 { aspect-ratio: 2/1; }
.wd-ph--wide { aspect-ratio: auto; height: 100%; }
.wd-ph--warm {
  background-image: repeating-linear-gradient(35deg, #d9c7a5 0 7px, #b89c72 7px 14px);
}
.wd-ph--round { border-radius: 50%; aspect-ratio: 1/1; }

.wd-ph__label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; color: #5a4b35; text-transform: uppercase;
  text-align: center; padding: 0 16px;
}
.wd-ph__label span {
  background: rgba(255,255,255,0.55); padding: 4px 10px; border-radius: 2px;
}

/* ---------- Program ---------- */
.wd-program {
  max-width: 760px; margin: 0 auto; position: relative;
}
.wd-program::before {
  content: ''; position: absolute; left: 110px; top: 8px; bottom: 8px;
  width: 1px; background: var(--line);
}
.wd-program__row {
  display: grid;
  grid-template-columns: 100px 24px 1fr;
  gap: 24px; align-items: flex-start;
  padding: 22px 0;
}
.wd-program__time {
  font-family: var(--display); font-size: 34px;
  text-align: right; color: var(--accent); line-height: 1;
}
.wd-program__dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--bg-alt); border: 1px solid var(--gold);
  margin: 12px auto 0; box-shadow: 0 0 0 4px var(--bg-alt);
}
.wd-program__title {
  font-family: var(--serif); font-size: 24px; font-weight: 500;
  margin: 0 0 4px;
}
.wd-program__text {
  font-family: var(--serif); font-size: 17px; color: var(--muted);
  font-style: italic; margin: 0;
}
@media (max-width: 600px) {
  .wd-program::before { left: 70px; }
  .wd-program__row { grid-template-columns: 60px 24px 1fr; gap: 16px; }
  .wd-program__time { font-size: 26px; }
}

/* ---------- Venue ---------- */
.wd-venue {
  display: grid; grid-template-columns: 1fr; gap: 60px;
  max-width: 1100px; margin: 0 auto; align-items: center;
}
@media (min-width: 900px) {
  .wd-venue { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.wd-venue h2 {
  font-family: var(--display); font-size: clamp(44px, 6vw, 64px);
  margin: 20px 0 24px; line-height: 1;
}
.wd-venue p {
  font-family: var(--serif); font-size: 20px; line-height: 1.65;
  color: var(--muted); margin: 0 0 28px;
}
.wd-venue address {
  font-family: var(--serif); font-size: 18px; color: var(--ink);
  font-style: normal; margin-bottom: 32px;
}
.wd-link-arrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  text-decoration: none; border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}
.wd-map {
  max-width: 1100px; margin: 80px auto 0;
  height: 280px; border: 1px solid var(--line);
  overflow: hidden;
}

/* ---------- RSVP ---------- */
.wd-form {
  max-width: 640px; margin: 0 auto;
  display: grid; gap: 28px;
}
.wd-form__group > label {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px; display: block;
}
.wd-form__input,
.wd-form__textarea {
  font-family: var(--serif); font-size: 18px; padding: 12px 0;
  width: 100%; background: transparent; border: 0;
  border-bottom: 1px solid var(--line); color: var(--ink); outline: none;
}
.wd-form__textarea {
  min-height: 80px; padding-top: 12px; resize: vertical;
}
.wd-form__input:focus,
.wd-form__textarea:focus { border-bottom-color: var(--ink); }

.wd-choices { display: flex; gap: 16px; margin-top: 8px; }
.wd-form__hint {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.08em;
  color: var(--muted, #6b5d48); margin-top: 10px; font-style: italic;
}
.wd-choice {
  font-family: var(--serif); font-size: 17px; font-style: italic;
  flex: 1; padding: 18px 20px;
  background: transparent; color: var(--ink);
  border: 1px solid var(--line); cursor: pointer;
  transition: all .2s;
}
.wd-choice:hover { border-color: var(--ink); }
.wd-choice.is-active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

.wd-grid-2 { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 640px) { .wd-grid-2 { grid-template-columns: 1fr 1fr; } }

.wd-btn {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.35em;
  text-transform: uppercase; background: var(--ink); color: var(--cream);
  border: 0; padding: 18px 44px; cursor: pointer; text-decoration: none;
  display: inline-block;
}
.wd-btn:hover { background: #0f0806; color: var(--cream); }
.wd-btn--ghost {
  background: transparent; border: 1px solid var(--gold); color: inherit;
  padding: 14px 28px;
}

.wd-thanks {
  background: var(--ink); color: #f7ecd4; text-align: center;
}
.wd-thanks h2 { color: #f7ecd4; }

/* ---------- Dress code ---------- */
.wd-dress {
  display: grid; grid-template-columns: 1fr; gap: 60px;
  max-width: 1040px; margin: 0 auto; align-items: center;
}
@media (min-width: 900px) {
  .wd-dress { grid-template-columns: 1fr 1fr; gap: 80px; }
}
.wd-dress h2 {
  font-family: var(--display); font-size: clamp(44px, 6vw, 64px);
  margin: 20px 0 24px;
}
.wd-dress p {
  font-family: var(--serif); font-size: 19px; line-height: 1.7;
  color: var(--muted); margin: 0 0 32px;
}
.wd-palette {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.wd-palette span {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.05);
}
.wd-dress__photos {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.wd-dress__photos > div:nth-child(2) { padding-top: 40px; }

/* ---------- Witnesses ---------- */
.wd-witnesses {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
  max-width: 1040px; margin: 0 auto;
}
@media (min-width: 900px) {
  .wd-witnesses { grid-template-columns: repeat(4, 1fr); }
}
.wd-witness { text-align: center; }
.wd-witness__photo {
  width: 100%; aspect-ratio: 1/1; border-radius: 50%;
  overflow: hidden; margin-bottom: 20px;
}
.wd-witness__name {
  font-family: var(--display); font-size: 32px; line-height: 1;
}
.wd-witness__role {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold); margin: 10px 0 12px;
}
.wd-witness__note {
  font-family: var(--serif); font-style: italic;
  font-size: 16px; color: var(--muted); line-height: 1.5;
}

/* ---------- Hotels ---------- */
.wd-hotels { max-width: 900px; margin: 0 auto; }
.wd-hotel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px; padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.wd-hotel:last-child { border-bottom: 0; }
@media (min-width: 768px) {
  .wd-hotel {
    grid-template-columns: 1fr auto 2fr auto;
    gap: 32px; align-items: center;
  }
}
.wd-hotel__name { font-family: var(--display); font-size: 32px; }
.wd-hotel__meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.25em;
  color: var(--gold); white-space: nowrap;
}
.wd-hotel__note {
  font-family: var(--serif); font-size: 17px; color: var(--muted); font-style: italic;
}

/* ---------- Gift ---------- */
.wd-gift {
  display: grid; grid-template-columns: 1fr; gap: 60px;
  max-width: 1040px; margin: 0 auto; align-items: center;
}
@media (min-width: 900px) {
  .wd-gift { grid-template-columns: 1fr 1.2fr; gap: 80px; }
}
.wd-gift h2 {
  font-family: var(--display); font-size: clamp(44px, 6vw, 64px);
  margin: 20px 0 24px; line-height: 1;
}
.wd-gift p {
  font-family: var(--serif); font-size: 19px; line-height: 1.7;
  color: var(--muted); margin: 0 0 28px;
}
.wd-gift-item {
  display: flex; align-items: baseline; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--line);
}
.wd-gift-item__label { font-family: var(--serif); font-size: 22px; flex: 1; }
.wd-gift-item__dots {
  flex: 0 1 80px; min-width: 40px;
  border-bottom: 1px dotted var(--line);
}
.wd-gift-item__amount {
  font-family: var(--display); font-size: 26px; color: var(--accent);
}

/* ---------- Gallery ---------- */
.wd-gallery {
  display: grid; grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 140px; gap: 12px;
  max-width: 1100px; margin: 0 auto;
}
@media (min-width: 768px) {
  .wd-gallery { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 160px; gap: 14px; }
}
.wd-gallery > * { overflow: hidden; }
.wd-gallery .w2 { grid-column: span 2; }
.wd-gallery .h2 { grid-row: span 2; }
.wd-gallery .w2.h2 { grid-column: span 2; grid-row: span 2; }
.wd-gallery .wd-ph { height: 100%; aspect-ratio: auto; }

/* ---------- Playlist ---------- */
.wd-playlist {
  display: grid; grid-template-columns: 1fr; gap: 50px;
  max-width: 1040px; margin: 0 auto;
}
@media (min-width: 900px) {
  .wd-playlist { grid-template-columns: 1fr 1.2fr; gap: 80px; }
}
.wd-playlist h2 {
  font-family: var(--display); font-size: clamp(44px, 6vw, 64px);
  margin: 20px 0 24px; line-height: 1;
}
.wd-playlist p {
  font-family: var(--serif); font-size: 19px; line-height: 1.7;
  color: var(--muted); margin: 0 0 24px;
}
.wd-playlist__list { list-style: none; padding: 0; margin: 0; }
.wd-playlist__list li {
  display: flex; align-items: baseline; gap: 20px;
  padding: 14px 0; border-bottom: 1px solid var(--line);
}
.wd-playlist__num { font-family: var(--mono); font-size: 11px; color: var(--gold); width: 24px; }
.wd-playlist__title { font-family: var(--serif); font-size: 20px; flex: 1; }
.wd-playlist__artist { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--muted); }
.wd-spotify {
  font-family: var(--serif); font-style: italic; font-size: 20px;
  color: var(--accent); text-decoration: none;
}
.wd-spotify:hover { color: var(--ink); }

/* ---------- FAQ ---------- */
.wd-faq { max-width: 760px; margin: 0 auto; }
.wd-faq__item { border-bottom: 1px solid var(--line); }
.wd-faq__btn {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; width: 100%; padding: 26px 0;
  background: transparent; border: 0; text-align: left; cursor: pointer;
}
.wd-faq__q { font-family: var(--serif); font-size: 22px; color: var(--ink); }
.wd-faq__plus {
  font-family: var(--display); font-size: 28px; color: var(--gold);
  transition: transform .3s;
}
.wd-faq__item.is-open .wd-faq__plus { transform: rotate(45deg); }
.wd-faq__a {
  max-height: 0; overflow: hidden; transition: max-height .4s ease;
}
.wd-faq__item.is-open .wd-faq__a { max-height: 400px; }
.wd-faq__a p {
  font-family: var(--serif); font-size: 18px; line-height: 1.6;
  color: var(--muted); font-style: italic;
  margin: 0 0 26px; padding-right: 40px;
}

/* ---------- Guestbook ---------- */
.wd-gb-form {
  max-width: 640px; margin: 0 auto 40px;
  display: grid; gap: 14px;
}
.wd-gb-form input,
.wd-gb-form textarea {
  font-family: var(--serif); font-size: 18px; padding: 14px 18px;
  background: var(--bg); border: 1px solid var(--line);
  color: var(--ink); outline: none;
}
.wd-gb-form textarea { min-height: 90px; resize: vertical; }
.wd-gb-form button { justify-self: start; padding: 14px 24px; font-size: 11px; letter-spacing: 0.3em; }

.wd-gb-list {
  max-width: 640px; margin: 0 auto;
  display: grid; gap: 18px;
}
.wd-gb-entry {
  background: var(--bg); padding: 22px 26px;
  border: 1px solid var(--line);
}
.wd-gb-entry p {
  font-family: var(--serif); font-style: italic; font-size: 19px;
  line-height: 1.5; color: var(--ink); margin: 0 0 10px;
}
.wd-gb-entry__author {
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
}

/* ---------- Footer ---------- */
.wd-footer {
  padding: 100px 40px 60px; background: var(--ink); color: var(--cream);
  text-align: center;
}
.wd-footer__amp {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 140px; line-height: 1; color: #e8c885;
}
.wd-footer__title {
  font-family: var(--display); font-size: clamp(32px, 5vw, 44px);
  margin: 8px 0 16px; letter-spacing: 0.04em; font-weight: 400;
}
.wd-footer__date {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.4em; color: #c9b89a;
}
.wd-footer .wd-divider { margin: 50px auto 20px; width: 180px; }
.wd-footer__quote {
  font-family: var(--serif); font-style: italic; font-size: 18px;
  color: #c9b89a; max-width: 440px; margin: 0 auto;
}

/* ---------- Auth / dashboard pages ---------- */
.wd-auth-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 120px 24px 60px; background: var(--bg-alt);
}
.wd-auth {
  max-width: 460px; width: 100%;
  background: var(--bg); padding: 56px 44px;
  border: 1px solid var(--line);
  text-align: center;
}
.wd-auth h1 {
  font-family: var(--display); font-size: 54px; margin: 14px 0 10px; font-weight: 400;
}
.wd-auth p { font-family: var(--serif); font-style: italic; color: var(--muted); margin: 0 0 32px; }
.wd-auth form { display: grid; gap: 22px; text-align: left; }
.wd-auth .wd-btn { width: 100%; text-align: center; padding: 18px 20px; }
.wd-auth__alt {
  margin-top: 28px; font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted);
}
.wd-auth__alt a { color: var(--gold); text-decoration: none; border-bottom: 1px solid var(--gold); }

.wd-dashboard {
  padding: 140px 24px 80px; max-width: 1040px; margin: 0 auto;
}
.wd-dashboard__head { text-align: center; margin-bottom: 60px; }
.wd-dashboard__card {
  background: var(--bg-alt); border: 1px solid var(--line);
  padding: 36px 40px; margin-bottom: 32px;
}
.wd-dashboard__card h2 {
  font-family: var(--display); font-size: 36px; margin: 0 0 20px; font-weight: 400;
}
.wd-dashboard__pill {
  display: inline-block; padding: 6px 14px;
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.28em; text-transform: uppercase;
  background: var(--ink); color: var(--cream);
}
.wd-dashboard__pill--muted {
  background: transparent; color: var(--muted); border: 1px solid var(--line);
}
.wd-kv { display: grid; grid-template-columns: 140px 1fr; gap: 10px 24px; }
.wd-kv dt { font-family: var(--mono); font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); }
.wd-kv dd { margin: 0; font-family: var(--serif); font-size: 18px; color: var(--ink); }
