/* =============================================================
   SwissHelios Landing Page v4 — Design System CSS
   Exact match to swisshelios-prototype-v4.html
   Enqueue via functions.php or paste into Additional CSS.
   ============================================================= */

/* ── Fonts ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&family=IBM+Plex+Mono:wght@400;500&family=Inter:wght@400;500;600&display=swap');

/* ── Design tokens ─────────────────────────────────────────── */
:root {
  /* Surfaces */
  --sh-bg:          #F7F5EF;
  --sh-surface:     #FBFAF6;
  --sh-sand:        #EFEAE0;
  --sh-panel:       #F1EDE5;

  /* Text */
  --sh-text:        #111111;
  --sh-charcoal:    #1C1C1C;
  --sh-muted:       #6F7378;
  --sh-pale:        #A8A8A8;

  /* Brand */
  --sh-red:         #E10600;
  --sh-red-dark:    #B80000;

  /* Lines */
  --sh-line:        #DDD8CE;
  --sh-line-soft:   #E8E3DA;

  /* Fonts */
  --sh-font-serif:  "Cormorant Garamond", Georgia, serif;
  --sh-font-sans:   "Inter", "Helvetica Neue", Arial, sans-serif;
  --sh-font-mono:   "IBM Plex Mono", "Courier New", monospace;

  /* Layout */
  --sh-container:       1240px;
  --sh-container-wide:  1440px;
  --sh-page-pad:        clamp(20px, 4vw, 48px);
  --sh-section-y:       clamp(64px, 9vw, 120px);

  /* Motion */
  --sh-ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --sh-dur-fast:    160ms;
  --sh-dur:         260ms;
}

/* ── Reset & base ──────────────────────────────────────────── */
.sh-page-wrap *,
.sh-page-wrap *::before,
.sh-page-wrap *::after {
  box-sizing: border-box;
}

.sh-page-wrap {
  background: var(--sh-bg);
  color: var(--sh-text);
  font-family: var(--sh-font-sans);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

.sh-page-wrap img,
.sh-page-wrap svg {
  display: block;
  max-width: 100%;
}

.sh-page-wrap a {
  /*color: inherit;*/
  text-decoration: none;
}

.sh-page-wrap button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

/* ── Typography ────────────────────────────────────────────── */
.sh-page-wrap h1,
.sh-page-wrap h2,
.sh-page-wrap h3,
.sh-page-wrap h4,
.sh-page-wrap .sh-serif {
  font-family: var(--sh-font-serif);
  font-weight: 400;
  letter-spacing: -0.04em;
  color: var(--sh-text);
  margin: 0;
}

.sh-page-wrap h1 { font-size: clamp(52px, 6vw, 96px); line-height: 1.02; }
.sh-page-wrap h2 { font-size: clamp(40px, 4.5vw, 72px); line-height: 1.02; }
.sh-page-wrap h3 { font-size: clamp(28px, 3vw, 44px); line-height: 1.06; }
.sh-page-wrap h4 { font-size: clamp(20px, 2vw, 26px); line-height: 1.15; }

.sh-page-wrap p { margin: 0; }

.sh-page-wrap .sh-eyebrow,
.sh-page-wrap .sh-label {
  font-family: var(--sh-font-mono);
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sh-red);
  font-weight: 400;
}

.sh-page-wrap .sh-label--mute  { color: var(--sh-muted); }
.sh-page-wrap .sh-label--black { color: var(--sh-text); }

.sh-page-wrap .sh-body-lg  { font-size: 20px; line-height: 1.55; }
.sh-page-wrap .sh-body     { font-size: 17px; line-height: 1.65; }
.sh-page-wrap .sh-body--mute { color: var(--sh-muted); }
.sh-page-wrap .sh-body-sm  { font-size: 15px; line-height: 1.55; color: var(--sh-muted); }
.sh-page-wrap .sh-italic   { font-style: italic; }

