/* The Handymate — styles
   Palette from the logo: navy ink + electric blue on a cool plaster off-white.
   Type: Bricolage Grotesque (display), Instrument Sans (text), self-hosted. */

@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/bricolage-grotesque-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Bricolage Grotesque";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/bricolage-grotesque-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/instrument-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/instrument-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --ink: #0e1a2b;
  --ink-2: #4a5566;
  --ink-3: #7d8794;
  --blue: #1263f0;
  --blue-deep: #0b47c4;
  --blue-tint: #e6eeff;
  --paper: #f3f4f0;
  --white: #ffffff;
  --line: #d8dbd5;
  --line-soft: #e9ebe6;
  --shadow: 0 30px 60px -30px rgba(14, 26, 43, 0.35), 0 1px 0 rgba(14, 26, 43, 0.06);

  --display: "Bricolage Grotesque", "Helvetica Neue", Arial, sans-serif;
  --text: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --gutter: clamp(20px, 5vw, 56px);
  --nav-h: 76px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--text);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; color: inherit; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.wrap {
  width: min(1200px, 100%);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.lede {
  font-size: clamp(1.1rem, 1.05rem + 0.4vw, 1.3rem);
  line-height: 1.5;
  color: var(--ink-2);
  max-width: 34rem;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.85em 1.4em;
  border-radius: 8px;
  border: 1.5px solid transparent;
  font-family: var(--text);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.15s var(--ease), background-color 0.2s, border-color 0.2s, color 0.2s, box-shadow 0.2s;
}
.btn svg { width: 1.15em; height: 1.15em; flex: none; }
.btn:active { transform: translateY(1px) scale(0.99); }

.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 8px 20px -10px rgba(18, 99, 240, 0.7);
}
.btn-primary:hover { background: var(--blue-deep); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(14, 26, 43, 0.28);
}
.btn-ghost:hover { border-color: var(--ink); background: rgba(255, 255, 255, 0.6); }

.btn-light {
  background: #fff;
  color: var(--ink);
}
.btn-light:hover { background: var(--blue-tint); }

.btn-lg { padding: 1em 1.5em; font-size: 1.05rem; }
.btn-sm { padding: 0.7em 1.1em; font-size: 0.95rem; }

/* ---------- Header ---------- */

.top {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 0%, transparent);
  transition: background-color 0.3s, box-shadow 0.3s;
}
.top.scrolled {
  background: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
  box-shadow: 0 1px 0 var(--line);
}
.top-inner {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 32px;
}
.brand { flex: none; }
.brand img { height: 42px; width: auto; }

.menu {
  display: flex;
  gap: 26px;
  white-space: nowrap;
  margin-inline: auto;
  font-weight: 500;
  color: var(--ink-2);
}
.menu a { position: relative; padding: 6px 0; transition: color 0.2s; }
.menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.menu a:hover { color: var(--ink); }
.menu a:hover::after { transform: scaleX(1); }

.top-actions { display: flex; align-items: center; gap: 18px; }
.lang {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-2);
  border-bottom: 1.5px solid var(--line);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.lang:hover { color: var(--blue); border-color: var(--blue); }
.phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.phone svg { width: 18px; height: 18px; color: var(--blue); }

.burger {
  display: none;
  width: 44px; height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s;
}
.nav-open .burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .burger span:nth-child(2) { opacity: 0; }
.nav-open .burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile {
  display: none;
  flex-direction: column;
  padding: 8px var(--gutter) 28px;
  background: #fff;
  box-shadow: 0 1px 0 var(--line), 0 24px 40px -20px rgba(14, 26, 43, 0.3);
}
.mobile > a {
  padding: 14px 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; padding-top: 22px; }

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

