/* ════════════════════════════════════════════════════════════════
   SKINOVELLE — "Eukalyptus & Bronze" · Edition Minimal
   Luxe-minimalist re-skin of the Light Hunters component patterns.
   Airy warm-paper base · hairline rules · near-flat · editorial type.
   ════════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=Inter:wght@100..900&display=swap');

:root {
  /* ── Ink (deep warm eucalyptus-black) ── */
  --lh-black:        #232a24;
  --lh-dark:         #2f3830;
  --lh-text:         #4a4d43;
  --lh-text-light:   #6e7064;
  --lh-text-muted:   #9a9888;

  /* ── Warm-paper surfaces ── */
  --lh-bg:           #f4efe5;
  --lh-surface:      #fbf8f1;
  --lh-soft:         #ece5d6;
  --lh-border:       #e2dac8;
  --lh-border-light: #ebe4d5;
  --lh-hair:         #dcd3c0;   /* hairline rules */
  --lh-white:        #ffffff;

  /* ── Accent (set by data-accent; bronze default) ── */
  --lh-accent:       #a9743f;
  --lh-accent-dark:  #87592c;
  --lh-accent-light: #efe2cf;
  --bronze:          #a9743f;
  --bronze-bright:   #c79a63;
  --lh-star:         #b8884a;

  /* ── Extended palette ── */
  --euca-deep:       #20261f;
  --euca:            #3a463a;
  --euca-mid:        #57644f;
  --euca-soft:       #8b9580;
  --rust:            #9c4a32;
  --olive:           #4a4d3a;

  /* muted, desaturated placeholder "imagery" ── */
  --img-euca:   linear-gradient(155deg, #46523f 0%, #313a2e 60%, #232a20 100%);
  --img-bronze: linear-gradient(150deg, #c2a079 0%, #a9794b 50%, #7c5532 100%);
  --img-rust:   linear-gradient(150deg, #a85a40 0%, #7c3c28 60%, #532519 100%);
  --img-olive:  linear-gradient(160deg, #5c5f49 0%, #45472f 60%, #2f3022 100%);

  /* ── Typography ── */
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  --font-heading: 'Inter', 'Helvetica Neue', system-ui, sans-serif;
  --font-body:    'Inter', 'Helvetica Neue', system-ui, sans-serif;

  --type-h1:   clamp(3.4rem, 8vw, 7rem);
  --type-h2:   clamp(2.3rem, 5vw, 4rem);
  --type-h3:   clamp(1.25rem, 2vw, 1.6rem);
  --type-body: clamp(0.98rem, 1.05vw, 1.08rem);
  --type-sm:   0.875rem;
  --type-xs:   0.75rem;

  --lh-tight: 1.04; --lh-heading: 1.2; --lh-body: 1.8;

  /* ── Layout (generous) ── */
  --lh-max-width: 1240px;
  --lh-section-padding: clamp(80px, 11vw, 180px);
  --lh-header-height: 84px;

  /* ── Radii (minimal — near-square) ── */
  --lh-radius-sm: 2px; --lh-radius: 3px; --lh-radius-lg: 4px;
  --lh-radius-xl: 6px; --lh-radius-full: 9999px;

  /* ── Shadows (whisper-quiet) ── */
  --lh-shadow-sm: 0 1px 2px rgba(40,36,26,0.04);
  --lh-shadow-md: 0 10px 40px rgba(40,36,26,0.06);
  --lh-shadow-lg: 0 20px 60px rgba(40,36,26,0.08);
  --lh-shadow-xl: 0 30px 90px rgba(40,36,26,0.10);
  --lh-shadow-accent: 0 10px 30px rgba(40,36,26,0.10);

  /* ── Motion ── */
  --lh-ease-fast:   0.2s ease;
  --lh-ease-medium: 0.4s ease;
  --lh-ease-slow:   0.8s cubic-bezier(0.16, 1, 0.3, 1);
  --lh-ease-snappy: 0.45s cubic-bezier(.5,0,0,1);
  --lh-ease-bounce: 0.25s cubic-bezier(0.34, 1.4, 0.64, 1);
}

/* ── data-accent overrides (honored on every page) ── */
html[data-accent="rost"] { --lh-accent:#9c4a32; --lh-accent-dark:#7c3622; --lh-accent-light:#f0ddd3; --bronze:#9c4a32; --bronze-bright:#c2714f; --lh-star:#b06a44; }
html[data-accent="eukalyptus"] { --lh-accent:#5f7257; --lh-accent-dark:#45533f; --lh-accent-light:#dde3d3; --bronze:#5f7257; --bronze-bright:#93a386; --lh-star:#82914f; }
/* ── data-font overrides ── */
html[data-font="cormorant"] { --font-display:'Cormorant Garamond', Georgia, serif; }
html[data-font="playfair"] { --font-display:'Playfair Display', Georgia, serif; }

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--lh-bg);
  color: var(--lh-text);
  line-height: var(--lh-body);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--lh-accent); color: #fff; }
img { display: block; max-width: 100%; }

.lh-progress { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 10001; background: var(--lh-accent); }

/* ════ HEADER ════ */
.lh-hdr {
  position: sticky; top: 0; z-index: 100; height: var(--lh-header-height);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 64px);
  background: rgba(244,239,229,0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--lh-hair);
}
.lh-hdr__logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1; }
.lh-hdr__wm { font-family: var(--font-display); font-size: 1.55rem; color: var(--lh-black); letter-spacing: 0.04em; }
.lh-hdr__sub { font-size: 8.5px; font-weight: 600; letter-spacing: 0.34em; color: var(--lh-accent); margin-top: 6px; text-transform: uppercase; }
.lh-hdr__nav { display: flex; align-items: center; gap: 6px; }
.lh-nav__link {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lh-text-light); padding: 0.6rem 0.85rem; border-radius: var(--lh-radius);
  text-decoration: none; transition: color var(--lh-ease-fast);
  position: relative;
}
.lh-nav__link::after { content:''; position:absolute; left:0.85rem; right:0.85rem; bottom:0.35rem; height:1px; background: var(--lh-accent); transform: scaleX(0); transform-origin: left; transition: transform var(--lh-ease-medium); }
.lh-nav__link:hover, .lh-nav__link.active { color: var(--lh-black); }
.lh-nav__link.active::after, .lh-nav__link:hover::after { transform: scaleX(1); }
.lh-hdr__cta { margin-left: 0.75rem; }
.lh-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.lh-burger span { display: block; width: 24px; height: 1.5px; background: var(--lh-black); margin: 5px 0; transition: var(--lh-ease-fast); }

