/* ============================================================
   GUTTER GUY — Corpus Christi, TX
   Sign-shop Americana, elevated. Palette from Manny's real yard
   sign (red / off-white / ink) + golden-hour job photos.
   ============================================================ */

:root {
  --ink: #211d19;
  --ink-2: #2b2620;
  --ink-line: #16130f;
  --paper: #f4eee1;
  --paper-card: #fbf7ec;
  --red: #c8342b;
  --red-deep: #9f241d;
  --red-bright: #e3392f;
  --plum: #6f4965;
  --t-ink: #f2ecdf;
  --t-ink-mut: #b7aa94;
  --t-paper-mut: #6b6152;
  --nav-h: 4.5rem;
  --font-display: "Alfa Slab One", "Georgia", serif;
  --font-body: "Barlow", "Helvetica Neue", sans-serif;
  --font-label: "Barlow Condensed", "Arial Narrow", sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--plum); color: var(--paper); }

img { max-width: 100%; display: block; }

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--red-bright);
  outline-offset: 3px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

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

/* ---------- texture: film grain on dark + red blocks ---------- */
.ink-block, .cta-band { position: relative; isolation: isolate; }
.ink-block::before, .cta-band::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  opacity: .055; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

.ink-block { background: var(--ink); color: var(--t-ink); }
.paper-block { background: var(--paper); color: var(--ink); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--ink) 94%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--red);
}

.nav-inner {
  max-width: 72rem; margin-inline: auto;
  height: var(--nav-h);
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}

.lockup {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--t-ink);
  text-decoration: none;
  letter-spacing: .01em;
  white-space: nowrap;
}
.lockup span { color: var(--red-bright); }

.nav-links {
  display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem);
}
.nav-links a:not(.btn) {
  font-family: var(--font-label);
  font-weight: 600; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--t-ink); text-decoration: none;
}
.nav-links a:not(.btn):hover {
  color: var(--red-bright);
  text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 3px;
}

.menu-btn {
  display: none;
  background: none; border: 3px solid var(--t-ink);
  padding: .5rem .55rem; cursor: pointer;
  flex-direction: column; gap: 5px;
}
.menu-line { width: 24px; height: 3px; background: var(--t-ink); display: block; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-label);
  font-weight: 600; font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: .07em;
  text-decoration: none; text-align: center;
  padding: .9em 1.5em;
  border: 3px solid var(--ink-line);
  box-shadow: 5px 5px 0 rgba(0, 0, 0, .35);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 rgba(0, 0, 0, .35); }
.btn:active { transform: translate(0, 0); box-shadow: 3px 3px 0 rgba(0, 0, 0, .35); }

.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-bright); }
.btn-ghost { background: transparent; color: var(--t-ink); border-color: var(--t-ink); }
.btn-ghost:hover { background: rgba(244, 238, 225, .08); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-paper { background: var(--paper); color: var(--ink); }
.btn-nav { padding: .55em 1em; box-shadow: 4px 4px 0 rgba(0, 0, 0, .45); }

/* ============================================================
   SHARED SECTION FURNITURE
   ============================================================ */
.section { padding-block: clamp(4rem, 9vw, 7rem); }

.eyebrow {
  font-family: var(--font-label);
  font-weight: 600; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .16em;
  color: var(--red);
  display: flex; align-items: center; gap: .65rem;
  margin-bottom: 1rem;
}
.ink-block .eyebrow { color: var(--red-bright); }
.rule { display: inline-block; width: 30px; height: 3px; background: currentColor; flex: none; }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: .005em;
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.section-sub { color: var(--t-ink-mut); max-width: 44ch; margin-bottom: 2.5rem; }
.paper-block .section-sub { color: var(--t-paper-mut); }

.dot { color: var(--red-bright); }

/* ============================================================
   HERO — sized to the real viewport; children scale in cqi
   ============================================================ */
.hero {
  container-type: inline-size;
  min-height: calc(100svh - var(--nav-h));
  display: flex; align-items: center;
  overflow: hidden;
  padding-block: clamp(1.5rem, 3svh, 3rem);
}

.rain {
  position: absolute; inset: -10% 0; z-index: -1; pointer-events: none;
  background:
    repeating-linear-gradient(104deg, transparent 0 52px, rgba(244, 238, 225, .05) 52px 53px),
    repeating-linear-gradient(104deg, transparent 0 137px, rgba(227, 57, 47, .07) 137px 139px);
  animation: rain-drift 16s linear infinite;
}
@keyframes rain-drift {
  from { transform: translateY(-4%); }
  to   { transform: translateY(4%); }
}

.hero-inner {
  max-width: 72rem; margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .95fr);
  gap: clamp(1.5rem, 4cqi, 4rem);
  align-items: center;
  width: 100%;
}