/* ── Layout primitives ─────────────────────────────────────── */
.sh-container {
  width: min(100% - (var(--sh-page-pad) * 2), var(--sh-container));
  margin-inline: auto;
}

.sh-container--wide {
  max-width: var(--sh-container-wide);
}

.sh-section { padding-block: var(--sh-section-y); }
.sh-section--top { padding-block-start: clamp(40px, 6vw, 80px); }

.sh-divider {
  border: 0;
  height: 1px;
  background: var(--sh-line);
  margin: 0;
}

.sh-section-head {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 24px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

.sh-section-head .sh-divider { width: 100%; }

/* ── Buttons ───────────────────────────────────────────────── */
.sh-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid var(--sh-text);
  background: var(--sh-text);
  color: var(--sh-surface);
  border-radius: 0;
  font-family: var(--sh-font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background var(--sh-dur) var(--sh-ease),
              color var(--sh-dur) var(--sh-ease),
              border-color var(--sh-dur) var(--sh-ease);
}

.sh-btn:hover {
  background: var(--sh-red);
  border-color: var(--sh-red);
  color: var(--sh-surface);
}

.sh-btn--ghost {
  background: transparent;
  color: var(--sh-text);
}

.sh-btn--ghost:hover {
  background: var(--sh-text);
  color: var(--sh-surface);
}

.sh-link {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding-block: 2px;
  color: var(--sh-text);
  border-bottom: 1px solid currentColor;
  transition: color var(--sh-dur) var(--sh-ease);
}

.sh-link:hover { color: var(--sh-red); }

/* ── Hero ──────────────────────────────────────────────────── */
.sh-hero {
  padding-top:    clamp(72px, 10vw, 144px);
  padding-bottom: clamp(72px, 10vw, 144px);
}

.sh-hero__eyebrow-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(48px, 8vw, 96px);
  flex-wrap: wrap;
}

.sh-hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 72px);
}

.sh-hero__title {
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  max-width: 14ch;
}

.sh-hero__title em {
  font-style: italic;
  color: var(--sh-red);
}

.sh-hero__support { display: grid; gap: 32px; }

.sh-hero__support p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--sh-charcoal);
  max-width: 52ch;
}

.sh-hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

@media (min-width: 920px) {
  .sh-hero__grid {
    grid-template-columns: 7fr 5fr;
    gap: 96px;
  }
  .sh-hero__support { padding-top: 24px; }
}

/* Hero meta strip */
.sh-hero__meta {
  display: grid;
  gap: 0;
  margin-top: clamp(56px, 8vw, 88px);
  border-top: 1px solid var(--sh-line);
}

.sh-meta-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--sh-line);
}

.sh-meta-row__label {
  font-family: var(--sh-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sh-muted);
}

.sh-meta-row__value {
  font-family: var(--sh-font-serif);
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1;
  letter-spacing: -0.03em;
}

@media (min-width: 920px) {
  .sh-hero__meta { grid-template-columns: repeat(5, 1fr); }
  .sh-meta-row {
    grid-template-columns: 1fr;
    border-bottom: 0;
    border-right: 1px solid var(--sh-line);
    padding: 28px 24px 28px 0;
  }
  .sh-meta-row:last-child { border-right: 0; padding-right: 0; }
  .sh-meta-row__label { margin-bottom: 14px; }
}

/* ── Trust strip ───────────────────────────────────────────── */
.sh-trust {
  padding-block: clamp(28px, 4vw, 44px);
  border-top: 1px solid var(--sh-line);
  border-bottom: 1px solid var(--sh-line);
}

.sh-trust__head {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.sh-trust__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
  font-family: var(--sh-font-serif);
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--sh-charcoal);
}

.sh-trust__list a {
  transition: color var(--sh-dur) var(--sh-ease);
  display: inline-block;
}

.sh-trust__list a:hover { color: var(--sh-red); }

@media (min-width: 720px)  { .sh-trust__list { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1100px) { .sh-trust__list { grid-template-columns: repeat(8, 1fr); font-size: 18px; } }

/* ── Section 01 — Model ────────────────────────────────────── */
.sh-model__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: clamp(64px, 9vw, 96px);
}