@media (max-width: 920px) {
  .lh-hdr__nav { display: none; }
  .lh-burger { display: block; }
  .lh-hdr__nav.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 2px;
    position: absolute; top: var(--lh-header-height); left: 0; right: 0;
    background: rgba(244,239,229,0.98); backdrop-filter: blur(20px);
    padding: 1.5rem clamp(20px,5vw,64px) 2rem; border-bottom: 1px solid var(--lh-hair);
  }
  .lh-hdr__nav.is-open .lh-nav__link { padding: 0.9rem 0.25rem; font-size: 0.8rem; }
  .lh-hdr__nav.is-open .lh-nav__link::after { display:none; }
  .lh-hdr__nav.is-open .lh-hdr__cta { margin: 0.75rem 0 0; }
}

/* ════ BUTTONS (editorial, near-square, tracked) ════ */
.lh-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 1.05rem 2.1rem; font-family: var(--font-body);
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  border: none; cursor: pointer; border-radius: var(--lh-radius); text-decoration: none; white-space: nowrap;
  transition: background var(--lh-ease-fast), color var(--lh-ease-fast), border-color var(--lh-ease-fast), opacity var(--lh-ease-fast);
}
.lh-btn--sm { padding: 0.72rem 1.4rem; font-size: 0.64rem; }
.lh-btn--primary { background: var(--lh-black); color: #f4efe5; }
.lh-btn--primary:hover { background: var(--euca); }
.lh-btn--accent { background: var(--lh-accent); color: #fff; }
.lh-btn--accent:hover { background: var(--lh-accent-dark); }
.lh-btn--outline { background: transparent; color: var(--lh-black); border: 1px solid var(--lh-black); }
.lh-btn--outline:hover { background: var(--lh-black); color: #f4efe5; }
.lh-btn--light { background: #f4efe5; color: var(--lh-black); }
.lh-btn--light:hover { background: #fff; }
.lh-btn--ghost-light { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.45); }
.lh-btn--ghost-light:hover { background: #fff; color: var(--lh-black); border-color:#fff; }
.lh-btn .arr { transition: transform var(--lh-ease-medium); }
.lh-btn:hover .arr { transform: translateX(5px); }

/* text link */
.lh-link { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lh-black); text-decoration: none; border-bottom: 1px solid var(--lh-accent); padding-bottom: 4px; transition: var(--lh-ease-fast); display:inline-flex; gap:0.5rem; align-items:center; }
.lh-link:hover { color: var(--lh-accent); }
.lh-link .arr { transition: transform var(--lh-ease-medium); }
.lh-link:hover .arr { transform: translateX(5px); }

/* ════ EYEBROW ════ */
.lh-eyebrow {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--lh-accent);
  display: inline-flex; align-items: center; gap: 0.75rem; margin-bottom: 1.5rem;
}
.lh-eyebrow::before { content: ''; width: 34px; height: 1px; background: var(--lh-accent); }
.lh-eyebrow--center { justify-content: center; }
.lh-eyebrow--on { color: var(--bronze-bright); }
.lh-eyebrow--on::before { background: var(--bronze-bright); }

/* ════ LAYOUT & HEADS ════ */
.lh-container { max-width: var(--lh-max-width); margin: 0 auto; padding: 0 clamp(20px, 5vw, 64px); }
.lh-section { padding: var(--lh-section-padding) 0; }
.lh-section--soft { background: var(--lh-soft); }
.lh-section--euca { background: var(--euca-deep); color: #cfd5c6; }
.lh-section__head { max-width: 760px; margin: 0 0 4.5rem; }
.lh-section__head--center { text-align: center; margin-left: auto; margin-right: auto; }
.lh-h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--type-h2); line-height: 1.06; letter-spacing: -0.01em;
  color: var(--lh-black); margin: 0 0 0.6rem;
}
.lh-h2 em { font-style: italic; color: var(--lh-accent); }
.lh-section--euca .lh-h2 { color: #f3efe6; }
.lh-section--euca .lh-h2 em { color: var(--bronze-bright); }
.lh-h3 { font-family: var(--font-heading); font-weight: 600; font-size: 1.05rem; letter-spacing: 0.01em; color: var(--lh-black); margin: 0; }
.lh-h-sub { font-size: 1.1rem; color: var(--lh-text-light); line-height: 1.75; margin: 1.25rem 0 0; font-weight: 300; }
.lh-section--euca .lh-h-sub { color: #adb39f; }
.lh-p { font-size: 1rem; color: var(--lh-text-light); line-height: 1.85; margin: 0; font-weight: 300; }
.lh-rule { height: 1px; background: var(--lh-hair); border: none; margin: 0; }

/* section index number */
.lh-index { font-family: var(--font-display); font-size: 0.95rem; color: var(--lh-accent); letter-spacing: 0.1em; margin-bottom: 1.25rem; }

/* ════ HERO ════ */
.lh-hero { position: relative; min-height: 92vh; display: flex; align-items: flex-end; overflow: hidden; }
.lh-hero__bg { position: absolute; inset: 0; background: var(--img-euca); }
.lh-hero__bg::after { content: ''; position: absolute; inset: 0; animation: kb 20s ease-in-out infinite alternate; }
@keyframes kb { 0% { transform: scale(1); } 100% { transform: scale(1.07); } }
.lh-hero__dim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,24,20,.78) 0%, rgba(20,24,20,.18) 55%, rgba(20,24,20,.30) 100%); }
.lh-hero__content { position: relative; z-index: 2; max-width: 1000px; padding: 0 clamp(1.5rem, 6vw, 64px) clamp(3.5rem,8vw,7rem); }
.lh-hero__title {
  font-family: var(--font-display); font-weight: 400;
  font-size: var(--type-h1); line-height: 1.0; letter-spacing: -0.015em;
  color: #fff; margin: 0 0 1.6rem;
}
.lh-hero__title em { font-style: italic; color: var(--bronze-bright); }
.lh-hero__subtitle { font-size: 1.15rem; color: rgba(255,255,255,0.88); line-height: 1.7; font-weight: 300; max-width: 520px; margin: 0 0 2.4rem; }
.lh-hero__actions { display: flex; gap: 0.9rem; flex-wrap: wrap; align-items: center; }
.lh-hero__trust { display: flex; align-items: center; gap: 0.85rem; margin-top: 2.2rem; }
.lh-hero__stars { color: var(--lh-star); font-size: 0.9rem; letter-spacing: 0.1em; }
.lh-hero__trust-text { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.78); }