.hero {
  position: relative;
  padding-top: clamp(32px, 6vw, 72px);
  padding-bottom: clamp(56px, 8vw, 110px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 32px;
  align-items: center;
}
.hero-copy { grid-column: 1 / 8; }
.sheet { grid-column: 8 / 13; }

.hero h1 {
  font-size: clamp(2.9rem, 1.5rem + 5.6vw, 5.6rem);
  line-height: 0.98;
  font-weight: 750;
  letter-spacing: -0.035em;
  font-variation-settings: "opsz" 96;
  margin-bottom: clamp(20px, 3vw, 32px);
}
.hero h1 .l { display: block; overflow: hidden; padding-bottom: 0.06em; margin-bottom: -0.06em; }
.hero h1 .li {
  display: inline-block;
  transform: translateY(110%);
  animation: rise 0.9s var(--ease) forwards;
  animation-delay: calc(0.08s + var(--d) * 0.1s);
}
.hero .lede { margin-bottom: clamp(24px, 3vw, 36px); }
.hero .lede,
.hero .cta-row,
.hero .hero-note {
  opacity: 0;
  transform: translateY(14px);
  animation: fade-up 0.8s var(--ease) forwards;
}
.hero .lede { animation-delay: 0.5s; }
.hero .cta-row { animation-delay: 0.62s; }
.hero .hero-note { animation-delay: 0.74s; }

.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-note {
  margin-top: 22px;
  font-size: 0.95rem;
  color: var(--ink-3);
}

@keyframes rise { to { transform: translateY(0); } }
@keyframes fade-up { to { opacity: 1; transform: translateY(0); } }

/* Ruler strip: the one decorative motif on the page */
.ruler {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 22px;
  border-top: 1px solid rgba(14, 26, 43, 0.35);
  background-image:
    repeating-linear-gradient(to right, rgba(14, 26, 43, 0.38) 0 1px, transparent 1px 80px),
    repeating-linear-gradient(to right, rgba(14, 26, 43, 0.28) 0 1px, transparent 1px 16px);
  background-size: 100% 14px, 100% 7px;
  background-repeat: no-repeat;
  background-position: 0 0, 0 0;
  pointer-events: none;
}

/* ---------- Job sheet ---------- */

.sheet {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 22px 24px 24px;
  opacity: 0;
  transform: translateY(28px);
  animation: fade-up 0.9s var(--ease) 0.35s forwards;
}
.sheet-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue);
  position: relative;
}
.sheet-head::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -5px;
  height: 1px;
  background: var(--blue);
}
.sheet-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.sheet-date { font-size: 0.9rem; color: var(--ink-3); font-variant-numeric: tabular-nums; }
.sheet-hint { margin: 14px 0 4px; font-size: 0.9rem; color: var(--ink-3); }

.sheet-list { display: flex; flex-direction: column; }
.job {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 46px;
  padding: 0 8px;
  margin: 0 -8px;
  border-bottom: 1px solid var(--line-soft);
  border-radius: 4px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s;
  opacity: 0;
  transform: translateX(-10px);
  animation: slide-in 0.6s var(--ease) forwards;
  animation-delay: calc(0.65s + var(--i) * 0.055s);
}
.job:hover { background: var(--paper); }
.job input {
  position: absolute;
  opacity: 0;
  width: 1px; height: 1px;
  pointer-events: none;
}
.job .box {
  width: 22px; height: 22px;
  flex: none;
  border: 1.5px solid rgba(14, 26, 43, 0.4);
  border-radius: 5px;
  display: grid;
  place-items: center;
  color: #fff;
  transition: background-color 0.2s, border-color 0.2s, transform 0.2s var(--ease);
}
.job .tick { width: 16px; height: 16px; }
.job .tick path {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  transition: stroke-dashoffset 0.3s var(--ease) 0.05s;
}
.job input:checked + .box {
  background: var(--blue);
  border-color: var(--blue);
  transform: scale(1.06);
}
.job input:checked + .box .tick path { stroke-dashoffset: 0; }
.job input:checked ~ .txt { font-weight: 600; }
.job input:focus-visible + .box { outline: 3px solid var(--blue); outline-offset: 2px; }
.job .txt { transition: font-weight 0.2s; }

