/* ============================================================
   IRMAN SIIVOUSPALVELU — style.css
   Palette (siivouswebbi.pdf): lime #D9FB5F · pink #F470AA · white
   No black anywhere — text uses a deep brand plum (dark pink).
   Type: Climate Crisis (display) + Bricolage Grotesque (text)
   ============================================================ */

:root {
  --lime: #d9fb5f;
  --pink: #f470aa;
  --pink-deep: #e04b8e;
  --plum: #8e3358;          /* deep pink — replaces black for text/lines */
  --plum-soft: #a8506f;
  --white: #ffffff;
  --cream: #fffdf7;
  --radius: 24px;
  --gutter: clamp(1.25rem, 4.5vw, 5rem);
  --max: 1560px;          /* content never sprawls past this on wide screens */
  --font: "Bricolage Grotesque", system-ui, sans-serif;
  /* Page colours — tweened as each section scrolls into view */
  --page-bg: rgb(244, 112, 170);
  --page-fg: rgb(255, 255, 255);
  --display: "Climate Crisis", "Bricolage Grotesque", system-ui, sans-serif;
  --accent-type: "Syne", "Bricolage Grotesque", system-ui, sans-serif;
}

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

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--font);
  background: var(--page-bg);
  color: var(--page-fg);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.125rem);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
/* clip prevents sideways scrolling without making <body> a scroll
   container — sticky section headings keep working. */
@supports (overflow: clip) {
  body { overflow-x: clip; }
}

::selection { background: var(--lime); color: var(--plum); }

h1, h2, h3 { font-weight: 800; line-height: 1.02; letter-spacing: -0.02em; }

a { color: inherit; text-decoration: none; }

/* ---------- Preload state ----------
   The hero itself is the preloader: everything but the wordmark is
   hidden while the letters fill in one by one. */
.preload .nav,
.preload .hero__badge,
.preload .hero__slogan,
.preload .hero__lead,
.preload .hero__cta,
.preload .hero__scroll { opacity: 0; }
.preload body { overflow: hidden; }