@media (min-width: 920px) {
  .sh-model__intro { grid-template-columns: 7fr 5fr; gap: 96px; }
  .sh-model__intro p { padding-top: 12px; }
}

.sh-model__intro p { color: var(--sh-charcoal); max-width: 50ch; }

.sh-pillars {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--sh-line);
  border-bottom: 1px solid var(--sh-line);
}

.sh-pillar {
  padding: clamp(32px, 4vw, 56px) clamp(20px, 2.5vw, 32px);
  border-bottom: 1px solid var(--sh-line);
}

.sh-pillar:last-child { border-bottom: 0; }
.sh-pillar__label    { margin-bottom: clamp(24px, 3vw, 40px); }
.sh-pillar h3        { margin-bottom: 16px; }
.sh-pillar p         { color: var(--sh-muted); max-width: 38ch; margin-bottom: 32px; }

.sh-pillar__locale {
  font-family: var(--sh-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sh-pale);
}

@media (min-width: 920px) {
  .sh-pillars { grid-template-columns: repeat(3, 1fr); }
  .sh-pillar {
    border-bottom: 0;
    border-right: 1px solid var(--sh-line);
    padding: clamp(40px, 4vw, 64px) clamp(28px, 3vw, 48px);
  }
  .sh-pillar:last-child { border-right: 0; }
}

/* Engagement modes */
.sh-engage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-top: clamp(72px, 9vw, 120px);
}

@media (min-width: 920px) { .sh-engage { grid-template-columns: 4fr 8fr; gap: 96px; } }

.sh-engage__lede h3 { margin-bottom: 20px; }
.sh-engage__lede p  { color: var(--sh-muted); max-width: 30ch; }

.sh-engage__modes {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--sh-line);
}

.sh-mode {
  padding: 28px 0;
  border-bottom: 1px solid var(--sh-line);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: baseline;
}

.sh-mode__name  { display: grid; gap: 8px; }
.sh-mode__title { font-family: var(--sh-font-serif); font-size: 24px; letter-spacing: -0.03em; }
.sh-mode__desc  { color: var(--sh-muted); font-size: 15px; }

.sh-mode__price {
  font-family: var(--sh-font-serif);
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.03em;
}

.sh-mode__price strong { color: var(--sh-red); font-weight: 400; }

.sh-mode__price small {
  font-family: var(--sh-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sh-muted);
  margin-left: 4px;
}

.sh-model__close {
  margin-top: clamp(64px, 9vw, 120px);
  text-align: left;
  max-width: 24ch;
}

