/* ==========================================================================
   TwentySix Electrical & Services — "Grounded Current"
   Editorial trade site. Forest green / warm paper / copper.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* Colour */
  --forest: #12372A;
  --forest-deep: #0A241B;
  --copper: #B85C38;        /* large text, rules, decorative only */
  --copper-text: #9E4A2B;   /* darkened for small text — 5.4:1 on paper */
  --copper-on-dark: #D98B5F;/* lightened for small text on forest — 4.6:1 */
  --paper: #F5F2EA;
  --warm-white: #FFFDF8;
  --ink: #17201C;
  --ink-soft: #4A554F;      /* 7.2:1 on paper */
  --stone: #D8CEC2;
  --line: rgba(23, 32, 28, 0.14);
  --line-dark: rgba(245, 242, 234, 0.16);
  --error: #A8352C;
  --success: #2E6B4F;

  /* Type */
  --font-body: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-serif: "Newsreader", Georgia, "Times New Roman", serif;

  --text-xs: 0.8125rem;   /* 13 */
  --text-sm: 0.9375rem;   /* 15 */
  --text-base: 1.0625rem; /* 17 */
  --text-md: 1.25rem;     /* 20 */
  --text-lg: clamp(1.375rem, 1.2rem + 0.9vw, 1.75rem);
  --text-xl: clamp(1.75rem, 1.4rem + 1.8vw, 2.5rem);
  --text-2xl: clamp(2.25rem, 1.7rem + 2.8vw, 3.375rem);

  /* Space — 4/8 scale, editorial at the section level */
  --s-1: 0.25rem; --s-2: 0.5rem; --s-3: 0.75rem; --s-4: 1rem;
  --s-5: 1.5rem; --s-6: 2rem; --s-7: 3rem; --s-8: 4rem;
  --s-9: clamp(4rem, 3rem + 4vw, 7rem);

  --container: 76rem;
  --radius: 4px;
  --callbar-h: 4rem;

  /* Z-scale */
  --z-nav: 100; --z-callbar: 200;
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--warm-white);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }

h1, h2, h3 { line-height: 1.15; font-weight: 600; letter-spacing: -0.015em; }

:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 2px;
}
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--forest); color: var(--warm-white);
  padding: var(--s-3) var(--s-5); z-index: 300; font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

/* Section rhythm: paper / white / deep green alternation */
.section { padding-block: var(--s-9); }
.section--paper { background: var(--paper); }
.section--forest { background: var(--forest); color: var(--paper); }

.eyebrow {
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--copper-text);
  display: block;
  margin-bottom: var(--s-4);
}
.section--forest .eyebrow { color: var(--copper-on-dark); }

.section-heading {
  font-size: var(--text-xl);
  max-width: 24ch;
  margin-bottom: var(--s-5);
}
.section-intro {
  font-size: var(--text-md);
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 58ch;
  margin-bottom: var(--s-7);
}
.section--forest .section-intro { color: var(--stone); }