.other-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease);
}
.other-wrap.open { grid-template-rows: 1fr; }
.other-wrap > .other-input { min-height: 0; overflow: hidden; }
.other-input {
  width: 100%;
  border: 0;
  border-bottom: 1px solid var(--line-soft);
  background: transparent;
  padding: 0;
  font: inherit;
  color: var(--ink);
}
.other-wrap.open > .other-input { padding: 10px 8px; }
.other-input:focus { outline: none; box-shadow: inset 0 -2px 0 var(--blue); }

@keyframes slide-in { to { opacity: 1; transform: translateX(0); } }

.sheet-foot { margin-top: 18px; }
.sheet-cta {
  width: 100%;
  justify-content: center;
  padding: 1em 1.2em;
  font-size: 1.02rem;
}
.sheet-cta[aria-disabled="true"] {
  background: var(--paper);
  color: var(--ink-3);
  box-shadow: none;
  border-color: var(--line);
  cursor: default;
}
.sheet-cta.bump { animation: bump 0.35s var(--ease); }
@keyframes bump {
  40% { transform: scale(1.035); }
  100% { transform: scale(1); }
}
.sheet-note { margin-top: 10px; font-size: 0.85rem; color: var(--ink-3); text-align: center; }

/* ---------- Promises ---------- */

.promises {
  background: #fff;
  border-bottom: 1px solid var(--line-soft);
}
.promise-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.promise-list li {
  padding: 36px 28px 36px 0;
  margin-right: 28px;
  border-right: 1px solid var(--line-soft);
}
.promise-list li:last-child { border-right: 0; margin-right: 0; }
.promise-list h3 {
  font-size: 1.15rem;
  font-weight: 650;
  line-height: 1.25;
  margin-bottom: 8px;
}
.promise-list p { font-size: 0.97rem; color: var(--ink-2); }

/* ---------- Sections ---------- */

