/* ==========================================================================
   Ron's Plumbing Service — Template Stylesheet
   Old-catalog / newsprint system: navy ink (#001c26), white stock paper,
   and glacier-blue (#cfeafa) accents. Grain, halftone, ruled borders, and
   flat stamped shadows stand in for gloss — nothing glassy, nothing blurred.
   ========================================================================== */

:root{
  /* Ink — dark panels */
  --ink:        #001c26;
  --ink-2:      #0A2E3B;
  --ink-3:      #123F4F;
  --ink-line:   rgba(0, 28, 38, .8);

  /* Paper — light panels */
  --paper:      #FFFFFF;
  --paper-2:    #F1ECDD;
  --card:       #FFFFFF;
  --line:       rgba(0, 28, 38, .32);

  /* Accent — glacier blue */
  --accent:       #CFEAFA;
  --accent-deep:  #9BCFEA;

  /* Text */
  --on-ink:        #FFFFFF;
  --on-ink-muted:  rgba(255, 255, 255, .68);
  --on-paper:      #001c26;
  --on-paper-muted:#4B5A61;
  --on-accent:     #001c26;

  /* Type */
  --font-display: "Bitter", Georgia, "Times New Roman", serif;
  --font-body: "PT Serif", Georgia, "Times New Roman", serif;
  --font-stamp: "Special Elite", "Courier New", monospace;
  --font-hero: "Gotham Rail Company NF", "Bungee Inline", "Bitter", Georgia, serif;

  /* Grain / halftone (shared texture primitives) */
  --grain: 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='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");

  /* Spacing */
  --space-xs: 8px;
  --space-sm: 16px;
  --space-md: 24px;
  --space-lg: 40px;
  --space-xl: 64px;
  --space-2xl: 100px;

  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 8px;
  --shadow-sm: 4px 4px 0 rgba(0, 28, 38, .9);
  --shadow-md: 6px 6px 0 rgba(0, 28, 38, .9);
  --shadow-lg: 9px 9px 0 rgba(0, 28, 38, .9);
  --container-w: 1220px;
  --transition: 150ms ease-out;
}

@font-face{
  font-family: "Gotham Rail Company NF";
  src: url("../fonts/GothamRailCompanyNF-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
}

body{
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--on-paper);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4{
  font-family: var(--font-display);
  line-height: 1.1;
  margin: 0 0 var(--space-sm);
  font-weight: 700;
  text-wrap: balance;
  letter-spacing: -.005em;
}

h1{ font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; }
h2{ font-size: clamp(1.9rem, 3.2vw, 2.7rem); font-weight: 700; }
h3{ font-size: 1.28rem; font-weight: 700; }

p{ margin: 0 0 var(--space-sm); }
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }
ul{ margin: 0; padding: 0; list-style: none; }

.icon{ width: 1em; height: 1em; flex-shrink: 0; }

.wrap{
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.skip-link{
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: var(--on-accent);
  padding: 10px 18px;
  border-radius: 0 0 8px 0;
  z-index: 1000;
  font-weight: 700;
}
.skip-link:focus{ left: 0; }

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

/* ---------- Paper grain (replaces glass) ---------- */
.grain{ position: relative; }
.grain::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  opacity: .045;
  pointer-events: none;
  z-index: 0;
}
.on-ink.grain::before{ opacity: .09; }
.grain > *{ position: relative; z-index: 1; }

/* ---------- Halftone dot texture ---------- */
.speck{ position: relative; isolation: isolate; }
.speck::before{
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(currentColor 1.5px, transparent 1.7px);
  background-size: 12px 12px;
  opacity: .08;
  pointer-events: none;
  z-index: 0;
}
.speck > *{ position: relative; z-index: 1; }

/* ---------- Ruled masthead lines (double/triple rule, like an old ledger) ---------- */
.rule-lines{
  border-top: 3px solid var(--ink);
  box-shadow:
    0 6px 0 -3px var(--ink),
    0 10px 0 -3px var(--ink);
}
.rule-lines-onink{
  border-top: 3px solid var(--accent);
  box-shadow:
    0 6px 0 -3px var(--accent),
    0 10px 0 -3px var(--accent);
}