.serif-accent { font-family: var(--font-serif); font-weight: 500; font-style: italic; letter-spacing: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  min-height: 3rem;
  padding: 0.75rem 1.75rem;
  font: 600 var(--text-sm)/1.2 var(--font-body);
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  touch-action: manipulation;
  transition: background-color 180ms ease-out, border-color 180ms ease-out, color 180ms ease-out;
}
.btn--primary { background: var(--copper); color: #FFF8F2; }
.btn--primary:hover { background: #A04E2D; }
.btn--outline { border-color: currentColor; background: transparent; color: var(--forest); }
.btn--outline:hover { background: rgba(18, 55, 42, 0.07); }
.section--forest .btn--outline, .hero .btn--outline { color: var(--paper); }
.section--forest .btn--outline:hover, .hero .btn--outline:hover { background: rgba(245, 242, 234, 0.12); }
.btn--forest { background: var(--forest); color: var(--paper); }
.btn--forest:hover { background: var(--forest-deep); }
.btn[disabled] { opacity: 0.45; cursor: default; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-nav);
  background: var(--warm-white);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  display: flex; align-items: center; gap: var(--s-5);
  min-height: 4.25rem;
  min-width: 0;
}

/* Brand: the horizontal lockup, sized by height so the header controls it.
   Type inside the SVG is outlined, so it needs no webfont and cannot reflow. */
.brand { display: flex; align-items: center; text-decoration: none; min-width: 0; }
.brand__logo {
  display: block;
  height: 2.5rem;
  width: auto;
}
@media (min-width: 480px) { .brand__logo { height: 2.75rem; } }
@media (min-width: 900px) { .brand__logo { height: 3rem; } }

.site-nav { display: none; }
.header-call {
  display: none;
  margin-left: auto;
  text-decoration: none;
  font-weight: 700;
  color: var(--forest);
  white-space: nowrap;
}
.header-call strong { color: var(--copper-text); }
.header-quote { display: none; }

.nav-toggle {
  margin-left: auto;
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem;
  background: none; border: 1px solid var(--line); border-radius: var(--radius);
  cursor: pointer;
}
.nav-toggle svg { width: 1.25rem; height: 1.25rem; stroke: var(--ink); }
.nav-toggle .icon-close, .nav-open .nav-toggle .icon-open { display: none; }
.nav-open .nav-toggle .icon-close { display: block; }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--warm-white);
}
.nav-open .mobile-nav { display: block; }
.mobile-nav a {
  display: block;
  padding: var(--s-4) clamp(1.25rem, 4vw, 2.5rem);
  text-decoration: none; font-weight: 600;
  border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { border-bottom: 0; }

@media (min-width: 1120px) {
  .nav-toggle, .mobile-nav { display: none !important; }
  .site-nav { display: flex; gap: var(--s-5); }
  .site-nav a {
    text-decoration: none; font-weight: 600; font-size: var(--text-sm);
    color: var(--ink-soft);
    transition: color 150ms ease-out;
  }
  .site-nav a:hover { color: var(--ink); }
  .header-call { display: inline-block; }
  .header-quote { display: inline-flex; margin-left: var(--s-4); }
}

/* ---------- Hero ---------- */
.hero { background: var(--forest); color: var(--paper); }
.hero__grid { display: grid; }
.hero__copy {
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--s-7) clamp(1.25rem, 4vw, 2.5rem) var(--s-7);
  min-width: 0;
}
.hero .eyebrow { color: var(--copper-on-dark); }
.hero__title {
  font-size: var(--text-2xl);
  max-width: 15ch;
  margin-bottom: var(--s-4);
  overflow-wrap: anywhere;
  text-wrap: balance;
}
.hero__title .serif-accent { color: var(--stone); }
.hero__lede {
  font-size: var(--text-md);
  line-height: 1.55;
  color: var(--stone);
  max-width: 46ch;
  margin-bottom: var(--s-6);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); margin-bottom: var(--s-5); }
.hero__availability {
  font-size: var(--text-sm);
  color: var(--stone);
  border-left: 2px solid var(--copper);
  padding-left: var(--s-3);
  max-width: 40ch;
}
@media (max-width: 479px) {
  .site-header__inner { gap: var(--s-3); }
  .brand__logo { max-width: min(13rem, calc(100vw - 6.5rem)); }
  .hero__actions .btn { flex: 1 1 9rem; padding-inline: 1rem; }
  .photo-pair__head { align-items: flex-start; flex-direction: column; gap: var(--s-1); }
}

/* ---------- Trust strip ---------- */
.trust {
  background: var(--warm-white);
  border-bottom: 1px solid var(--line);
}
.trust__inner {
  display: flex; flex-wrap: wrap;
  gap: var(--s-2) var(--s-6);
  padding-block: var(--s-4);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--ink-soft);
}
.trust__item { display: inline-flex; align-items: center; gap: var(--s-2); }
.trust__item::before {
  content: "";
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}