/* ════ SERVICE GRID ════ */
.lh-service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem,2vw,1.75rem); }
@media (max-width: 900px) { .lh-service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .lh-service-grid { grid-template-columns: 1fr; } }
.lh-service-card { position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer; text-decoration: none; display: block; border-radius: var(--lh-radius-lg); }
.lh-service-card__img { position: absolute; inset: 0; transition: transform 1s var(--lh-ease-slow), filter var(--lh-ease-slow); filter: brightness(0.92) saturate(0.92); }
.lh-service-card:hover .lh-service-card__img { transform: scale(1.05); filter: brightness(1) saturate(1.05); }
.lh-service-card__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(20,24,20,0.78) 0%, rgba(20,24,20,0.1) 55%, transparent 100%); }
.lh-service-card__body { position: absolute; inset: auto 0 0 0; padding: 1.75rem; }
.lh-service-card__label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase; color: var(--bronze-bright); margin-bottom: 0.6rem; }
.lh-service-card__title { font-family: var(--font-display); font-weight: 400; font-size: 1.6rem; color: #fff; margin: 0 0 0.4rem; }
.lh-service-card__desc { font-size: 0.86rem; color: rgba(255,255,255,0.85); margin: 0; max-height: 0; overflow: hidden; opacity: 0; transition: all var(--lh-ease-medium); font-weight: 300; }
.lh-service-card:hover .lh-service-card__desc { max-height: 7rem; opacity: 1; margin-bottom: 0.85rem; }
.lh-service-card__link { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: #fff; opacity: 0; transition: opacity var(--lh-ease-medium); }
.lh-service-card:hover .lh-service-card__link { opacity: 0.9; }

/* image placeholders */
.ph { position: absolute; inset: 0; }
.ph--euca { background: var(--img-euca); }
.ph--bronze { background: var(--img-bronze); }
.ph--rust { background: var(--img-rust); }
.ph--olive { background: var(--img-olive); }
.ph__cap { position: absolute; bottom: 12px; right: 14px; font-size: 0.58rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); z-index: 1; }

/* ════ PRICING ════ */
.lh-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; max-width: 1080px; margin: 0 auto; border: 1px solid var(--lh-hair); }
@media (max-width: 820px) { .lh-pricing { grid-template-columns: 1fr; max-width: 460px; } }
.lh-pricing-card {
  background: transparent; border-right: 1px solid var(--lh-hair); padding: 3rem 2.2rem; position: relative;
  transition: background var(--lh-ease-medium);
}
.lh-pricing-card:last-child { border-right: none; }
@media (max-width: 820px) { .lh-pricing-card { border-right: none; border-bottom: 1px solid var(--lh-hair); } .lh-pricing-card:last-child { border-bottom: none; } }
.lh-pricing-card:hover { background: var(--lh-surface); }
.lh-pricing-card.is-featured { background: var(--lh-surface); }
.lh-pricing-card.is-featured::before {
  content: 'Beliebt'; position: absolute; top: 1.5rem; right: 1.5rem;
  color: var(--lh-accent); font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
}
.lh-pricing-card__head { text-align: left; padding-bottom: 1.75rem; margin-bottom: 1.75rem; border-bottom: 1px solid var(--lh-hair); }
.lh-pricing-card__name { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--lh-accent); margin-bottom: 1.25rem; }
.lh-pricing-card__price { font-family: var(--font-display); font-weight: 400; font-size: 3rem; letter-spacing: -0.02em; color: var(--lh-black); line-height: 1; }
.lh-pricing-card__price small { font-size: 0.9rem; color: var(--lh-text-muted); font-family: var(--font-body); }
.lh-pricing-card__desc { font-size: 0.85rem; color: var(--lh-text-muted); margin-top: 0.75rem; font-weight: 300; }
.lh-pricing-card__feats { list-style: none; padding: 0; margin: 0 0 2rem; }
.lh-pricing-card__feats li { font-size: 0.92rem; color: var(--lh-text); padding: 0.5rem 0; display: flex; gap: 0.7rem; align-items: flex-start; font-weight: 300; }
.lh-pricing-card__feats li::before { content: '—'; color: var(--lh-accent); }
.lh-pricing-card .lh-btn { width: 100%; }