.sh-model__close p {
  font-family: var(--sh-font-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.sh-model__close em { font-style: italic; color: var(--sh-red); }

/* ── Section 02 — Services ─────────────────────────────────── */
.sh-services__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

@media (min-width: 920px) {
  .sh-services__intro { grid-template-columns: 8fr 4fr; gap: 96px; }
  .sh-services__intro p { padding-top: 16px; }
}

.sh-services__list { border-top: 1px solid var(--sh-line); }

.sh-srow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: clamp(32px, 4vw, 56px) 0;
  border-bottom: 1px solid var(--sh-line);
}

.sh-srow__num {
  font-family: var(--sh-font-serif);
  font-size: clamp(28px, 2.5vw, 40px);
  line-height: 1;
  color: var(--sh-pale);
  letter-spacing: -0.04em;
}

.sh-srow__label  { margin-bottom: 12px; }
.sh-srow__body   { display: grid; gap: 16px; }

.sh-srow__title {
  font-family: var(--sh-font-serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.06;
  letter-spacing: -0.035em;
  max-width: 18ch;
}

.sh-srow__copy { color: var(--sh-muted); max-width: 56ch; }

.sh-srow__meta {
  font-family: var(--sh-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sh-pale);
}

@media (min-width: 920px) {
  .sh-srow {
    grid-template-columns: 80px 1fr 6fr 3fr;
    gap: 48px;
    align-items: start;
  }
  .sh-srow__num        { padding-top: 4px; }
  .sh-srow__label-col  { padding-top: 6px; }
  .sh-srow__meta       { padding-top: 6px; }
}

.sh-srow--feature { background: transparent; position: relative; }

.sh-srow--feature::before {
  content: "★";
  position: absolute;
  left: 0;
  top: clamp(32px, 4vw, 56px);
  font-size: 10px;
  color: var(--sh-red);
  line-height: 1;
}

/* ── Section 03 — Products ─────────────────────────────────── */
.sh-products__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

@media (min-width: 920px) {
  .sh-products__intro { grid-template-columns: 7fr 5fr; gap: 96px; }
  .sh-products__intro p { padding-top: 12px; }
}

/* Featured product */
.sh-featured {
  border-top: 1px solid var(--sh-line);
  border-bottom: 1px solid var(--sh-line);
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: clamp(32px, 4vw, 48px);
}

.sh-featured__left {
  padding: clamp(40px, 5vw, 64px) clamp(20px, 3vw, 32px) clamp(40px, 5vw, 64px) 0;
}

.sh-featured__right {
  padding: clamp(40px, 5vw, 64px) 0 clamp(40px, 5vw, 64px) clamp(20px, 3vw, 32px);
  border-top: 1px solid var(--sh-line);
}

.sh-featured__label {
  margin-bottom: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
}

.sh-featured__title {
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.045em;
  margin-bottom: 24px;
}

.sh-featured__title em { font-style: italic; color: var(--sh-red); }

.sh-featured__lede {
  font-size: 20px;
  line-height: 1.5;
  color: var(--sh-charcoal);
  max-width: 48ch;
  margin-bottom: 20px;
}

.sh-featured__body { color: var(--sh-muted); max-width: 56ch; margin-bottom: 32px; }

.sh-featured__features { border-top: 1px solid var(--sh-line); }
.sh-featured__features-head { padding: 0 0 20px; }

.sh-featured__features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sh-featured__features li {
  display: grid;
  grid-template-columns: 12px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--sh-line);
  font-size: 15px;
  color: var(--sh-charcoal);
}

.sh-featured__features li::before { content: "—"; color: var(--sh-red); }
.sh-featured__features li:last-child { border-bottom: 0; }

@media (min-width: 920px) {
  .sh-featured { grid-template-columns: 7fr 5fr; }
  .sh-featured__right {
    border-top: 0;
    border-left: 1px solid var(--sh-line);
    padding-top:    clamp(40px, 5vw, 64px);
    padding-bottom: clamp(40px, 5vw, 64px);
    padding-left:   clamp(40px, 5vw, 64px);
    padding-right:  0;
  }
  .sh-featured__left { padding-right: clamp(40px, 5vw, 64px); }
}

/* Product rows */
.sh-prows { border-top: 1px solid var(--sh-line); }

.sh-prow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: clamp(28px, 3.5vw, 44px) 0;
  border-bottom: 1px solid var(--sh-line);
}

.sh-prow__head {
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
}

.sh-prow__name {
  font-family: var(--sh-font-serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.035em;
}

.sh-prow__copy { color: var(--sh-muted); max-width: 60ch; }
.sh-prow__url  { margin-top: 8px; }

@media (min-width: 920px) {
  .sh-prow {
    grid-template-columns: 4fr 6fr 2fr;
    gap: 48px;
    align-items: baseline;
  }
}

/* ── Section 04 — Work ─────────────────────────────────────── */
.sh-work__intro {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: clamp(48px, 6vw, 72px);
}

@media (min-width: 920px) { .sh-work__intro { grid-template-columns: 8fr 4fr; } }

.sh-case {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: clamp(40px, 5vw, 64px) 0;
  border-top: 1px solid var(--sh-line);
}

.sh-case:last-of-type { border-bottom: 1px solid var(--sh-line); }

.sh-case__media {
  aspect-ratio: 4 / 3;
  background: var(--sh-sand);
  border: 1px solid var(--sh-line);
  position: relative;
  display: flex;
  align-items: flex-end;
}

.sh-case__media-meta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sh-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sh-pale);
}