/* ---------- Services ---------- */
.services__featured {
  display: grid; gap: var(--s-5);
  margin-bottom: var(--s-6);
}
.service-feature {
  background: var(--warm-white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--copper);
  border-radius: var(--radius);
  padding: var(--s-6);
  display: flex; flex-direction: column; gap: var(--s-3);
}
.service-feature h3 { font-size: var(--text-lg); }
.service-feature p { color: var(--ink-soft); max-width: 52ch; }
.service-feature__link {
  margin-top: auto;
  font-weight: 700; font-size: var(--text-sm);
  color: var(--copper-text);
  text-decoration: none;
  display: inline-flex; align-items: center; gap: var(--s-2);
}
.service-feature__link:hover { text-decoration: underline; }

.services__rest {
  display: grid; gap: 0;
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid; gap: var(--s-1);
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--line);
}
.service-row h3 { font-size: var(--text-md); }
.service-row p { color: var(--ink-soft); font-size: var(--text-sm); max-width: 60ch; }

@media (min-width: 760px) {
  .services__featured { grid-template-columns: 1fr 1fr; }
  .service-row { grid-template-columns: 16rem 1fr; gap: var(--s-6); align-items: baseline; }
}

/* ---------- Emergency band ---------- */
.emergency__inner {
  display: grid; gap: var(--s-5);
  align-items: center;
}
.emergency h2 { font-size: var(--text-xl); max-width: 16ch; }
.emergency p { color: var(--stone); max-width: 52ch; }
.emergency__cta { display: flex; flex-direction: column; gap: var(--s-3); align-items: flex-start; }
.emergency__phone {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--paper);
  text-decoration: none;
}
.emergency__phone:hover { color: var(--copper-on-dark); }
.safety-note {
  font-size: var(--text-xs);
  color: var(--stone);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: var(--s-3) var(--s-4);
  max-width: 46ch;
}
@media (min-width: 900px) {
  .emergency__inner { grid-template-columns: 1.4fr 1fr; }
}

/* ---------- Why ---------- */
.why__grid { display: grid; gap: var(--s-7); }
.why__copy p { color: var(--ink-soft); max-width: 56ch; font-size: var(--text-md); line-height: 1.55; }
.why__points { list-style: none; padding: 0; display: grid; gap: 0; border-top: 1px solid var(--line); }
.why__points li {
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  display: flex; gap: var(--s-3); align-items: baseline;
}
.why__points li::before {
  content: "";
  width: 1.1rem; height: 2px;
  background: var(--copper);
  flex-shrink: 0;
  transform: translateY(-0.3em);
}
@media (min-width: 900px) {
  .why__grid { grid-template-columns: 1.2fr 1fr; align-items: start; }
}

/* ---------- Work mosaic ---------- */
.work__grid {
  display: grid; gap: var(--s-3);
  grid-template-columns: repeat(2, 1fr);
}
.work__item { position: relative; overflow: hidden; border-radius: var(--radius); }
.work__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.work__item figcaption {
  position: absolute; inset-inline: 0; bottom: 0;
  padding: var(--s-5) var(--s-4) var(--s-3);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #F7F4EC;
  background: linear-gradient(to top, rgba(10, 36, 27, 0.78), transparent);
}
@media (min-width: 760px) {
  .work__grid { grid-template-columns: repeat(3, 1fr); }
  .work__item--tall { grid-row: span 2; }
  .work__item--tall img { aspect-ratio: 3 / 4.6; }
}

/* ---------- Service area ---------- */
.area__towns {
  display: flex; flex-wrap: wrap;
  gap: var(--s-2) 0;
  max-width: 54rem;
  font-size: var(--text-md);
  font-weight: 600;
  margin-bottom: var(--s-6);
}
.area__towns li { list-style: none; display: inline-flex; align-items: center; }
.area__towns li:not(:last-child)::after {
  content: "·";
  color: var(--copper);
  padding-inline: var(--s-3);
  font-weight: 700;
}
.area__closing { color: var(--ink-soft); }
.area__closing a { font-weight: 700; color: var(--copper-text); text-decoration: none; }
.area__closing a:hover { text-decoration: underline; }