.hero-copy { display: flex; flex-direction: column; gap: clamp(.9rem, 2.2cqi, 1.5rem); min-width: 0; }
.hero-copy .eyebrow { margin-bottom: 0; }

/* clamp slope tracks the text column so "EVERYTHING" never clips */
.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.7cqi + 0.5rem, 4.25rem);
  line-height: .96;
  letter-spacing: .005em;
  color: var(--t-ink);
  text-shadow: 4px 4px 0 rgba(0, 0, 0, .3);
}

.hero-sub {
  font-size: clamp(1rem, 1.9cqi, 1.2rem);
  max-width: 46ch;
  color: var(--t-ink-mut);
}

.cta-row { display: flex; flex-wrap: wrap; gap: .9rem; }

.proof-line {
  font-family: var(--font-label);
  font-weight: 500;
  font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--t-ink-mut);
}
.proof-line strong { color: var(--red-bright); font-weight: 600; }

.hero-photo {
  position: relative;
  min-width: 0;
  border: 3px solid var(--ink-line);
  border-top: 10px solid var(--red);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, .4);
  background: var(--ink-2);
}
.hero-photo img { width: 100%; height: auto; }

.chip {
  position: absolute; left: .75rem; bottom: .75rem;
  background: rgba(33, 29, 25, .88);
  color: var(--t-ink);
  font-family: var(--font-label);
  font-weight: 600; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .1em;
  padding: .3rem .7rem;
  border: 2px solid var(--red);
}

/* ============================================================
   SERVICES
   ============================================================ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
  gap: 1.4rem;
  margin-block: 2.5rem;
}

.svc-card {
  background: var(--paper-card);
  border: 3px solid var(--ink-line);
  box-shadow: 6px 6px 0 var(--ink-line);
  padding: 1.6rem 1.5rem 1.5rem;
  transition: transform .15s ease, box-shadow .15s ease;
}
.svc-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--red); }

.svc-num {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--red);
  display: block;
  margin-bottom: .6rem;
}

.svc-card h3 {
  font-family: var(--font-label);
  font-weight: 600; font-size: 1.35rem;
  text-transform: uppercase; letter-spacing: .04em;
  line-height: 1.15;
  margin-bottom: .55rem;
}

.svc-card p { color: var(--t-paper-mut); font-size: 1rem; }

.price-note {
  background: var(--ink);
  color: var(--t-ink);
  border-left: 8px solid var(--red);
  padding: 1.75rem 2rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem;
  justify-content: space-between;
}
.price-note p { max-width: 58ch; }
.price-note strong { color: #fff; }

/* ============================================================
   WORK / GALLERY — masonry via columns, aspect kept, no crop
   ============================================================ */
.gallery { columns: 3; column-gap: 1.2rem; }
@media (max-width: 56.25rem) { .gallery { columns: 2; } }
@media (max-width: 35rem)    { .gallery { columns: 1; } }

.shot {
  break-inside: avoid;
  margin-bottom: 1.2rem;
  border: 3px solid var(--ink-line);
  background: var(--ink-2);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, .45);
}
.shot img { width: 100%; height: auto; }
.shot figcaption {
  font-family: var(--font-label);
  font-weight: 500; font-size: .9rem;
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--t-ink-mut);
  padding: .55rem .8rem;
  border-top: 3px solid var(--ink-line);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
  align-items: start;
}

