/* Styles for the pages rebuilt from the client brief.
   The header and footer come from the captured homepage and bring their own CSS;
   everything between them is styled here, using the homepage's own palette and
   type so the new pages sit beside the old one without looking bolted on. */

:root {
  --skin-gold: #937110;
  --skin-gold-light: #c09f07;
  --skin-ink: #212121;
  --skin-muted: #4e4b66;
  --skin-ground: #f5f5f5;
  --skin-line: #ebebeb;
}

.skin-page {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--skin-ink);
  background: #fff;
  padding-top: 100px; /* clears the fixed header */
}

.skin-page * { box-sizing: border-box; }

/* Hero ------------------------------------------------------------------ */

.skin-hero {
  position: relative;
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  background: var(--skin-ink) center / cover no-repeat;
  color: #fff;
}

.skin-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.65) 100%);
}

.skin-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 64px 24px 48px;
}

.skin-hero .skin-eyebrow {
  font-size: 13px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--skin-gold-light);
  margin-bottom: 14px;
}

.skin-hero h1 {
  font-family: 'Lora', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.1;
  margin: 0;
}

.skin-hero .skin-lead {
  margin-top: 16px;
  max-width: 62ch;
  font-size: clamp(15px, 1.6vw, 19px);
  line-height: 1.6;
  color: rgba(255,255,255,.92);
}

.skin-hero--plain { min-height: 0; background: var(--skin-ground); color: var(--skin-ink); }
.skin-hero--plain::after { display: none; }
.skin-hero--plain .skin-lead { color: var(--skin-muted); }

/* Body ------------------------------------------------------------------ */

.skin-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  font-size: 17px;
  line-height: 1.75;
}

.skin-body h2 {
  font-family: 'Lora', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.2;
  margin: 56px 0 18px;
}

.skin-body h2:first-child { margin-top: 0; }

.skin-body h3 {
  font-size: 15px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--skin-gold);
  margin: 40px 0 12px;
}

.skin-body p { margin: 0 0 18px; }
.skin-body strong { font-weight: 700; }

.skin-body ul {
  margin: 0 0 22px;
  padding-left: 0;
  list-style: none;
}

.skin-body li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
}

.skin-body li::before {
  content: '';
  position: absolute;
  left: 4px;
  top: .72em;
  width: 8px;
  height: 8px;
  border: 1px solid var(--skin-gold);
  transform: rotate(45deg);
}

.skin-body hr {
  border: 0;
  border-top: 1px solid var(--skin-line);
  margin: 48px 0;
}

.skin-note {
  border-left: 3px solid var(--skin-gold);
  background: var(--skin-ground);
  padding: 20px 24px;
  margin: 0 0 24px;
}

.skin-note p:last-child { margin-bottom: 0; }

/* Figures --------------------------------------------------------------- */

.skin-figure { margin: 32px 0; }

.skin-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 2px;
}

.skin-figure figcaption {
  margin-top: 10px;
  font-size: 14px;
  color: var(--skin-muted);
}

/* Numbers --------------------------------------------------------------- */

.skin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin: 32px 0 40px;
  padding: 0;
  list-style: none;
}

.skin-stats li {
  padding: 22px 18px;
  background: var(--skin-ground);
  text-align: center;
}

.skin-stats li::before { display: none; }

.skin-stat-value {
  display: block;
  font-family: 'Lora', Georgia, serif;
  font-size: 30px;
  color: var(--skin-gold);
  line-height: 1.1;
}

.skin-stat-label {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--skin-muted);
}

/* Price tables ---------------------------------------------------------- */

.skin-table-wrap { overflow-x: auto; margin: 0 0 32px; }

.skin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.skin-table th,
.skin-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--skin-line);
  text-align: left;
}

.skin-table th {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--skin-muted);
  font-weight: 600;
}

.skin-table td + td,
.skin-table th + th { text-align: right; white-space: nowrap; }

/* Call to action -------------------------------------------------------- */

.skin-cta {
  background: var(--skin-ink);
  color: #fff;
  text-align: center;
  padding: 56px 24px;
}

.skin-cta h2 {
  font-family: 'Lora', 'Playfair Display', Georgia, serif;
  font-weight: 500;
  font-size: clamp(22px, 3vw, 32px);
  margin: 0 0 14px;
}

.skin-cta p { margin: 0 auto 26px; max-width: 56ch; color: rgba(255,255,255,.85); }

.skin-btn {
  display: inline-block;
  padding: 14px 34px;
  background: var(--skin-gold-light);
  color: #1a1a1a;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
}

.skin-btn + .skin-btn { margin-left: 12px; background: transparent; color: #fff; box-shadow: inset 0 0 0 1px rgba(255,255,255,.5); }

@media (max-width: 640px) {
  .skin-page { padding-top: 80px; }
  .skin-body { padding: 40px 20px 60px; }
  .skin-btn + .skin-btn { margin: 12px 0 0; display: block; }
}

/* Overrides ------------------------------------------------------------- */
/* The theme styles bare `button` and `a` inside `.elementor` with its own
   accent, which reaches the lifted header and our body copy. Take them back
   with a selector that outranks it rather than with !important. */

.elementor .hamburger,
.elementor .hamburger:hover,
.elementor .hamburger:focus {
  background: transparent;
  border: none;
  box-shadow: none;
}

.skin-page .skin-body a {
  color: var(--skin-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.skin-page .skin-body a:hover { color: var(--skin-ink); }

.skin-page .skin-cta .skin-btn { text-decoration: none; }
