@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=DM+Sans:wght@300;400;500&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --heading:  #7d6a61;
  --gold:     #b8965a;
  --charcoal: #2a2420;
  --mid:      #8a7a74;
  --rule:     rgba(125, 106, 97, 0.2);
  --bg-hover: rgba(125, 106, 97, 0.04);
}

html, body {
  width: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--charcoal);
  background: transparent;

}

/* ── Brand card ── */
.joico-card {
  background: var(--charcoal);
  border-radius: 12px;
  padding: 36px 48px;
  margin-bottom: 52px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.joico-card::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 0.5px solid rgba(184,150,90,0.2);
}
.joico-card::after {
  content: '';
  position: absolute;
  bottom: -60px; right: 20px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 0.5px solid rgba(184,150,90,0.1);
}
.joico-tag {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.joico-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  color: #fff;
  margin-bottom: 12px;
}
.joico-card p {
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
  max-width: 70ch;
  position: relative;
  z-index: 1;
}

/* ── Section header ── */
.section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 52px 0 12px;
}
.section-header:first-of-type {
  margin-top: 0;
}
.section-header::after {
  content: '';
  flex: 1;
  height: 0.5px;
  background: var(--rule);
}
.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  color: var(--heading);
  white-space: nowrap;
}

/* ── Section note ── */
.section-note {
  font-size: 12px;
  color: var(--mid);
  margin: -6px 0 16px;
  letter-spacing: 0.02em;
}

/* ── Price table ── */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 8px;
}
.price-table tr {
  border-bottom: 0.5px solid var(--rule);
  transition: background 0.15s;
}
.price-table tr:last-child { border-bottom: none; }
.price-table tr:hover { background: var(--bg-hover); }
.price-table td {
  padding: 14px 0;
  font-size: clamp(13px, 1.4vw, 15px);
  line-height: 1.4;
  vertical-align: middle;
}
.price-table td.service-name {
  color: var(--charcoal);
  width: 100%;
}
.price-table td:last-child {
  text-align: right;
  font-weight: 500;
  font-size: clamp(13px, 1.4vw, 15px);
  color: var(--heading);
  white-space: nowrap;
  padding-left: 24px;
}

/* ── "from" label ── */
.from-label {
  font-size: 10px;
  font-weight: 400;
  color: var(--mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-right: 4px;
}

/* ── Duration badge ── */
.duration {
  display: inline-block;
  font-size: 11px;
  font-weight: 400;
  color: var(--mid);
  background: rgba(125,106,97,0.08);
  border-radius: 100px;
  padding: 2px 8px;
  vertical-align: middle;
  letter-spacing: 0.02em;
  white-space: nowrap;
  margin-left: 6px;
}

/* ── Service block (with description) ── */
.service-block {
  border-bottom: 0.5px solid var(--rule);
  padding: 18px 0;
  transition: background 0.15s;
}
.service-block:last-of-type {
  border-bottom: none;
}
.service-block:hover {
  background: var(--bg-hover);
}
.service-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.service-info {
  flex: 1;
}
.service-name {
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 500;
  color: var(--charcoal);
  display: inline;
  margin-right: 8px;
}
.service-desc {
  font-size: clamp(12px, 1.2vw, 13.5px);
  color: var(--mid);
  line-height: 1.75;
  margin-top: 6px;
}
.course-prices {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--heading);
}
.price {
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 500;
  color: var(--heading);
  white-space: nowrap;
  padding-top: 2px;
  flex-shrink: 0;
}

/* ── Sub-section header ── */
.sub-section-header {
  margin: 32px 0 10px;
}
.sub-section-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 400;
  font-style: italic;
  color: var(--mid);
  border-bottom: 0.5px solid var(--rule);
  padding-bottom: 6px;
}

/* ── Notes ── */
.deposits-note,
.patch-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--mid);
  font-style: italic;
  line-height: 1.7;
}
.patch-note {
  margin-top: 40px;
}
.deposits-note a,
.patch-note a {
  color: var(--heading);
  text-decoration: none;
  border-bottom: 0.5px solid var(--rule);
}