/* ── price list ── */
.lh-pricelist { display: grid; gap: 0; }
.lh-price-row { display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: baseline; padding: 1.35rem 0; border-bottom: 1px solid var(--lh-hair); }
.lh-price-row__name { font-weight: 500; color: var(--lh-black); font-size: 1.05rem; }
.lh-price-row__meta { font-size: 0.78rem; color: var(--lh-text-muted); margin-top: 0.3rem; font-weight: 300; letter-spacing: 0.04em; }
.lh-price-row__price { font-family: var(--font-display); font-size: 1.4rem; color: var(--lh-accent); white-space: nowrap; }

/* ════ SPLIT ════ */
.lh-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 7vw, 7rem); align-items: center; }
.lh-split--reverse .lh-split__media { order: 2; }
@media (max-width: 820px) { .lh-split { grid-template-columns: 1fr; gap: 2.5rem; } .lh-split--reverse .lh-split__media { order: 0; } }
.lh-split__media { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: var(--lh-radius-lg); }
.lh-split__media--wide { aspect-ratio: 4/3; }

.lh-feature-list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 0; }
.lh-feature-list li { display: grid; grid-template-columns: auto 1fr; gap: 1.25rem; align-items: start; padding: 1.4rem 0; border-top: 1px solid var(--lh-hair); }
.lh-feature-list li:last-child { border-bottom: 1px solid var(--lh-hair); }
.lh-feature-list .ic { font-family: var(--font-display); font-size: 0.95rem; color: var(--lh-accent); letter-spacing: 0.05em; }
.lh-feature-list h4 { margin: 0 0 0.25rem; font-size: 1.05rem; font-weight: 500; color: var(--lh-black); }
.lh-feature-list p { margin: 0; font-size: 0.92rem; color: var(--lh-text-light); line-height: 1.65; font-weight: 300; }

