/* Hugh Harrison Concrete Contracting — colors from his printed card (red / black / white)
   plus wet-concrete gray and Villa Rica red clay from his job photos. */
:root {
  --red: #C8102E;
  --red-deep: #8E0B20;
  --ink: #121110;
  --paper: #F3EDE4;
  --cream: #FFF8F0;
  --concrete: #B8B2A8;
  --wet: #8D8880;
  --clay: #7A3D28;
  --muted: #5A544C;
  --line: #D8D0C6;
  --shadow: 0 18px 40px rgba(18, 17, 16, 0.18);
  --max: 1120px;
  --sans: "Oswald", "Arial Narrow", Impact, sans-serif;
  --body: "Source Serif 4", Georgia, "Times New Roman", serif;
  --ui: "Barlow", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 1.08rem;
  line-height: 1.6;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; }
:focus-visible { outline: 3px solid var(--red); outline-offset: 3px; }
.skip {
  position: absolute; left: -999px;
}
.skip:focus {
  left: 1rem; top: 1rem; z-index: 99;
  background: var(--red); color: #fff;
  padding: 0.5rem 0.8rem; text-decoration: none;
  font-family: var(--ui);
}

h1, h2, h3 {
  font-family: var(--sans);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 0.6rem;
}
p { margin: 0 0 1rem; }
.wrap { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }

/* Ticket-stub header — same three bands as the printed card */
.ticket-bar {
  background: var(--red);
  color: #fff;
  font-family: var(--ui);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  padding: 0.4rem 0.75rem;
  font-weight: 600;
}
.ticket-bar a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.45); }

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: #0E0D0C;
  color: #fff;
  border-bottom: 3px solid var(--red);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 0.65rem 0;
}
.brand { text-decoration: none; display: flex; flex-direction: column; line-height: 0.9; }
.brand-name {
  font-family: var(--sans);
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  letter-spacing: 0.06em;
  color: #fff;
}
.brand-sub {
  font-family: var(--ui);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--concrete);
  margin-top: 0.22rem;
}
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--red);
  color: #fff;
  font-family: var(--ui);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.4rem 0.65rem;
}
#site-nav { display: flex; align-items: center; gap: 1.15rem; }
#site-nav a {
  text-decoration: none;
  font-family: var(--ui);
  font-size: 0.92rem;
  font-weight: 600;
  color: #efe8de;
}
#site-nav a:hover,
#site-nav a[aria-current="page"] { color: #fff; }
.nav-call {
  background: var(--red);
  color: #fff !important;
  padding: 0.45rem 0.85rem;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 760px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: #1a1714;
}
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 70%;
}
.hero-veil {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(14,13,12,0.15) 0%, rgba(14,13,12,0.45) 42%, rgba(14,13,12,0.88) 100%),
    linear-gradient(90deg, rgba(14,13,12,0.62) 0%, transparent 58%);
}
.hero-copy { position: relative; z-index: 1; padding: 3.2rem 0 2.8rem; max-width: 40rem; }
.eyebrow {
  display: inline-block;
  margin: 0 0 0.7rem;
  font-family: var(--ui);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: #f0c9a0;
}
.hero h1 {
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  margin: 0 0 0.7rem;
  color: #fff;
}
.hero .lede {
  font-size: 1.12rem;
  color: #efe6da;
  max-width: 34rem;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-top: 1.35rem; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  font-family: var(--ui);
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 2px;
  padding: 0.78rem 1.15rem;
  border: 2px solid transparent;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-deep); }
.btn-ghost { border-color: #fff; color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--ink); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}

/* Card-style service rail */
.work-rail {
  background: var(--ink);
  color: #fff;
  padding: 1.1rem 0;
  border-top: 6px solid var(--red);
}
.work-rail ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.3rem;
  justify-content: center;
  font-family: var(--ui);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.work-rail li { color: #e8e0d6; }
.work-rail li::before {
  content: "•";
  color: var(--red);
  margin-right: 0.55rem;
}

.section { padding: 3.4rem 0; }
.section.alt { background: var(--cream); }
.kicker {
  font-family: var(--ui);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--red);
  margin: 0 0 0.45rem;
}
h2 { font-size: clamp(1.8rem, 4vw, 2.7rem); }
h3 { font-size: 1.25rem; }
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.2rem;
  align-items: center;
}
.split.reverse { grid-template-columns: 0.9fr 1.1fr; }
.split img,
.frame img {
  width: 100%;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: var(--shadow);
}
.frame { position: relative; }
.frame figcaption {
  font-family: var(--ui);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.5rem;
}

