
  :root {
    --bg: #f1f4ff;
    --surface: #ffffff;
    --ink: #22304f;
    --ink-soft: #55618a;
    --muted: #7c88a8;
    --line: #e4e8f7;
    --accent: #6b7fc9;
    --accent-soft: #eef1fb;
    --navy: #273a63;
    --olive: #6f8266;
    --shadow: 0 14px 34px rgba(38, 52, 92, 0.10);
    --shadow-soft: 0 6px 18px rgba(38, 52, 92, 0.07);
    --radius: 18px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
  }

  h1, h2, h3 {
    font-family: Georgia, "Times New Roman", "Palatino Linotype", serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--ink);
  }

  .wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 72px;
    text-align: center;
    background:
      radial-gradient(900px 420px at 18% -10%, rgba(255,255,255,0.9), transparent 60%),
      radial-gradient(760px 400px at 85% 0%, rgba(190,199,240,0.45), transparent 60%),
      var(--bg);
  }
  .eyebrow {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-soft);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 26px;
  }
  .hero h1 {
    font-size: clamp(2.1rem, 5vw, 3.4rem);
    max-width: 850px;
    margin: 0 auto 22px;
  }
  .hero p.lead {
    font-size: 1.16rem;
    color: var(--ink-soft);
    max-width: 640px;
    margin: 0 auto;
  }
  .hero .rule {
    width: 64px;
    height: 3px;
    background: var(--accent);
    border-radius: 3px;
    margin: 34px auto 0;
  }

  /* ---------- Sections ---------- */
  section { padding: 64px 0; }
  .section-head { max-width: 760px; margin-bottom: 40px; }
  .section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
  .kicker {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
  }
  .section-head h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); margin-bottom: 16px; }
  .section-head p { color: var(--ink-soft); }

  .prose p + p { margin-top: 16px; }
  .prose { max-width: 800px; }

  /* ---------- Gallery ---------- */
  .gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .gallery figure { margin: 0; }
  .gallery img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
    background: var(--surface);
  }

  /* ---------- Card grid ---------- */
  .card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }
  .card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px 24px;
    box-shadow: var(--shadow-soft);
  }
  .card .num {
    font-family: Georgia, serif;
    font-size: 1.6rem;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
  }
  .card h3 { font-size: 1.22rem; margin-bottom: 10px; }
  .card p { color: var(--ink-soft); font-size: 0.98rem; }

  /* ---------- Occasions ---------- */
  .occasions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    list-style: none;
  }
  .occasions li {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 20px;
    font-weight: 600;
    color: var(--ink);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .occasions li::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--accent);
    flex: 0 0 auto;
  }

  /* ---------- FAQ ---------- */
  .faq { max-width: 820px; margin: 0 auto; }
  .faq-item {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px 26px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-soft);
  }
  .faq-item h3 { font-size: 1.12rem; margin-bottom: 10px; color: var(--navy); }
  .faq-item p { color: var(--ink-soft); }

  /* ---------- Footer ---------- */
  footer {
    padding: 56px 0 72px;
    text-align: center;
    border-top: 1px solid var(--line);
  }
  footer .mark {
    font-family: Georgia, serif;
    font-size: 1.05rem;
    color: var(--ink);
    margin-bottom: 8px;
  }
  footer p { color: var(--muted); font-size: 0.95rem; }

  /* ---------- Responsive ---------- */
  @media (max-width: 860px) {
    .card-grid, .occasions { grid-template-columns: repeat(2, 1fr); }
    .gallery { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 520px) {
    .card-grid, .occasions { grid-template-columns: 1fr; }
    .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .hero { padding: 64px 0 52px; }
    section { padding: 48px 0; }
  }
