/* ============================================================
   NOVARA HORIZONS — "Dusk to Dawn" cinematic frontend
   Palette: ink #06080F · night #0B1120 · bone #EDE7D9
            ember #FF7A29 · ion #7C9BFF
   Type: Archivo (variable width) · IBM Plex Mono
   ============================================================ */

:root {
  --ink: #06080f;
  --night: #0b1120;
  --bone: #ede7d9;
  --dim: #97a0b5;
  --ember: #ff7a29;
  --ion: #7c9bff;
  --line: rgba(237, 231, 217, 0.14);
  --font-display: "Archivo", sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
  --gutter: clamp(1.25rem, 4vw, 4rem);
}

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

html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--font-display);
  font-variation-settings: "wdth" 100;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
button { font: inherit; cursor: pointer; }

::selection { background: var(--ember); color: var(--ink); }

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

/* ---------- signature: the horizon line ---------- */

.horizon-line {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 18vh;
  height: 1px;
  pointer-events: none;
  z-index: 3;
  background: linear-gradient(90deg, transparent 0%, var(--hl, var(--ember)) 50%, transparent 100%);
  opacity: 0.55;
  transition: --hl 0.6s, opacity 0.6s;
}

.horizon-line::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: min(70vw, 900px);
  height: 30vh;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse at center, var(--hl, var(--ember)) 0%, transparent 60%);
  opacity: 0.14;
}

body[data-phase="night"] .horizon-line { --hl: var(--ion); opacity: 0.35; }
body[data-phase="dawn"] .horizon-line { --hl: #ffb14e; opacity: 0.7; }

/* ---------- type ---------- */

.display {
  font-family: var(--font-display);
  font-variation-settings: "wdth" 120;
  font-weight: 880;
  text-transform: uppercase;
  line-height: 0.88;
  letter-spacing: -0.015em;
}

.display .outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--bone);
}

.mono-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
}

.mono-label .tick { color: var(--ember); }

.shot-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 4rem);
}

.shot-label::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ---------- layout ---------- */

.wrap { padding-left: var(--gutter); padding-right: var(--gutter); }

section { position: relative; }

.section-pad { padding-top: clamp(5rem, 12vh, 9rem); padding-bottom: clamp(5rem, 12vh, 9rem); }

/* ---------- header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--gutter);
  transition: background 0.4s, backdrop-filter 0.4s;
}

.site-header.scrolled {
  background: rgba(6, 8, 15, 0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  font-variation-settings: "wdth" 122;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1rem;
}

.brand .dot { color: var(--ember); }

.brand small {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  color: var(--dim);
  font-weight: 400;
}

.brand img {
  height: 48px;
  width: auto;
  display: block;
  /* lift the dark-gray parts of the mark off the near-black background */
  filter: drop-shadow(0 0 1px rgba(237, 231, 217, 0.28)) drop-shadow(0 4px 14px rgba(0, 0, 0, 0.55));
  transition: filter 0.3s;
}

.brand:hover img {
  filter: drop-shadow(0 0 1px rgba(237, 231, 217, 0.38)) drop-shadow(0 0 18px rgba(255, 122, 41, 0.25));
}

@media (max-width: 900px) {
  .brand img { height: 38px; }
}

.site-nav { display: flex; align-items: center; gap: 2rem; }

.site-nav a {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
  transition: color 0.25s;
}

.site-nav a:hover { color: var(--bone); }

.btn-ember {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--ember);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--ember);
  transition: background 0.25s, color 0.25s, transform 0.25s;
}

.btn-ember:hover { background: transparent; color: var(--ember); transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--bone);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  transition: border-color 0.25s, transform 0.25s;
}

.btn-ghost:hover { border-color: var(--ember); transform: translateY(-2px); }

.site-nav .btn-ember { padding: 0.6rem 1.2rem; font-size: 0.74rem; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.55rem 1.1rem;
}

/* ---------- hero ---------- */

.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-bg, .scene-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-bg img, .scene-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  will-change: transform;
}