/* ---------- Quote form ---------- */
.quote { scroll-margin-top: 5rem; }
.quote__grid { display: grid; gap: var(--s-7); }
.quote__aside p { color: var(--stone); max-width: 40ch; }
.quote__aside .quote__urgent {
  margin-top: var(--s-5);
  font-size: var(--text-sm);
  border-left: 2px solid var(--copper);
  padding-left: var(--s-3);
}
.quote__aside a { color: var(--paper); font-weight: 700; }

.form {
  background: var(--warm-white);
  color: var(--ink);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2.5rem);
  display: grid; gap: var(--s-5);
}
.form__row { display: grid; gap: var(--s-5); }
@media (min-width: 700px) {
  .form__row--split { grid-template-columns: 1fr 1fr; }
  .quote__grid { grid-template-columns: 1fr 1.6fr; align-items: start; }
}

.field { display: grid; gap: var(--s-2); }
.field__label { font-weight: 600; font-size: var(--text-sm); }
.field__label .req { color: var(--copper-text); }
.field__hint { font-size: var(--text-xs); color: var(--ink-soft); }
.field input[type="text"], .field input[type="tel"], .field input[type="email"],
.field textarea, .field select {
  font: inherit;
  min-height: 3rem;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid rgba(23, 32, 28, 0.28);
  border-radius: var(--radius);
  background: #FFF;
  color: var(--ink);
  width: 100%;
  transition: border-color 150ms ease-out;
}
.field textarea { min-height: 8.5rem; resize: vertical; }
.field input:hover, .field textarea:hover, .field select:hover { border-color: rgba(23, 32, 28, 0.45); }
.field input:focus, .field textarea:focus, .field select:focus {
  border-color: var(--forest); outline: 2px solid var(--forest); outline-offset: 0;
}
.field.is-invalid input, .field.is-invalid textarea { border-color: var(--error); }
.field__error {
  display: none;
  font-size: var(--text-xs); font-weight: 600;
  color: var(--error);
}
.field.is-invalid .field__error { display: block; }

/* Photo pair: upload + its description read as one unit */
.photo-pair {
  border: 1px dashed rgba(23, 32, 28, 0.3);
  border-radius: var(--radius);
  padding: var(--s-4);
  display: grid; gap: var(--s-4);
  background: var(--paper);
}
.photo-pair__head { display: flex; justify-content: space-between; align-items: baseline; gap: var(--s-3); }
.photo-pair__title { font-weight: 700; font-size: var(--text-sm); }
.photo-pair__optional { font-size: var(--text-xs); color: var(--ink-soft); }

.upload { position: relative; }
.upload input[type="file"] {
  position: absolute; inset: 0; width: 100%; height: 100%;
  opacity: 0; cursor: pointer;
}
.upload__facade {
  display: flex; align-items: center; gap: var(--s-3);
  min-height: 3rem;
  padding: var(--s-3) var(--s-4);
  border: 1.5px solid rgba(23, 32, 28, 0.28);
  border-radius: var(--radius);
  background: #FFF;
  font-size: var(--text-sm);
  color: var(--ink-soft);
}
.upload:hover .upload__facade { border-color: var(--forest); }
.upload input:focus-visible ~ .upload__facade { outline: 3px solid var(--copper); outline-offset: 2px; }
.upload__facade svg { width: 1.2rem; height: 1.2rem; stroke: var(--copper-text); flex-shrink: 0; }

