/* ============================================================
   Root & Rise Landscaping — design system
   Concept: "root" (deep green earth bands) → "rise" (paper/light)
   ============================================================ */

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

/* ---- Tokens ---- */
:root {
  /* color */
  --green-900: #14301F;
  --green-800: #1E4029;
  --green-700: #2C5338;
  --green-600: #3C6B47;
  --foliage:   #5E7E52;
  --cedar:     #BC8A4F;
  --cedar-600: #A5743B;
  --paper:     #F5F1E8;
  --paper-2:   #FBF9F3;
  --stone:     #6F7268;
  --ink:       #1A2118;
  --line:      rgba(20, 48, 31, 0.14);
  --line-light:rgba(245, 241, 232, 0.18);

  /* type */
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-body: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  --step-xl: clamp(2.8rem, 1.6rem + 5.2vw, 5.25rem);
  --step-l:  clamp(2.1rem, 1.4rem + 3vw, 3.4rem);
  --step-m:  clamp(1.5rem, 1.2rem + 1.4vw, 2.1rem);
  --step-s:  clamp(1.15rem, 1.05rem + 0.5vw, 1.35rem);
  --step-body: 1.0625rem;
  --step-xs: 0.85rem;

  /* layout */
  --maxw: 1200px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --radius: 14px;
  --radius-lg: 22px;
  --shadow: 0 18px 40px -24px rgba(20, 48, 31, 0.45);
  --shadow-soft: 0 10px 30px -20px rgba(20, 48, 31, 0.4);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--step-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; color: inherit; }
ul { list-style: none; padding: 0; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--green-900);
}
h1 { font-size: var(--step-xl); }
h2 { font-size: var(--step-l); }
h3 { font-size: var(--step-m); }
p { max-width: 62ch; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--step-xs);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cedar-600);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--cedar);
}
.serif-em { font-style: italic; font-weight: 400; color: var(--foliage); }