/* ---------- Decorative blobs removed in favor of flat halftone; kept as no-op ---------- */
.blob{ display: none; }

/* ---------- Buttons — stamped, not glossy ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-stamp);
  font-weight: 400;
  font-size: .88rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--ink);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  white-space: nowrap;
  min-height: 46px;
  box-shadow: var(--shadow-sm);
}
.btn:hover{ transform: translate(-2px, -2px); box-shadow: 6px 6px 0 rgba(0, 28, 38, .9); }
.btn:active{ transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(0, 28, 38, .9); }
.btn .icon{ width: 16px; height: 16px; }

.btn-primary{
  background: var(--accent);
  color: var(--on-accent);
}
.btn-primary:hover{ background: var(--accent-deep); }

.btn-ghost-onink{
  background: transparent;
  color: var(--on-ink);
  border-color: var(--on-ink);
  box-shadow: var(--shadow-sm);
}
.btn-ghost-onink:hover{ background: rgba(255,255,255,.08); }

.btn-ghost-onpaper{
  background: var(--paper);
  color: var(--on-paper);
  border-color: var(--ink);
}

.btn-outline{
  background: transparent;
  color: var(--on-paper);
  border-color: var(--on-paper);
}
.btn-outline:hover{ background: var(--ink); color: var(--on-ink); }

.btn-lg{ padding: 16px 30px; font-size: .92rem; }
.btn-block{ width: 100%; }
.btn-nav{ display: none; }

/* ---------- Top bar ---------- */
.top-bar{
  background: var(--ink);
  color: var(--on-ink-muted);
  font-size: .82rem;
  font-family: var(--font-stamp);
}
.top-bar-inner{
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: 8px var(--space-md);
}
.top-bar-link{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--on-ink);
}
.top-bar-link:hover{ color: var(--accent); }
.top-bar-link .icon{ width: 13px; height: 13px; }
.top-bar-area{
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 0 auto;
  color: var(--accent);
}
.top-bar-area .icon{ width: 13px; height: 13px; }

/* ---------- Header ---------- */
.site-header{
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 4px double var(--accent);
}
.header-inner{
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  padding: 14px var(--space-md);
}

.brand{
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--on-ink);
}
.brand-mark{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  border: 2px solid var(--on-ink);
  flex-shrink: 0;
}
.brand-mark svg{ width: 20px; height: 20px; }
.brand-word{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.22rem;
  color: var(--on-ink);
  line-height: 1.15;
}
.brand-sub{
  display: block;
  font-family: var(--font-stamp);
  font-size: .63rem;
  font-weight: 400;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
}

.site-nav{ margin-left: var(--space-lg); }
.site-nav ul{ display: flex; gap: var(--space-lg); }
.site-nav a{
  color: var(--on-ink-muted);
  font-family: var(--font-stamp);
  font-size: .86rem;
  letter-spacing: .02em;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}
.site-nav a:hover{ color: var(--on-ink); border-color: var(--accent); }

.header-inner .btn-primary{ margin-left: auto; }

.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 2px solid var(--accent);
  border-radius: var(--radius-sm);
  background: transparent;
  cursor: pointer;
}
.nav-toggle span{
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--on-ink);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-nav{
  border-top: 2px solid var(--ink-line);
  padding: var(--space-sm) var(--space-md) var(--space-md);
  background: var(--ink);
}
.mobile-nav ul{ display: flex; flex-direction: column; gap: 4px; margin-bottom: var(--space-sm); }
.mobile-nav a{
  display: block;
  padding: 12px 8px;
  font-family: var(--font-stamp);
  color: var(--on-ink);
  border-radius: var(--radius-sm);
}
.mobile-nav a:hover{ background: rgba(255,255,255,.08); }

/* ---------- Section scaffolding ---------- */
section{ padding: var(--space-2xl) 0; }