.upload__selected {
  display: none;
  align-items: center; justify-content: space-between; gap: var(--s-3);
  min-height: 3rem;
  padding: var(--s-2) var(--s-2) var(--s-2) var(--s-4);
  border: 1.5px solid var(--forest);
  border-radius: var(--radius);
  background: #FFF;
  font-size: var(--text-sm); font-weight: 600;
}
.upload__filename { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.upload__remove {
  font: 600 var(--text-xs)/1 var(--font-body);
  min-height: 2.25rem;
  padding: 0 var(--s-3);
  background: none;
  border: 1px solid rgba(23, 32, 28, 0.28);
  border-radius: var(--radius);
  cursor: pointer;
  color: var(--ink-soft);
  flex-shrink: 0;
}
.upload__remove:hover { border-color: var(--error); color: var(--error); }
.upload.has-file .upload__facade { display: none; }
.upload.has-file .upload__selected { display: flex; }

.consent { display: flex; gap: var(--s-3); align-items: flex-start; }
.consent input {
  width: 1.25rem; height: 1.25rem;
  margin-top: 0.15rem;
  accent-color: var(--forest);
  flex-shrink: 0;
}
.consent label { font-size: var(--text-sm); color: var(--ink-soft); }
.consent label a { color: var(--copper-text); font-weight: 600; }

.form__footer { display: grid; gap: var(--s-4); }
.form__urgent-note { font-size: var(--text-xs); color: var(--ink-soft); max-width: 46ch; }

/* Form status states */
.form__status {
  display: none;
  padding: var(--s-4);
  border-radius: var(--radius);
  font-weight: 600; font-size: var(--text-sm);
}
.form__status--error { background: #F7E5E3; color: var(--error); border: 1px solid var(--error); }
.form__status--success { background: #E4EEE8; color: var(--success); border: 1px solid var(--success); }
.form.is-error .form__status--error,
.form.is-success .form__status--success { display: block; }
.btn .btn__spinner { display: none; }
.form.is-sending .btn__spinner {
  display: inline-block;
  width: 1rem; height: 1rem;
  border: 2px solid rgba(255, 248, 242, 0.4);
  border-top-color: #FFF8F2;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--forest-deep);
  color: var(--stone);
  font-size: var(--text-sm);
}
.site-footer__grid {
  display: grid; gap: var(--s-6);
  padding-block: var(--s-8) var(--s-6);
}
.site-footer h2 { font-size: var(--text-md); color: var(--paper); margin-bottom: var(--s-2); }
.site-footer address { font-style: normal; display: grid; gap: var(--s-1); }
.site-footer a { color: var(--paper); text-decoration: none; font-weight: 600; }
.site-footer a:hover { text-decoration: underline; }
.site-footer__meta { display: grid; gap: var(--s-1); }
.site-footer__nav { display: grid; gap: var(--s-2); align-content: start; }
.site-footer__legal {
  border-top: 1px solid var(--line-dark);
  padding-block: var(--s-5) calc(var(--s-5) + var(--callbar-h));
  font-size: var(--text-xs);
  display: grid; gap: var(--s-1);
}
@media (min-width: 900px) {
  .site-footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .site-footer__legal { padding-bottom: var(--s-5); }
}

/* ---------- Sticky mobile call bar ---------- */
.callbar {
  position: fixed; inset-inline: 0; bottom: 0;
  z-index: var(--z-callbar);
  display: flex; align-items: center; justify-content: center; gap: var(--s-2);
  min-height: var(--callbar-h);
  padding-bottom: env(safe-area-inset-bottom);
  background: var(--copper);
  color: #FFF8F2;
  font-weight: 700; font-size: var(--text-base);
  text-decoration: none;
  box-shadow: 0 -2px 12px rgba(10, 36, 27, 0.25);
}
.callbar svg { width: 1.2rem; height: 1.2rem; }
body { padding-bottom: calc(var(--callbar-h) + env(safe-area-inset-bottom)); }
@media (min-width: 900px) {
  .callbar { display: none; }
  body { padding-bottom: 0; }
}

/* ---------- Interior pages ---------- */
.page-hero { background: var(--forest); color: var(--paper); padding-block: var(--s-8); }
.page-hero h1 { font-size: var(--text-xl); max-width: 22ch; margin-bottom: var(--s-4); }
.page-hero p { color: var(--stone); font-size: var(--text-md); max-width: 52ch; }
.page-hero .eyebrow { color: var(--copper-on-dark); }
.page-hero__actions { margin-top: var(--s-6); }

.prose { max-width: 44rem; display: grid; gap: var(--s-4); }
.prose h2 { font-size: var(--text-lg); margin-top: var(--s-5); }
.prose p, .prose li { color: var(--ink-soft); }
.prose ul { padding-left: 1.25rem; display: grid; gap: var(--s-2); }
.prose strong { color: var(--ink); }

.page-cta {
  margin-top: var(--s-7);
  padding: var(--s-6);
  background: var(--paper);
  border-left: 3px solid var(--copper);
  border-radius: var(--radius);
  display: grid; gap: var(--s-4);
  max-width: 44rem;
}
.page-cta p { font-weight: 600; }
.page-cta__actions { display: flex; flex-wrap: wrap; gap: var(--s-3); }

/* ==========================================================================
   Homepage conversion redesign
   Owner-led hero, two-path entry, selected work and progressive enquiry form.
   ========================================================================== */

[hidden] { display: none !important; }

/* Hero: the right-hand panel is deliberately image-free until Kyle's portrait
   is supplied. Replace .hero__portrait-blur with a real <img> when ready. */
.hero__grid {
  width: 100%;
  max-width: 90rem;
  margin-inline: auto;
}
.hero__copy {
  padding-block: clamp(3.25rem, 7vw, 6.5rem);
}
.hero__title {
  max-width: 13ch;
  font-size: clamp(2.65rem, 7.8vw, 4.8rem);
  overflow-wrap: normal;
  word-break: normal;
}
.hero__lede {
  max-width: 39ch;
}
.hero__portrait {
  position: relative;
  min-width: 0;
  min-height: 25rem;
  margin: 0 clamp(1.25rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 2.5rem);
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(245, 242, 234, 0.18);
  background: #193d31;
}
.hero__portrait::before {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(245, 242, 234, 0.12);
  z-index: 2;
}
.hero__portrait-blur {
  position: absolute;
  inset: -4rem;
  overflow: hidden;
  filter: blur(26px);
  opacity: 0.88;
  background:
    radial-gradient(circle at 73% 17%, rgba(217, 139, 95, 0.38), transparent 22%),
    radial-gradient(circle at 35% 72%, rgba(216, 206, 194, 0.22), transparent 29%),
    linear-gradient(145deg, #0a241b 0 30%, #285444 58%, #102f24 100%);
}
.hero__portrait-blur span {
  position: absolute;
  border-radius: 50%;
  background: rgba(245, 242, 234, 0.1);
}
.hero__portrait-blur span:nth-child(1) { width: 15rem; height: 15rem; top: 8%; right: 5%; }
.hero__portrait-blur span:nth-child(2) { width: 20rem; height: 8rem; bottom: 15%; left: 2%; transform: rotate(-18deg); }
.hero__portrait-blur span:nth-child(3) { width: 7rem; height: 22rem; top: 28%; left: 38%; transform: rotate(12deg); }
.hero__portrait-label {
  position: absolute;
  inset-inline: clamp(1.5rem, 4vw, 2.5rem);
  bottom: clamp(1.5rem, 4vw, 2.5rem);
  z-index: 3;
  display: grid;
  color: var(--paper);
}
.hero__portrait-label > span {
  margin-bottom: var(--s-3);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper-on-dark);
}
.hero__portrait-label strong {
  font: italic 500 clamp(3rem, 8vw, 5.5rem)/0.9 var(--font-serif);
}
.hero__portrait-label small {
  margin-top: var(--s-3);
  color: var(--stone);
  font-size: var(--text-sm);
}

@media (min-width: 1280px) {
  .hero__grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(26rem, 0.92fr);
    min-height: 41rem;
    align-items: stretch;
  }
  .hero__copy {
    padding: clamp(4.5rem, 7vw, 7rem) clamp(3rem, 4vw, 4rem);
  }
  .hero__portrait {
    min-height: 0;
    margin: clamp(2rem, 4vw, 3.5rem) clamp(2rem, 4vw, 3.5rem) clamp(2rem, 4vw, 3.5rem) 0;
  }
}

@media (max-width: 479px) {
  .hero__title { font-size: clamp(2.35rem, 11vw, 3rem); }
  .hero__copy { padding-block: var(--s-7); }
  .hero__portrait { min-height: 20rem; }
}

/* Credential strip */
.trust__inner {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-3) var(--s-5);
}
@media (min-width: 760px) {
  .trust__inner {
    grid-template-columns: repeat(4, auto);
    justify-content: space-between;
  }
}

/* Urgent or planned entry */
.job-paths { background: var(--warm-white); }
.job-paths__grid {
  display: grid;
  gap: var(--s-4);
}
.job-path {
  position: relative;
  overflow: hidden;
  display: grid;
  align-content: start;
  gap: var(--s-5);
  min-height: 20rem;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.job-path h3 { max-width: 18ch; font-size: var(--text-lg); }
.job-path p { max-width: 39ch; color: var(--ink-soft); }
.job-path .btn { justify-self: start; margin-top: auto; }
.job-path__number {
  position: absolute;
  top: 0;
  right: var(--s-4);
  font: italic 500 clamp(5rem, 14vw, 9rem)/0.8 var(--font-serif);
  color: rgba(23, 32, 28, 0.06);
  pointer-events: none;
}
.job-path--urgent {
  background: var(--forest-deep);
  color: var(--paper);
  border-color: transparent;
}
.job-path--urgent p { color: var(--stone); }
.job-path--urgent .job-path__number { color: rgba(245, 242, 234, 0.07); }
.job-path .safety-note {
  margin-top: 0;
  padding: 0 0 0 var(--s-3);
  border: 0;
  border-left: 1px solid rgba(245, 242, 234, 0.3);
  border-radius: 0;
  font-size: var(--text-xs);
}
.job-path--planned { background: var(--paper); }
@media (min-width: 760px) {
  .job-paths__grid { grid-template-columns: 1.08fr 0.92fr; }
}

/* Services */
.service-feature__label {
  color: var(--copper-text);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Selected work */
.section-title-row {
  display: grid;
  gap: var(--s-4);
  margin-bottom: var(--s-7);
}
.section-title-row .section-heading { margin-bottom: 0; }
.section-title-row > p {
  max-width: 41ch;
  color: var(--ink-soft);
}
.work__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s-4);
}
.work__item {
  min-height: 16rem;
  background: var(--forest-deep);
}
.work__item--feature { min-height: 20rem; }
.work__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform 450ms ease-out;
}
.work__item:hover img { transform: scale(1.015); }
.work__item--feature img { object-position: center; }
.work__item:nth-child(2) img { object-position: 50% 54%; }
.work__item:nth-child(3) img { object-position: 50% 36%; }
.work__item figcaption {
  display: grid;
  gap: var(--s-1);
  padding: 5rem var(--s-5) var(--s-5);
  letter-spacing: 0;
}
.work__item figcaption strong {
  font-size: var(--text-base);
}
.work__item figcaption span {
  max-width: 34ch;
  color: var(--stone);
  font-size: var(--text-xs);
  font-weight: 500;
}
@media (min-width: 760px) {
  .section-title-row {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: end;
  }
  .work__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: 26rem 18rem;
  }
  .work__item { min-height: 0; }
  .work__item--feature {
    grid-column: 1 / -1;
    min-height: 0;
  }
}

