:root {
  --ink: #241b24;
  --muted: #665d66;
  --paper: #fffdf8;
  --soft: #f5efe7;
  --line: #e7dbce;
  --aubergine: #3d203a;
  --plum: #6e2d61;
  --lotus: #d95f91;
  --sage: #6f8c76;
  --gold: #b9894f;
  --shadow: 0 18px 50px rgba(36, 27, 36, .14);
  color-scheme: light;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  letter-spacing: 0;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(36, 27, 36, .94);
  color: #fff;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.13);
}

.nav-wrap {
  width: min(1160px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 0;
}

.brand img { width: 154px; max-height: 42px; object-fit: contain; }

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.24);
  background: transparent;
  color: #fff;
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  width: 20px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
}

.nav-toggle span::before { transform: translateY(-7px); }
.nav-toggle span::after { transform: translateY(5px); }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 8px;
  color: rgba(255,255,255,.86);
  font-weight: 700;
  font-size: .95rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255,255,255,.12);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 11px 18px;
  border-radius: 8px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
}

.btn-primary { background: var(--lotus); color: #fff; box-shadow: 0 12px 30px rgba(217,95,145,.28); }
.btn-primary:hover { background: #c34d7f; }
.btn-secondary { color: #fff; border-color: rgba(255,255,255,.42); background: rgba(255,255,255,.08); }
.btn-muted { background: var(--aubergine); color: #fff; }
.btn-light { background: #fff; color: var(--aubergine); border-color: rgba(61,32,58,.15); }

.hero {
  min-height: 72vh;
  display: grid;
  align-items: end;
  position: relative;
  color: #fff;
  isolation: isolate;
  background: var(--aubergine);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(36,27,36,.78), rgba(36,27,36,.36) 52%, rgba(36,27,36,.22)), var(--hero);
  background-size: cover;
  background-position: center;
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  background: linear-gradient(0deg, rgba(36,27,36,.7), rgba(36,27,36,0));
  z-index: -1;
}

.hero-inner {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 88px 0 56px;
}

.eyebrow {
  text-transform: uppercase;
  font-weight: 900;
  font-size: .78rem;
  color: #ffd3e3;
  margin: 0 0 12px;
}

.hero h1,
.page-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 6vw, 5.6rem);
  line-height: .95;
  max-width: 860px;
  margin: 0;
  letter-spacing: 0;
}

.hero p {
  max-width: 650px;
  font-size: clamp(1.03rem, 2vw, 1.28rem);
  margin: 20px 0 0;
  color: rgba(255,255,255,.92);
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.band {
  padding: 72px 0;
}

.band-soft { background: var(--soft); }
.band-dark { background: var(--aubergine); color: #fff; }

.wrap {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-head h2,
.content h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  margin: 0 0 12px;
  letter-spacing: 0;
}

.section-head p,
.lead { color: var(--muted); font-size: 1.08rem; margin: 0; }
.band-dark .section-head p,
.band-dark .lead { color: rgba(255,255,255,.8); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 42px;
  align-items: center;
}

.split img,
.feature-img,
.article-image {
  border-radius: 8px;
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

.feature-img { aspect-ratio: 4 / 3; }

.pill-list,
.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.pill-list li,
.meta-list li {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 11px;
  background: rgba(255,255,255,.68);
  font-weight: 800;
  font-size: .92rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(36,27,36,.06);
}

.card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
}

.card-body { padding: 22px; }
.card h3 { margin: 0 0 8px; font-size: 1.2rem; line-height: 1.2; }
.card p { margin: 0 0 16px; color: var(--muted); }
.card .price { color: var(--plum); font-weight: 900; margin-bottom: 10px; }

.page-hero {
  background: var(--aubergine);
  color: #fff;
  padding: 92px 0 54px;
}

.page-hero p { max-width: 760px; color: rgba(255,255,255,.82); font-size: 1.15rem; }

.content {
  max-width: 840px;
  margin: 0 auto;
}

.content p { color: #3e3840; }
.content h2 { margin-top: 42px; }
.content h3 { margin-top: 30px; font-size: 1.35rem; line-height: 1.2; }
.content a { color: var(--plum); font-weight: 800; }
.content ul { padding-left: 22px; }
.content li { margin: 8px 0; }

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 42px;
  align-items: start;
}

.article-layout aside {
  position: sticky;
  top: 98px;
  border-left: 3px solid var(--lotus);
  padding-left: 20px;
  color: var(--muted);
}

.article-hero-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0 0 34px;
}

.article-image {
  aspect-ratio: 4 / 3;
  margin: 34px 0 8px;
}

.caption { font-size: .9rem; color: var(--muted); margin: 0 0 22px; }

.notice {
  border: 1px solid var(--line);
  border-left: 4px solid var(--sage);
  background: #fff;
  border-radius: 8px;
  padding: 18px;
}

.prompt-box {
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  background: #fffaf1;
  border-radius: 8px;
  padding: 18px;
  margin: 28px 0;
}

.prompt-box strong {
  color: var(--aubergine);
}

.prompt-box p {
  margin: 8px 0 0;
}

.contact-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  box-shadow: var(--shadow);
}

form {
  display: grid;
  gap: 14px;
}

label { font-weight: 800; }

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d7cabf;
  border-radius: 8px;
  padding: 12px 13px;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

textarea { min-height: 130px; resize: vertical; }

.footer {
  background: #211520;
  color: rgba(255,255,255,.82);
  padding: 52px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  gap: 32px;
}

.footer a { color: #fff; text-decoration: none; }
.footer img { width: 156px; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    inset: 74px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 18px;
    background: rgba(36, 27, 36, .98);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 13px 12px; }
  .split,
  .article-layout,
  .footer-grid { grid-template-columns: 1fr; }
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .article-layout aside { position: static; border-left: 0; border-top: 3px solid var(--lotus); padding: 18px 0 0; }
}

@media (max-width: 640px) {
  .hero { min-height: 68vh; }
  .hero::before { background-image: linear-gradient(0deg, rgba(36,27,36,.82), rgba(36,27,36,.45)), var(--hero); }
  .hero-inner { padding: 70px 0 38px; }
  .band { padding: 52px 0; }
  .grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .brand img { width: 132px; }
}
