/* ===================================================================
   HDS Price Lists — frontend styles
   One stylesheet, five layouts, two themes (light / dark).
   No container background is ever set: only text colours, borders and
   the self-contained coloured headers, so the list reads correctly on a
   white page (.hds-light) or a black page (.hds-dark).
   Everything is scoped under .hds-pl so it never leaks into the theme.
   =================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;1,500;1,600&family=Outfit:wght@400;500;600;700&display=swap');

.hds-pl,
.hds-pl *,
.hds-pl *::before,
.hds-pl *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.hds-pl table { border-collapse: collapse; }
.hds-pl a { color: inherit; text-decoration: none; }

/* ---- Icon (Font Awesome) with decorative fallback ---------------- */
.hds-pl .hdp-card-icon i,
.hds-pl .hdp-scard-icon i,
.hds-pl .hdp-ficon i {
  font-size: inherit;
  line-height: 1;
}
.hds-pl .hdp-card-icon i:empty::after,
.hds-pl .hdp-scard-icon i:empty::after,
.hds-pl .hdp-ficon i:empty::after {
  content: '\25C6';
  font-family: serif;
  font-size: 0.85em;
}

/* ===================================================================
   THEME TOKENS
   Brand colours are fixed; ink / line / hover switch per theme.
   =================================================================== */
.hds-pl {
  /* brand (fixed both themes) */
  --hdp-coffee: #1a0f08;
  --hdp-coffee-mid: #2d1d12;
  --hdp-mocha: #4a2f1f;
  --hdp-caramel: #b8864b;
  --hdp-gold: #e6b35a;
  --hdp-gold-bright: #f3c97a;
  --hdp-cream: #f5ead6;
  --hdp-cream-light: #fdf8ec;

  /* theme dependent — LIGHT defaults */
  --hdp-ink: #1a0f08;
  --hdp-ink-soft: #3d2817;
  --hdp-accent: #b8864b;
  --hdp-line: rgba(184, 134, 75, 0.35);
  --hdp-row-hover: #fdf8ec;
  --hdp-thead-bg: #1a0f08;
  --hdp-thead-text: #f3c97a;
  --hdp-foot-text: #3d2817;
  --hdp-card-shadow: rgba(26, 15, 8, 0.18);

  --hdp-display: 'Cormorant Garamond', 'Playfair Display', 'Times New Roman', Georgia, serif;
  --hdp-body: 'Outfit', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  font-family: var(--hdp-body);
  color: var(--hdp-ink);
  line-height: 1.55;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  max-width: 1280px;
  margin: 0 auto;
}

.hds-pl.hds-dark {
  --hdp-ink: #f5ead6;
  --hdp-ink-soft: #cbb792;
  --hdp-accent: #f3c97a;
  --hdp-line: rgba(243, 201, 122, 0.28);
  --hdp-row-hover: rgba(243, 201, 122, 0.08);
  --hdp-thead-bg: #2d1d12;
  --hdp-thead-text: #f3c97a;
  --hdp-foot-text: #cbb792;
  --hdp-card-shadow: rgba(0, 0, 0, 0.5);
}

/* Table-based layouts cap their own width */
.hds-pl.hds-pl--table,
.hds-pl.hds-pl--feature { max-width: 900px; }
.hds-pl.hds-pl--values { max-width: 1100px; }

/* ===================================================================
   PAGE HEADING (cards / services)
   =================================================================== */
.hds-pl .hdp-page-head {
  text-align: center;
  margin-bottom: 56px;
}
.hds-pl .hdp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--hdp-accent);
  font-weight: 600;
  margin-bottom: 16px;
}
.hds-pl .hdp-eyebrow::before,
.hds-pl .hdp-eyebrow::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--hdp-accent);
}
.hds-pl .hdp-page-title {
  font-family: var(--hdp-display);
  font-size: clamp(38px, 7vw, 80px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--hdp-ink);
  margin-bottom: 12px;
}
.hds-pl .hdp-page-title em {
  font-style: italic;
  color: var(--hdp-accent);
  font-weight: 600;
}
.hds-pl .hdp-page-sub {
  font-family: var(--hdp-display);
  font-style: italic;
  font-size: 18px;
  color: var(--hdp-ink-soft);
}