.hero-bg::after, .scene-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 8, 15, 0.55) 0%, rgba(6, 8, 15, 0.1) 45%, rgba(6, 8, 15, 0.92) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 0 var(--gutter) clamp(2.5rem, 6vh, 5rem);
}

.hero-eyebrow { margin-bottom: 1.4rem; display: flex; flex-wrap: wrap; gap: 1.5rem; }

.hero-title {
  font-size: clamp(2.8rem, 11.5vw, 11rem);
  margin-bottom: clamp(1.5rem, 3vh, 2.5rem);
  perspective: 900px;
}

.hero-title .row-line {
  display: block;
  overflow: hidden;
}

.hero-title .row-line span {
  display: inline-block;
  will-change: transform;
}

.hero-sub {
  max-width: 34rem;
  color: var(--dim);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  margin-bottom: 2.2rem;
}

.hero-sub strong { color: var(--bone); font-weight: 600; }

.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero-foot {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem var(--gutter);
  border-top: 1px solid var(--line);
}

.scroll-cue { display: inline-flex; align-items: center; gap: 0.7rem; }

.scroll-cue .bar {
  width: 1px;
  height: 2.2rem;
  background: var(--ember);
  animation: cue 2.2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes cue {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ---------- manifesto ---------- */

.manifesto { background: var(--ink); }

.manifesto-title {
  font-size: clamp(2.2rem, 6.5vw, 5.6rem);
  max-width: 18ch;
}

.manifesto-title .m-line { display: block; overflow: hidden; }
.manifesto-title .m-line span { display: inline-block; }
.manifesto-title em { font-style: normal; color: var(--ember); }

.manifesto-body {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: clamp(2rem, 6vw, 6rem);
  margin-top: clamp(2.5rem, 6vh, 4.5rem);
  align-items: start;
}

.manifesto-body p { color: var(--dim); max-width: 46ch; }
.manifesto-body p + p { margin-top: 1.2rem; }
.manifesto-body p strong { color: var(--bone); font-weight: 600; }

.proof-list { border-top: 1px solid var(--line); }

.proof-list li {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.proof-list { margin: 0; padding: 0; }
.proof-list i { color: var(--ember); font-size: 1.1rem; }

/* ---------- work ---------- */

.work { background: var(--night); }

.work-card {
  position: sticky;
  top: 10vh;
  min-height: 78vh;
  margin: 0 var(--gutter) clamp(3rem, 8vh, 6rem);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--ink);
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.45);
}

.work-card .scene-bg { z-index: 0; }
.work-card .scene-bg::after {
  background: linear-gradient(180deg, rgba(6, 8, 15, 0.25) 0%, rgba(6, 8, 15, 0.93) 78%);
}

.work-card-inner {
  position: relative;
  z-index: 1;
  padding: clamp(1.5rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: end;
}

.work-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: var(--ember);
  margin-bottom: 0.9rem;
  display: block;
}

.work-title {
  font-size: clamp(2rem, 5.2vw, 4.4rem);
  margin-bottom: 1rem;
}

.work-desc { color: var(--dim); max-width: 44ch; }

.work-meta { display: flex; flex-direction: column; gap: 1.2rem; align-items: flex-start; }

.work-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }

.work-tags span {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
}

/* ---------- services index ---------- */

.services { background: var(--ink); }

.service-rows { border-top: 1px solid var(--line); }

.service-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(0, 1.2fr) auto;
  gap: clamp(1rem, 3vw, 3rem);
  align-items: center;
  padding: clamp(1.4rem, 3.5vh, 2.4rem) 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.35s;
}

.service-row:hover { padding-left: 1.2rem; }

.service-row .idx {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--dim);
  letter-spacing: 0.2em;
}

.service-row h3 {
  font-variation-settings: "wdth" 116;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(1.3rem, 3.4vw, 2.6rem);
  line-height: 1;
  transition: color 0.3s;
}

.service-row:hover h3 { color: var(--ember); }

.service-row p { color: var(--dim); font-size: 0.95rem; max-width: 40ch; }

.service-row .go {
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--bone);
  transition: background 0.3s, color 0.3s, transform 0.3s;
}

