:root {
  --gold: #c8a951;
  --gold-light: #ead68d;
  --gold-dark: #9e8134;
  --maroon: #5b1a2a;
  --maroon-dark: #3d0f1b;
  --cream: #fdf6e3;
  --paper: #fffdf7;
  --parchment: #f5ecd7;
  --sage: #8b9a6b;
  --text: #2d1810;
  --muted: #6b5744;
  --line: rgba(200, 169, 81, .32);
  --shadow: 0 22px 60px rgba(91, 26, 42, .12);
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Crimson Text", Georgia, serif;
  --font-ui: Inter, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 14%, rgba(200,169,81,.13), transparent 30%),
    radial-gradient(circle at 88% 10%, rgba(139,154,107,.11), transparent 32%),
    linear-gradient(180deg, var(--cream), var(--parchment));
  color: var(--text);
  font-family: var(--font-body);
  font-size: 19px;
  line-height: 1.72;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 100;
  background: var(--paper);
  color: var(--maroon);
  padding: 8px 12px;
}
.skip-link:focus { left: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  min-height: 76px;
  padding: 10px max(18px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(253, 246, 227, .9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img,
.hero__logo,
.footer img {
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(200,169,81,.24);
}
.brand strong {
  display: block;
  color: var(--maroon);
  font: 700 1.18rem/1.1 var(--font-heading);
}
.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font: 600 .68rem/1.2 var(--font-ui);
  letter-spacing: .13em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 8px;
  font: 700 .84rem/1 var(--font-ui);
}
.nav a {
  border-radius: 999px;
  color: var(--muted);
  padding: 10px 14px;
}
.nav a:hover { background: rgba(200,169,81,.16); color: var(--maroon); }

.hero {
  min-height: 100vh;
  max-width: 1180px;
  margin: 0 auto;
  padding: 124px 22px 70px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}
.hero__image,
.image-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.hero__image img { width: 100%; aspect-ratio: 5 / 3; object-fit: cover; }
.hero__logo { width: 112px; height: 112px; margin-bottom: 26px; }
.eyebrow {
  margin: 0;
  color: var(--gold-dark);
  font: 800 .78rem/1.4 var(--font-ui);
  letter-spacing: .16em;
  text-transform: uppercase;
}
h1, h2, h3 { color: var(--maroon); font-family: var(--font-heading); line-height: 1.14; }
h1 {
  margin: 8px 0 22px;
  font-size: clamp(3rem, 7vw, 5.25rem);
  letter-spacing: .01em;
}
h2 { margin: 8px 0 0; font-size: clamp(2rem, 4vw, 3rem); }
h3 { margin: 0 0 8px; font-size: 1.35rem; }
.hero__subtitle {
  max-width: 42rem;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.36rem);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 20px;
  font: 800 .9rem/1 var(--font-ui);
}
.button--primary { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--paper); }
.button--soft { background: rgba(255,253,247,.76); color: var(--maroon); }

.section {
  max-width: 1080px;
  margin: 0 auto;
  padding: 76px 22px;
}
.section-heading { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.lotus { color: var(--gold); font-size: 18px; }
.feature-grid,
.note-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.feature-card,
.notice-card,
.note-grid article {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255,253,247,.86);
  box-shadow: 0 12px 35px rgba(91,26,42,.07);
}
.feature-card { padding: 24px; }
.number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: rgba(200,169,81,.18);
  color: var(--gold-dark);
  font: 800 .82rem/1 var(--font-ui);
}
.feature-card p,
.notice-card,
.note-grid article,
.parent-note { color: var(--muted); }

.divider { display: flex; justify-content: center; padding: 8px 22px; }
.divider span {
  width: min(320px, 70vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.image-section {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
  gap: 24px;
  align-items: center;
}
.image-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.notice-card {
  position: relative;
  overflow: hidden;
  padding: clamp(26px, 4vw, 44px);
}
.notice-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--gold-light));
}
.checklist { margin: 24px 0 0; padding: 0; list-style: none; counter-reset: item; }
.checklist li {
  counter-increment: item;
  position: relative;
  padding-left: 42px;
  margin-bottom: 15px;
}
.checklist li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 2px;
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--maroon);
  color: white;
  font: 800 .78rem/1 var(--font-ui);
}
.note-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.note-grid article {
  min-height: 128px;
  position: relative;
  padding: 24px 26px 24px 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  font-size: 1.1rem;
  background:
    linear-gradient(135deg, rgba(255,253,247,.96), rgba(255,248,229,.84)),
    rgba(255,253,247,.86);
}
.note-grid article::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 50%;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  transform: translateY(-50%);
  background:
    linear-gradient(135deg, rgba(91,26,42,.12), rgba(200,169,81,.14)),
    var(--paper);
  border: 1px solid rgba(91,26,42,.2);
  box-shadow: inset 0 0 0 6px rgba(255,253,247,.72);
}
.note-grid article::after {
  content: "";
  position: absolute;
  left: 38px;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--maroon);
  border-bottom: 2px solid var(--maroon);
  transform: rotate(45deg);
  opacity: .9;
}
.note-grid article span {
  width: fit-content;
  margin-bottom: 8px;
  border-radius: 999px;
  padding: 5px 10px;
  background: rgba(91,26,42,.08);
  color: var(--maroon);
  font: 800 .72rem/1 var(--font-ui);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.note-grid article p {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.55;
}
.parent-note {
  max-width: 760px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 1.15rem;
}
.footer {
  border-top: 1px solid var(--line);
  padding: 46px 22px;
  text-align: center;
  background: linear-gradient(180deg, transparent, rgba(245,236,215,.86));
}
.footer img { margin: 0 auto 16px; }
.footer p {
  margin: 0 0 8px;
  color: var(--maroon);
  font: 700 1.28rem/1.4 var(--font-heading);
}
.footer span { color: var(--muted); font: 600 .84rem/1.4 var(--font-ui); }

@media (max-width: 960px) {
  .hero,
  .image-section { grid-template-columns: 1fr; }
  .hero__content { text-align: center; }
  .hero__logo { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  body { font-size: 17px; }
  .site-header { align-items: flex-start; flex-direction: column; padding: 10px 16px 12px; }
  .nav { width: 100%; overflow-x: auto; padding-bottom: 2px; }
  .hero { padding: 150px 16px 52px; }
  .section { padding: 58px 16px; }
  .feature-grid,
  .note-grid { grid-template-columns: 1fr; }
  .brand img { width: 44px; height: 44px; }
  .brand strong { font-size: 1.04rem; }
  h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
}