/* Owner */
.owner__grid {
  display: grid;
  gap: var(--s-7);
}
.owner .section-heading { max-width: 19ch; margin-bottom: 0; }
.owner__copy {
  display: grid;
  align-content: start;
  gap: var(--s-6);
}
.owner__copy p {
  max-width: 49ch;
  color: var(--stone);
  font-size: var(--text-md);
}
.owner__call {
  display: flex;
  justify-content: space-between;
  gap: var(--s-4);
  padding: var(--s-4) 0;
  border-block: 1px solid var(--line-dark);
  color: var(--paper);
  font-weight: 700;
  text-decoration: none;
}
.owner__call span { color: var(--copper-on-dark); }
@media (min-width: 900px) {
  .owner__grid { grid-template-columns: 1fr 1fr; align-items: end; }
}

/* Google reviews: styled and structurally ready, but hidden until verified data exists. */
.reviews__grid {
  display: grid;
  gap: var(--s-7);
}
.reviews__summary { display: flex; gap: var(--s-3); align-items: baseline; }
.review-card {
  padding: var(--s-6);
  border: 1px solid var(--line);
  border-top: 3px solid var(--copper);
  background: var(--paper);
}
@media (min-width: 760px) {
  .reviews__grid { grid-template-columns: 0.8fr 1.2fr; }
}