.on-ink{ background: var(--ink); color: var(--on-ink); }
.on-paper{ background: var(--paper); color: var(--on-paper); }
.on-paper-2{ background: var(--paper-2); color: var(--on-paper); }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-stamp);
  font-weight: 400;
  font-size: .76rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 7px 16px 7px 12px;
  border-radius: var(--radius-sm);
  margin: 0 0 var(--space-md);
  transform: rotate(-1deg);
}
.eyebrow .dot{
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.eyebrow-onink{ background: transparent; color: var(--accent); border: 1.5px dashed var(--accent); }
.eyebrow-onpaper{ background: transparent; color: var(--ink); border: 1.5px dashed var(--ink); }
.eyebrow-center{ justify-content: center; }

.section-head{
  max-width: 640px;
  margin: 0 auto var(--space-xl);
  text-align: center;
}
.section-sub{ font-size: 1.06rem; color: var(--on-paper-muted); }
.on-ink .section-sub{ color: var(--on-ink-muted); }
.section-sub-left{ text-align: left; margin-left: 0; }

/* ==========================================================================
   HERO — sits on the supplied vintage plumbing illustration
   ========================================================================== */
.hero{
  position: relative;
  padding-top: var(--space-2xl);
  padding-bottom: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(207,234,250,.15) 0%, rgba(207,234,250,.05) 45%, rgba(207,234,250,.35) 100%),
    url("../assets/hero-vintage-plumbing.png") center / cover no-repeat;
  color: var(--on-paper);
}

.hero-inner{
  position: relative;
  z-index: 1;
  padding-bottom: var(--space-xl);
}

.hero-grid{
  position: relative;
  z-index: 1;
}

.hero-content{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: var(--space-xl);
  align-items: start;
}

.hero-text{ position: relative; z-index: 1; }
.hero-text h1{
  color: var(--ink);
  font-family: var(--font-hero);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: .01em;
  line-height: 1.25;
  font-size: clamp(2rem, 4vw, 3.1rem);
}
.accent-word{
  color: var(--ink);
  white-space: nowrap;
}

.hero-sub{ font-size: 1.08rem; max-width: 46ch; color: var(--on-paper-muted); }

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin: 0;
}

.hero-form{
  position: relative;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}
.hero-form-title{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--on-paper);
  margin: 0 0 4px;
}
.hero-form-sub{ font-size: .92rem; margin-bottom: var(--space-md); color: var(--on-paper-muted); }
.hero-form-note{
  font-family: var(--font-stamp);
  font-size: .74rem;
  text-align: center;
  margin: var(--space-sm) 0 0;
  color: var(--on-paper-muted);
}

.field{ margin-bottom: var(--space-sm); }
.field label{
  display: block;
  font-family: var(--font-stamp);
  font-size: .78rem;
  letter-spacing: .02em;
  color: var(--on-paper);
  margin-bottom: 6px;
}
.field input,
.field textarea{
  width: 100%;
  font: inherit;
  font-size: .96rem;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  background: var(--paper);
  color: var(--on-paper);
  transition: border-color var(--transition), box-shadow var(--transition);
  min-height: 44px;
}
.field textarea{ resize: vertical; min-height: 88px; }
.field input:focus,
.field textarea:focus{
  outline: none;
  border-color: var(--ink);
  box-shadow: 3px 3px 0 var(--accent);
}

.field-row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

/* Ticker strip along the hero's bottom edge */
.hero-marquee{
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--ink);
  border-top: 3px solid var(--accent);
  box-shadow: 0 -6px 0 -3px var(--accent);
  padding: 16px 0;
}
.marquee-inner{
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee-track{
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
}
.marquee-track span:not(.mq-dot){
  font-family: var(--font-stamp);
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--on-ink-muted);
  white-space: nowrap;
}
.mq-dot{
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-100%); }
}

/* ==========================================================================
   HERO LOAD-IN
   ========================================================================== */