/* stat row */
.lh-stats { display: flex; flex-wrap: wrap; gap: clamp(2rem,6vw,5rem); }
.lh-stat__n { font-family: var(--font-display); font-size: clamp(2.4rem,4.5vw,3.4rem); color: var(--lh-accent); line-height: 1; }
.lh-section--euca .lh-stat__n { color: var(--bronze-bright); }
.lh-stat__l { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lh-text-muted); margin-top: 0.7rem; }
.lh-section--euca .lh-stat__l { color: #8f9682; }

/* ════ TESTIMONIALS ════ */
.lh-testimonial-track {
  display: flex; gap: 0; overflow: hidden; width: max-content;
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  animation: tscroll 70s linear infinite;
}
.lh-testimonial-track:hover { animation-play-state: paused; }
@keyframes tscroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.lh-testimonial-card { background: transparent; border-left: 1px solid var(--lh-hair); padding: 0 2.75rem; min-width: 420px; max-width: 440px; flex-shrink: 0; }
.lh-stars { color: var(--lh-star); font-size: 0.8rem; letter-spacing: 0.15em; margin-bottom: 1.25rem; }
.lh-testimonial-card__q { font-family: var(--font-display); font-style: italic; font-size: 1.3rem; line-height: 1.5; color: var(--lh-black); margin: 0 0 1.5rem; }
.lh-testimonial-card__foot { display: flex; gap: 0.85rem; align-items: center; }
.lh-avatar { width: 40px; height: 40px; border-radius: 50%; background: transparent; border: 1px solid var(--lh-accent); color: var(--lh-accent); display: flex; align-items: center; justify-content: center; font-weight: 500; font-size: 0.78rem; font-family: var(--font-heading); }
.lh-testimonial-card__n { font-size: 0.85rem; font-weight: 600; color: var(--lh-black); letter-spacing: 0.02em; }
.lh-testimonial-card__r { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--lh-text-muted); margin-top: 2px; }