.service-row:hover .go {
  background: var(--ember);
  color: var(--ink);
  transform: rotate(-45deg);
}

/* ---------- pricing ---------- */

.pricing { background: var(--night); }

.pricing-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
}

.pricing-head .display { font-size: clamp(2.2rem, 6vw, 5rem); }

.pricing-cycle-toggle {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.3rem;
  gap: 0.3rem;
}

.pricing-cycle-toggle button {
  background: none;
  border: none;
  border-radius: 999px;
  color: var(--dim);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  transition: background 0.25s, color 0.25s;
}

.pricing-cycle-toggle button.active { background: var(--ember); color: var(--ink); }

#hosting-package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  gap: 1.5rem;
}

#hosting-package-grid > [class*="col-"] { min-width: 0; display: flex; }

.pricing-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2rem;
  background: var(--ink);
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}

.pricing-card:hover { transform: translateY(-6px); border-color: rgba(255, 122, 41, 0.5); }

.pricing-card.featured { border-color: var(--ember); }

.featured-badge {
  position: absolute;
  top: -0.8rem;
  left: 2rem;
  background: var(--ember);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
}

.plan-name {
  font-variation-settings: "wdth" 116;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.plan-description { color: var(--dim); font-size: 0.92rem; margin-top: 0.5rem; }

.pricing-display .price { display: flex; align-items: baseline; gap: 0.2rem; }

.pricing-display .currency { color: var(--ember); font-weight: 700; font-size: 1.4rem; }

.pricing-display .amount {
  font-variation-settings: "wdth" 118;
  font-weight: 850;
  font-size: 3.2rem;
  line-height: 1;
}

.pricing-display .period { color: var(--dim); font-family: var(--font-mono); font-size: 0.8rem; }

.features-list { display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }

.features-list .feature { display: flex; gap: 0.7rem; align-items: center; color: var(--dim); font-size: 0.92rem; }

.features-list .feature i { color: var(--ember); }

.btn-plan {
  display: block;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.85rem;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}

.btn-plan:hover, .pricing-card.featured .btn-plan {
  background: var(--ember);
  border-color: var(--ember);
  color: var(--ink);
}

.pricing-note { text-align: center; margin-top: 2.5rem; color: var(--dim); font-size: 0.95rem; }
.pricing-note a { color: var(--ember); }

/* ---------- faq ---------- */

.faq { background: var(--ink); }

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.faq-grid .display { font-size: clamp(2.2rem, 5.5vw, 4.5rem); position: sticky; top: 14vh; }

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq details:first-of-type { border-top: 1px solid var(--line); }

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding: 1.4rem 0;
  font-weight: 650;
  font-size: 1.05rem;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::after {
  content: "+";
  font-family: var(--font-mono);
  color: var(--ember);
  font-size: 1.3rem;
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq details[open] summary::after { transform: rotate(45deg); }

.faq details p { color: var(--dim); padding: 0 0 1.5rem; max-width: 56ch; }

/* ---------- contact ---------- */

.contact {
  overflow: hidden;
}

.contact .scene-bg::after {
  background: linear-gradient(180deg, rgba(6, 8, 15, 0.94) 0%, rgba(6, 8, 15, 0.55) 55%, rgba(6, 8, 15, 0.85) 100%);
}

.contact-title {
  font-size: clamp(2.6rem, 8.5vw, 7.5rem);
  margin-bottom: clamp(2.5rem, 6vh, 4rem);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

.info-item { display: flex; gap: 1.1rem; padding: 1.3rem 0; border-bottom: 1px solid var(--line); }

.info-item i { color: var(--ember); font-size: 1.3rem; }

.info-item h3 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 500;
  margin-bottom: 0.35rem;
}

.info-item p { font-size: 1.05rem; font-weight: 600; }
.info-item a:hover { color: var(--ember); }

.php-email-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.php-email-form .form-control {
  width: 100%;
  background: rgba(11, 17, 32, 0.75);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--bone);
  font: inherit;
  font-size: 0.98rem;
  padding: 1rem 1.2rem;
  transition: border-color 0.25s;
}

.php-email-form .form-control::placeholder { color: var(--dim); }
.php-email-form .form-control:focus { outline: none; border-color: var(--ember); }

.php-email-form .full { grid-column: 1 / -1; }

.php-email-form textarea.form-control { resize: vertical; min-height: 9rem; }

.php-email-form button[type="submit"] {
  grid-column: 1 / -1;
  justify-self: start;
  background: var(--ember);
  color: var(--ink);
  border: 1px solid var(--ember);
  border-radius: 999px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
  padding: 0.95rem 2.4rem;
  transition: background 0.25s, color 0.25s;
}

.php-email-form button[type="submit"]:hover:not(:disabled) { background: transparent; color: var(--ember); }
.php-email-form button[type="submit"]:disabled { opacity: 0.45; cursor: not-allowed; }

.php-email-form .loading,
.php-email-form .error-message,
.php-email-form .sent-message {
  display: none;
  grid-column: 1 / -1;
  font-size: 0.95rem;
  padding: 0.9rem 1.2rem;
  border-radius: 12px;
}

.php-email-form .loading { background: rgba(124, 155, 255, 0.12); color: var(--ion); }
.php-email-form .error-message { background: rgba(255, 82, 82, 0.12); color: #ff8a8a; }
.php-email-form .sent-message { background: rgba(94, 210, 120, 0.12); color: #7fe09a; }

#contact-turnstile { grid-column: 1 / -1; }

/* ---------- footer ---------- */

.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: clamp(2.5rem, 6vh, 4rem) var(--gutter) 2rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

.footer-links { display: flex; flex-wrap: wrap; gap: 1.8rem; }

.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--dim);
}

.footer-links a:hover { color: var(--bone); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 0.85rem;
}

.footer-bottom a { color: var(--bone); }
.footer-bottom a:hover { color: var(--ember); }

/* ---------- custom cursor ---------- */

.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--ember);
  z-index: 10000;
}