.sh-case__overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px;
  display: grid;
  gap: 6px;
}

.sh-case__overlay-label { color: var(--sh-charcoal); }

.sh-case__overlay-title {
  font-family: var(--sh-font-serif);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--sh-text);
}

.sh-case__overlay-title em { font-style: italic; color: var(--sh-red); }

.sh-case__body  { display: grid; gap: 20px; }

.sh-case__lede {
  font-size: 19px;
  line-height: 1.5;
  color: var(--sh-charcoal);
  max-width: 44ch;
}

.sh-case__copy { color: var(--sh-muted); max-width: 44ch; }

.sh-case__data { margin-top: 8px; display: grid; }

.sh-case__data dt {
  font-family: var(--sh-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sh-muted);
}

.sh-case__data dd { margin: 0; font-size: 14px; }

.sh-case__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 12px 0;
  border-bottom: 1px solid var(--sh-line);
  gap: 16px;
}

.sh-case__row:first-child { border-top: 1px solid var(--sh-line); }

@media (min-width: 920px) {
  .sh-case { grid-template-columns: 7fr 5fr; gap: 80px; align-items: start; }
  .sh-case--reverse .sh-case__media { order: 2; }
  .sh-case--reverse { grid-template-columns: 5fr 7fr; }
  .sh-case__body { padding-top: 24px; }
}

.sh-cases-small {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--sh-line);
}

.sh-case-small {
  padding: clamp(28px, 3.5vw, 44px) 0;
  border-bottom: 1px solid var(--sh-line);
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.sh-case-small__title {
  font-family: var(--sh-font-serif);
  font-size: 26px;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.sh-case-small__copy { color: var(--sh-muted); max-width: 56ch; font-size: 15px; }

@media (min-width: 920px) {
  .sh-cases-small {
    grid-template-columns: repeat(3, 1fr);
    border-bottom: 1px solid var(--sh-line);
  }
  .sh-case-small {
    padding: clamp(32px, 4vw, 48px);
    border-bottom: 0;
    border-right: 1px solid var(--sh-line);
  }
  .sh-case-small:last-child { border-right: 0; }
}

/* ── Section 05 — Engineers ────────────────────────────────── */
.sh-hire__lede {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: clamp(56px, 7vw, 88px);
}

@media (min-width: 920px) {
  .sh-hire__lede { grid-template-columns: 8fr 4fr; gap: 96px; }
  .sh-hire__lede p { padding-top: 16px; }
}

.sh-hire__lede p {
  color: var(--sh-charcoal);
  font-size: 19px;
  line-height: 1.5;
  max-width: 44ch;
}

.sh-hire__pillars {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--sh-line);
  border-bottom: 1px solid var(--sh-line);
  margin-bottom: clamp(56px, 7vw, 88px);
}

.sh-hire__pillar {
  padding: clamp(28px, 3.5vw, 40px) 0;
  border-bottom: 1px solid var(--sh-line);
}

.sh-hire__pillar:last-child { border-bottom: 0; }

.sh-hire__pillar h4 {
  font-family: var(--sh-font-serif);
  font-weight: 400;
  font-size: 22px;
  letter-spacing: -0.025em;
  margin: 16px 0 8px;
}

.sh-hire__pillar p { color: var(--sh-muted); max-width: 44ch; font-size: 15px; }

@media (min-width: 920px) {
  .sh-hire__pillars { grid-template-columns: repeat(3, 1fr); }
  .sh-hire__pillar {
    border-bottom: 0;
    border-right: 1px solid var(--sh-line);
    padding: clamp(32px, 4vw, 48px);
  }
  .sh-hire__pillar:last-child { border-right: 0; }
}

/* Pricing table */
.sh-pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: clamp(48px, 6vw, 72px);
}