/* Three-step process */
.process__steps {
  display: grid;
  gap: 0;
  margin-top: var(--s-7);
  padding: 0;
  border-top: 1px solid var(--line);
}
.process__steps li {
  list-style: none;
  display: grid;
  align-content: start;
  gap: var(--s-3);
  padding: var(--s-6) 0;
  border-bottom: 1px solid var(--line);
}
.process__steps li > span {
  color: var(--copper-text);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
}
.process__steps h3 { font-size: var(--text-md); }
.process__steps p { max-width: 32ch; color: var(--ink-soft); font-size: var(--text-sm); }
@media (min-width: 760px) {
  .process__steps { grid-template-columns: repeat(3, 1fr); }
  .process__steps li {
    min-height: 16rem;
    padding: var(--s-6);
    border-right: 1px solid var(--line);
  }
  .process__steps li:first-child { padding-left: 0; }
  .process__steps li:last-child { border-right: 0; padding-right: 0; }
}

/* Service area */
.area__grid {
  display: grid;
  gap: var(--s-6);
}
.area__grid .section-intro { margin-bottom: var(--s-5); }
@media (min-width: 900px) {
  .area__grid { grid-template-columns: 0.9fr 1.1fr; gap: var(--s-8); }
}

/* Quote and progressive photo fields */
.quote__aside .section-heading { max-width: 15ch; }
.photo-description {
  display: grid;
  gap: var(--s-2);
  padding-top: var(--s-2);
  border-top: 1px solid var(--line);
}
.photo-description input {
  font: inherit;
  min-height: 3rem;
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid rgba(23, 32, 28, 0.28);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}
.photo-description input:focus {
  border-color: var(--forest);
  outline: 2px solid var(--forest);
  outline-offset: 0;
}
.photo-field--progressive {
  animation: reveal-field 220ms ease-out both;
}
@keyframes reveal-field {
  from { opacity: 0; transform: translateY(-0.5rem); }
  to { opacity: 1; transform: translateY(0); }
}
.field textarea { min-height: 7rem; }
.form__footer .btn { justify-self: start; }

@media (min-width: 900px) {
  .quote__grid { grid-template-columns: 0.78fr 1.22fr; gap: clamp(3rem, 7vw, 6rem); }
  .quote__aside { position: sticky; top: 7rem; }
}

@media (max-width: 479px) {
  .job-path { min-height: 18rem; }
  .work__item { min-height: 15rem; }
  .work__item--feature { min-height: 19rem; }
  .owner__call { flex-direction: column; gap: var(--s-1); }
}