section { scroll-margin-top: var(--nav-h); }
.services, .areas { padding-block: clamp(64px, 9vw, 120px); }
.how, .faq { padding-block: clamp(64px, 9vw, 120px); background: #fff; }

.sec-head { max-width: 40rem; margin-bottom: clamp(32px, 5vw, 56px); }
.sec-head h2, .faq h2, .contact h2 {
  font-size: clamp(2rem, 1.3rem + 2.8vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-variation-settings: "opsz" 72;
}
.sec-head p {
  margin-top: 16px;
  font-size: 1.15rem;
  color: var(--ink-2);
  max-width: 34rem;
}

/* ---------- Services ---------- */

.svc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.svc {
  display: block;
  background: #fff;
  padding: 30px 26px 30px;
  color: inherit;
  transition: background-color 0.25s;
}
.svc:focus-visible { outline-offset: -3px; }
.svc:hover { background: var(--blue-tint); }
.svc .icon {
  width: 48px; height: 48px;
  color: var(--ink);
  margin-bottom: 22px;
  transition: color 0.25s;
}
.svc:hover .icon { color: var(--blue); }
.svc .icon * {
  transition: stroke-dashoffset 1.1s var(--ease);
  transition-delay: calc(var(--i) * 0.08s);
}
.svc h3 { font-size: 1.15rem; font-weight: 650; margin-bottom: 8px; line-height: 1.25; }
.svc p { font-size: 0.97rem; color: var(--ink-2); }
.svc-more { margin-top: 24px; color: var(--ink-2); }
.svc-more a { color: var(--blue); font-weight: 600; border-bottom: 1.5px solid currentColor; }

/* ---------- How it works ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
  counter-reset: step;
  margin-bottom: clamp(40px, 6vw, 64px);
}
.steps::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 32px;
  height: 2px;
  background: var(--line);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease);
}
.steps.in::before { transform: scaleX(1); }
.step { position: relative; padding-top: 88px; }
.step .num {
  position: absolute;
  top: 0; left: 0;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-family: var(--display);
  font-weight: 750;
  font-size: 1.6rem;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 8px #fff;
  transform: scale(0.5);
  opacity: 0;
  transition: transform 0.6s var(--ease), opacity 0.4s;
  transition-delay: calc(0.35s + var(--i) * 0.28s);
}
.steps.in .num { transform: scale(1); opacity: 1; }
.step h3 { font-size: 1.35rem; font-weight: 650; margin-bottom: 10px; letter-spacing: -0.015em; }
.step p { color: var(--ink-2); }
.center { text-align: center; }

/* ---------- Areas ---------- */

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.area h3 a { transition: color 0.2s; }
.area h3 a:hover { color: var(--blue); }
.area-note a, .served a { color: var(--blue); font-weight: 600; }
.area h3 {
  font-size: 1.2rem;
  font-weight: 650;
  padding-bottom: 12px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--ink);
}
.area ul { color: var(--ink-2); line-height: 1.75; }
.area li { display: inline; }
.area li:not(:last-child)::after { content: ", "; }
.area-note { margin-top: 36px; color: var(--ink-2); }
.area-links { margin-top: 10px; color: var(--ink-2); }
.area-links a { color: var(--blue); font-weight: 600; }

/* ---------- FAQ ---------- */

.faq-wrap { max-width: 800px; }
.faq h2 { margin-bottom: clamp(28px, 4vw, 44px); }
.qa { border-top: 1px solid var(--line); }
.qa:last-child { border-bottom: 1px solid var(--line); }
.qa summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  font-family: var(--display);
  font-weight: 650;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.qa summary::-webkit-details-marker { display: none; }
.qa summary svg {
  width: 22px; height: 22px;
  flex: none;
  color: var(--blue);
  transition: transform 0.3s var(--ease);
}
.qa[open] summary svg { transform: rotate(180deg); }
.qa-body { overflow: hidden; }
.qa-body p {
  padding: 0 0 24px;
  color: var(--ink-2);
  max-width: 44rem;
}

/* ---------- Contact ---------- */

.contact {
  background: var(--ink);
  color: #fff;
  padding-block: clamp(64px, 9vw, 120px);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.contact h2 { margin-bottom: 18px; }
.contact .lede { color: rgba(255, 255, 255, 0.72); margin-bottom: 36px; }

.contact-lines { margin: 0 0 40px; display: grid; gap: 22px; }
.contact-lines dt { font-size: 0.9rem; color: rgba(255, 255, 255, 0.55); margin-bottom: 6px; }
.contact-lines dd { margin: 0; }
.contact-lines dd a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 650;
  font-size: clamp(1.3rem, 1rem + 1.2vw, 1.75rem);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.contact-lines dd a:hover { color: #8fb4ff; }
.contact-lines dd svg { width: 1em; height: 1em; color: #8fb4ff; }

.msg h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 16px; color: rgba(255, 255, 255, 0.85); }
.msg label { display: block; margin-bottom: 14px; }
.msg label span { display: block; font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); margin-bottom: 6px; }
.msg input, .msg textarea {
  width: 100%;
  font: inherit;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 12px 14px;
  transition: border-color 0.2s, background-color 0.2s;
}
.msg input::placeholder, .msg textarea::placeholder { color: rgba(255, 255, 255, 0.35); }
.msg input:focus, .msg textarea:focus {
  outline: none;
  border-color: #8fb4ff;
  background: rgba(255, 255, 255, 0.09);
}
.msg textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.msg-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 6px; }
.msg-note { font-size: 0.85rem; color: rgba(255, 255, 255, 0.5); }

.cal {
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.6);
}
.cal-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line-soft);
  font-family: var(--display);
  font-weight: 650;
  font-size: 1.05rem;
}
.cal-head svg { width: 20px; height: 20px; color: var(--blue); }
.calendly-inline-widget { min-width: 320px; height: 680px; }
.cal noscript { display: block; padding: 24px; }

/* ---------- Footer ---------- */

.foot { padding-top: clamp(48px, 6vw, 72px); border-top: 1px solid var(--line); }
.foot-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.foot-col { display: flex; flex-direction: column; gap: 9px; font-size: 0.97rem; color: var(--ink-2); }
.foot-col h3 { font-size: 1rem; font-weight: 650; color: var(--ink); margin-bottom: 6px; }
.foot-col a:hover { color: var(--blue); }
.foot-col .lang { align-self: flex-start; margin-top: 6px; }
.foot-brand img { height: 40px; width: auto; margin-bottom: 16px; }
.foot-brand p { color: var(--ink-2); font-size: 0.97rem; }
.foot-contact { display: flex; flex-direction: column; gap: 6px; margin-top: 16px; font-weight: 500; color: var(--ink-2); }
.foot-contact a:hover { color: var(--blue); }
.foot-legal {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 48px;
  padding-block: 22px;
  border-top: 1px solid var(--line-soft);
  font-size: 0.88rem;
  color: var(--ink-3);
}