/* ---- Layout helpers ---- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(4rem, 8vw, 7.5rem); }
.section--tight { padding-block: clamp(3rem, 5vw, 4.5rem); }
.section--earth { background: var(--green-800); color: var(--paper); position: relative; overflow: hidden; }
.section--earth h1, .section--earth h2, .section--earth h3 { color: var(--paper); }
.section--earth .eyebrow { color: var(--cedar); }
.section--paper2 { background: var(--paper-2); }
.lead { font-size: var(--step-s); color: var(--stone); line-height: 1.6; }
.section--earth .lead { color: rgba(245, 241, 232, 0.82); }
.center { text-align: center; }
.center p { margin-inline: auto; }
.stack > * + * { margin-top: 1.1rem; }
.section-head { max-width: 64ch; }
.section-head.center { margin-inline: auto; }

/* ---- Buttons ---- */
.btn {
  --btn-bg: var(--green-800);
  --btn-fg: var(--paper);
  display: inline-flex; align-items: center; gap: 0.55em;
  padding: 0.95em 1.6em;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid var(--btn-bg);
  border-radius: 999px;
  font-weight: 600; font-size: 0.97rem; letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.btn:hover { transform: translateY(-2px); background: var(--green-700); border-color: var(--green-700); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translate(3px, -3px); }
.btn--cedar { --btn-bg: var(--cedar); --btn-fg: var(--green-900); }
.btn--cedar:hover { background: var(--cedar-600); border-color: var(--cedar-600); }
.btn--ghost { background: transparent; color: currentColor; border-color: currentColor; }
.btn--ghost:hover { background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.section--earth .btn--ghost:hover { background: rgba(245,241,232,0.1); }
.btn--lg { padding: 1.05em 1.9em; font-size: 1.02rem; }

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

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(245, 241, 232, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-soft); border-bottom-color: var(--line); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; height: 76px;
}
.nav__logo img { height: 34px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 1.9rem; }
.nav__links a {
  font-weight: 500; font-size: 0.97rem; position: relative; padding-block: 0.4em;
  color: var(--green-900);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--cedar);
  transform: scaleX(0); transform-origin: left; transition: transform 0.3s var(--ease);
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav__links a[aria-current="page"] { color: var(--green-700); }
.nav__actions { display: flex; align-items: center; gap: 1.1rem; }
.nav__phone {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-weight: 600; font-size: 0.95rem; color: var(--green-800);
  white-space: nowrap;
}
.nav__phone:hover { color: var(--cedar-600); }
.nav__phone svg { width: 17px; height: 17px; }

/* mobile nav */
.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer;
  width: 44px; height: 44px; padding: 10px; color: var(--green-900);
}
.nav__toggle span { display: block; height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.nav__toggle span + span { margin-top: 5px; }
.nav[data-open="true"] .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav[data-open="true"] .nav__toggle span:nth-child(2) { opacity: 0; }
.nav[data-open="true"] .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 920px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: 76px 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: flex-start;
    gap: 0; padding: var(--gutter);
    transform: translateY(-130%); transition: transform 0.4s var(--ease);
    box-shadow: var(--shadow);
  }
  .nav[data-open="true"] .nav__menu { transform: translateY(0); }
  .nav__menu { display: flex; }
  .nav__links { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav__links li { width: 100%; }
  .nav__links a { display: block; padding: 0.85em 0; font-size: 1.15rem; border-bottom: 1px solid var(--line); }
  .nav__links a::after { display: none; }
  .nav__menu .nav__actions { flex-direction: column; align-items: stretch; width: 100%; margin-top: 1.4rem; gap: 0.9rem; }
  .nav__menu .nav__phone { justify-content: center; padding: 0.6em; }
  .nav__menu .btn { justify-content: center; }
}
.nav__menu { display: flex; align-items: center; gap: 1.9rem; }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; color: var(--paper); isolation: isolate; }
.hero__media { position: absolute; inset: 0; z-index: -2; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(105deg, rgba(15,36,23,0.9) 0%, rgba(15,36,23,0.66) 38%, rgba(15,36,23,0.28) 72%, rgba(15,36,23,0.18) 100%),
    linear-gradient(to bottom, rgba(15,36,23,0.35) 0%, rgba(15,36,23,0.15) 45%, rgba(15,36,23,0.7) 100%);
}
.hero__inner { padding-block: clamp(6rem, 16vh, 11rem) clamp(4rem, 9vh, 7rem); max-width: 50rem; }
.hero h1 { color: var(--paper); margin-top: 0.6rem; text-shadow: 0 2px 24px rgba(15,36,23,0.45); }
.hero h1 em { font-style: italic; color: var(--cedar); font-weight: 400; }
.hero .eyebrow { color: #E7BC81; }
.hero .eyebrow::before { background: #E7BC81; }
.hero__support { font-size: var(--step-s); color: #F5F1E8; margin-top: 1.4rem; max-width: 44ch; text-shadow: 0 1px 14px rgba(15,36,23,0.55); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.3rem; }
.hero__rating {
  margin-top: 2.6rem; display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 0.92rem; color: rgba(245,241,232,0.9);
}
.hero__stars { color: var(--cedar); letter-spacing: 2px; }
.hero__contour { position: absolute; z-index: -1; right: -10%; top: -15%; width: min(60vw, 720px); opacity: 0.16; color: var(--paper); pointer-events: none; }

/* contour / tree-ring motif */
.contour { color: var(--cedar); opacity: 0.5; }
.contour--ghost { position: absolute; pointer-events: none; }

/* ============================================================
   Values (home)
   ============================================================ */
.values { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 3rem; }
.value {
  padding: 1.9rem 1.6rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: rgba(245,241,232,0.04);
  transition: transform 0.35s var(--ease), background 0.35s var(--ease);
}
.value:hover { transform: translateY(-5px); background: rgba(245,241,232,0.08); }
.value__num { font-family: var(--font-display); font-size: 1rem; color: var(--cedar); letter-spacing: 0.1em; }
.value h3 { font-size: 1.45rem; margin: 0.7rem 0 0.6rem; }
.value p { font-size: 0.97rem; color: rgba(245,241,232,0.78); max-width: none; }
@media (max-width: 900px) { .values { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .values { grid-template-columns: 1fr; } }

/* ============================================================
   Services
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; margin-top: 3rem; }
.service-card {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  min-height: 340px; display: flex; align-items: flex-end;
  color: var(--paper); isolation: isolate;
  box-shadow: var(--shadow-soft);
}
.service-card img { position: absolute; inset: 0; z-index: -2; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.service-card::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(to top, rgba(20,48,31,0.9) 8%, rgba(20,48,31,0.25) 55%, rgba(20,48,31,0.1) 100%); }
.service-card:hover img { transform: scale(1.06); }
.service-card__body { padding: 1.8rem; }
.service-card__num { font-family: var(--font-display); font-size: 0.95rem; color: var(--cedar); letter-spacing: 0.08em; }
.service-card h3 { color: var(--paper); font-size: 1.7rem; margin: 0.5rem 0 0.5rem; }
.service-card p { color: rgba(245,241,232,0.85); font-size: 0.98rem; max-width: 42ch; }
.service-card__link { margin-top: 1rem; display: inline-flex; align-items: center; gap: 0.5em; font-weight: 600; font-size: 0.92rem; color: var(--cedar); }
@media (max-width: 700px) { .services-grid { grid-template-columns: 1fr; } }

/* services page — alternating rows */
.svc-row { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.svc-row + .svc-row { margin-top: clamp(3.5rem, 7vw, 6rem); }
.svc-row:nth-child(even) .svc-row__media { order: -1; }
.svc-row__media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/3; }
.svc-row__media img { width: 100%; height: 100%; object-fit: cover; }
.svc-row__num { font-family: var(--font-display); font-size: 1.05rem; color: var(--cedar-600); }
.svc-row ul.ticks { margin-top: 1.3rem; display: grid; gap: 0.6rem; }
.ticks li { display: flex; gap: 0.7em; align-items: flex-start; color: var(--ink); font-size: 0.99rem; }
.ticks li::before { content: ""; flex: none; width: 20px; height: 20px; margin-top: 3px; background: var(--cedar); -webkit-mask: var(--check) center/contain no-repeat; mask: var(--check) center/contain no-repeat; }
:root { --check: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E"); }
@media (max-width: 760px) { .svc-row { grid-template-columns: 1fr; } .svc-row:nth-child(even) .svc-row__media { order: 0; } }

/* ============================================================
   Featured project
   ============================================================ */
.featured { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem,5vw,4rem); align-items: center; }
.featured__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 3/2; }
.featured__media img { width: 100%; height: 100%; object-fit: cover; }
.featured__tag { position: absolute; top: 1.1rem; left: 1.1rem; background: var(--cedar); color: var(--green-900); font-weight: 600; font-size: 0.8rem; letter-spacing: 0.05em; padding: 0.5em 1em; border-radius: 999px; }
@media (max-width: 800px) { .featured { grid-template-columns: 1fr; } }

/* ============================================================
   Testimonials
   ============================================================ */
.tmoni-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
.tmoni {
  background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.8rem; display: flex; flex-direction: column; gap: 1rem;
}
.tmoni__stars { color: var(--cedar); letter-spacing: 2px; font-size: 0.95rem; }
.tmoni p { font-family: var(--font-display); font-size: 1.18rem; line-height: 1.5; color: var(--green-900); font-weight: 400; max-width: none; }
.tmoni__who { margin-top: auto; font-weight: 600; color: var(--ink); }
.tmoni__who span { display: block; font-weight: 400; font-size: 0.88rem; color: var(--stone); }
@media (max-width: 820px) { .tmoni-grid { grid-template-columns: 1fr; } }

/* ============================================================
   CTA band
   ============================================================ */
.cta-band { position: relative; overflow: hidden; text-align: center; }
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band p { margin-inline: auto; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-top: 2rem; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--green-900); color: rgba(245,241,232,0.78); padding-block: clamp(3.5rem, 6vw, 5rem) 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.site-footer img.flogo { height: 36px; margin-bottom: 1.2rem; }
.site-footer h4 { color: var(--paper); font-family: var(--font-body); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.1rem; }
.site-footer a:hover { color: var(--cedar); }
.footer-links li + li { margin-top: 0.6rem; }
.footer-contact li { margin-top: 0.6rem; display: flex; gap: 0.6em; align-items: flex-start; }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line-light); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; font-size: 0.85rem; }
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

/* ============================================================
   Page hero (interior pages)
   ============================================================ */
.page-hero { position: relative; color: var(--paper); isolation: isolate; }
.page-hero__media { position: absolute; inset: 0; z-index: -2; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(120deg, rgba(20,48,31,0.88), rgba(20,48,31,0.5)); }
.page-hero__inner { padding-block: clamp(5rem, 12vh, 8.5rem) clamp(3.5rem, 8vh, 6rem); max-width: 46rem; }
.page-hero h1 { color: var(--paper); margin-top: 0.6rem; }
.page-hero p { color: rgba(245,241,232,0.9); font-size: var(--step-s); margin-top: 1.2rem; }
.crumbs { font-size: 0.85rem; color: rgba(245,241,232,0.7); }
.crumbs a:hover { color: var(--cedar); }

/* ============================================================
   About
   ============================================================ */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem,5vw,4.5rem); align-items: center; }