.review {
  background: var(--paper-card);
  border: 3px solid var(--ink-line);
  box-shadow: 6px 6px 0 var(--ink-line);
  padding: 2.4rem 1.7rem 1.6rem;
  position: relative;
}
.review::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 3.2rem; line-height: 1;
  color: var(--red);
  position: absolute; top: .6rem; left: 1.2rem;
}
.review p { font-size: 1.1rem; font-weight: 500; line-height: 1.5; }
.review footer {
  margin-top: 1rem;
  font-size: .92rem; font-style: italic;
  color: var(--t-paper-mut);
}

.follow-card {
  background: var(--ink);
  color: var(--t-ink);
  border: 3px solid var(--ink-line);
  box-shadow: 6px 6px 0 var(--red);
  padding: 1.7rem;
}
.follow-lead {
  font-family: var(--font-label);
  font-weight: 600; font-size: 1.1rem;
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 1.2rem;
}
.stat-row { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; margin-bottom: 1.4rem; }
.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2rem; line-height: 1;
  color: var(--red-bright);
}
.stat-label {
  font-family: var(--font-label);
  font-weight: 500; font-size: .9rem;
  text-transform: uppercase; letter-spacing: .1em;
  color: var(--t-ink-mut);
  margin-top: .35rem;
}
.follow-links { display: flex; flex-direction: column; gap: .5rem; }
.follow-links a {
  color: var(--t-ink);
  font-weight: 600;
  text-decoration-color: var(--red-bright);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.follow-links a:hover { color: var(--red-bright); }

/* ============================================================
   ABOUT / AREA
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.sign-photo {
  position: relative;
  border: 3px solid var(--ink-line);
  box-shadow: 10px 10px 0 rgba(0, 0, 0, .4);
  transform: rotate(-2deg);
  background: var(--ink-2);
}
.sign-photo img { width: 100%; height: auto; }

.about-copy p { color: var(--t-ink-mut); max-width: 52ch; }
.about-copy p em { color: var(--t-ink); font-style: italic; }

.area-chips {
  list-style: none;
  display: flex; flex-wrap: wrap; gap: .7rem;
  margin-top: 1.6rem;
}
.area-chips li {
  font-family: var(--font-label);
  font-weight: 600; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .09em;
  border: 2px solid var(--red-bright);
  color: var(--t-ink);
  padding: .35rem .85rem;
}

/* ============================================================
   FINAL CTA — the red sign moment
   ============================================================ */
.cta-band {
  background: linear-gradient(160deg, var(--red) 0%, var(--red-deep) 100%);
  color: var(--paper);
  padding-block: clamp(4.5rem, 10vw, 7.5rem);
  text-align: center;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1;
  text-shadow: 5px 5px 0 rgba(0, 0, 0, .25);
}

.cta-sub {
  font-size: 1.15rem;
  margin-top: 1rem;
  color: rgba(244, 238, 225, .92);
}

.cta-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 7.5vw, 4.6rem);
  line-height: 1.1;
  color: #fff;
  text-decoration: none;
  margin-top: 1.5rem;
  border-bottom: 6px solid var(--ink);
  transition: transform .15s ease;
}
.cta-phone:hover { transform: scale(1.03) rotate(-1deg); }

.cta-band .cta-row { justify-content: center; margin-top: 2.2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--ink);
  color: var(--t-ink);
  border-top: 3px solid var(--red);
  padding-block: 3rem;
}
.footer-inner {
  display: flex; flex-wrap: wrap; gap: 2rem;
  align-items: center; justify-content: space-between;
}
.footer-lockup { font-size: 1.2rem; }
.footer-tag { color: var(--t-ink-mut); font-size: .95rem; margin-top: .3rem; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-family: var(--font-label);
  font-weight: 600; font-size: 1rem;
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--t-ink); text-decoration: none;
}
.footer-links a:hover { color: var(--red-bright); text-decoration: underline; text-underline-offset: 5px; }
.footer-fine { flex-basis: 100%; color: var(--t-ink-mut); font-size: .85rem; }

