/* ==========================================================================
   Newark Ohio Wallpaper Hanger — styles.css
   Editorial interior-design system: warm ivory, stone, taupe, charcoal.
   Type: Andada Pro (display serif) + Red Hat Text (UI/body sans), self-hosted.
   ========================================================================== */

/* ---------- Fonts ---------- */
@font-face {
  font-family: "Andada Pro";
  src: url("../fonts/andada-pro.woff2") format("woff2");
  font-weight: 400 840;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Andada Pro";
  src: url("../fonts/andada-pro-italic.woff2") format("woff2");
  font-weight: 400 840;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Red Hat Text";
  src: url("../fonts/red-hat-text.woff2") format("woff2");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Red Hat Text";
  src: url("../fonts/red-hat-text-italic.woff2") format("woff2");
  font-weight: 300 700;
  font-style: italic;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --ivory: #F8F4EC;
  --porcelain: #FDFBF7;
  --stone: #EFE9DF;
  --taupe-tint: #E5DCCF;
  --charcoal: #26241F;
  --onyx: #1A1916;

  --ink: #1E1C18;
  --body: #3E3A33;
  --muted: #5E584E;
  --taupe-text: #6B5F4F;
  --on-dark: #F3EEE5;
  --on-dark-muted: #B8B0A3;

  --accent: #6E5236;
  --accent-hover: #573F28;
  --accent-dark: #D9BE98;      /* accent text on dark bands */
  --taupe: #A89A86;            /* decorative fills / rules only — never text */

  --rule: #DDD5C8;
  --rule-dark: #3B3730;
  --line: #7E7565;             /* functional control border (>=3:1) */
  --error: #A32B22;

  --serif: "Andada Pro", Georgia, "Times New Roman", serif;
  --sans: "Red Hat Text", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 48px);
  --section: clamp(72px, 10vw, 136px);
  --header-h: 76px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--body);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, picture { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3, h4 { font-family: var(--serif); color: var(--ink); font-weight: 500; line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.005em; }
h1 { font-size: clamp(2.35rem, 4.6vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 1.8vw, 1.5rem); }
p { margin: 0 0 1.1em; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: .18em; }
a:hover { color: var(--accent-hover); }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.section { padding-block: var(--section); }
.section--stone { background: var(--stone); }
.section--dark { background: var(--charcoal); color: var(--on-dark); }
.section--dark h2, .section--dark h3 { color: var(--on-dark); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--sans); font-size: .78rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: var(--taupe-text); margin: 0 0 1.1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; opacity: .7; }
.section--dark .eyebrow { color: var(--accent-dark); }
.lede { font-size: clamp(1.1rem, 1.4vw, 1.25rem); color: var(--muted); max-width: 60ch; }
.section--dark .lede { color: var(--on-dark-muted); }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 28px;
  font-family: var(--sans); font-weight: 600; font-size: .95rem; letter-spacing: .02em;
  text-decoration: none; border: 1px solid transparent; border-radius: 2px; cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn--primary { background: var(--accent); color: var(--porcelain); border-color: var(--accent); }