/* ---------- Cursor ---------- */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 99;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--pink-deep);
  pointer-events: none;
  transform: translate(-50%, -50%);
  mix-blend-mode: multiply;
  transition: width 0.25s ease, height 0.25s ease, background 0.25s ease, opacity 0.25s ease;
  opacity: 0;
}
.cursor.is-visible { opacity: 1; }
.cursor.is-hover { width: 44px; height: 44px; background: var(--lime); }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- Logo (same wordmark as the hero) ---------- */
.logo {
  font-family: var(--display);
  font-size: clamp(1.05rem, 1.6vw, 1.4rem); font-weight: 400;
  display: inline-block; line-height: 1;
  text-transform: uppercase;
  transition: opacity 0.3s ease;
}
.nav__logo:hover .logo { opacity: 0.72; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem var(--gutter);
  color: var(--page-fg);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.35s ease, color 0.35s ease;
}
.nav.is-scrolled {
  /* Tint follows whatever colour the page is currently showing */
  background: color-mix(in srgb, var(--page-bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.nav.is-hidden { transform: translateY(-110%); }
/* Over the open (lime) menu the wordmark needs the dark brand pink */
.nav.is-menu-open { color: var(--plum); background: none; backdrop-filter: none; -webkit-backdrop-filter: none; }
.nav__links { display: flex; align-items: center; gap: 1.75rem; }
.nav__link { font-weight: 600; font-size: 0.95rem; position: relative; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -4px;
  width: 100%; height: 2px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__burger {
  display: none; background: none; border: 0; cursor: pointer;
  color: inherit;
  width: 44px; height: 44px; position: relative; z-index: 60;
}
.menu.is-open ~ .nav .nav__burger,
.nav__burger.is-open { color: var(--plum); }
.nav__burger span {
  display: block; width: 26px; height: 2.5px; background: currentColor;
  margin: 6px auto; border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.3s ease;
}
.nav__burger.is-open span:first-child { transform: translateY(4.2px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-4.2px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.menu {
  position: fixed; inset: 0; z-index: 55;
  background: var(--lime);
  color: var(--plum);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  clip-path: circle(0% at calc(100% - 44px) 40px);
  visibility: hidden;
  transition: clip-path 0.7s cubic-bezier(0.76, 0, 0.24, 1), visibility 0s 0.7s;
}
.menu.is-open {
  clip-path: circle(150% at calc(100% - 44px) 40px);
  visibility: visible;
  transition: clip-path 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}
.menu__links { display: flex; flex-direction: column; gap: 0.4rem; }
.menu__link {
  font-family: var(--display);
  font-size: clamp(1.9rem, 7.5vw, 3rem); font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0; line-height: 1.3;
  transform: translateY(30px); opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, color 0.3s ease;
}
.menu__link:hover { color: var(--pink-deep); }
.menu.is-open .menu__link { transform: none; opacity: 1; }
.menu.is-open .menu__link:nth-child(1) { transition-delay: 0.15s; }
.menu.is-open .menu__link:nth-child(2) { transition-delay: 0.21s; }
.menu.is-open .menu__link:nth-child(3) { transition-delay: 0.27s; }
.menu.is-open .menu__link:nth-child(4) { transition-delay: 0.33s; }
.menu.is-open .menu__link:nth-child(5) { transition-delay: 0.39s; }
.menu__phone { margin-top: 3rem; font-weight: 700; font-size: 1.3rem; }
.menu__mark {
  font-family: var(--display); text-transform: uppercase;
  font-size: clamp(1.6rem, 8vw, 2.4rem); line-height: 1.05;
  margin-bottom: 2.5rem; color: var(--pink-deep);
}

/* ---------- Buttons ---------- */
.btn {
  position: relative; display: inline-flex; align-items: center; gap: 0.6em;
  padding: 1em 1.8em; border-radius: 999px;
  font-family: var(--font); font-weight: 700; font-size: 1rem;
  border: 2px solid currentColor; cursor: pointer;
  overflow: hidden; isolation: isolate;
  transition: color 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn::before {
  content: ""; position: absolute; inset: -2px; z-index: -1;
  border-radius: inherit;
  transform: translateY(101%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn:hover::before { transform: translateY(0); }
.btn__arrow { display: inline-block; transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1); }
.btn:hover .btn__arrow { transform: translateX(5px) rotate(-45deg); }

/* solid = white pill, plum text → fills lime on hover */
.btn--solid {
  background: var(--white); color: var(--plum); border-color: var(--white);
}
.btn--solid::before { background: var(--lime); }
.btn--solid:hover { color: var(--plum); border-color: var(--lime); }

/* ghost = outline on coloured backgrounds */
.btn--ghost { background: transparent; color: var(--white); }
.btn--ghost::before { background: var(--lime); }
.btn--ghost:hover { color: var(--plum); border-color: var(--lime); }

.btn--lime { background: var(--lime); color: var(--plum); border-color: var(--lime); }
.btn--lime::before { background: var(--white); }
.btn--lime:hover { border-color: var(--white); }

.btn--small { padding: 0.6em 1.3em; font-size: 0.9rem; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(5rem, 11svh, 8rem) var(--gutter) clamp(3.5rem, 8svh, 5rem);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero__inner {
  position: relative; z-index: 2; width: 100%; max-width: 1500px;
  display: flex; flex-direction: column; align-items: center;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 700; font-size: 0.85rem; letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--white); color: var(--plum);
  border-radius: 999px;
  padding: 0.55em 1.2em; margin-bottom: 2.5rem;
}
.hero__badge-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--pink);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.55; }
}
.hero__title {
  font-family: var(--display);
  font-weight: 400;
  /* Grows with width but is capped by height, so short landscape
     screens (laptops) never push the buttons below the fold. */
  font-size: clamp(3rem, min(13.2vw, 21svh), 14rem);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 0.92;

  color: var(--lime);            /* no-JS default: the solid wordmark */
  position: relative;
}

/* ---- Wipe preloader ----
   The heading becomes a lime outline and three solid copies are stacked
   on top, each clipped to a vertical band. Uncovering them in turn —
   down, back up, down again — wipes the colour on in hard-edged strokes,
   the way a cloth is dragged across a table. No fading anywhere. */
.preload .hero__title,
.hero__title.is-swept {
  color: transparent;
  -webkit-text-stroke: clamp(1.5px, 0.24vw, 4px) var(--lime);
}
.hero__sweep {
  position: absolute; left: 0; top: 0; width: 100%;
  color: var(--lime);
  -webkit-text-stroke-width: 0;
  pointer-events: none;
  will-change: clip-path;
}
/* Each stroke's leading edge is tilted and gently bowed — the shape a
   cloth leaves behind — and the bands overlap so no straight seam shows
   where one stroke hands over to the next. */
.hero__sweep--1 { clip-path: polygon(0% 0%, 42% 0%, 42% 0%, 30% -5%, 16% -7%, 0% -14%); }
.hero__sweep--2 { clip-path: polygon(30% 100%, 72% 100%, 72% 100%, 58% 105%, 44% 107%, 30% 114%); }
.hero__sweep--3 { clip-path: polygon(60% 0%, 100% 0%, 100% 0%, 87% -5%, 73% -7%, 60% -14%); }
.hero__line { display: block; padding-bottom: 0.08em; margin-bottom: -0.08em; }

.hero__word { display: inline-block; white-space: nowrap; }
.hero__slogan {
  margin-top: clamp(0.8rem, 2.2svh, 1.8rem);
  font-size: clamp(1.35rem, min(3.4vw, 4.6svh), 2.9rem);
  font-weight: 800;
  color: var(--plum);
  letter-spacing: -0.02em;
}
.hero__lead {
  max-width: 34em; margin-top: clamp(0.7rem, 1.6svh, 1.3rem);
  font-size: clamp(1rem, 1.25vw, 1.3rem); font-weight: 500;
  color: var(--white);
}
.hero__cta {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1rem; margin-top: clamp(1.4rem, 3.4svh, 2.8rem);
}
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; align-items: center; gap: 0.8em;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--white);
}
.hero__scroll-line {
  width: 56px; height: 2px; background: var(--white);
  transform-origin: left;
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleX(0); transform-origin: left; }
  45% { transform: scaleX(1); transform-origin: left; }
  55% { transform: scaleX(1); transform-origin: right; }
  100% { transform: scaleX(0); transform-origin: right; }
}

/* ---------- Sections ---------- */
.section { padding: clamp(5rem, 10vw, 8.5rem) var(--gutter); }
/* These only tag which colour a section owns — the page background
   itself is tweened on scroll, so nothing paints a hard block. */
.section--lime, .section--pink, .section--cream { background: transparent; }
.section__head { max-width: 46ch; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
/* Everything sits in one centred measure so wide screens stay composed */
.section > * { max-width: var(--max); margin-inline: auto; }
.section__head { margin-inline: auto; }
.section__label {
  display: inline-block;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 2px solid currentColor; border-radius: 999px;
  padding: 0.4em 1.1em; margin-bottom: 1.4rem;
}
.section__title {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0;
  font-size: clamp(2.1rem, 5.6vw, 4.6rem);
  text-transform: uppercase;
  line-height: 1;
}
.section--pink .section__title { color: var(--lime); }
.section__lead { max-width: 38em; margin-top: 1.4rem; font-size: 1.1rem; }

/* ---------- Wide-screen composition ----------
   From tablet-landscape up, the section heading sits in its own column
   beside the content and stays put while the content scrolls past. */
@media (min-width: 1000px) {
  .section--split {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(0, 2.2fr);
    column-gap: clamp(2.5rem, 5vw, 6rem);
    /* Columns carry the vertical padding so the heading column spans the
       whole section — that is what gives the sticky heading room to stay
       pinned for the entire section instead of a couple of hundred pixels. */
    padding-block: 0;
    align-items: stretch;
    max-width: var(--max);
    margin-inline: auto;
  }
  .section--split > * { max-width: none; margin-inline: 0; }
  .section--split .section__head {
    margin-bottom: 0;
    padding-block: clamp(5rem, 10vw, 8.5rem) 0;
  }
  .section--split .section__body {
    padding-block: clamp(5rem, 10vw, 8.5rem);
  }
  /* Pinned just under the nav, released only when the section ends */
  .section--split .section__head-inner {
    position: sticky;
    top: 6rem;
  }
  /* A section shorter than the viewport leaves the sticky heading no room
     to hold still — give every split section a full screen of height and
     centre its content, so the heading is motionless the whole way through. */
  .section--split { min-height: 100svh; }
  .section--split .section__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  /* The heading lives in a narrow column, so it needs its own scale —
     kept small enough that the longest word never hits the column edge */
  .section--split .section__title { font-size: clamp(1.6rem, 2.6vw, 2.8rem); }
  .section--split .section__lead { font-size: 0.98rem; }

  /* Three testimonials read better as 2 + 1 until there is room for 3 */
  .trust__quotes { grid-template-columns: repeat(2, 1fr); }
  .trust__quotes .quote:last-child { grid-column: 1 / -1; }
}
@media (min-width: 1360px) {
  .trust__quotes { grid-template-columns: repeat(3, 1fr); }
  .trust__quotes .quote:last-child { grid-column: auto; }
}

/* Split text chars */
.word { display: inline-block; white-space: nowrap; }
.char { display: inline-block; will-change: transform; }

/* ---------- Services ---------- */
.services { background: transparent; }
.services__grid {
  display: grid; gap: clamp(1.25rem, 2vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
@media (min-width: 1000px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
  .card { padding: clamp(2.2rem, 2.6vw, 3rem) clamp(2rem, 2.4vw, 2.8rem); }
}
.card {
  position: relative;
  background: var(--white);
  /* Fixed text colour: the page colour changes on scroll and would turn
     this white-on-white in the pink sections. */
  color: var(--plum);
  border: 2px solid var(--plum);
  border-radius: var(--radius);
  padding: 2.2rem 2rem;
  display: flex; flex-direction: column;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.card:hover {
  transform: translateY(-8px) rotate(-0.5deg);
  box-shadow: 8px 10px 0 var(--plum);
}
.card--accent { background: var(--pink); color: var(--white); border-color: var(--white); }
.card--accent:hover { box-shadow: 8px 10px 0 var(--white); }
.card__num {
  position: absolute; top: 1.4rem; right: 1.6rem;
  font-weight: 800; font-size: 0.9rem; opacity: 0.5;
}
.card__title {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.15rem, 1.6vw, 1.5rem);
  text-transform: uppercase; letter-spacing: 0;
  line-height: 1.05;
  margin: 0.4rem 0 1rem;
}
.card__text { margin-bottom: 1.2rem; }
.card__list { list-style: none; margin-bottom: 1.8rem; font-weight: 600; font-size: 0.95rem; }
.card__list li { padding-left: 1.4em; position: relative; margin-bottom: 0.35em; }
.card__list li::before { content: "✦"; position: absolute; left: 0; color: var(--pink-deep); }
.card--accent .card__list li::before { color: var(--lime); }
.card__link {
  margin-top: auto; font-weight: 800; display: inline-flex; gap: 0.4em;
  align-items: center; width: fit-content;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
}
.card__link span { transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1); }
.card__link:hover span { transform: translateX(6px); }

/* ---------- Pricing ---------- */
.pricing__list { list-style: none; }
.pricing__row {
  display: flex; align-items: baseline; gap: 1rem;
  padding: 1.6rem 0.5rem;
  border-bottom: 1px solid color-mix(in srgb, var(--white) 45%, transparent);
  transition: background 0.3s ease, padding-left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.pricing__row:hover { background: color-mix(in srgb, var(--white) 14%, transparent); padding-left: 1.2rem; }
.pricing__name {
  /* Oma kirjaintyyppi: erottaa hinnaston muusta sivusta */
  font-family: var(--accent-type);
  font-weight: 600;
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.pricing__dots { flex: 1; border-bottom: 2px dotted color-mix(in srgb, var(--white) 55%, transparent); }
.pricing__price {
  font-family: var(--accent-type);
  font-size: clamp(0.95rem, 1.9vw, 1.15rem);
  color: var(--lime); font-weight: 600;
}
.pricing__price strong { font-size: 1.3em; font-weight: 700; }
.pricing__cta {
  margin-top: 3rem; display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 1.5rem;
}
.pricing__cta p { font-weight: 500; }

/* ---------- Trust ---------- */
.trust__facts {
  list-style: none;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.trust__facts li {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.6em;
  padding: 1.1rem 0.2rem;
  border-bottom: 2px solid var(--pink);
  font-size: clamp(1rem, 1.6vw, 1.15rem); font-weight: 500;
  transition: padding-left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.trust__facts li:hover { padding-left: 1rem; }
.trust__fact-key {
  font-family: var(--display); font-weight: 400;
  font-size: clamp(1.3rem, 3vw, 2rem); text-transform: uppercase;
  color: var(--pink-deep); line-height: 1;
}
.trust__quotes {
  display: grid; gap: clamp(1.25rem, 1.8vw, 1.8rem);
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.quote {
  background: var(--pink); color: var(--white);
  border-radius: var(--radius); padding: 2rem;
  font-size: 1.05rem;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.quote:hover { transform: translateY(-6px) rotate(0.6deg); }
.quote--lime { background: var(--lime); color: var(--plum); }
.quote p { font-weight: 600; line-height: 1.5; }
.quote footer { margin-top: 1.2rem; font-size: 0.9rem; opacity: 0.8; font-weight: 500; }

/* ---------- FAQ ---------- */
.faq__list { max-width: 74ch; }
.faq__item { border-bottom: 2px solid var(--pink); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.5rem 0.3rem;
  font-weight: 800; font-size: clamp(1.1rem, 2.4vw, 1.45rem);
  cursor: pointer; list-style: none;
  transition: padding-left 0.4s cubic-bezier(0.22, 1, 0.36, 1), color 0.3s ease;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { padding-left: 1rem; color: var(--pink-deep); }
.faq__icon {
  flex-shrink: 0;
  width: 40px; height: 40px; border-radius: 50%;
  border: 2px solid var(--pink);
  display: grid; place-items: center;
  font-size: 1.3rem; font-weight: 600; color: var(--pink-deep);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), background 0.3s ease;
}
.faq__item[open] .faq__icon { transform: rotate(135deg); background: var(--lime); }
.faq__a { overflow: hidden; }
.faq__a p { padding: 0 0.3rem 1.6rem; max-width: 44em; }

/* ---------- Contact ---------- */
.contact__grid {
  display: grid; gap: clamp(2rem, 5vw, 6rem);
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
}
.form__field { margin-bottom: 1.3rem; }
.form__field label {
  display: block; font-weight: 700; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.4rem;
}
.form__field input,
.form__field select,
.form__field textarea {
  width: 100%; font-family: var(--font); font-size: 1rem;
  padding: 0.9em 1.1em;
  border: 2px solid var(--plum); border-radius: 14px;
  background: var(--white); color: var(--plum);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  appearance: none;
}
.form__field textarea { resize: vertical; }
.form__field input::placeholder,
.form__field textarea::placeholder { color: color-mix(in srgb, var(--plum) 55%, transparent); }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  box-shadow: 4px 5px 0 var(--pink);
  transform: translate(-2px, -2px);
}
.form__submit { margin-top: 0.5rem; }
.form__done { margin-top: 1rem; font-weight: 700; }

.contact__info { display: flex; flex-direction: column; gap: 2rem; }
.contact__block h3 {
  font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.2em;
  margin-bottom: 0.5rem; opacity: 0.75;
}
.contact__big {
  font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800;
  border-bottom: 3px solid currentColor; width: fit-content; display: inline-block;
  transition: color 0.3s ease;
}
.contact__big:hover { color: var(--pink-deep); }
.contact__mid { font-weight: 700; font-size: 1.15rem; border-bottom: 2px solid currentColor; }
.contact__mid:hover { color: var(--pink-deep); }

/* ---------- Footer ---------- */
.footer {
  background: transparent;
  padding: 4rem var(--gutter) 2rem;
}
.footer__mark { text-align: center; margin-bottom: 3rem; overflow: hidden; }
.footer__word {
  font-family: var(--display);
  font-size: clamp(2.4rem, 11vw, 9rem); font-weight: 400;
  letter-spacing: 0; line-height: 1.02;
  text-transform: uppercase;
  color: var(--lime); display: inline-block;
  max-width: 11em;
}
.footer__word .char { display: inline-block; }
.footer__row {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: 0.85rem; font-weight: 500;
  border-top: 1px solid color-mix(in srgb, var(--white) 45%, transparent);
  padding-top: 1.5rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .contact__grid { grid-template-columns: 1fr; }
  .hero { padding-top: 6rem; }
  .hero__cta .btn { width: 100%; justify-content: center; }
}

/* Phone-sized type scale — the display face needs to come down a lot
   more than the body text on a narrow screen. */
@media (max-width: 600px) {
  .section { padding: clamp(3.5rem, 12vw, 5rem) var(--gutter); }
  .section__head { margin-bottom: 1.1rem; }
  .services__grid { margin-top: 0; }
  .section__title { font-size: clamp(1.4rem, 6.2vw, 1.85rem); }
  .section__lead { font-size: 0.95rem; margin-top: 0.9rem; }
  .section__label { font-size: 0.72rem; margin-bottom: 1rem; }

  .hero__slogan { font-size: clamp(1.15rem, 5.4vw, 1.45rem); }
  .hero__lead { font-size: 0.95rem; }
  .card__link { font-size: 0.92rem; }
  .faq__a p { font-size: 0.92rem; }
  body { font-size: 0.98rem; }

  .card { padding: 1.8rem 1.5rem; }
  .card__title { font-size: 1.15rem; }
  .card__text { font-size: 0.92rem; }
  .card__list { font-size: 0.85rem; margin-bottom: 1.3rem; }

  .pricing__row { padding: 1.15rem 0.2rem; }
  .pricing__name { font-size: 0.98rem; }
  .trust__fact-key { font-size: 1.1rem; }
  .trust__facts li { padding: 0.85rem 0.2rem; font-size: 0.92rem; }
  .quote { padding: 1.5rem; font-size: 0.92rem; }

  .faq__q { font-size: 0.98rem; padding: 1.1rem 0.2rem; }
  .faq__icon { width: 34px; height: 34px; font-size: 1.1rem; }

  .contact__mid { font-size: 1rem; overflow-wrap: anywhere; }
  .footer__word { font-size: clamp(1.9rem, 9.5vw, 2.8rem); }
  .footer__mark { margin-bottom: 2rem; }

  .logo { font-size: 0.95rem; }
  .hero__badge { font-size: 0.72rem; padding: 0.5em 1em; margin-bottom: 1.8rem; }
  .btn { font-size: 0.95rem; padding: 0.95em 1.6em; }
}
/* Short landscape screens: drop the scroll hint rather than crowd the CTAs */
@media (max-height: 720px) and (min-width: 761px) {
  .hero__scroll { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero__title, .hero__title.is-swept {
    color: var(--lime); -webkit-text-stroke-width: 0;
  }
  .hero__sweep { display: none; }
}