/* ===================================================================
   LAYOUT: CARDS (masonry)
   =================================================================== */
.hds-pl .hdp-masonry { columns: 2; column-gap: 24px; }
.hds-pl .hdp-card {
  break-inside: avoid;
  margin-bottom: 24px;
  display: inline-block;
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--hdp-line);
  background: transparent;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hds-pl .hdp-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px -20px var(--hdp-card-shadow);
}
.hds-pl .hdp-card-head {
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid var(--hdp-line);
  position: relative;
  overflow: hidden;
}
.hds-pl .hdp-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.hds-pl .hdp-card-titles { position: relative; z-index: 1; }
.hds-pl .hdp-card-title {
  font-family: var(--hdp-display);
  font-size: 26px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--hdp-ink);
}
.hds-pl .hdp-card-title em { font-style: italic; font-weight: 500; color: var(--hdp-accent); }
.hds-pl .hdp-card-sub {
  font-size: 10.5px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 4px;
  font-weight: 600;
  opacity: 0.75;
  color: var(--hdp-accent);
}
.hds-pl .hdp-card-body { padding: 8px 0; }
.hds-pl .hdp-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 14px 28px;
  border-bottom: 1px solid var(--hdp-line);
  transition: background 0.25s ease;
}
.hds-pl .hdp-row:last-child { border-bottom: none; }
.hds-pl .hdp-row:hover { background: var(--hdp-row-hover); }
.hds-pl .hdp-row-sub { background: transparent; }
.hds-pl .hdp-subheader-label {
  font-family: var(--hdp-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hdp-accent);
  font-weight: 600;
}
.hds-pl .hdp-service {
  font-family: var(--hdp-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--hdp-ink);
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.hds-pl .hdp-service em {
  font-style: italic;
  color: var(--hdp-accent);
  font-weight: 500;
  font-size: 13px;
  display: block;
  margin-top: 1px;
  letter-spacing: 0;
}
.hds-pl .hdp-price-val,
.hds-pl .hdp-price-value {
  font-family: var(--hdp-display);
  font-weight: 600;
  color: var(--hdp-ink);
  letter-spacing: -0.005em;
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
}
.hds-pl .hdp-card .hdp-price-value { font-size: 21px; }
.hds-pl .hdp-cur {
  font-size: 14px;
  font-weight: 500;
  color: var(--hdp-accent);
  margin-left: 1px;
}
.hds-pl .hdp-unit {
  font-style: italic;
  font-weight: 500;
  font-size: 12px;
  color: var(--hdp-ink-soft);
  margin-left: 2px;
}
.hds-pl .hdp-price-prefix {
  font-family: var(--hdp-display);
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
  color: var(--hdp-ink-soft);
  margin-right: 2px;
}
.hds-pl .hdp-price-text {
  font-family: var(--hdp-display);
  font-style: italic;
  font-size: 19px;
  font-weight: 500;
  color: var(--hdp-accent);
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.hds-pl .hdp-card-foot {
  padding: 12px 28px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hdp-foot-text);
  font-weight: 500;
  border-top: 1px dashed var(--hdp-line);
  background: transparent;
  text-align: center;
  font-style: italic;
}

/* ---- Card colour variants (self-contained coloured headers) ------ */
/* v-coffee */
.hds-pl .hdp-card.v-coffee .hdp-card-head {
  background: linear-gradient(135deg, var(--hdp-coffee) 0%, var(--hdp-coffee-mid) 100%);
}
.hds-pl .hdp-card.v-coffee .hdp-card-head::after {
  content: ''; position: absolute; top: -50%; right: -10%; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(230, 179, 90, 0.18) 0%, transparent 65%); border-radius: 50%;
}
.hds-pl .hdp-card.v-coffee .hdp-card-icon { background: var(--hdp-gold-bright); color: var(--hdp-coffee); }
.hds-pl .hdp-card.v-coffee .hdp-card-title { color: #fff; }
.hds-pl .hdp-card.v-coffee .hdp-card-title em { color: var(--hdp-gold-bright); }
.hds-pl .hdp-card.v-coffee .hdp-card-sub { color: var(--hdp-gold-bright); opacity: 1; }
/* v-cream */
.hds-pl .hdp-card.v-cream .hdp-card-head { background: var(--hdp-cream); }
.hds-pl .hdp-card.v-cream .hdp-card-icon { background: var(--hdp-coffee); color: var(--hdp-gold-bright); }
.hds-pl .hdp-card.v-cream .hdp-card-title { color: var(--hdp-coffee); }
.hds-pl .hdp-card.v-cream .hdp-card-title em { color: var(--hdp-caramel); }
.hds-pl .hdp-card.v-cream .hdp-card-sub { color: var(--hdp-caramel); opacity: 1; }
/* v-gold */
.hds-pl .hdp-card.v-gold .hdp-card-head { background: linear-gradient(135deg, var(--hdp-gold) 0%, var(--hdp-caramel) 100%); }
.hds-pl .hdp-card.v-gold .hdp-card-icon { background: var(--hdp-coffee); color: var(--hdp-gold-bright); }
.hds-pl .hdp-card.v-gold .hdp-card-title { color: var(--hdp-coffee); }
.hds-pl .hdp-card.v-gold .hdp-card-title em { color: #fff; }
.hds-pl .hdp-card.v-gold .hdp-card-sub { color: var(--hdp-coffee); opacity: 0.6; }
/* v-featured — full coffee card */
.hds-pl .hdp-card.v-featured { background: var(--hdp-coffee); border-color: var(--hdp-coffee); }
.hds-pl .hdp-card.v-featured .hdp-card-head {
  background: transparent; border-bottom-color: rgba(230, 179, 90, 0.25);
  padding: 32px 28px 26px; position: relative;
}
.hds-pl .hdp-card.v-featured .hdp-card-head::after {
  content: ''; position: absolute; top: -30%; right: -10%; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(230, 179, 90, 0.22) 0%, transparent 65%); border-radius: 50%;
}
.hds-pl .hdp-card.v-featured .hdp-card-icon { background: var(--hdp-gold-bright); color: var(--hdp-coffee); width: 48px; height: 48px; font-size: 19px; }
.hds-pl .hdp-card.v-featured .hdp-card-title { color: #fff; font-size: 30px; }
.hds-pl .hdp-card.v-featured .hdp-card-title em { color: var(--hdp-gold-bright); }
.hds-pl .hdp-card.v-featured .hdp-card-sub { color: var(--hdp-gold-bright); opacity: 1; }
.hds-pl .hdp-card.v-featured .hdp-row { border-bottom-color: rgba(230, 179, 90, 0.15); }
.hds-pl .hdp-card.v-featured .hdp-row:hover { background: rgba(230, 179, 90, 0.08); }
.hds-pl .hdp-card.v-featured .hdp-service { color: var(--hdp-cream); }
.hds-pl .hdp-card.v-featured .hdp-service em { color: var(--hdp-gold); }
.hds-pl .hdp-card.v-featured .hdp-price-value { color: var(--hdp-gold-bright); }
.hds-pl .hdp-card.v-featured .hdp-cur { color: var(--hdp-caramel); }
.hds-pl .hdp-card.v-featured .hdp-price-text { color: var(--hdp-gold); }
.hds-pl .hdp-card.v-featured .hdp-card-foot { background: rgba(230, 179, 90, 0.08); color: var(--hdp-gold-bright); border-top-color: rgba(230, 179, 90, 0.25); }
/* v-bordered */
.hds-pl .hdp-card.v-bordered .hdp-card-head { background: var(--hdp-cream-light); border-bottom: 2px solid var(--hdp-caramel); }
.hds-pl .hdp-card.v-bordered .hdp-card-icon { background: transparent; color: var(--hdp-caramel); border: 1.5px solid var(--hdp-caramel); }
.hds-pl .hdp-card.v-bordered .hdp-card-title { color: var(--hdp-coffee); }
.hds-pl .hdp-card.v-bordered .hdp-card-title em { color: var(--hdp-caramel); }
.hds-pl .hdp-card.v-bordered .hdp-card-sub { color: var(--hdp-caramel); opacity: 1; }
/* v-striped */
.hds-pl .hdp-card.v-striped .hdp-card-head {
  background: repeating-linear-gradient(135deg, var(--hdp-coffee), var(--hdp-coffee) 8px, var(--hdp-coffee-mid) 8px, var(--hdp-coffee-mid) 16px);
}
.hds-pl .hdp-card.v-striped .hdp-card-icon { background: var(--hdp-gold-bright); color: var(--hdp-coffee); }
.hds-pl .hdp-card.v-striped .hdp-card-title { color: #fff; }
.hds-pl .hdp-card.v-striped .hdp-card-title em { color: var(--hdp-gold-bright); }
.hds-pl .hdp-card.v-striped .hdp-card-sub { color: var(--hdp-gold-bright); opacity: 1; }
/* v-outlined */
.hds-pl .hdp-card.v-outlined .hdp-card-head { background: var(--hdp-cream-light); border-bottom: 1px solid var(--hdp-line); padding: 26px 28px; }
.hds-pl .hdp-card.v-outlined .hdp-card-icon { background: var(--hdp-coffee); color: var(--hdp-gold-bright); }
.hds-pl .hdp-card.v-outlined .hdp-card-title { color: var(--hdp-coffee); }
.hds-pl .hdp-card.v-outlined .hdp-card-title em { color: var(--hdp-caramel); }
.hds-pl .hdp-card.v-outlined .hdp-card-sub { color: var(--hdp-caramel); opacity: 1; }
/* v-playful */
.hds-pl .hdp-card.v-playful .hdp-card-head { background: linear-gradient(135deg, var(--hdp-caramel) 0%, var(--hdp-mocha) 100%); }
.hds-pl .hdp-card.v-playful .hdp-card-icon { background: #fff; color: var(--hdp-caramel); }
.hds-pl .hdp-card.v-playful .hdp-card-title { color: #fff; }
.hds-pl .hdp-card.v-playful .hdp-card-title em { color: var(--hdp-gold-bright); }
.hds-pl .hdp-card.v-playful .hdp-card-sub { color: var(--hdp-gold-bright); opacity: 1; }
/* v-mocha */
.hds-pl .hdp-card.v-mocha .hdp-card-head { background: linear-gradient(135deg, var(--hdp-mocha) 0%, var(--hdp-coffee-mid) 100%); }
.hds-pl .hdp-card.v-mocha .hdp-card-icon { background: var(--hdp-gold-bright); color: var(--hdp-coffee); }
.hds-pl .hdp-card.v-mocha .hdp-card-title { color: #fff; }
.hds-pl .hdp-card.v-mocha .hdp-card-title em { color: var(--hdp-gold-bright); }
.hds-pl .hdp-card.v-mocha .hdp-card-sub { color: var(--hdp-gold-bright); opacity: 1; }
/* v-split */
.hds-pl .hdp-card.v-split .hdp-card-head { background: linear-gradient(90deg, var(--hdp-cream) 0%, var(--hdp-cream) 50%, var(--hdp-caramel) 50%, var(--hdp-gold) 100%); }
.hds-pl .hdp-card.v-split .hdp-card-icon { background: var(--hdp-coffee); color: var(--hdp-gold-bright); }
.hds-pl .hdp-card.v-split .hdp-card-title { color: var(--hdp-coffee); }
.hds-pl .hdp-card.v-split .hdp-card-title em { color: #fff; }
.hds-pl .hdp-card.v-split .hdp-card-sub { color: var(--hdp-coffee); opacity: 0.65; }

/* ===================================================================
   LAYOUT: TABLE
   =================================================================== */
.hds-pl .hdp-table-block { margin-bottom: 28px; }
.hds-pl .hdp-table-block:last-child { margin-bottom: 0; }
.hds-pl .hdp-table-wrap {
  background: transparent;
  border: 1px solid var(--hdp-line);
  border-radius: 4px;
  overflow: hidden;
}
.hds-pl .hdp-table { width: 100%; border-collapse: collapse; }
.hds-pl .hdp-table thead tr { background: var(--hdp-thead-bg); }
.hds-pl .hdp-table thead th {
  font-family: var(--hdp-body);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--hdp-thead-text);
  font-weight: 700;
  text-align: left;
  padding: 20px 28px;
}
.hds-pl .hdp-table thead th:last-child { text-align: right; }
.hds-pl .hdp-table thead th em { font-style: italic; }
.hds-pl .hdp-table tbody tr { border-bottom: 1px solid var(--hdp-line); transition: background 0.25s ease; }
.hds-pl .hdp-table tbody tr:last-child { border-bottom: none; }
.hds-pl .hdp-table tbody tr:hover { background: var(--hdp-row-hover); }
.hds-pl .hdp-table tbody td { padding: 20px 28px; vertical-align: middle; }
.hds-pl .hdp-table .hdp-service { font-size: 21px; line-height: 1.3; }
.hds-pl .hdp-table .hdp-service em { font-size: 15px; margin-top: 2px; }
.hds-pl .hdp-table .hdp-price { text-align: right; white-space: nowrap; }
.hds-pl .hdp-table .hdp-price-value { font-size: 26px; }
.hds-pl .hdp-table .hdp-cur { font-size: 17px; }
.hds-pl .hdp-table .hdp-price-prefix { font-size: 17px; }
.hds-pl .hdp-table .hdp-price-text { font-size: 19px; }
/* subheader rows (e.g. Boys / Girls) */
.hds-pl .hdp-table .hdp-subheader td {
  background: transparent;
  padding: 12px 28px;
  font-family: var(--hdp-display);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--hdp-accent);
  font-weight: 600;
  border-bottom: 1px solid var(--hdp-line);
}
.hds-pl .hdp-table .hdp-subheader:hover td { background: transparent; }
.hds-pl .hdp-table-foot {
  padding: 12px 4px 0;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--hdp-foot-text);
  font-style: italic;
  text-align: center;
}

/* ===================================================================
   LAYOUT: FEATURE list
   =================================================================== */
.hds-pl.hds-pl--feature .hdp-table-wrap { line-height: 1.55; }
.hds-pl .hdp-frow {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 22px 28px;
  border-bottom: 1px solid var(--hdp-line);
  transition: background 0.25s ease;
}
.hds-pl .hdp-frow.no-ico { grid-template-columns: auto 1fr; }
.hds-pl .hdp-frow:last-child { border-bottom: none; }
.hds-pl .hdp-frow:hover { background: var(--hdp-row-hover); }
.hds-pl .hdp-num {
  font-family: var(--hdp-display);
  font-style: italic;
  font-size: 24px;
  font-weight: 600;
  color: var(--hdp-accent);
  line-height: 1;
  min-width: 32px;
}
.hds-pl .hdp-ficon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--hdp-coffee); color: var(--hdp-gold-bright);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 17px; flex-shrink: 0;
}
.hds-pl .hdp-fcontent { min-width: 0; }
.hds-pl .hdp-ftitle {
  font-family: var(--hdp-display);
  font-size: 21px; font-weight: 600; color: var(--hdp-ink);
  line-height: 1.25; letter-spacing: -0.005em; margin-bottom: 4px;
}
.hds-pl .hdp-ftitle em { font-style: italic; color: var(--hdp-accent); font-weight: 500; }
.hds-pl .hdp-fdesc { font-size: 14.5px; color: var(--hdp-ink-soft); line-height: 1.55; }

/* ===================================================================
   LAYOUT: SERVICES grid
   =================================================================== */
.hds-pl .hdp-sgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.hds-pl .hdp-scard {
  background: transparent;
  border: 1px solid var(--hdp-line);
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  display: flex;
  flex-direction: column;
}
.hds-pl .hdp-scard:hover { transform: translateY(-4px); box-shadow: 0 20px 50px -25px var(--hdp-card-shadow); }
.hds-pl .hdp-scard-head {
  padding: 32px 28px 24px;
  display: flex; align-items: flex-start; gap: 18px;
  position: relative; overflow: hidden;
}
.hds-pl .hdp-scard-num {
  position: absolute; top: 18px; right: 24px;
  font-family: var(--hdp-display); font-style: italic;
  font-size: 56px; font-weight: 500; line-height: 1; opacity: 0.15; letter-spacing: -0.02em;
}
.hds-pl .hdp-scard-icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0; position: relative; z-index: 1;
}
.hds-pl .hdp-scard-titles { position: relative; z-index: 1; padding-top: 8px; }
.hds-pl .hdp-scard-title {
  font-family: var(--hdp-display);
  font-size: 26px; font-weight: 600; line-height: 1.15; letter-spacing: -0.01em;
}
.hds-pl .hdp-scard-title em { font-style: italic; font-weight: 500; }
.hds-pl .hdp-scard-body { padding: 0 28px 32px; flex: 1; }
.hds-pl .hdp-sintro {
  font-size: 14.5px; color: var(--hdp-ink-soft); font-style: italic;
  font-family: var(--hdp-display); margin-bottom: 18px; letter-spacing: 0.02em;
}
.hds-pl .hdp-slist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.hds-pl .hdp-slist li {
  padding-left: 26px; position: relative;
  font-size: 15px; color: var(--hdp-ink); font-weight: 500; line-height: 1.5;
}
.hds-pl .hdp-slist li::before {
  content: ''; position: absolute; left: 0; top: 9px; width: 14px; height: 8px;
  border-left: 2px solid var(--hdp-accent); border-bottom: 2px solid var(--hdp-accent);
  transform: rotate(-45deg);
}
/* services variants */
.hds-pl .hdp-scard.v1 .hdp-scard-head { background: linear-gradient(135deg, var(--hdp-coffee) 0%, var(--hdp-coffee-mid) 100%); color: var(--hdp-cream); }
.hds-pl .hdp-scard.v1 .hdp-scard-head::after { content: ''; position: absolute; top: -40%; right: -20%; width: 220px; height: 220px; background: radial-gradient(circle, rgba(230,179,90,0.2) 0%, transparent 65%); border-radius: 50%; pointer-events: none; }
.hds-pl .hdp-scard.v1 .hdp-scard-icon { background: var(--hdp-gold-bright); color: var(--hdp-coffee); }
.hds-pl .hdp-scard.v1 .hdp-scard-title { color: #fff; }
.hds-pl .hdp-scard.v1 .hdp-scard-title em { color: var(--hdp-gold-bright); }
.hds-pl .hdp-scard.v1 .hdp-scard-num { color: var(--hdp-gold-bright); }
.hds-pl .hdp-scard.v2 .hdp-scard-head { background: repeating-linear-gradient(135deg, var(--hdp-coffee), var(--hdp-coffee) 8px, var(--hdp-coffee-mid) 8px, var(--hdp-coffee-mid) 16px); color: var(--hdp-cream); }
.hds-pl .hdp-scard.v2 .hdp-scard-icon { background: var(--hdp-gold-bright); color: var(--hdp-coffee); }
.hds-pl .hdp-scard.v2 .hdp-scard-title { color: #fff; }
.hds-pl .hdp-scard.v2 .hdp-scard-title em { color: var(--hdp-gold-bright); }
.hds-pl .hdp-scard.v2 .hdp-scard-num { color: var(--hdp-gold-bright); }
.hds-pl .hdp-scard.v3 .hdp-scard-head { background: linear-gradient(135deg, var(--hdp-gold) 0%, var(--hdp-caramel) 100%); color: var(--hdp-coffee); }
.hds-pl .hdp-scard.v3 .hdp-scard-icon { background: var(--hdp-coffee); color: var(--hdp-gold-bright); }
.hds-pl .hdp-scard.v3 .hdp-scard-title { color: var(--hdp-coffee); }
.hds-pl .hdp-scard.v3 .hdp-scard-title em { color: #fff; }
.hds-pl .hdp-scard.v3 .hdp-scard-num { color: var(--hdp-coffee); }
.hds-pl .hdp-scard.v4 .hdp-scard-head { background: var(--hdp-cream); color: var(--hdp-coffee); border-bottom: 2px solid var(--hdp-caramel); }
.hds-pl .hdp-scard.v4 .hdp-scard-icon { background: transparent; color: var(--hdp-caramel); border: 1.5px solid var(--hdp-caramel); }
.hds-pl .hdp-scard.v4 .hdp-scard-title { color: var(--hdp-coffee); }
.hds-pl .hdp-scard.v4 .hdp-scard-title em { color: var(--hdp-caramel); }
.hds-pl .hdp-scard.v4 .hdp-scard-num { color: var(--hdp-caramel); }
.hds-pl .hdp-scard.v5 .hdp-scard-head { background: linear-gradient(135deg, var(--hdp-mocha) 0%, var(--hdp-coffee-mid) 100%); color: var(--hdp-cream); }
.hds-pl .hdp-scard.v5 .hdp-scard-icon { background: var(--hdp-gold-bright); color: var(--hdp-coffee); }
.hds-pl .hdp-scard.v5 .hdp-scard-title { color: #fff; }
.hds-pl .hdp-scard.v5 .hdp-scard-title em { color: var(--hdp-gold-bright); }
.hds-pl .hdp-scard.v5 .hdp-scard-num { color: var(--hdp-gold-bright); }
.hds-pl .hdp-scard.v6 .hdp-scard-head { background: linear-gradient(135deg, var(--hdp-caramel) 0%, var(--hdp-mocha) 100%); color: #fff; }
.hds-pl .hdp-scard.v6 .hdp-scard-icon { background: #fff; color: var(--hdp-caramel); }
.hds-pl .hdp-scard.v6 .hdp-scard-title { color: #fff; }
.hds-pl .hdp-scard.v6 .hdp-scard-title em { color: var(--hdp-gold-bright); }
.hds-pl .hdp-scard.v6 .hdp-scard-num { color: var(--hdp-gold-bright); }

/* ===================================================================
   LAYOUT: VALUES grid
   =================================================================== */
.hds-pl .hdp-vwrap { background: transparent; border: 1px solid var(--hdp-line); border-radius: 6px; overflow: hidden; }
.hds-pl .hdp-vheader { padding: 34px 40px 20px; border-bottom: 1px solid var(--hdp-line); }
.hds-pl .hdp-vsub {
  color: var(--hdp-accent); font-size: 13px; letter-spacing: 0.22em;
  text-transform: uppercase; margin-bottom: 10px; font-weight: 600;
}
.hds-pl .hdp-vtitle { font-family: var(--hdp-display); font-size: 40px; line-height: 1.1; color: var(--hdp-ink); font-weight: 600; }
.hds-pl .hdp-vtitle em { font-style: italic; color: var(--hdp-accent); }
.hds-pl .hdp-vgrid { display: grid; grid-template-columns: repeat(2, 1fr); }
.hds-pl .hdp-vitem {
  padding: 34px 36px;
  border-right: 1px solid var(--hdp-line);
  border-bottom: 1px solid var(--hdp-line);
  transition: 0.25s ease; background: transparent;
}
.hds-pl .hdp-vitem:nth-child(2n) { border-right: none; }
.hds-pl .hdp-vitem:hover { background: var(--hdp-row-hover); }
.hds-pl .hdp-vnum { font-family: var(--hdp-display); color: var(--hdp-accent); font-size: 20px; margin-bottom: 18px; display: block; }
.hds-pl .hdp-vitem h3 { font-size: 22px; color: var(--hdp-ink); margin-bottom: 14px; font-weight: 600; letter-spacing: -0.01em; font-family: var(--hdp-display); }
.hds-pl .hdp-vitem h3 em { font-style: italic; color: var(--hdp-accent); }
.hds-pl .hdp-vitem p { color: var(--hdp-ink-soft); line-height: 1.8; font-size: 15.5px; }

/* ===================================================================
   RESPONSIVE
   =================================================================== */
@media (max-width: 900px) {
  .hds-pl .hdp-masonry { columns: 1; }
}
@media (max-width: 768px) {
  .hds-pl .hdp-vtitle { font-size: 30px; }
  .hds-pl .hdp-vgrid { grid-template-columns: 1fr; }
  .hds-pl .hdp-vitem { border-right: none !important; padding: 28px 24px; }
  .hds-pl .hdp-vheader { padding: 28px 24px 18px; }
}
@media (max-width: 680px) {
  .hds-pl .hdp-page-head { margin-bottom: 36px; }
  .hds-pl .hdp-card-head { padding: 20px 20px; gap: 12px; }
  .hds-pl .hdp-card.v-featured .hdp-card-head { padding: 24px 20px 20px; }
  .hds-pl .hdp-card-icon { width: 38px; height: 38px; font-size: 15px; }
  .hds-pl .hdp-card-title { font-size: 22px; }
  .hds-pl .hdp-card.v-featured .hdp-card-title { font-size: 24px; }
  .hds-pl .hdp-card-sub { font-size: 9.5px; }
  .hds-pl .hdp-row { padding: 12px 20px; gap: 12px; }
  .hds-pl .hdp-card .hdp-service { font-size: 15.5px; }
  .hds-pl .hdp-card .hdp-service em { font-size: 12px; }
  .hds-pl .hdp-card .hdp-price-value { font-size: 18px; }
  .hds-pl .hdp-card-foot { padding: 10px 20px; font-size: 10px; }

  /* table → stacked rows */
  .hds-pl .hdp-table thead { display: none; }
  .hds-pl .hdp-table tbody tr:not(.hdp-subheader) {
    display: flex; align-items: center; justify-content: space-between;
    gap: 16px; padding: 16px 18px;
  }
  .hds-pl .hdp-table tbody tr:not(.hdp-subheader) td { padding: 0; border: none; }
  .hds-pl .hdp-table .hdp-subheader td { display: block; padding: 10px 18px; font-size: 11px; }
  .hds-pl .hdp-table .hdp-service { font-size: 16px; }
  .hds-pl .hdp-table .hdp-service em { font-size: 12.5px; }
  .hds-pl .hdp-table .hdp-price-value { font-size: 20px; }
  .hds-pl .hdp-table .hdp-price-text { font-size: 15px; }
  .hds-pl .hdp-table .hdp-price-prefix { font-size: 14px; }

  /* feature */
  .hds-pl .hdp-frow { padding: 18px 18px; gap: 14px; grid-template-columns: auto 1fr; }
  .hds-pl .hdp-num { font-size: 18px; min-width: 24px; }
  .hds-pl .hdp-ficon { display: none; }
  .hds-pl .hdp-ftitle { font-size: 17px; }
  .hds-pl .hdp-fdesc { font-size: 13.5px; }

  /* services */
  .hds-pl .hdp-sgrid { grid-template-columns: 1fr; gap: 18px; }
  .hds-pl .hdp-scard-head { padding: 24px 22px 20px; gap: 14px; }
  .hds-pl .hdp-scard-icon { width: 48px; height: 48px; font-size: 19px; }
  .hds-pl .hdp-scard-title { font-size: 22px; }
  .hds-pl .hdp-scard-num { font-size: 44px; top: 14px; right: 20px; }
  .hds-pl .hdp-scard-body { padding: 0 22px 26px; }
}