/* ════ CTA BAND (flat eucalyptus) ════ */
.lh-cta { background: var(--euca-deep); padding: clamp(4rem,9vw,8rem) 2rem; text-align: center; color: #fff; margin: 0; position: relative; }
.lh-cta__h { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.2rem,5vw,3.6rem); color: #fff; max-width: 800px; margin: 0 auto 1.1rem; line-height: 1.08; }
.lh-cta__h em { font-style: italic; color: var(--bronze-bright); }
.lh-cta__p { max-width: 520px; margin: 0 auto 2.4rem; color: rgba(255,255,255,0.78); font-size: 1.05rem; line-height: 1.7; font-weight: 300; }
.lh-cta__actions { display: flex; gap: 0.9rem; justify-content: center; flex-wrap: wrap; }

/* ════ FOOTER ════ */
.lh-footer { background: var(--lh-bg); border-top: 1px solid var(--lh-hair); padding: clamp(4rem,7vw,6rem) 0 2rem; }
.lh-footer__grid { display: grid; grid-template-columns: 2.4fr 1fr 1fr 1.3fr; gap: 3rem; margin-bottom: 3.5rem; }
@media (max-width: 820px) { .lh-footer__grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; } }
@media (max-width: 520px) { .lh-footer__grid { grid-template-columns: 1fr; } }
.lh-footer__wm { font-family: var(--font-display); font-size: 1.7rem; color: var(--lh-black); letter-spacing: 0.04em; }
.lh-footer__sub { font-size: 8.5px; font-weight: 600; letter-spacing: 0.34em; color: var(--lh-accent); margin-top: 6px; text-transform: uppercase; }
.lh-footer__desc { margin-top: 1.25rem; font-size: 0.92rem; color: var(--lh-text-light); line-height: 1.8; max-width: 320px; font-weight: 300; }
.lh-footer__title { font-size: 0.64rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.2em; color: var(--lh-black); margin-bottom: 1.25rem; }
.lh-footer__link { display: block; padding: 0.4rem 0; font-size: 0.9rem; color: var(--lh-text-light); text-decoration: none; transition: color var(--lh-ease-fast); font-weight: 300; }
.lh-footer__link:hover { color: var(--lh-accent); }
.lh-footer__social { display: flex; gap: 0.6rem; margin-top: 1rem; }
.lh-footer__pill { display: inline-flex; align-items: center; padding: 0.55rem 1rem; border: 1px solid var(--lh-hair); font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--lh-text-light); text-decoration: none; transition: var(--lh-ease-fast); }
.lh-footer__pill:hover { border-color: var(--lh-accent); color: var(--lh-accent); }
.lh-footer__bottom { padding-top: 2rem; border-top: 1px solid var(--lh-hair); display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: 0.7rem; letter-spacing: 0.06em; color: var(--lh-text-muted); }
.lh-footer__bottom a { color: var(--lh-text-muted); text-decoration: none; }
.lh-footer__bottom a:hover { color: var(--lh-accent); }

/* ════ FORM ════ */
.lh-form { display: grid; gap: 0.2rem; }
.lh-field { margin-bottom: 1.1rem; }
.lh-label { display: block; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--lh-text-light); margin: 0 0 0.55rem; }
.lh-input, .lh-select, .lh-textarea {
  width: 100%; padding: 0.9rem 0; background: transparent; border: none; border-bottom: 1px solid var(--lh-hair);
  border-radius: 0; font-family: inherit; font-size: 0.98rem; color: var(--lh-black); transition: var(--lh-ease-fast); font-weight: 300;
}
.lh-input::placeholder, .lh-textarea::placeholder { color: var(--lh-text-muted); }
.lh-textarea { resize: vertical; min-height: 90px; }
.lh-input:focus, .lh-select:focus, .lh-textarea:focus { outline: none; border-bottom-color: var(--lh-accent); }
.lh-select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239a9888' fill='none' stroke-width='1.4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 2px center; }

/* ════ PAGE HEAD (light editorial) ════ */
.lh-pagehead { background: var(--lh-bg); padding: clamp(8rem,13vw,12rem) 0 clamp(3rem,6vw,5rem); border-bottom: 1px solid var(--lh-hair); }
.lh-pagehead__title { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.8rem,7vw,5.5rem); line-height: 1.02; margin: 1.25rem 0 0; color: var(--lh-black); letter-spacing: -0.015em; }
.lh-pagehead__title em { font-style: italic; color: var(--lh-accent); }
.lh-pagehead__sub { font-size: 1.15rem; color: var(--lh-text-light); max-width: 600px; margin: 1.5rem 0 0; line-height: 1.75; font-weight: 300; }
.lh-breadcrumb { font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lh-accent); }
.lh-breadcrumb a { color: var(--lh-text-muted); text-decoration: none; }
.lh-breadcrumb a:hover { color: var(--lh-accent); }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s cubic-bezier(.16,1,.3,1), transform 0.9s cubic-bezier(.16,1,.3,1); }
.reveal.in { opacity: 1; transform: none; }

.lh-mark { display: inline-block; color: var(--lh-accent); font-family: var(--font-display); font-size: 1.4rem; line-height: 1; }