.cursor-ring {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--bone);
  mix-blend-mode: difference;
  z-index: 9999;
}

.cursor-fx body,
.cursor-fx a,
.cursor-fx button,
.cursor-fx summary,
.cursor-fx label {
  cursor: none;
}

/* keep the text caret in form fields */
.cursor-fx input,
.cursor-fx textarea,
.cursor-fx select {
  cursor: text;
}

/* let GSAP own transform on magnetic elements — a CSS transform
   transition here would fight the quickTo tween */
.cursor-fx .btn-ember,
.cursor-fx .btn-ghost,
.cursor-fx .nav-toggle,
.cursor-fx .go {
  transition-property: background, color, border-color;
}

/* ---------- reveal defaults (JS enhances) ---------- */

[data-reveal] { opacity: 1; }

.js [data-reveal] { opacity: 0; transform: translateY(30px); }

/* ---------- responsive ---------- */

@media (max-width: 900px) {
  /* backdrop-filter would make the header the containing block for the
     fixed nav overlay, trapping it inside the header box */
  .site-header.scrolled {
    backdrop-filter: none;
    background: rgba(6, 8, 15, 0.95);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    background: rgba(6, 8, 15, 0.96);
    backdrop-filter: blur(16px);
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    transform: translateY(-100%);
    transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
  }

  .site-nav.open { transform: translateY(0); }

  .site-nav a { font-size: 1.05rem; }

  .nav-toggle { display: inline-flex; position: relative; z-index: 60; }

  .manifesto-body, .faq-grid, .contact-grid { grid-template-columns: 1fr; }

  .faq-grid .display { position: static; }

  .work-card { min-height: 70vh; }

  .work-card-inner { grid-template-columns: 1fr; align-items: start; }

  .service-row { grid-template-columns: auto minmax(0, 1fr) auto; }

  .service-row p { display: none; }

  .php-email-form { grid-template-columns: 1fr; }

  .hero-foot .mono-label:nth-child(3) { display: none; }
}

/* ---------- reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] { opacity: 1; transform: none; }
}