/* ---------- About ---------- */

.about { padding-block: clamp(64px, 9vw, 120px); border-top: 1px solid var(--line-soft); }
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.about h2 {
  font-size: clamp(2rem, 1.3rem + 2.8vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}
.about-copy p { color: var(--ink-2); font-size: 1.1rem; max-width: 36rem; }
.about-copy p + p { margin-top: 16px; }
.facts {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 24px 8px;
  box-shadow: var(--shadow);
}
.facts-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  padding-bottom: 10px;
  margin-bottom: 6px;
  border-bottom: 2px solid var(--blue);
}
.facts div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}
.facts div:last-child { border-bottom: 0; }
.facts div dt { font-size: 0.9rem; color: var(--ink-3); padding-top: 2px; }
.facts div dd { margin: 0; font-weight: 500; }

/* ---------- Service & area pages ---------- */

.crumbs { margin-bottom: 28px; font-size: 0.92rem; color: var(--ink-3); }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li + li::before { content: "/"; margin-right: 6px; color: var(--line); }
.crumbs a:hover { color: var(--blue); }
.crumbs [aria-current] { color: var(--ink-2); }

.page-hero {
  position: relative;
  padding-top: clamp(24px, 4vw, 48px);
  padding-bottom: clamp(56px, 8vw, 96px);
}
.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.page-hero .icon { width: 56px; height: 56px; color: var(--blue); margin-bottom: 18px; }
.page-hero h1 {
  font-size: clamp(2.4rem, 1.4rem + 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 750;
  margin-bottom: 20px;
}
.page-hero .lede { margin-bottom: 20px; }
.page-hero .local { color: var(--ink-2); max-width: 34rem; margin-bottom: 28px; }
.page-hero .cta-row { margin-top: 28px; }
.included {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px 26px 12px;
  box-shadow: var(--shadow);
}
.included h2 {
  font-size: 1.2rem;
  font-weight: 700;
  padding-bottom: 10px;
  margin-bottom: 6px;
  border-bottom: 2px solid var(--blue);
}
.check-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid var(--line-soft);
  font-size: 0.98rem;
}
.check-list li:last-child { border-bottom: 0; }
.check-list .tick { width: 20px; height: 20px; flex: none; color: var(--blue); margin-top: 2px; }
.chip-list { display: flex; flex-wrap: wrap; gap: 8px; padding: 12px 0 10px; }
.chip-list li {
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--ink-2);
  background: var(--paper);
}

.typical { background: #fff; padding-block: clamp(48px, 7vw, 88px); }
.typical h2, .others h2, .faq .faq-wrap > h2 {
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.typical-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 28px;
}
.typical-list li { background: var(--paper); padding: 18px 22px; font-size: 1.02rem; }
.served { color: var(--ink-2); }

.others { padding-block: clamp(48px, 7vw, 88px); }
.other-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.other-grid a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.97rem;
  transition: border-color 0.2s, color 0.2s;
}
.other-grid a:hover { border-color: var(--blue); color: var(--blue); }
.other-grid .icon { width: 28px; height: 28px; flex: none; color: var(--blue); }
.not-found { min-height: 50vh; }
.not-found h1 { margin-top: 24px; }

/* ---------- Sticky mobile bar ---------- */

.sticky-bar { display: none; }

/* ---------- Language banner ---------- */