@media (min-width: 920px) { .sh-pricing { grid-template-columns: 4fr 8fr; gap: 96px; } }

.sh-pricing__lede { padding-top: 8px; }
.sh-pricing__lede p { color: var(--sh-muted); max-width: 32ch; font-size: 15px; margin-top: 16px; }

.sh-rate-table { width: 100%; border-collapse: collapse; }

.sh-rate-table th {
  text-align: right;
  padding: 16px 0;
  border-bottom: 1px solid var(--sh-line);
  font-family: var(--sh-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sh-muted);
  font-weight: 400;
}

.sh-rate-table th:first-child { text-align: left; }

.sh-rate-table td {
  padding: 22px 0;
  border-bottom: 1px solid var(--sh-line);
  font-family: var(--sh-font-serif);
  font-size: 22px;
  letter-spacing: -0.02em;
  text-align: right;
}

.sh-rate-table td:first-child {
  text-align: left;
  font-family: var(--sh-font-sans);
  font-size: 15px;
  letter-spacing: 0;
  color: var(--sh-text);
}

.sh-rate-table tr:last-child td { border-bottom: 0; }
.sh-rate-dash { color: var(--sh-pale); }

/* Process steps */
.sh-process {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--sh-line);
  border-bottom: 1px solid var(--sh-line);
  margin-bottom: clamp(48px, 6vw, 72px);
}

.sh-process__step {
  padding: clamp(24px, 3vw, 40px) 0;
  border-bottom: 1px solid var(--sh-line);
}

.sh-process__step:last-child { border-bottom: 0; }

.sh-process__num {
  font-family: var(--sh-font-serif);
  font-size: 40px;
  line-height: 1;
  color: var(--sh-red);
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.sh-process__label { margin-bottom: 8px; }
.sh-process__step p { color: var(--sh-muted); font-size: 15px; max-width: 28ch; }

@media (min-width: 720px) {
  .sh-process { grid-template-columns: repeat(4, 1fr); }
  .sh-process__step {
    border-bottom: 0;
    border-right: 1px solid var(--sh-line);
    padding: 32px;
  }
  .sh-process__step:last-child { border-right: 0; }
}

.sh-hire__close {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: end;
  margin-top: clamp(56px, 7vw, 88px);
}

.sh-hire__close p {
  font-family: var(--sh-font-serif);
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.06;
  letter-spacing: -0.03em;
  max-width: 24ch;
}

.sh-hire__close em { font-style: italic; color: var(--sh-red); }

@media (min-width: 920px) { .sh-hire__close { grid-template-columns: 7fr 5fr; } }

/* ── Section 06 — Why ──────────────────────────────────────── */
.sh-why__intro {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: clamp(56px, 7vw, 88px);
}

@media (min-width: 920px) { .sh-why__intro { grid-template-columns: 8fr 4fr; } }

.sh-why__grid {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--sh-line);
  border-bottom: 1px solid var(--sh-line);
}

.sh-why__cell {
  padding: clamp(28px, 3.5vw, 48px) 0;
  border-bottom: 1px solid var(--sh-line);
}

.sh-why__cell:last-child { border-bottom: 0; }
.sh-why__label    { margin-bottom: 20px; }
.sh-why__cell h3  { margin-bottom: 12px; }
.sh-why__cell p   { color: var(--sh-muted); max-width: 44ch; font-size: 16px; }

@media (min-width: 920px) {
  .sh-why__grid { grid-template-columns: repeat(2, 1fr); }
  .sh-why__cell {
    padding: clamp(40px, 5vw, 64px);
    border-right: 1px solid var(--sh-line);
  }
  .sh-why__cell:nth-child(2n)            { border-right: 0; }
  .sh-why__cell:nth-child(1),
  .sh-why__cell:nth-child(2)             { border-bottom: 1px solid var(--sh-line); }
  .sh-why__cell:nth-child(3),
  .sh-why__cell:nth-child(4)             { border-bottom: 0; }
}