/* ============================================================
   SCROLL REVEAL — below the fold only; no-JS stays visible
   ============================================================ */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .rain { animation: none; }
  .btn, .svc-card, .cta-phone { transition: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 57.5rem) {
  .hero-inner { grid-template-columns: minmax(0, 1fr); }
  .hero-photo { max-width: 34rem; }

  .about-grid { grid-template-columns: 1fr; }
  .sign-photo { max-width: 26rem; }

  .menu-btn { display: flex; }
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: flex-start;
    gap: 1.2rem;
    background: var(--ink);
    border-bottom: 3px solid var(--red);
    padding: 1.4rem clamp(1.25rem, 4vw, 2.5rem) 1.8rem;
  }
  .nav-links.open { display: flex; }
}

@media (max-width: 35rem) {
  .cta-row { flex-direction: column; align-items: stretch; }
  .price-note { padding: 1.5rem 1.25rem; }
}

/* ============================================================
   SUB-PAGE SCAFFOLD (services / areas / info pages)
   ============================================================ */
.nav-links a.active:not(.btn) {
  color: var(--red-bright);
  text-decoration: underline; text-underline-offset: 6px; text-decoration-thickness: 3px;
}

.page-hero { padding-block: clamp(3rem, 7vw, 4.5rem); }

.crumb {
  font-family: var(--font-label);
  font-weight: 600; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--t-ink-mut);
  margin-bottom: 1.1rem;
}
.crumb a { color: var(--t-ink); text-decoration: none; }
.crumb a:hover { color: var(--red-bright); text-decoration: underline; text-underline-offset: 4px; }
.crumb .sep { color: var(--red-bright); padding-inline: .45rem; }

.page-hero .section-title { font-size: clamp(2.2rem, 5.5vw, 3.8rem); margin-bottom: 1rem; }
.page-sub { color: var(--t-ink-mut); max-width: 60ch; font-size: 1.1rem; }

.page-body { padding-block: clamp(3.5rem, 8vw, 5.5rem); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, .85fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.prose { max-width: 62ch; }
.prose p { margin-bottom: 1.15rem; color: #453f35; }
.prose p strong { color: var(--ink); }
.prose h2 {
  font-family: var(--font-label);
  font-weight: 600; font-size: 1.5rem;
  text-transform: uppercase; letter-spacing: .05em;
  margin: 2.1rem 0 .8rem;
}
.prose ul { list-style: none; margin: 1.4rem 0 1.6rem; }
.prose li { position: relative; padding-left: 1.5rem; margin-bottom: .6rem; color: #453f35; }
.prose li::before {
  content: "";
  position: absolute; left: 0; top: .5em;
  width: 10px; height: 10px; background: var(--red);
}

.side { display: flex; flex-direction: column; gap: 1.6rem; min-width: 0; }
.side .shot { margin-bottom: 0; }

.side-card {
  background: var(--paper-card);
  border: 3px solid var(--ink-line);
  box-shadow: 6px 6px 0 var(--ink-line);
  padding: 1.4rem 1.5rem;
}
.side-card h3 {
  font-family: var(--font-label);
  font-weight: 600; font-size: 1.15rem;
  text-transform: uppercase; letter-spacing: .07em;
  margin-bottom: .7rem;
}
.side-card ul { list-style: none; }
.side-card li { margin-bottom: .5rem; }
.side-card a {
  font-weight: 600;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.side-card a:hover { color: var(--red); }

.call-card {
  background: var(--ink);
  color: var(--t-ink);
  border: 3px solid var(--ink-line);
  box-shadow: 6px 6px 0 var(--red);
  padding: 1.5rem;
}
.call-card p { color: var(--t-ink-mut); }
.call-card strong { color: var(--t-ink); }
.call-card .btn { margin-top: 1rem; }

.svc-more {
  display: inline-block;
  margin-top: .9rem;
  font-family: var(--font-label);
  font-weight: 600; font-size: .98rem;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--red);
  text-decoration: none;
}
.svc-more::after { content: " →"; }
.svc-more:hover { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 3px; }

.see-all {
  display: inline-block;
  margin-top: 1.8rem;
  font-family: var(--font-label);
  font-weight: 600; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: .09em;
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--red-bright);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}
.see-all:hover { color: var(--red-bright); }

.area-chips a { color: inherit; text-decoration: none; }
.area-chips li:hover { background: rgba(227, 57, 47, .12); }

.town-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.4rem;
  margin-block: 2.5rem;
}

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; max-width: 52rem; }
details.faq {
  background: var(--paper-card);
  border: 3px solid var(--ink-line);
  box-shadow: 5px 5px 0 var(--ink-line);
}
details.faq summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  font-family: var(--font-label);
  font-weight: 600; font-size: 1.2rem;
  text-transform: uppercase; letter-spacing: .05em;
  padding: 1.05rem 3rem 1.05rem 1.3rem;
}
details.faq summary::-webkit-details-marker { display: none; }
details.faq summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem; line-height: 1;
  color: var(--red);
  position: absolute; right: 1.2rem; top: 50%;
  transform: translateY(-50%);
}
details.faq[open] summary::after { content: "–"; }
.faq-a { padding: 0 1.3rem 1.25rem; color: var(--t-paper-mut); max-width: 65ch; }