.btn--primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: var(--porcelain); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--ivory); }
.btn--light { background: var(--porcelain); color: var(--ink); border-color: var(--porcelain); }
.btn--light:hover { background: var(--taupe-tint); border-color: var(--taupe-tint); color: var(--ink); }
.btn--ghost-dark { background: transparent; color: var(--on-dark); border-color: var(--on-dark-muted); }
.btn--ghost-dark:hover { background: var(--on-dark); color: var(--charcoal); border-color: var(--on-dark); }
.btn svg { width: 16px; height: 16px; flex: none; }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(248, 244, 236, .92);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background-color .3s var(--ease);
}
.header.is-scrolled { border-bottom-color: var(--rule); background: rgba(248, 244, 236, .97); }
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: var(--header-h); }
.wordmark { display: flex; flex-direction: column; text-decoration: none; color: var(--ink); line-height: 1.05; }
.wordmark__name { font-family: var(--serif); font-size: 1.28rem; font-weight: 600; letter-spacing: -.01em; }
.wordmark__sub { font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--taupe-text); margin-top: 4px; }
.nav { display: flex; align-items: center; gap: 36px; }
.nav__list { display: flex; gap: 30px; }
.nav__list a { color: var(--body); text-decoration: none; font-weight: 500; font-size: .95rem; padding: 6px 0; position: relative; }
.nav__list a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
.nav__list a:hover::after, .nav__list a.is-active::after { transform: scaleX(1); }
.nav__list a:hover, .nav__list a.is-active { color: var(--ink); }
.header__phone { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-weight: 600; font-size: .98rem; padding: 10px 18px; border: 1px solid var(--ink); border-radius: 2px; transition: background-color .25s var(--ease), color .25s var(--ease); white-space: nowrap; }
.header__phone:hover { background: var(--ink); color: var(--ivory); }
.header__phone svg { width: 15px; height: 15px; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--rule); background: var(--porcelain); border-radius: 2px; cursor: pointer; padding: 0; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; background: var(--stone); }
.hero__media { position: relative; height: min(88vh, 860px); min-height: 560px; overflow: hidden; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; }
.hero__panel {
  position: relative; z-index: 2;
  width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto;
  margin-top: clamp(-220px, -18vw, -120px);
}
.hero__card {
  background: var(--ivory); padding: clamp(32px, 4.5vw, 64px);
  max-width: 720px; border-top: 3px solid var(--accent);
  box-shadow: 0 30px 60px -40px rgba(30, 28, 24, .35);
}
.hero__brand { font-family: var(--serif); font-size: .95rem; letter-spacing: .06em; color: var(--taupe-text); margin-bottom: 18px; display: flex; align-items: center; gap: 12px; }
.hero__brand::before { content: ""; width: 34px; height: 1px; background: var(--taupe); }
.hero h1 { margin-bottom: .6em; }
.hero h1 em { font-style: italic; font-weight: 400; color: var(--accent); }
.hero__text { font-size: 1.125rem; color: var(--muted); max-width: 54ch; margin-bottom: 1.8em; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 8px 28px; padding-top: 22px; border-top: 1px solid var(--rule); font-size: .85rem; color: var(--taupe-text); font-weight: 500; }
.hero__meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero__meta svg { width: 14px; height: 14px; }
.hero__spacer { height: clamp(48px, 6vw, 96px); }

/* ---------- Pillars strip ---------- */
.pillars { border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); background: var(--porcelain); }
.pillars__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pillar { padding: clamp(28px, 3vw, 40px) clamp(20px, 3vw, 40px); border-left: 1px solid var(--rule); }
.pillar:first-child { border-left: 0; padding-left: 0; }
.pillar__num { font-family: var(--serif); font-size: .9rem; color: var(--taupe-text); letter-spacing: .1em; margin-bottom: 10px; }
.pillar h3 { font-size: 1.2rem; margin-bottom: .35em; }
.pillar p { color: var(--muted); font-size: .98rem; margin: 0; }

/* ---------- About ---------- */
.about__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.about__figure { position: relative; margin: 0; isolation: isolate; }
.about__figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.about__figure::after { content: ""; position: absolute; inset: 22px -22px -22px 22px; border: 1px solid var(--taupe); z-index: -1; }
.about__figcaption { position: absolute; left: 0; bottom: 0; background: var(--ivory); padding: 12px 18px; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--taupe-text); font-weight: 600; }
.about__owner { display: flex; align-items: center; gap: 18px; margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--rule); }
.about__owner-mark { flex: none; width: 56px; height: 56px; display: grid; place-items: center; border: 1px solid var(--taupe); border-radius: 50%; font-family: var(--serif); font-size: 1.25rem; color: var(--accent); }
.about__owner strong { display: block; font-family: var(--serif); font-size: 1.15rem; color: var(--ink); font-weight: 500; }
.about__owner span { font-size: .9rem; color: var(--muted); }
.about__points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px 28px; margin-top: 26px; }
.about__points li { position: relative; padding-left: 22px; font-size: .98rem; color: var(--body); }
.about__points li::before { content: ""; position: absolute; left: 0; top: .72em; width: 10px; height: 1px; background: var(--accent); }

