/* =========================================================
   The Upper Hand Care — recreation
   Aesthetic: warm editorial care
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=Hanken+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --cream: #f6f1e7;
  --cream-2: #efe7d7;
  --paper: #fffdf8;
  --forest: #1e352e;
  --forest-2: #2c4a40;
  --sage: #93a98f;
  --sage-soft: #c4d1bd;
  --terra: #c56a43;
  --terra-soft: #e0a07f;
  --ink: #20312c;
  --muted: #5d6b62;
  --line: #d8cfbe;

  --display: 'Fraunces', Georgia, serif;
  --body: 'Hanken Grotesk', system-ui, sans-serif;

  --maxw: 1200px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 18px 50px -28px rgba(30, 53, 46, 0.45);
  --shadow-sm: 0 10px 30px -22px rgba(30, 53, 46, 0.6);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { width: min(92%, var(--maxw)); margin-inline: auto; }

/* grain / texture overlay */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; color: var(--forest); }
.eyebrow {
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--terra); display: inline-block; }
.italic { font-style: italic; font-family: var(--display); color: var(--terra); font-weight: 400; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85em 1.5em;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translate(4px, -2px); }
.btn-primary { background: var(--forest); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--forest-2); }
.btn-accent { background: var(--terra); color: #fff; }
.btn-accent:hover { background: #b15c37; }
.btn-ghost { background: transparent; color: var(--forest); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--forest); background: rgba(30,53,46,0.04); }

/* ---------- Header ---------- */
.topbar {
  background: var(--forest);
  color: var(--cream);
  font-size: 0.82rem;
  position: relative;
  z-index: 30;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; padding: 0.55rem 0; gap: 1rem; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 0.45em; opacity: 0.92; transition: opacity 0.2s; }
.topbar a:hover { opacity: 1; }
.topbar .tb-right { display: flex; gap: 1.4rem; align-items: center; }

header.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(246, 241, 231, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}
header.nav.scrolled { border-color: var(--line); box-shadow: 0 10px 30px -26px rgba(30,53,46,0.7); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 0; gap: 1.5rem; }

.brand { display: flex; align-items: center; gap: 0.7rem; }
.brand .mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--forest);
  display: grid; place-items: center;
  color: var(--cream);
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.35rem;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}
.brand .b-text { line-height: 1.05; }
.brand .b-name { font-family: var(--display); font-weight: 600; font-size: 1.18rem; color: var(--forest); }
.brand .b-sub { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }

.menu { display: flex; align-items: center; gap: 0.3rem; }
.menu > li { position: relative; }
.menu > li > a {
  display: inline-flex; align-items: center; gap: 0.35em;
  padding: 0.6rem 0.85rem;
  font-weight: 500; font-size: 0.95rem;
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
  color: var(--ink);
}
.menu > li > a:hover { background: rgba(30,53,46,0.06); color: var(--forest); }
.menu .caret { width: 9px; height: 9px; transition: transform 0.3s; }
.menu li:hover .caret { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.6rem;
  min-width: 250px;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 50;
}
.menu li:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a {
  display: block;
  padding: 0.6rem 0.85rem;
  border-radius: 12px;
  font-size: 0.92rem;
  font-weight: 500;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.dropdown a small { display: block; font-weight: 400; color: var(--muted); font-size: 0.78rem; }
.dropdown a:hover { background: var(--cream-2); color: var(--forest); padding-left: 1.1rem; }

.nav-cta { display: flex; align-items: center; gap: 0.7rem; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.burger span { width: 24px; height: 2px; background: var(--forest); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 4.5rem 0 5rem; z-index: 2; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 3.5rem; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 5.2vw, 4.4rem); font-weight: 500; margin: 1.1rem 0 1.3rem; }
.hero h1 .italic { display: inline; }
.hero p.lead { font-size: 1.13rem; color: var(--muted); max-width: 44ch; margin-bottom: 2rem; }
.hero-cta { display: flex; gap: 0.9rem; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 2.4rem; margin-top: 2.8rem; flex-wrap: wrap; }
.hero-stats .stat .num { font-family: var(--display); font-size: 2.2rem; font-weight: 600; color: var(--forest); }
.hero-stats .stat .lbl { font-size: 0.85rem; color: var(--muted); }

.hero-art { position: relative; }
.hero-art .photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.hero-art .photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-blob {
  position: absolute;
  width: 380px; height: 380px;
  background: radial-gradient(circle at 30% 30%, var(--sage-soft), transparent 70%);
  filter: blur(8px);
  border-radius: 50%;
  top: -60px; right: -80px;
  z-index: -1;
  opacity: 0.8;
}
.hero-badge {
  position: absolute;
  bottom: -26px; left: -26px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 0.85rem;
  max-width: 250px;
}
.hero-badge .ico { width: 44px; height: 44px; border-radius: 12px; background: var(--terra); display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.hero-badge .ico svg { width: 22px; height: 22px; }
.hero-badge strong { font-family: var(--display); color: var(--forest); display: block; font-size: 1.05rem; }
.hero-badge span { font-size: 0.8rem; color: var(--muted); }

/* marquee of trust */
.trust {
  background: var(--forest);
  color: var(--cream);
  padding: 1.1rem 0;
  position: relative; z-index: 2;
  overflow: hidden;
}
.trust-track { display: flex; gap: 3.5rem; white-space: nowrap; animation: scroll 30s linear infinite; width: max-content; }
.trust-track span { font-family: var(--display); font-style: italic; font-size: 1.15rem; opacity: 0.85; display: inline-flex; align-items: center; gap: 1rem; }
.trust-track span::after { content: "✦"; color: var(--terra-soft); font-style: normal; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Section scaffolding ---------- */
section.block { padding: 5.5rem 0; position: relative; z-index: 2; }
.sec-head { max-width: 640px; margin-bottom: 3rem; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { font-size: clamp(2rem, 3.8vw, 3rem); margin: 1rem 0 1rem; }
.sec-head p { color: var(--muted); font-size: 1.05rem; }

/* ---------- Services grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.svc-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}
.svc-card::after {
  content: "";
  position: absolute; left: 0; bottom: 0; height: 3px; width: 0;
  background: var(--terra); transition: width 0.4s var(--ease);
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.svc-card:hover::after { width: 100%; }
.svc-card .ico {
  width: 54px; height: 54px; border-radius: 14px;
  background: var(--cream-2); color: var(--forest);
  display: grid; place-items: center; margin-bottom: 1.2rem;
  transition: background 0.3s, color 0.3s;
}
.svc-card:hover .ico { background: var(--forest); color: var(--cream); }
.svc-card .ico svg { width: 26px; height: 26px; }
.svc-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.svc-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 1rem; }
.svc-card .more { font-weight: 600; font-size: 0.9rem; color: var(--terra); display: inline-flex; gap: 0.4em; align-items: center; }
.svc-card .more .arrow { transition: transform 0.3s var(--ease); }
.svc-card:hover .more .arrow { transform: translateX(4px); }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow); aspect-ratio: 1/1; object-fit: cover; width: 100%; }
.split-media .tag {
  position: absolute; top: 1.2rem; left: 1.2rem;
  background: var(--paper); border-radius: 100px; padding: 0.5rem 1rem;
  font-size: 0.82rem; font-weight: 600; color: var(--forest);
  box-shadow: var(--shadow-sm);
}
.checklist { list-style: none; display: grid; gap: 0.9rem; margin: 1.6rem 0 2rem; }
.checklist li { display: flex; gap: 0.8rem; align-items: flex-start; }
.checklist .tick {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: var(--sage-soft); color: var(--forest);
  display: grid; place-items: center; margin-top: 2px;
}
.checklist .tick svg { width: 13px; height: 13px; }
.checklist strong { color: var(--forest); font-family: var(--body); }
.checklist span { color: var(--muted); font-size: 0.95rem; }

/* ---------- Process / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; counter-reset: step; }
.step {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.8rem 1.5rem;
  position: relative;
}
.step .n {
  font-family: var(--display); font-size: 2.6rem; font-weight: 600;
  color: var(--sage); line-height: 1; margin-bottom: 0.8rem;
}
.step h4 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Stats band ---------- */
.band { background: var(--forest); color: var(--cream); }
.band h2, .band h3 { color: var(--cream); }
.band .eyebrow { color: var(--terra-soft); }
.band .eyebrow::before { background: var(--terra-soft); }
.stat-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.stat-row .s .num { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 600; color: #fff; }
.stat-row .s .lbl { opacity: 0.78; font-size: 0.95rem; }

/* ---------- Testimonials ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.quote {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem;
}
.quote .stars { color: var(--terra); letter-spacing: 0.15em; margin-bottom: 1rem; }
.quote p { font-family: var(--display); font-size: 1.12rem; color: var(--forest); line-height: 1.45; margin-bottom: 1.4rem; font-style: italic; }
.quote .who { display: flex; align-items: center; gap: 0.8rem; }
.quote .who .av { width: 42px; height: 42px; border-radius: 50%; background: var(--sage); color: #fff; display: grid; place-items: center; font-weight: 700; font-family: var(--display); }
.quote .who strong { display: block; color: var(--forest); font-family: var(--body); }
.quote .who span { font-size: 0.85rem; color: var(--muted); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--terra) 0%, #a9522f 100%);
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  color: #fff; text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,0.18), transparent 50%);
}
.cta-banner h2 { color: #fff; font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 0.8rem; position: relative; }
.cta-banner p { opacity: 0.92; max-width: 50ch; margin: 0 auto 1.8rem; position: relative; }
.cta-banner .btn { position: relative; }
.cta-banner .btn-primary { background: var(--forest); }
.cta-banner .btn-ghost { color: #fff; border-color: rgba(255,255,255,0.5); }
.cta-banner .btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

/* ---------- Page hero (interior) ---------- */
.page-hero { background: var(--cream-2); padding: 3.5rem 0 4rem; position: relative; z-index: 2; }
.page-hero .crumbs { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; }
.page-hero .crumbs a:hover { color: var(--terra); }
.page-hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); max-width: 16ch; }
.page-hero p { color: var(--muted); font-size: 1.1rem; max-width: 52ch; margin-top: 1.2rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: start; }
.info-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1rem; }
.info-card .ico { width: 48px; height: 48px; border-radius: 12px; background: var(--cream-2); color: var(--forest); display: grid; place-items: center; flex-shrink: 0; }
.info-card .ico svg { width: 22px; height: 22px; }
.info-card h4 { font-family: var(--body); color: var(--forest); margin-bottom: 0.2rem; }
.info-card p, .info-card a { color: var(--muted); font-size: 0.95rem; }
.info-card a:hover { color: var(--terra); }

form.care-form { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 2.2rem; box-shadow: var(--shadow-sm); }
form.care-form h3 { margin-bottom: 1.4rem; }
.field { margin-bottom: 1.1rem; }
.field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--forest); margin-bottom: 0.4rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.85rem 1rem;
  border: 1px solid var(--line); border-radius: 12px;
  font-family: var(--body); font-size: 0.95rem; color: var(--ink);
  background: var(--cream); transition: border-color 0.2s, box-shadow 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(147,169,143,0.25);
}
.field textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 1rem; }
.form-success { background: var(--sage-soft); color: var(--forest); padding: 1rem; border-radius: 12px; margin-top: 1rem; display: none; font-weight: 500; }
.form-success.show { display: block; }