/* Contact */
.contact-phone {
  display: inline-block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6.5vw, 4.2rem);
  color: var(--t-ink);
  text-decoration: none;
  border-bottom: 6px solid var(--red);
  line-height: 1.15;
  margin-block: .5rem 1rem;
}
.contact-phone:hover { color: var(--red-bright); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
  gap: 1.4rem;
  margin-top: 2.5rem;
}

/* Estimate form (Web3Forms) */
.form-card {
  background: var(--paper-card);
  border: 3px solid var(--ink-line);
  box-shadow: 8px 8px 0 var(--ink-line);
  padding: clamp(1.5rem, 3vw, 2.2rem);
}

.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-family: var(--font-label);
  font-weight: 600; font-size: 1.05rem;
  text-transform: uppercase; letter-spacing: .08em;
  margin-bottom: .45rem;
}
.field input,
.field textarea {
  width: 100%;
  font: inherit;
  color: var(--ink);
  background: #fff;
  border: 3px solid var(--ink-line);
  border-radius: 0;
  padding: .7rem .85rem;
  -webkit-appearance: none;
}
.field input:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid var(--red-bright);
  outline-offset: 0;
}
.field textarea { min-height: 8.5rem; resize: vertical; }

.form-card .btn { width: 100%; cursor: pointer; }
.form-card .btn[disabled] { opacity: .6; transform: none; cursor: default; box-shadow: 5px 5px 0 rgba(0, 0, 0, .35); }
.form-card .btn.sent {
  opacity: 1;
  background: var(--ink);
  color: var(--paper);
  cursor: default;
}

.form-status {
  margin-top: 1rem;
  font-weight: 600;
  padding: .85rem 1rem;
  border: 3px solid var(--ink-line);
}
.form-status.ok { background: #e8f0dc; }
.form-status.err { background: #f6ddda; }

/* Sitemap footer */
.footer-map {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(11rem, 1fr));
  gap: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(244, 238, 225, .14);
}
.footer-map h3 {
  font-family: var(--font-label);
  font-weight: 600; font-size: .95rem;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--t-ink-mut);
  margin-bottom: .85rem;
}
.footer-map ul { list-style: none; }
.footer-map li { margin-bottom: .5rem; }
.footer-map a { color: var(--t-ink); text-decoration: none; font-size: .95rem; }
.footer-map a:hover { color: var(--red-bright); text-decoration: underline; text-underline-offset: 4px; }
.footer-brand .footer-links { margin-top: .9rem; }

@media (max-width: 57.5rem) {
  .split { grid-template-columns: minmax(0, 1fr); }
}