/* ---------- Services ---------- */
.services__layout { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.service-list { border-top: 1px solid var(--rule); }
.service { display: grid; grid-template-columns: 64px minmax(0, 1fr); gap: 20px; padding: clamp(26px, 3vw, 36px) 0; border-bottom: 1px solid var(--rule); }
.service__num { font-family: var(--serif); font-size: 1.05rem; color: var(--taupe-text); padding-top: 6px; letter-spacing: .06em; }
.service h3 { margin-bottom: .4em; }
.service p { margin: 0; color: var(--muted); max-width: 58ch; }
.services__aside { position: sticky; top: calc(var(--header-h) + 32px); }
.services__aside img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.services__note { background: var(--porcelain); border: 1px solid var(--rule); border-top: 0; padding: 26px 28px; }
.services__note p { margin: 0 0 16px; color: var(--muted); font-size: .98rem; }
.services__note p:last-child { margin: 0; }

/* ---------- Why ---------- */
.why__grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(40px, 6vw, 96px); align-items: center; }
.why__media { position: relative; }
.why__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.why__media::before { content: ""; position: absolute; top: -18px; left: -18px; width: 40%; height: 40%; border-top: 1px solid var(--accent-dark); border-left: 1px solid var(--accent-dark); }
.why__list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 32px; border-top: 1px solid var(--rule-dark); margin-top: 8px; }
.why__list li { padding: 18px 0; border-bottom: 1px solid var(--rule-dark); }
.why__list h3 { font-size: 1.08rem; margin-bottom: .3em; font-family: var(--sans); font-weight: 600; }
.why__list p { margin: 0; color: var(--on-dark-muted); font-size: .94rem; }
.why__cta { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Process ---------- */
.process__layout { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.process__intro img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; margin-top: 32px; }
.steps { counter-reset: step; position: relative; padding-left: 0; }
.step { position: relative; display: grid; grid-template-columns: 72px minmax(0, 1fr); gap: 20px; padding: 0 0 clamp(30px, 3vw, 44px) 0; }
.step::before { content: ""; position: absolute; left: 27px; top: 58px; bottom: 0; width: 1px; background: var(--rule); }
.step:last-child::before { display: none; }
.step__num { width: 56px; height: 56px; border-radius: 50%; border: 1px solid var(--taupe); display: grid; place-items: center; font-family: var(--serif); font-size: 1.15rem; color: var(--accent); background: var(--stone); }
.step__body { padding-top: 12px; }
.step h3 { margin-bottom: .35em; }
.step p { margin: 0; color: var(--muted); max-width: 56ch; }

/* ---------- Local / Service area ---------- */
.local__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 80px); align-items: stretch; }
.local__figure { margin: 0; }
.local__figure img { width: 100%; height: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.local__panel { display: flex; flex-direction: column; }
.local__address { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px 40px; padding: 28px 0; border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); margin: 8px 0 28px; }
.local__address dt { font-size: .76rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--taupe-text); margin-bottom: 6px; }
.local__address dd { margin: 0; font-family: var(--serif); font-size: 1.15rem; color: var(--ink); overflow-wrap: anywhere; }
.local__address dd a { color: var(--ink); text-decoration: none; }
.local__address dd a:hover { color: var(--accent); }
.local__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 28px; }
.map { position: relative; flex: 1; min-height: 300px; border: 1px solid var(--rule); background: var(--taupe-tint); overflow: hidden; }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: saturate(.6) contrast(.95); }
.map__fallback { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding: 24px; color: var(--taupe-text); font-size: .9rem; }

/* ---------- Contact ---------- */
.contact { background: var(--charcoal); color: var(--on-dark); }
.contact__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(40px, 6vw, 96px); align-items: start; }
.contact__info h2 { color: var(--on-dark); }
.contact__list { margin-top: 32px; border-top: 1px solid var(--rule-dark); }
.contact__list li { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--rule-dark); font-size: .98rem; }
.contact__list dt, .contact__list .label { font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--on-dark-muted); padding-top: 4px; }
.contact__list a { color: var(--on-dark); text-decoration: none; font-family: var(--serif); font-size: 1.12rem; overflow-wrap: anywhere; }
.contact__list a:hover { color: var(--accent-dark); }
.contact__list address { font-style: normal; font-family: var(--serif); font-size: 1.12rem; }
.contact__figure { margin: 32px 0 0; }
.contact__figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; max-height: 420px; object-position: 50% 30%; }
.form-card { background: var(--porcelain); color: var(--body); padding: clamp(28px, 4vw, 52px); border-top: 3px solid var(--accent-dark); }
.form-card h3 { margin-bottom: .3em; }
.form-card > p { color: var(--muted); margin-bottom: 1.8em; }
.form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 22px; }
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--taupe-text); margin-bottom: 8px; }
.field label .opt { font-weight: 400; text-transform: none; letter-spacing: 0; color: var(--muted); }
.field input, .field textarea {
  width: 100%; font: inherit; color: var(--ink); background: var(--ivory);
  border: 1px solid var(--line); border-radius: 2px; padding: 13px 14px; min-height: 50px;
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); background: var(--porcelain); box-shadow: 0 0 0 3px rgba(110, 82, 54, .15); }
.field textarea { min-height: 140px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: #8A8478; }
.form__footer { grid-column: 1 / -1; display: flex; flex-wrap: wrap; align-items: center; gap: 16px 24px; margin-top: 6px; }
.form__footer small { color: var(--muted); font-size: .85rem; }
.hp { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }
#form-success { display: none; background: var(--porcelain); color: var(--body); padding: clamp(32px, 4vw, 52px); border-top: 3px solid var(--accent-dark); }
#form-success h3 { margin-bottom: .4em; }
#form-success p { margin: 0; color: var(--muted); }
.error-message { font-weight: 500; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-3px); } to { opacity: 1; transform: none; } }