.pledge {
  background: var(--red);
  color: #fff;
  padding: 2.4rem 0;
}
.pledge blockquote {
  margin: 0;
  font-size: clamp(1.25rem, 3vw, 1.7rem);
  line-height: 1.35;
  font-style: italic;
  max-width: 44rem;
}
.pledge cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--ui);
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #ffd6dc;
}

/* Services */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  margin-top: 1.6rem;
}
.svc {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 1.15rem 1.2rem 1.2rem;
}
.svc h3 { color: var(--ink); }
.svc p { margin: 0; color: #2c2925; font-size: 1rem; }
.svc .tag {
  font-family: var(--ui);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.35rem;
}

.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.photo-pair img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

/* Work mosaic */
.mosaic {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0.75rem;
}
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}
.mosaic .tall { grid-row: span 2; min-height: 460px; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.contact-card {
  background: var(--ink);
  color: #efe8de;
  padding: 1.6rem 1.5rem;
}
.contact-card a { color: #fff; }
.contact-card h2 { color: #fff; }
.contact-card .big {
  font-family: var(--sans);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  text-decoration: none;
  color: #fff;
  display: inline-block;
  margin: 0.2rem 0 0.8rem;
  border-bottom: 3px solid var(--red);
}
dl { margin: 0; }
dt {
  font-family: var(--ui);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #c8b8a8;
  margin-top: 0.85rem;
}
dd { margin: 0.15rem 0 0; }

form { display: grid; gap: 0.7rem; }
label {
  display: grid;
  gap: 0.25rem;
  font-family: var(--ui);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
input, textarea, select {
  font: 1rem var(--body);
  padding: 0.65rem 0.7rem;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  width: 100%;
}
textarea { min-height: 8rem; resize: vertical; }
.form-note {
  font-family: var(--ui);
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.site-footer {
  background: #0E0D0C;
  color: #cfc6ba;
  padding: 2.2rem 0 5.5rem;
  font-family: var(--ui);
  font-size: 0.92rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}
.site-footer a { color: #fff; text-decoration: none; }
.site-footer a:hover { border-bottom: 1px solid var(--red); }
.legal {
  margin-top: 1.6rem;
  padding-top: 1rem;
  border-top: 1px solid #2a2724;
  font-size: 0.78rem;
  color: #8a8378;
}

/* Mobile call bar */
.callbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: none;
  background: var(--red);
  color: #fff;
  text-align: center;
  padding: 0.75rem 1rem;
  font-family: var(--ui);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.25);
}

.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 2.4rem 0 2rem;
  border-bottom: 6px solid var(--red);
}
.page-hero h1 { font-size: clamp(2rem, 6vw, 3.4rem); }
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.gallery figure { margin: 0; }
.gallery img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.gallery figcaption {
  font-family: var(--ui);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.45rem;
}
.gallery .wide { grid-column: 1 / -1; }
.gallery .wide img { height: min(520px, 70vw); }

@media (max-width: 820px) {
  .split, .split.reverse, .contact-grid, .mosaic, .photo-pair, .svc-grid, .foot-grid, .gallery {
    grid-template-columns: 1fr;
  }
  .mosaic .tall { min-height: 280px; grid-row: auto; }
  .nav-toggle { display: inline-flex; }
  #site-nav {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #0E0D0C;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem 1rem 1.1rem;
    gap: 0.7rem;
    border-bottom: 3px solid var(--red);
  }
  #site-nav.open { display: flex; }
  .callbar { display: block; }
  .hero { min-height: 78vh; }
  .header-inner { position: relative; }
}

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