.about-portrait { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4/5; }
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }
.approach { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; margin-top: 3rem; }
.approach__item { padding: 1.8rem; background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius); }
.approach__item h3 { font-size: 1.35rem; margin-bottom: 0.5rem; }
.approach__item p { font-size: 0.97rem; color: var(--stone); max-width: none; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.stat { text-align: center; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--cedar); line-height: 1; }
.stat p { font-size: 0.92rem; color: rgba(245,241,232,0.8); margin-top: 0.5rem; max-width: none; }
@media (max-width: 760px) { .about-split { grid-template-columns: 1fr; } .approach { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .stats { grid-template-columns: 1fr; gap: 2rem; } }

/* ============================================================
   Gallery
   ============================================================ */
.gallery { columns: 3; column-gap: 1.1rem; }
.gallery figure { break-inside: avoid; margin-bottom: 1.1rem; border-radius: var(--radius); overflow: hidden; position: relative; box-shadow: var(--shadow-soft); }
.gallery img { width: 100%; transition: transform 0.6s var(--ease); }
.gallery figure:hover img { transform: scale(1.05); }
.gallery figcaption {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 1.4rem 1.1rem 0.9rem;
  background: linear-gradient(to top, rgba(20,48,31,0.85), transparent);
  color: var(--paper); font-size: 0.88rem; font-weight: 500;
  opacity: 0; transform: translateY(8px); transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery figure:hover figcaption, .gallery figure:focus-within figcaption { opacity: 1; transform: translateY(0); }
@media (max-width: 900px) { .gallery { columns: 2; } }
@media (max-width: 540px) { .gallery { columns: 1; } }

/* ============================================================
   Contact
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem,5vw,4rem); align-items: start; }
.contact-info .info-item { display: flex; gap: 0.9rem; align-items: flex-start; padding-block: 1.1rem; border-bottom: 1px solid var(--line); }
.contact-info .info-item:first-of-type { border-top: 1px solid var(--line); }
.contact-info .info-icon { flex: none; width: 42px; height: 42px; border-radius: 50%; background: var(--green-800); color: var(--paper); display: grid; place-items: center; }
.contact-info .info-icon svg { width: 19px; height: 19px; }
.contact-info h4 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; }
.contact-info a, .contact-info p { color: var(--stone); font-size: 0.97rem; }
.contact-info a:hover { color: var(--cedar-600); }

.form-card { background: var(--paper-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.6rem, 4vw, 2.6rem); box-shadow: var(--shadow-soft); }
.field { margin-bottom: 1.2rem; }
.field label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 0.45rem; color: var(--green-900); }
.field label .req { color: var(--cedar-600); }
.field input, .field textarea, .field select {
  width: 100%; padding: 0.85em 1em; background: var(--paper);
  border: 1.5px solid var(--line); border-radius: 10px; transition: border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--foliage); box-shadow: 0 0 0 3px rgba(94,126,82,0.18); }
.field textarea { resize: vertical; min-height: 130px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-note { font-size: 0.85rem; color: var(--stone); margin-top: 0.4rem; }
.hp { position: absolute; left: -9999px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } .field-row { grid-template-columns: 1fr; } }

/* ============================================================
   Scroll reveal + motion
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   Wide-desktop hero: anchor content to the left edge instead of
   floating in a centered column on large monitors.
   ============================================================ */
@media (min-width: 1100px) {
  .hero__inner,
  .page-hero__inner {
    max-width: none;
    margin-inline: 0;
    padding-left: clamp(3rem, 7vw, 9rem);
    padding-right: var(--gutter);
  }
  .hero__inner > *,
  .page-hero__inner > * { max-width: 46rem; }
  .hero h1 { max-width: 14ch; }
}