/* ---------- Footer ---------- */
.footer { background: var(--onyx); color: var(--on-dark-muted); padding: clamp(56px, 7vw, 88px) 0 32px; }
.footer a { color: var(--on-dark); text-decoration: none; }
.footer a:hover { color: var(--accent-dark); }
.footer__grid { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr); gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--rule-dark); }
.footer__brand .wordmark__name { color: var(--on-dark); font-size: 1.35rem; }
.footer__brand .wordmark__sub { color: var(--accent-dark); }
.footer__brand p { margin-top: 18px; max-width: 40ch; font-size: .95rem; }
.footer h3 { font-family: var(--sans); font-size: .76rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--on-dark); margin-bottom: 18px; }
.footer__links li { margin-bottom: 10px; font-size: .95rem; }
.footer__contact li { margin-bottom: 12px; font-size: .95rem; overflow-wrap: anywhere; }
.footer__contact address { font-style: normal; color: var(--on-dark); }
.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; padding-top: 24px; font-size: .84rem; }
.footer__bottom a { color: var(--on-dark-muted); }

/* ---------- Reveal (progressive enhancement; visible by default) ---------- */
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: no-preference) {
  .js-reveal-ready .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .js-reveal-ready .reveal.is-in { opacity: 1; transform: none; }
  .js-reveal-ready .reveal--d1 { transition-delay: .1s; }
  .js-reveal-ready .reveal--d2 { transition-delay: .2s; }
}
@media print { .reveal { opacity: 1 !important; transform: none !important; } .header, .nav-toggle { position: static; } }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .nav__list { gap: 22px; }
  .about__grid, .why__grid { grid-template-columns: minmax(0, 1fr); }
  .about__figure { max-width: 520px; }
  .services__layout { grid-template-columns: minmax(0, 1fr); }
  .services__aside { position: static; }
  .process__layout { grid-template-columns: minmax(0, 1fr); }
  .process__intro img { max-width: 620px; }
  .local__grid { grid-template-columns: minmax(0, 1fr); }
  .local__figure img { aspect-ratio: 3 / 2; }
  .contact__grid { grid-template-columns: minmax(0, 1fr); }
  .contact__figure { display: none; }
}
@media (max-width: 880px) {
  :root { --header-h: 66px; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; z-index: 40;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--ivory); border-bottom: 1px solid var(--rule);
    padding: 12px var(--gutter) 24px;
    transform: translateY(-12px); opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s .25s;
  }
  .nav.is-open { transform: none; opacity: 1; visibility: visible; pointer-events: auto; transition-delay: 0s; }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__list a { display: block; padding: 14px 0; border-bottom: 1px solid var(--rule); font-size: 1.05rem; }
  .nav__list a::after { display: none; }
  .header__phone { margin-top: 18px; justify-content: center; }
  .hero__media { height: 62vh; min-height: 420px; }
  .hero__media img { object-position: 60% 50%; }
  .hero__panel { margin-top: -80px; }
  .pillars__grid { grid-template-columns: minmax(0, 1fr); }
  .pillar { border-left: 0; padding-left: 0; padding-right: 0; border-top: 1px solid var(--rule); }
  .pillar:first-child { border-top: 0; }
  .why__list { grid-template-columns: minmax(0, 1fr); }
  .form__grid { grid-template-columns: minmax(0, 1fr); }
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  body { font-size: 1rem; }
  .wordmark__sub { display: none; }
  .hero__panel { width: 100%; margin-top: -56px; }
  .hero__card { padding: 28px var(--gutter) 32px; border-top-width: 3px; }
  .hero__actions .btn { width: 100%; }
  .about__points { grid-template-columns: minmax(0, 1fr); }
  .about__figure::after { inset: 14px -14px -14px 14px; }
  .service { grid-template-columns: 44px minmax(0, 1fr); gap: 12px; }
  .step { grid-template-columns: 48px minmax(0, 1fr); gap: 14px; }
  .step__num { width: 40px; height: 40px; font-size: 1rem; }
  .step::before { left: 19px; top: 44px; }
  .local__address { grid-template-columns: minmax(0, 1fr); }
  .local__actions .btn, .why__cta .btn { width: 100%; }
  .contact__list li { grid-template-columns: minmax(0, 1fr); gap: 4px; }
  .footer__grid { grid-template-columns: minmax(0, 1fr); }
  .form__footer .btn { width: 100%; }
}

/* address elements in footer/contact are plain text, not italic */
.footer address { font-style: normal; color: var(--on-dark); }
