/* ── Variables ─────────────────────────────────────────── */
:root {
  --brown:       #5c2520;
  --brown-mid:   #8b5e52;
  --brown-faint: rgba(92, 37, 32, 0.18);
  --beige:       #f0e8dc;
  --white:       #faf8f4;
  --hero-bg:     #f5ede3;
}

/* ── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--beige);
  color: var(--brown);
  font-family: 'Cormorant Garamond', Georgia, serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
address { font-style: normal; }

/* ── HERO (typographic) ────────────────────────────────── */
.hero {
  background: var(--hero-bg);
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(48px, 10vw, 96px) clamp(24px, 6vw, 64px);
}

.hero-logo {
  width: clamp(280px, 62vw, 480px);
  height: auto;
  display: block;
}

.hero-rule {
  width: 36px;
  height: 1px;
  background: var(--brown-faint);
  margin: clamp(24px, 4vw, 40px) auto;
}

.hero-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.hero-cl {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--brown);
  transition: color 0.2s;
}

.hero-cl:hover { color: var(--brown-mid); }

.hero-addr {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(0.9rem, 2.2vw, 1.05rem);
  color: var(--brown-mid);
  line-height: 1.7;
  text-align: center;
  margin-top: 4px;
}

/* ── PRICE LIST ────────────────────────────────────────── */
.prices {
  background: var(--beige);
  padding: clamp(40px, 7vw, 80px) clamp(20px, 6vw, 96px) clamp(56px, 9vw, 112px);
  max-width: 780px;
  margin: 0 auto;
}

/* top row: R-EDA'S • ••• • STUDIO */
.prices-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(0.5rem, 1.4vw, 0.65rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: clamp(32px, 5vw, 56px);
}

.dot-mark {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brown);
  vertical-align: middle;
  margin: 0 4px;
}

/* "Price list." stacked logotype */
.prices-title-wrap {
  margin: 0 auto clamp(32px, 6vw, 56px);
}

.prices-title {
  font-weight: 400;
  color: var(--brown);
  text-align: center;
  font-size: clamp(2.6rem, 9vw, 4.4rem);
  line-height: 1;
}

.title-price { font-style: normal; font-weight: 400; }
.title-list  { font-style: italic; font-weight: 300; }


/* ── Category ──────────────────────────────────────────── */
.category { margin-bottom: clamp(28px, 5vw, 48px); }

.category-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: normal;
  font-weight: 400;
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  color: var(--brown);
  padding-bottom: 10px;
  border-bottom: 1px solid var(--brown-faint);
}

/* ── Service rows (no leaders, no per-row rules — as in PDF) ─ */
.service-list {
  list-style: none;
  padding-top: clamp(10px, 2vw, 16px);
}

.service-row {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: clamp(7px, 1.2vw, 10px) 0 clamp(7px, 1.2vw, 10px) clamp(16px, 9vw, 80px);
}

.service-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(0.58rem, 1.5vw, 0.72rem);
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brown);
}

.service-rule { flex: 1; }

.service-price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  font-size: clamp(0.58rem, 1.5vw, 0.72rem);
  letter-spacing: 0.12em;
  color: var(--brown);
  text-align: right;
  white-space: nowrap;
}

/* ── Footer row ────────────────────────────────────────── */
.prices-footer {
  display: flex;
  justify-content: space-between;
  margin-top: clamp(32px, 5vw, 56px);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  font-size: clamp(0.5rem, 1.4vw, 0.65rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--brown);
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 600px) {
  /* Hero */
  .hero-logo { width: clamp(220px, 72vw, 340px); }
  .hero-rule  { margin: 20px auto; }
  .hero-cl    { font-size: 1.05rem; }
  .hero-addr  { font-size: 0.92rem; }

  /* Prices header — reduce extreme letter-spacing */
  .prices-header,
  .prices-footer {
    font-size: 0.58rem;
    letter-spacing: 0.3em;
  }

  /* Service rows — legible font + tighter indent */
  .service-name,
  .service-price {
    font-size: 0.66rem;
    letter-spacing: 0.16em;
  }
  .service-row   { padding-left: clamp(14px, 7vw, 40px); gap: 12px; }
  .category-name { font-size: 1.45rem; }

  .prices-title { font-size: clamp(2.4rem, 13vw, 3.2rem); }
}

@media (max-width: 420px) {
  .prices         { padding-left: 16px; padding-right: 16px; }
  .service-row    { padding-left: 14px; }
}