/* ---------- Map placeholder ---------- */
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 1rem; height: 240px; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; background: none; border: none; cursor: pointer; text-align: left; padding: 1.4rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-family: var(--display); font-size: 1.2rem; color: var(--forest); }
.faq-q .pm { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; transition: background 0.3s, transform 0.3s; font-size: 1.2rem; }
.faq-item.open .faq-q .pm { background: var(--terra); color: #fff; transform: rotate(45deg); border-color: var(--terra); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); color: var(--muted); }
.faq-a p { padding-bottom: 1.4rem; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.member { text-align: center; }
.member .pic { border-radius: var(--radius); overflow: hidden; aspect-ratio: 3/4; margin-bottom: 1rem; box-shadow: var(--shadow-sm); }
.member .pic img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.member:hover .pic img { transform: scale(1.05); }
.member h4 { font-size: 1.2rem; }
.member span { color: var(--terra); font-size: 0.88rem; font-weight: 600; }

/* ---------- Values ---------- */
.values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.value {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; display: flex; gap: 1.2rem; align-items: flex-start;
}
.value .ico { width: 50px; height: 50px; border-radius: 14px; background: var(--cream-2); color: var(--forest); display: grid; place-items: center; flex-shrink: 0; }
.value .ico svg { width: 24px; height: 24px; }
.value h4 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.value p { color: var(--muted); font-size: 0.95rem; }

/* ---------- Footer ---------- */
footer.site {
  background: var(--forest); color: var(--cream);
  position: relative; z-index: 2; padding-top: 4rem;
}
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 2.5rem; padding-bottom: 3rem; }
footer.site .brand .b-name, footer.site .brand .mark { color: var(--cream); }
footer.site .brand .mark { background: var(--terra); }
footer.site .brand .b-sub { color: var(--sage-soft); }
.foot-about { color: rgba(246,241,231,0.72); font-size: 0.95rem; margin: 1.2rem 0 1.4rem; max-width: 34ch; }
.foot-social { display: flex; gap: 0.7rem; }
.foot-social a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid rgba(246,241,231,0.2); display: grid; place-items: center; transition: background 0.3s, border-color 0.3s; }
.foot-social a:hover { background: var(--terra); border-color: var(--terra); }
.foot-social svg { width: 18px; height: 18px; }
.foot-col h5 { font-family: var(--body); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-soft); margin-bottom: 1.1rem; }
.foot-col ul { list-style: none; display: grid; gap: 0.65rem; }
.foot-col a { color: rgba(246,241,231,0.78); font-size: 0.95rem; transition: color 0.2s, padding-left 0.2s; }
.foot-col a:hover { color: #fff; padding-left: 4px; }
.foot-contact li { display: flex; gap: 0.6rem; align-items: flex-start; color: rgba(246,241,231,0.78); font-size: 0.95rem; margin-bottom: 0.7rem; }
.foot-contact svg { width: 17px; height: 17px; flex-shrink: 0; margin-top: 3px; color: var(--sage-soft); }
.foot-bottom { border-top: 1px solid rgba(246,241,231,0.15); padding: 1.5rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: 0.85rem; color: rgba(246,241,231,0.6); }
.foot-bottom a:hover { color: #fff; }
.foot-bottom .links { display: flex; gap: 1.2rem; flex-wrap: wrap; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ---------- Mobile ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero-art { max-width: 460px; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .split.reverse .split-media { order: 0; }
  .svc-grid, .quotes, .team-grid, .stat-row { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .menu, .nav-cta .btn { display: none; }
  .burger { display: flex; }
  .menu.mobile-open {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 1rem; gap: 0.2rem; box-shadow: var(--shadow);
  }
  .menu.mobile-open .dropdown { position: static; transform: none; opacity: 1; visibility: visible; box-shadow: none; border: none; padding: 0 0 0 1rem; min-width: auto; background: transparent; }
  .menu.mobile-open .caret { display: none; }
  .topbar .wrap { justify-content: center; }
  .topbar .tb-left { display: none; }
  .svc-grid, .quotes, .team-grid, .stat-row, .steps, .foot-grid, .field-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.6rem; }
  .cta-banner { padding: 2.2rem 1.4rem; }
  section.block { padding: 3.8rem 0; }
}