.lang-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 12px 12px 18px;
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  box-shadow: 0 20px 40px -20px rgba(0, 0, 0, 0.6);
  font-size: 0.95rem;
  animation: fade-up 0.5s var(--ease);
}
.lang-banner[hidden] { display: none; }
.lang-banner a { color: #8fb4ff; font-weight: 600; white-space: nowrap; }
.lang-banner button {
  width: 32px; height: 32px;
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  display: grid;
  place-items: center;
  cursor: pointer;
}
.lang-banner button svg { width: 16px; height: 16px; }

/* ---------- Responsive ---------- */

@media (max-width: 1240px) {
  .phone span { display: none; }
  .phone svg { width: 22px; height: 22px; }
}

@media (max-width: 1080px) {
  .menu { gap: 20px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .promise-list { grid-template-columns: repeat(2, 1fr); }
  .promise-list li { padding-block: 28px; }
  .promise-list li:nth-child(2n) { border-right: 0; margin-right: 0; }
  .promise-list li:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .menu, .top-actions .lang, .top-actions .btn { display: none; }
  .burger { display: flex; }
  .top-actions { margin-left: auto; gap: 6px; }
  .nav-open .mobile { display: flex; }
  .top.nav-open { background: #fff; }

  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy, .sheet { grid-column: auto; }
  .hero { padding-bottom: 72px; }

  .steps { grid-template-columns: 1fr; gap: 36px; }
  .steps::before { left: 31px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; transform: scaleY(0); transform-origin: top; }
  .steps.in::before { transform: scaleY(1); }
  .step { padding-top: 0; padding-left: 92px; min-height: 64px; }

  .contact-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .foot-brand { grid-column: 1 / -1; }
  .about-grid, .page-hero-grid { grid-template-columns: 1fr; }
  .other-grid { grid-template-columns: repeat(2, 1fr); }

  /* Hero: shorter on phones; the sticky bar carries the call and book actions */
  .hero { padding-top: 20px; padding-bottom: 56px; }
  .hero-grid { gap: 28px; }
  .hero .cta-row { display: none; }
  .hero-note { margin-top: 12px; }

  body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
  .sticky-bar {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 55;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: saturate(160%) blur(12px);
    backdrop-filter: saturate(160%) blur(12px);
    box-shadow: 0 -1px 0 var(--line), 0 -12px 30px -18px rgba(14, 26, 43, 0.35);
  }
  .sticky-bar a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
  }
  .sticky-bar svg { width: 20px; height: 20px; }
  .sticky-call { color: var(--ink); border: 1.5px solid rgba(14, 26, 43, 0.28); background: #fff; }
  .sticky-book { color: #fff; background: var(--blue); box-shadow: 0 8px 20px -10px rgba(18, 99, 240, 0.7); }
  .lang-banner { bottom: calc(80px + env(safe-area-inset-bottom)); }
}

@media (max-width: 560px) {
  body { font-size: 1rem; }
  .brand img { height: 34px; }
  .svc-grid { grid-template-columns: 1fr; }
  .promise-list { grid-template-columns: 1fr; }
  .promise-list li { border-right: 0; margin-right: 0; padding: 22px 0; border-bottom: 1px solid var(--line-soft); }
  .promise-list li:last-child { border-bottom: 0; }
  .area-grid { grid-template-columns: 1fr; gap: 24px; }
  .field-row { grid-template-columns: 1fr; }
  .cta-row .btn { width: 100%; justify-content: center; }
  .sheet { padding: 18px 18px 20px; }
  .step { padding-left: 80px; }
  .lang-banner { right: 16px; font-size: 0.9rem; }
  .foot-grid { grid-template-columns: 1fr; }
  .calendly-inline-widget { height: 620px; }
  .hero h1 { font-size: 2.6rem; }
  .typical-list, .other-grid { grid-template-columns: 1fr; }
  .facts div { grid-template-columns: 96px 1fr; }
  .page-hero .cta-row { display: none; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero h1 .li, .hero .lede, .hero .cta-row, .hero .hero-note, .sheet, .job, .lang-banner {
    animation: none;
    opacity: 1;
    transform: none;
  }
  .svc .icon * { stroke-dasharray: none !important; stroke-dashoffset: 0 !important; transition: none; }
  .steps::before, .step .num { transition: none; transform: none; opacity: 1; }
  .sheet-cta.bump { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