@keyframes load-down{
  from{ opacity: 0; transform: translateY(-14px); }
  to{ opacity: 1; transform: translateY(0); }
}
@keyframes load-up{
  from{ opacity: 0; transform: translateY(18px); }
  to{ opacity: 1; transform: translateY(0); }
}
@keyframes load-in-right{
  from{ opacity: 0; transform: translateX(28px); }
  to{ opacity: 1; transform: translateX(0); }
}

.hero-text .eyebrow{ animation: load-down .5s ease-out 1s both; }
.hero-sub{ animation: load-up .5s ease-out 1.3s both; }
.hero-actions{ animation: load-up .5s ease-out 1.65s both; }
.hero-form{ animation: load-in-right .6s ease-out 2.25s both; }
.hero-marquee{ animation: load-up .6s ease-out 4.2s both; }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.services{ position: relative; }

.service-cards{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.service-card{
  position: relative;
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover{ transform: translate(-3px, -3px); box-shadow: 9px 9px 0 rgba(0,28,38,.9); }

.service-card-media{
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--ink);
  border-bottom: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card-icon{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--accent);
  color: var(--ink);
}
.service-card-icon svg{ width: 34px; height: 34px; }
.service-tag{
  position: absolute;
  top: 14px; left: 14px;
  background: var(--accent);
  color: var(--on-accent);
  border: 1.5px solid var(--ink);
  font-family: var(--font-stamp);
  font-size: .68rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transform: rotate(-2deg);
}

.service-card-body{ padding: var(--space-md) var(--space-md) var(--space-lg); }
.service-card-body h3{ margin-bottom: 8px; }
.service-card-body p{ margin: 0; font-size: .95rem; color: var(--on-paper-muted); }

.service-extra{
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.service-extra-head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}
.service-extra-head h3{ font-size: 1.4rem; margin: 0; }
.service-extra-head p{ margin: 0; color: var(--on-paper-muted); font-size: .95rem; font-family: var(--font-stamp); }

.service-chips{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}
.chip-item{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: var(--card);
  border: 1.5px solid var(--ink);
}
.chip-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 1.5px solid var(--ink);
}
.chip-icon svg{ width: 19px; height: 19px; }
.chip-icon-ink{ background: var(--ink); color: var(--on-ink); border-color: var(--ink); }
.chip-icon-accent{ background: var(--accent); color: var(--on-accent); }
.chip-icon-glass{ background: var(--paper-2); color: var(--ink); }
.chip-icon-outline{ background: transparent; color: var(--accent); border-color: var(--accent); }
.chip-item .chip-label{ font-weight: 700; font-size: .9rem; color: var(--on-paper); }

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.why-us{ position: relative; overflow: hidden; }

.why-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}
.why-item{
  background: var(--ink-2);
  border: 1.5px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}
.why-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  margin-bottom: var(--space-md);
  border: 1.5px solid currentColor;
}
.why-icon svg{ width: 22px; height: 22px; }
.why-item h3{ margin-bottom: 8px; font-size: 1.15rem; color: var(--on-ink); }
.why-item p{ margin: 0; font-size: .93rem; color: var(--on-ink-muted); }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about{ position: relative; overflow: hidden; }
.about-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-xl);
  align-items: center;
}
.about-media{
  position: relative;
  aspect-ratio: 4 / 5;
  border: 3px solid var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--ink-2);
  display: flex;
  align-items: flex-end;
  padding: var(--space-md);
}
.about-media-frame{
  position: absolute;
  inset: 10px;
  border: 1.5px solid var(--accent);
  pointer-events: none;
}
.about-media-icon{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(207, 234, 250, .5);
  pointer-events: none;
}
.about-media-icon svg{ width: 44%; height: 44%; }
.about-stat{
  position: relative;
  z-index: 1;
  width: 100%;
  background: var(--paper);
  border: 2px solid var(--ink);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
}
.about-stat .stat-number{
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--on-paper);
  line-height: 1;
  margin-bottom: 4px;
}
.about-stat .stat-label{
  font-family: var(--font-stamp);
  font-size: .8rem;
  color: var(--on-paper-muted);
}
.about-content p{ font-size: 1.03rem; color: var(--on-paper-muted); }

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta{
  position: relative;
  padding: var(--space-2xl) 0;
  overflow: hidden;
  border-top: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent);
  box-shadow: inset 0 6px 0 -3px var(--accent), inset 0 -6px 0 -3px var(--accent);
}
.final-cta-content{
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
}
.final-cta-content h2{ color: var(--on-ink); }
.final-cta-content p{ color: var(--on-ink-muted); font-size: 1.1rem; margin-bottom: var(--space-lg); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact{ position: relative; }
.contact-grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-list{ display: flex; flex-direction: column; gap: var(--space-md); margin-top: var(--space-lg); }
.contact-list li{ display: flex; gap: var(--space-sm); align-items: flex-start; }
.contact-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--on-ink);
  border: 1.5px solid var(--ink);
  flex-shrink: 0;
}
.contact-icon svg{ width: 19px; height: 19px; }
.contact-label{ font-family: var(--font-stamp); font-weight: 400; color: var(--on-paper); margin: 0 0 2px; font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; }
.contact-list a{ font-weight: 700; color: var(--on-paper); }
.contact-list a:hover{ color: var(--ink-3); }
.contact-list p{ margin: 0; color: var(--on-paper-muted); }