.sh-why__mission {
  margin-top: clamp(64px, 9vw, 120px);
  max-width: 44ch;
}

.sh-why__mission .sh-label { margin-bottom: 20px; }

.sh-why__mission p {
  font-family: var(--sh-font-serif);
  font-size: clamp(24px, 2.8vw, 36px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.sh-why__mission em { font-style: italic; color: var(--sh-red); }

/* ── Section 07 — Stack ────────────────────────────────────── */
.sh-stack__intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: clamp(56px, 7vw, 88px);
}

@media (min-width: 920px) {
  .sh-stack__intro { grid-template-columns: 8fr 4fr; gap: 96px; }
  .sh-stack__intro p { padding-top: 16px; }
}

.sh-stack {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--sh-line);
  border-bottom: 1px solid var(--sh-line);
}

.sh-stack__col {
  padding: clamp(28px, 3.5vw, 40px) 0;
  border-bottom: 1px solid var(--sh-line);
}

.sh-stack__col:last-child { border-bottom: 0; }

.sh-stack__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 20px;
}

.sh-stack__num {
  font-family: var(--sh-font-serif);
  font-size: 28px;
  color: var(--sh-line);
  letter-spacing: -0.04em;
}

.sh-stack__sub {
  font-family: var(--sh-font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--sh-charcoal);
  margin-bottom: 20px;
}

.sh-stack__list ul { list-style: none; padding: 0; margin: 0; }

.sh-stack__list li {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--sh-line);
  font-size: 15px;
}

.sh-stack__list li:last-child { border-bottom: 0; }

.sh-stack__tag {
  font-family: var(--sh-font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sh-muted);
}

@media (min-width: 920px) {
  .sh-stack { grid-template-columns: repeat(4, 1fr); }
  .sh-stack__col {
    border-bottom: 0;
    border-right: 1px solid var(--sh-line);
    padding: clamp(28px, 3vw, 40px);
  }
  .sh-stack__col:last-child { border-right: 0; }
}

.sh-stack__close {
  max-width: 60ch;
  margin-top: clamp(48px, 6vw, 72px);
}

.sh-stack__close p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--sh-charcoal);
}

.sh-stack__close em { font-style: italic; color: var(--sh-red); }

/* ── Section 08 — Contact ──────────────────────────────────── */
.sh-contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
}

@media (min-width: 920px) { .sh-contact__grid { grid-template-columns: 7fr 5fr; gap: 96px; } }

.sh-contact__title {
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.045em;
  margin-bottom: 32px;
}

.sh-contact__title em { font-style: italic; color: var(--sh-red); }

.sh-contact__lede {
  font-size: 19px;
  line-height: 1.5;
  color: var(--sh-charcoal);
  max-width: 44ch;
  margin-bottom: 48px;
}

.sh-locations {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid var(--sh-line);
}

@media (min-width: 640px) { .sh-locations { grid-template-columns: 1fr 1fr; gap: 48px; } }

.sh-loc__label  { margin-bottom: 16px; }
.sh-loc__addr   { font-family: var(--sh-font-serif); font-size: 22px; letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 8px; }
.sh-loc__city   { color: var(--sh-muted); margin-bottom: 8px; }
.sh-loc__phone  { font-family: var(--sh-font-mono); font-size: 13px; color: var(--sh-muted); letter-spacing: 0.05em; }

.sh-contact__email {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--sh-line);
  font-family: var(--sh-font-mono);
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--sh-muted);
}

.sh-contact__email strong { color: var(--sh-text); font-weight: 400; }

/* Contact form */
.sh-form {
  padding: clamp(28px, 4vw, 40px);
  background: var(--sh-surface);
  border: 1px solid var(--sh-line);
}

.sh-form__head    { margin-bottom: 24px; }
.sh-form__label   { margin-bottom: 12px; }
.sh-form h3       { font-size: 28px; line-height: 1.06; margin-bottom: 16px; }

