 @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300&family=Inter:wght@300;400;500&display=swap');

  * { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --bg: #0f0d0d;
    --surface: #181515;
    --card: #1e1a1a;
    --gold: #c9a96e;
    --gold-light: #e8c98a;
    --rose: #d4707a;
    --text: #f0ece6;
    --muted: #8a7f78;
    --line: #2e2929;
  }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    min-height: 100vh;
    padding: 60px 20px;
  }

  /* ── Section wrapper ── */
  .price-section {
    max-width: 760px;
    margin: 0 auto;
  }

  /* ── Header ── */
  .price-header {
    text-align: center;
    margin-bottom: 56px;
  }

  .price-eyebrow {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }

  .price-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 300;
    letter-spacing: 0.04em;
    line-height: 1.1;
    color: var(--text);
  }

  .price-title em {
    font-style: italic;
    color: var(--gold-light);
  }

  .price-subtitle {
    margin-top: 14px;
    font-size: 13px;
    color: var(--muted);
    letter-spacing: 0.03em;
  }

  /* ── Category ── */
  .price-category {
    margin-bottom: 40px;
  }

  .category-label {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 2px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }

  .category-icon {
    font-size: 18px;
    line-height: 1;
  }

  .category-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--gold-light);
  }

  /* ── Price rows ── */
  .price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    transition: background 0.15s;
  }

  .price-row:last-child {
    border-bottom: none;
  }

  .row-name {
    font-size: 14px;
    font-weight: 300;
    color: var(--text);
    flex: 1;
    line-height: 1.4;
  }

  .row-note {
    font-size: 11px;
    color: var(--muted);
    margin-top: 2px;
  }

  .row-dots {
    flex: 1;
    border-bottom: 1px dotted #3a3535;
    min-width: 20px;
    align-self: center;
    margin-bottom: 2px;
  }

  .row-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--gold);
    white-space: nowrap;
    letter-spacing: 0.02em;
  }

  /* ── Notice ── */
  .price-notice {
    margin-top: 40px;
    padding: 20px 24px;
    background: var(--card);
    border-left: 2px solid var(--gold);
    border-radius: 0 4px 4px 0;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.7;
  }

  .price-notice strong {
    color: var(--text);
    font-weight: 400;
  }

  /* ── CTA ── */
  .price-cta {
    margin-top: 48px;
    text-align: center;
  }

  .btn-book {
    display: inline-block;
    padding: 15px 44px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background 0.2s, color 0.2s;
  }

  .btn-book:hover {
    background: var(--gold);
    color: var(--bg);
  }

  .btn-back {
  display: inline-block;
  margin: 0 0 32px 0;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.btn-back:hover { color: var(--gold); }

  /* ── Responsive ── */
  @media (max-width: 480px) {
    body { padding: 40px 16px; }
    .row-dots { display: none; }
    .row-price { font-size: 16px; }
  }