.contact-form{
  background: var(--paper-2);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{
  background: var(--ink);
  color: var(--on-ink-muted);
  padding-top: var(--space-xl);
  border-top: 3px solid var(--accent);
  box-shadow: 0 -6px 0 -3px var(--ink), 0 -9px 0 -3px var(--accent);
}
.footer-inner{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
}
.footer-brand .brand-word,
.footer-brand .brand{ color: var(--on-ink); }
.footer-brand p{ color: var(--on-ink-muted); margin-top: var(--space-sm); font-size: .92rem; }
.footer-heading{
  font-family: var(--font-stamp);
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-sm);
}
.footer-nav ul{ display: flex; flex-direction: column; gap: 10px; }
.footer-nav a{ color: var(--on-ink-muted); font-size: .92rem; }
.footer-nav a:hover{ color: var(--accent); }
.footer-contact p{ margin: 0 0 10px; font-size: .92rem; }
.footer-contact a{ color: var(--on-ink-muted); }
.footer-contact a:hover{ color: var(--accent); }

.footer-bottom{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding: var(--space-md) var(--space-md);
  border-top: 1px solid rgba(255,255,255,.15);
  font-family: var(--font-stamp);
  font-size: .76rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom p{ margin: 0; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px){
  :root{ --space-2xl: 76px; --space-xl: 50px; }

  .service-cards{ grid-template-columns: repeat(2, 1fr); }
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
  .service-chips{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px){
  .site-nav, .header-inner .btn-primary, .top-bar-email{ display: none; }
  .nav-toggle{ display: flex; }
  .header-inner{ gap: var(--space-sm); }

  .hero-content{ grid-template-columns: 1fr; }

  .about-grid{ grid-template-columns: 1fr; }
  .about-media{ aspect-ratio: 16 / 10; }

  .contact-grid{ grid-template-columns: 1fr; }

  .footer-inner{ grid-template-columns: 1fr 1fr; }
  .footer-brand{ grid-column: 1 / -1; }
}

@media (max-width: 600px){
  :root{ --space-2xl: 60px; --space-xl: 40px; --container-w: 100%; }

  .top-bar-inner{ font-size: .78rem; gap: var(--space-sm); }
  .top-bar-area{ display: none; }

  .hero-actions{ flex-direction: column; align-items: stretch; }
  .hero-actions .btn{ width: 100%; }

  .service-cards{ grid-template-columns: 1fr; }
  .why-grid{ grid-template-columns: 1fr; }
  .service-chips{ grid-template-columns: 1fr; }

  .field-row{ grid-template-columns: 1fr; }

  .footer-inner{ grid-template-columns: 1fr; }
  .footer-bottom{ flex-direction: column; text-align: center; }
}