.sh-form__copy {
  color: var(--sh-muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 32px;
}

.sh-field { display: grid; gap: 8px; margin-bottom: 24px; }

.sh-field label {
  font-family: var(--sh-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sh-muted);
}

.sh-field input,
.sh-field textarea {
  font: inherit;
  font-family: var(--sh-font-sans);
  font-size: 16px;
  background: var(--sh-bg);
  color: var(--sh-text);
  border: 1px solid var(--sh-line);
  border-radius: 0;
  padding: 14px 16px;
  width: 100%;
  transition: border-color var(--sh-dur) var(--sh-ease);
}

.sh-field input:focus,
.sh-field textarea:focus {
  outline: 0;
  border-color: var(--sh-red);
}

.sh-field textarea { resize: vertical; min-height: 96px; }

.sh-form__submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px;
  background: var(--sh-text);
  color: var(--sh-surface);
  font-family: var(--sh-font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: background var(--sh-dur) var(--sh-ease);
  border: none;
  cursor: pointer;
}

.sh-form__submit:hover { background: var(--sh-red); }

/* ── Photo component ───────────────────────────────────────── */
.sh-photo { margin: 0; }

.sh-photo--section { padding-block: clamp(48px, 7vw, 96px); }

.sh-photo__frame {
  width: 100%;
  background: var(--sh-sand);
  border: 1px solid var(--sh-line);
  overflow: hidden;
  position: relative;
}

.sh-photo__frame img {
  width: 100%;
  height: auto;
  display: block;
  filter: saturate(0.94);
}

.sh-photo__caption {
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: space-between;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--sh-line);
  font-family: var(--sh-font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sh-muted);
}

.sh-photo__caption-meta { color: var(--sh-pale); }

@media (min-width: 720px) {
  .sh-photo__caption { flex-direction: row; align-items: center; }
}

/* ── Reveal animation ──────────────────────────────────────── */
.sh-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms var(--sh-ease), transform 600ms var(--sh-ease);
}

.sh-reveal.is-in {
  opacity: 1;
  transform: none;
}

/* ── Reduced motion ────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .sh-page-wrap *,
  .sh-page-wrap *::before,
  .sh-page-wrap *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .sh-reveal { opacity: 1; transform: none; }
}

/* ── WordPress theme reset — prevent theme styles bleeding in ─ */
.sh-page-wrap ul,
.sh-page-wrap ol {
  margin: 0;
  padding: 0;
}

/* Ensure theme doesn't add padding/margin to page template */
.page-template-swiss-lp-v4 .entry-content,
.page-template-swiss-lp-v4 .entry-header,
.page-template-swiss-lp-v4 article.page {
  padding: 0;
  margin: 0;
  max-width: none;
}

/* ── Selected Work — real image support ─────────────────────
   Add this to swisshelios-lp-v4.css (or Additional CSS).
   The .sh-case__media already has position:relative from the
   base styles; these rules make the <img> fill it correctly
   while keeping the overlay on top.
   ─────────────────────────────────────────────────────────── */

.sh-case__media {
  /* ensure the img fills the 4:3 box */
  overflow: hidden;
}

.sh-case__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;   /* show top of screenshot by default */
  display: block;
  filter: saturate(0.94);        /* matches the design-system photo treatment */
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.sh-case:hover .sh-case__media img {
  transform: scale(1.02);        /* subtle zoom on card hover */
}

/* Darken overlay area so label + title stay legible over photos */
.sh-case__overlay {
  background: linear-gradient(
    to top,
    rgba(17, 17, 17, 0.72) 0%,
    rgba(17, 17, 17, 0.0) 100%
  );
  z-index: 1;
}

.sh-case__overlay-label,
.sh-case__overlay-title {
  color: #F7F5EF;   /* --sh-surface equivalent — readable on dark gradient */
}

.sh-case__overlay-title em {
  color: var(--sh-red);
}

/* Remove the old placeholder text now that real images are present */
.sh-case__media-meta {
  display: none;
}