:root {
  --ink: #271d1b;
  --muted: #6e5e58;
  --cream: #fff8f1;
  --paper: #fffdf9;
  --burgundy: #67213b;
  --burgundy-dark: #4d172c;
  --rose: #f3dfe6;
  --gold: #c99a56;
  --line: #ead6c3;
  --shadow: 0 18px 50px rgba(70, 31, 40, .10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: Montserrat, Arial, sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
.skip {
  position: absolute;
  left: -9999px;
  top: 8px;
  z-index: 999;
  padding: 10px 14px;
  background: #fff;
}
.skip:focus { left: 8px; }
.wrap { width: min(1120px, calc(100% - 34px)); margin: 0 auto; }
.top {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, .96);
  backdrop-filter: blur(14px);
}
.top__inner {
  width: min(1480px, calc(100% - 32px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  white-space: nowrap;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  font-weight: 800;
}
.brand__mark {
  width: 45px;
  height: 45px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--burgundy);
  color: #fff;
  font-family: Montserrat, Arial, sans-serif;
  font-size: 12px;
  letter-spacing: .05em;
}
.universal-search {
  min-width: 290px;
  flex: 1 1 380px;
  display: flex;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
}
.universal-search__label { position: absolute; left: -9999px; }
.universal-search__input {
  min-width: 0;
  flex: 1;
  border: 0;
  outline: 0;
  padding: 0 18px;
  background: transparent;
}
.universal-search__button {
  min-height: 48px;
  border: 0;
  padding: 0 22px;
  background: var(--burgundy);
  color: #fff;
  font-weight: 800;
}
.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
}
.nav::-webkit-scrollbar { display: none; }
.nav a {
  text-decoration: none;
  font-size: 12px;
  font-weight: 750;
}
.nav a:hover,
.nav a[aria-current="page"] { color: var(--burgundy); }
.category-rail {
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  background: #fffaf5;
}
.category-rail__inner {
  width: min(1120px, calc(100% - 34px));
  margin: 0 auto;
  display: flex;
  gap: 25px;
  padding: 11px 0;
  white-space: nowrap;
}
.category-rail a {
  text-decoration: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}
.category-rail a:hover { color: var(--burgundy); }
.hero {
  padding: 68px 0 42px;
  background:
    radial-gradient(circle at 85% 0, rgba(243, 223, 230, .9), transparent 30%),
    var(--cream);
}
.kicker {
  color: var(--burgundy);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
h1, h2, h3 { font-family: "Playfair Display", Georgia, serif; }
h1 {
  max-width: 900px;
  margin: 12px 0 16px;
  font-size: clamp(40px, 6vw, 67px);
  line-height: 1.03;
  letter-spacing: -.035em;
}
.lead { max-width: 780px; color: var(--muted); font-size: 18px; }
main { padding: 20px 0 72px; }
.panel {
  margin-top: 25px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 25px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.panel h2 { margin: 0 0 10px; font-size: 34px; }
.panel > p { color: var(--muted); }
.search-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  margin-top: 20px;
}
.search-panel input {
  min-height: 52px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 16px;
  outline: 0;
  background: #fff;
}
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  padding: 0 20px;
  background: var(--burgundy);
  color: #fff;
  text-decoration: none;
  font-weight: 850;
}
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #fff;
}
.card span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--rose);
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 850;
}
.card h2, .card h3 { margin: 14px 0 7px; }
.card p { margin: 0; color: var(--muted); }
.card a { color: var(--burgundy); font-weight: 800; }
.notice {
  margin-top: 20px;
  padding: 14px 16px;
  border-left: 4px solid var(--gold);
  border-radius: 11px;
  background: #fff5e6;
  color: #6a481a;
  font-size: 13px;
}
.alert-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}
.alert-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.alert-form label small {
  color: var(--muted);
  font-weight: 500;
}
.alert-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0 16px;
  outline: 0;
  background: #fff;
  color: var(--ink);
  font: inherit;
}
.alert-form input:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(103, 33, 59, .11);
}
.alert-form__full { grid-column: 1 / -1; }
.alert-form__consent {
  grid-template-columns: auto 1fr !important;
  align-items: start;
  font-weight: 500 !important;
}
.alert-form__consent input {
  width: 20px;
  min-height: 20px;
  margin-top: 2px;
}
.alert-form__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.alert-form__message {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.alert-form__message.is-success { color: #25704a; }
.alert-form__message.is-error { color: #a03a45; }
footer {
  padding: 38px 0;
  background: var(--burgundy-dark);
  color: #fff;
}
footer p { color: rgba(255,255,255,.72); }
footer a { color: #fff; }

@media (max-width: 1050px) {
  .top__inner { flex-wrap: wrap; padding: 12px 0; }
  .nav { width: 100%; order: 3; }
}
@media (max-width: 720px) {
  .brand { font-size: 18px; }
  .universal-search { min-width: 100%; order: 2; }
  .grid { grid-template-columns: 1fr; }
  .search-panel { grid-template-columns: 1fr; }
  .hero { padding-top: 45px; }
  .panel { padding: 22px; }
  .alert-form { grid-template-columns: 1fr; }
  .alert-form__full { grid-column: auto; }
  .alert-form__actions { align-items: stretch; flex-direction: column; }
}