/* ════ MODAL ════ */
.lh-modal { position: fixed; inset: 0; z-index: 200; background: rgba(20,24,20,0.6); backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; padding: 1.5rem; animation: fin 0.3s ease; }
@keyframes fin { from { opacity: 0; } to { opacity: 1; } }
.lh-modal__box { position: relative; background: var(--lh-bg); border-radius: var(--lh-radius-xl); padding: clamp(2rem,4vw,3rem); max-width: 480px; width: 100%; box-shadow: var(--lh-shadow-xl); }
.lh-modal__x { position: absolute; top: 16px; right: 18px; background: transparent; border: none; font-size: 26px; color: var(--lh-text-muted); cursor: pointer; line-height: 1; padding: 4px 8px; }
.lh-modal__x:hover { color: var(--lh-black); }

/* ════════════════════════════════════════════════════════════════
   MOBILE OPTIMISATION — touch-first refinements
   ════════════════════════════════════════════════════════════════ */

/* prevent any accidental horizontal scroll on small screens */
html, body { overflow-x: hidden; }
img, video { height: auto; }

/* Touch devices have no hover: reveal service-card text permanently
   so descriptions & links are never hidden on phones/tablets. */
@media (hover: none) {
  .lh-service-card__desc { max-height: 7rem; opacity: 1; margin-bottom: 0.85rem; }
  .lh-service-card__link { opacity: 0.9; }
  .lh-service-card__img { filter: brightness(0.96) saturate(0.98); }
}
/* Width-based fallback: small screens always show the card text, even if
   the browser doesn't report (hover: none). */
@media (max-width: 900px) {
  .lh-service-card__desc { max-height: 7rem; opacity: 1; margin-bottom: 0.85rem; }
  .lh-service-card__link { opacity: 0.9; }
}

/* ≤ 768px — tablet / large phone */
@media (max-width: 768px) {
  :root { --lh-section-padding: clamp(64px, 12vw, 110px); }
  .lh-section__head { margin-bottom: 2.75rem; }
  .lh-hero__content { padding-bottom: clamp(2.75rem, 9vw, 4rem); }
  /* comfortable tap targets */
  .lh-nav__link, .lh-btn, .lh-footer__link, .lh-link { min-height: 44px; }
  .lh-btn { padding: 1rem 1.6rem; }
}

/* ≤ 560px — phones */
@media (max-width: 560px) {
  :root { --type-h1: clamp(2.7rem, 12vw, 3.6rem); }
  .lh-hero { min-height: 86vh; }
  .lh-hero__subtitle { font-size: 1.02rem; }

  /* stack hero / CTA actions full-width for easy thumb reach */
  .lh-hero__actions, .lh-cta__actions { width: 100%; }
  .lh-hero__actions .lh-btn, .lh-cta__actions .lh-btn { flex: 1 1 100%; }

  /* testimonials: fit a card within the viewport, roomier text */
  .lh-testimonial-card { min-width: 84vw; max-width: 84vw; padding: 0 1.6rem; border-left: none; }
  .lh-testimonial-card__q { font-size: 1.15rem; }

  /* stat rows wrap to a tidy 2-up */
  .lh-stats { gap: 1.75rem 2.5rem; }
  .lh-stats > div { flex: 1 1 40%; }

  /* section number / heading rhythm */
  .lh-section__head { margin-bottom: 2.25rem; }
  .lh-feature-list li { padding: 1.15rem 0; }

  /* pricing & cards: a touch less inner padding */
  .lh-pricing-card { padding: 2.4rem 1.6rem; }
  .lh-value-card { padding: 1.9rem 1.5rem; }
  .lh-contact-card { padding: 1.6rem 1.4rem; }
}


/* === Logo-Mark (Eukalyptus-Sprig) ============================== */
.lh-hdr__logo { flex-direction: row; align-items: center; gap: 11px; }
.lh-hdr__logo-text { display: flex; flex-direction: column; line-height: 1; }
.lh-hdr__mark { width: 22px; height: 27px; flex-shrink: 0; color: var(--lh-accent); }
.lh-footer__mark { width: 26px; height: 31px; display: block; margin-bottom: 0.65rem; color: var(--lh-accent); }
@media (max-width: 520px){ .lh-hdr__mark { width: 19px; height: 23px; } .lh-hdr__logo { gap: 9px; } }
