:root {
  --bg: #fbf8f5;
  --tint: #f3ede7;
  --card: #ffffff;
  --ink: #2b2530;
  --muted: #736a74;
  --line: #e7dfd8;
  --accent: #8b6bb8;
  --accent-dark: #6c4f97;
  --accent-soft: #efe8f7;
  --radius: 18px;
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 400 17px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--accent-dark); }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.15; margin: 0 0 .5em; }
h1 { font-size: clamp(2.3rem, 5.5vw, 3.9rem); letter-spacing: -.01em; }
h1 em { font-style: italic; color: var(--accent); }
h2 { font-size: clamp(1.9rem, 4vw, 2.7rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; }
small { color: var(--muted); font-size: .82em; }
.small { font-size: .9rem; }
.muted { color: var(--muted); }

.wrap { max-width: 1120px; margin: 0 auto; padding: 0 20px; }
.eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent); margin-bottom: .8em;
}

/* Buttons */
.btn {
  display: inline-block; padding: 14px 26px; border-radius: 999px;
  background: var(--ink); color: #fff; text-decoration: none;
  font-weight: 500; border: 1.5px solid var(--ink);
  transition: background .2s, color .2s, transform .2s;
}
.btn:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); }
.btn-ghost:hover { color: #fff; }
.btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.btn-light:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn-small { padding: 9px 18px; font-size: .92rem; }
.btn-block { display: block; text-align: center; }

/* Header */
.topbar {
  position: sticky; top: 0; z-index: 10;
  background: rgba(251, 248, 245, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar-inner { display: flex; align-items: center; gap: 24px; height: 68px; }
.logo {
  font-family: var(--serif); font-size: 1.7rem; font-weight: 500;
  color: var(--ink); text-decoration: none; letter-spacing: .02em;
}
.logo span { color: var(--accent); }
.nav { display: flex; gap: 26px; margin-left: auto; }
.nav a { color: var(--ink); text-decoration: none; font-size: .95rem; }
.nav a:hover { color: var(--accent); }

/* Hero */
.hero { padding: 64px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 34em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0; }
.perks { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.perks li { padding-left: 26px; position: relative; color: var(--muted); }
.perks li::before { content: "✧"; position: absolute; left: 0; color: var(--accent); }
.hero-img { margin: 0; position: relative; }
.hero-img img {
  border-radius: 200px 200px var(--radius) var(--radius);
  aspect-ratio: 4 / 5; object-fit: cover; width: 100%;
}
.hours-badge {
  position: absolute; left: -24px; bottom: 36px;
  background: var(--card); border-radius: 14px; padding: 14px 20px;
  box-shadow: 0 12px 30px rgba(43, 37, 48, .12);
  display: grid; line-height: 1.3;
}
.hours-badge strong { font-family: var(--serif); font-weight: 500; font-size: 1.1rem; }
.hours-badge span { color: var(--muted); font-size: .92rem; }

.notice {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  background: var(--accent-soft); border-radius: 999px; padding: 10px 20px;
  font-size: .95rem; margin: 0;
}
.notice span {
  background: var(--accent); color: #fff; border-radius: 999px;
  padding: 2px 10px; font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}

/* Sections */
.section { padding: 88px 0; }
.section-tint { background: var(--tint); }
.section-head { max-width: 640px; margin-bottom: 40px; }

/* Prices */
.price-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 20px; }
.price-card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 28px;
}
.price-card h3 { display: flex; align-items: baseline; gap: 10px; }
.price-card h3 small { font-family: var(--sans); font-size: .75rem; }
.price-card dl { margin: 0; }
.price-card dl div {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 9px 0; border-bottom: 1px dashed var(--line);
}
.price-card dl div:last-child { border-bottom: 0; }
.price-card dt { font-size: .96rem; }
.price-card dd { margin: 0; font-weight: 600; white-space: nowrap; font-variant-numeric: tabular-nums; }
.cta-row { text-align: center; margin-top: 40px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.hours { border-collapse: collapse; width: 100%; max-width: 420px; margin: 16px 0 20px; font-size: 1.05rem; }
.hours th, .hours td { padding: 14px 0; border-bottom: 1px solid var(--line); text-align: left; }
.hours th { font-weight: 500; }
.hours td { text-align: right; font-variant-numeric: tabular-nums; }
.hours .closed { color: var(--muted); }
.contact-card { background: var(--card); border-radius: var(--radius); padding: 32px; border: 1px solid var(--line); }
address { font-style: normal; font-size: 1.05rem; margin-bottom: 20px; }
address strong { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; }
.contact-list { list-style: none; padding: 0; margin: 0 0 24px; }
.contact-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); gap: 12px; }
.contact-list span { color: var(--muted); }
.contact-list a { text-decoration: none; font-weight: 500; }

/* About */
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 64px; align-items: center; }
.about-img { margin: 0; }
.about-img img { border-radius: var(--radius); width: 100%; aspect-ratio: 450 / 632; object-fit: cover; }
.signature { font-family: var(--serif); font-size: 1.1rem; margin-top: 1.5em; }
.signature span { font-style: italic; font-size: 1.8rem; color: var(--accent); }
.press { list-style: none; padding: 20px 0 0; margin: 24px 0 0; border-top: 1px solid var(--line); display: grid; gap: 6px; font-size: .92rem; color: var(--muted); }
.press li::before { content: "— "; color: var(--accent); }

/* Products */
.product-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.product-img { margin: 0; }
.product-img img { border-radius: var(--radius); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.order-box { background: var(--card); border-radius: var(--radius); padding: 24px 28px; margin-top: 28px; border: 1px solid var(--line); }
.order-box ol { margin: 0 0 12px; padding-left: 20px; }
.order-box li { padding: 4px 0; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: var(--radius); }

/* Book band */
.book-band { background: var(--ink); color: #fff; padding: 80px 0; text-align: center; }
.book-band h2 { color: #fff; }
.book-band p { color: #cfc6d3; margin-bottom: 28px; }

/* Footer */
.footer { padding: 40px 0 48px; font-size: .95rem; color: var(--muted); }
.footer-inner { display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap; align-items: end; }
.footer p { margin: 4px 0 0; }
.footer a { color: var(--muted); }
.logo-footer { font-size: 1.4rem; }

.mobile-book { display: none; }

/* Responsive */
@media (max-width: 900px) {
  .nav { display: none; }
  .topbar-inner { justify-content: space-between; }
  .topbar .btn-small { display: none; }
  .hero { padding: 36px 0 24px; }
  .hero-grid, .contact-grid, .about-grid, .product-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-img { max-width: 440px; }
  .hours-badge { left: 16px; bottom: 16px; }
  .about-img { max-width: 320px; }
  .section { padding: 64px 0; }
  .price-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .gallery img:first-child { grid-column: span 2; aspect-ratio: 4 / 3; }
  .mobile-book {
    display: block; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 20;
    text-align: center; padding: 15px; border-radius: 999px;
    background: var(--ink); color: #fff; text-decoration: none; font-weight: 600;
    box-shadow: 0 10px 30px rgba(43, 37, 48, .3);
  }
  .footer { padding-bottom: 100px; }
}
