/* Lyons Welding — placeholder site */

:root {
  --ink: #141a21;
  --ink-soft: #4d5a68;
  --paper: #f3f6f9;
  --paper-deep: #e5ebf1;
  --arc: #1a6fd4;
  --arc-deep: #10529f;
  --arc-bright: #3d9bff;
  --arc-glow: #8fd0ff;
  --steel: #212932;
  --steel-deep: #161c23;
  --line: #d3dce5;
  --line-dark: #333d48;
  --radius: 6px;
  --font-display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, "Helvetica Neue", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}

.overline {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--arc-deep);
  margin-bottom: 0.9rem;
}

/* ---------- Shared background layers ---------- */

/* Dashed outline + label marking where a real photo will go */
.photo-tag {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 3;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8b95a1;
  border: 1.5px dashed #48535f;
  border-radius: 999px;
  padding: 0.35rem 0.85rem;
  background: rgba(18, 23, 29, 0.55);
}

.photo-tag::before {
  content: "◧ ";
  color: var(--arc-bright);
}

.photo-tag-center {
  position: relative;
  top: auto;
  right: auto;
}

.bg-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent 0 26px,
    rgba(230, 244, 255, 0.03) 26px 28px
  );
}

.bg-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 18% 100%, rgba(45, 130, 230, 0.30), transparent 70%),
    radial-gradient(ellipse 40% 45% at 85% 0%, rgba(45, 130, 230, 0.12), transparent 70%);
}

.bg-glow-center {
  background:
    radial-gradient(ellipse 60% 70% at 50% 115%, rgba(45, 130, 230, 0.26), transparent 70%);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.6rem clamp(1.25rem, 4vw, 3rem);
  background: #12171d;
  border-bottom: 1px solid var(--line-dark);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

/* Logo is a JPEG with a black background — `screen` drops the black
   against the dark header so only the arc and lettering show. */
.wordmark-logo {
  display: block;
  height: 58px;
  width: auto;
  mix-blend-mode: screen;
  /* Crushes the JPEG's near-black dot texture down to true black so
     `screen` drops it cleanly instead of leaving a faint grey box. */
  filter: contrast(1.22) brightness(1.04);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 2.5vw, 1.8rem);
}

.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: #b9c4d0;
  text-decoration: none;
}

.site-nav a:hover { color: var(--arc-glow); }

.site-nav a[aria-current="page"] { color: var(--arc-glow); font-weight: 600; }

.nav-cta {
  padding: 0.5rem 1rem;
  background: var(--arc);
  color: #fff !important;
  border-radius: var(--radius);
  font-weight: 600;
}

.nav-cta:hover { background: var(--arc-bright); }

/* Hamburger — hidden on desktop, shown on small screens */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.6rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--paper);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero (full-bleed photo background slot) ---------- */

.hero {
  position: relative;
  background: var(--steel-deep);
  color: var(--paper);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* Full-bleed background photo layer (heroes, contact) */
.bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Uniform darkening for photo backgrounds with centered text over them */
.bg-photo-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(13, 17, 23, 0.82), rgba(13, 17, 23, 0.86));
}

/* Background video layer (loaded via script on larger screens only) */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

/* Darkens the video so the headline stays readable — heavier on the
   left where the text sits, plus a fade into the section below. */
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 15, 20, 0.92) 0%, rgba(11, 15, 20, 0.72) 45%, rgba(11, 15, 20, 0.45) 100%),
    linear-gradient(to bottom, rgba(11, 15, 20, 0.55) 0%, transparent 25%, transparent 70%, rgba(22, 28, 35, 0.9) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(4.5rem, 10vw, 8.5rem) clamp(1.25rem, 4vw, 3rem) clamp(4rem, 9vw, 7.5rem);
}

.hero h1 {
  font-size: clamp(3.4rem, 9vw, 6.8rem);
  font-weight: 700;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.hero h1 em {
  font-style: normal;
  color: var(--arc-bright);
}

.hero-sub {
  max-width: 34rem;
  font-size: 1.06rem;
  color: #c2ccd8;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1.5px solid transparent;
}

.btn-primary {
  background: var(--arc);
  color: #fff;
  box-shadow: 0 4px 24px rgba(26, 111, 212, 0.40);
}

.btn-primary:hover { background: var(--arc-bright); }

.btn-ghost {
  border-color: #5b6874;
  color: var(--paper);
}

.btn-ghost:hover {
  border-color: var(--arc-glow);
  background: var(--arc-glow);
  color: var(--ink);
}

.hero-note {
  font-size: 0.85rem;
  color: #8b95a1;
}

/* Rising arc-spark specks */
.bg-sparks {
  position: absolute;
  inset: 0;
}

.bg-sparks span {
  position: absolute;
  bottom: -6px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--arc-glow);
  opacity: 0;
  animation: rise 7s linear infinite;
}

.bg-sparks span:nth-child(1) { left: 8%;  animation-delay: 0s;   animation-duration: 8s; }
.bg-sparks span:nth-child(2) { left: 16%; animation-delay: 2.4s; width: 3px; height: 3px; }
.bg-sparks span:nth-child(3) { left: 24%; animation-delay: 4.8s; animation-duration: 9s; }
.bg-sparks span:nth-child(4) { left: 33%; animation-delay: 1.2s; width: 2px; height: 2px; }
.bg-sparks span:nth-child(5) { left: 61%; animation-delay: 3.6s; width: 2px; height: 2px; animation-duration: 10s; }
.bg-sparks span:nth-child(6) { left: 78%; animation-delay: 5.5s; width: 3px; height: 3px; }
.bg-sparks span:nth-child(7) { left: 90%; animation-delay: 0.8s; animation-duration: 9s; }

@keyframes rise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  8%   { opacity: 0.85; }
  60%  { opacity: 0.4; }
  100% { transform: translateY(-64vh) translateX(24px); opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .bg-sparks span { animation: none; opacity: 0.35; bottom: auto; top: 40%; }
}

/* Torn/angled bottom edge into the services section */
.hero-edge {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: clamp(28px, 4vw, 52px);
  background: var(--steel);
  clip-path: polygon(0 100%, 100% 100%, 100% 30%, 0 78%);
  z-index: 1;
}

/* Compact hero for subpages */
.page-hero .hero-inner {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem) clamp(3.5rem, 7vw, 6rem);
}

.page-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5.2rem);
}

/* ---------- Who we serve ---------- */

.serve {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.section-head-light {
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}

.section-head-light h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
}

.serve-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.serve-card {
  position: relative;
  display: block;
  background: var(--steel);
  color: var(--paper);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid var(--line-dark);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.serve-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(20, 26, 33, 0.24);
}

/* Photo placeholder strip at the top of each card */
.photo-tag-card {
  position: relative;
  top: auto;
  right: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-bottom: 1.5px dashed #48535f;
  border-radius: 0;
  min-height: 150px;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, rgba(45, 130, 230, 0.20), transparent 70%),
    var(--steel-deep);
}

.serve-card-body {
  padding: 1.6rem 1.6rem 1.8rem;
}

.serve-card .overline { color: var(--arc-bright); margin-bottom: 0.5rem; }

.serve-card h3 {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.serve-card-body > p {
  font-size: 0.94rem;
  color: #a8b4c2;
  margin-bottom: 1.1rem;
}

.serve-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--arc-glow);
}

.serve-card:hover .serve-link { text-decoration: underline; }

/* ---------- Contractor pitch / checklist ---------- */

.pitch {
  background: var(--paper-deep);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.pitch-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}

.pitch h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1.2rem;
}

.pitch-copy p { color: var(--ink-soft); max-width: 32rem; }

.checklist {
  list-style: none;
  border-top: 1px solid var(--line);
}

.checklist li {
  padding: 1rem 0.25rem 1rem 2.1rem;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 0.96rem;
  color: var(--ink-soft);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0.25rem;
  top: 0.95rem;
  font-weight: 700;
  color: var(--arc-deep);
}

.checklist strong { color: var(--ink); }

/* ---------- How it works steps ---------- */

.steps {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.steps-inner { max-width: 1200px; margin: 0 auto; }

.step-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.5rem, 4vw, 3rem);
  counter-reset: step;
}

.step-list li {
  border-top: 3px solid var(--arc);
  padding-top: 1.2rem;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--arc-deep);
  line-height: 1;
  display: block;
  margin-bottom: 0.5rem;
}

.step-list h3 {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.step-list p {
  font-size: 0.94rem;
  color: var(--ink-soft);
}

/* ---------- Light services section (For your home) ---------- */

.services-light {
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.section-sub {
  max-width: 42rem;
  color: var(--ink-soft);
  margin-top: 1rem;
  font-size: 1rem;
}

.section-sub-dark { color: #a8b4c2; }

.service-grid.service-grid-light {
  background: var(--line);
  border: 1px solid var(--line);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1000px) {
  .service-grid.service-grid-light {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .service-grid.service-grid-light {
    grid-template-columns: 1fr;
  }
}

.service.service-light {
  background: var(--paper);
}

.service.service-light:hover { background: #fbfdff; }

.service.service-light h3 { color: var(--ink); }

.service.service-light p { color: var(--ink-soft); }

.service.service-light .service-num { color: var(--arc-deep); }

.service-grid.service-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 640px) {
  .service-grid.service-grid-two {
    grid-template-columns: 1fr;
  }
}

.section-cta {
  max-width: 1200px;
  margin: 2.2rem auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}

.cta-note {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.cta-note-dark { color: #8b95a1; }

/* ---------- Services ---------- */

.services {
  background: var(--steel);
  color: var(--paper);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.section-head {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.services .overline { color: var(--arc-bright); }

.services h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  max-width: 28ch;
}

.service-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--line-dark);
  border: 1px solid var(--line-dark);
}

.service {
  background: var(--steel);
  padding: 1.8rem 1.6rem;
  position: relative;
}

.service:hover { background: #262e37; }

.service:hover .service-num { color: var(--arc-glow); }

.service-num {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--arc-bright);
  letter-spacing: 0.1em;
}

.service h3 {
  font-size: 1.35rem;
  margin: 0.6rem 0 0.5rem;
}

.service p {
  font-size: 0.92rem;
  color: #a8b4c2;
}

/* ---------- Recent work gallery ---------- */

.work {
  background: var(--steel-deep);
  color: var(--paper);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
  border-bottom: 3px solid var(--arc);
}

.work .overline { color: var(--arc-bright); }

.work h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); }

.work-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.8rem);
}

.work-item {
  margin: 0;
}

.work-item img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line-dark);
}

.work-item figcaption {
  margin-top: 0.7rem;
  font-size: 0.86rem;
  color: #a8b4c2;
}

@media (max-width: 860px) {
  .work-grid { grid-template-columns: 1fr; }

  .work-item img { aspect-ratio: 4 / 3; }
}

/* ---------- Full-width photo band ---------- */

.photo-band {
  position: relative;
  min-height: clamp(200px, 30vw, 320px);
  background:
    linear-gradient(120deg, var(--steel-deep) 0%, #1c2530 55%, var(--steel-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-top: 1px solid var(--line-dark);
  border-bottom: 3px solid var(--arc);
}

.band-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 45% 90% at 50% 50%, rgba(45, 130, 230, 0.24), transparent 70%);
}

/* Video layer inside the band (lazy-loaded on scroll, larger screens only) */
.band-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* Soft darkening at the band's top and bottom edges so it blends
   into the neighboring sections instead of cutting hard. */
.band-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(22, 28, 35, 0.65) 0%,
    rgba(22, 28, 35, 0.15) 35%,
    rgba(22, 28, 35, 0.15) 70%,
    rgba(22, 28, 35, 0.7) 100%
  );
}

/* ---------- Service area ---------- */

.area {
  position: relative;
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
}

.area-watermark {
  position: absolute;
  top: 50%;
  right: -0.05em;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(8rem, 24vw, 20rem);
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--line);
  letter-spacing: -0.02em;
  user-select: none;
  pointer-events: none;
}

.area-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.area h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1.2rem;
}

.area-copy p { color: var(--ink-soft); max-width: 32rem; }

.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
  margin-top: 0.5rem;
}

.area-list li {
  padding: 0.7rem 0.25rem;
  border-bottom: 1px solid var(--line);
  font-weight: 500;
  font-size: 0.95rem;
  background: rgba(243, 246, 249, 0.72);
}

.area-list li::before {
  content: "—";
  color: var(--arc);
  margin-right: 0.6rem;
}

/* ---------- About ---------- */

.about {
  position: relative;
  background: var(--paper-deep);
  padding: clamp(3.5rem, 7vw, 6rem) clamp(1.25rem, 4vw, 3rem);
  overflow: hidden;
}

/* Faint blueprint-style grid */
.about-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(20, 26, 33, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20, 26, 33, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse 80% 100% at 50% 0%, black, transparent 85%);
}

.about-inner { position: relative; max-width: 760px; margin: 0 auto; }

/* About with owner photo */
.about-inner-photo {
  max-width: 1100px;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.about-photo {
  margin: 0;
}

.about-photo img {
  display: block;
  width: 100%;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 40px rgba(20, 26, 33, 0.18);
}

.about h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-bottom: 1.2rem;
}

.about p { color: var(--ink-soft); }

.about-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.5rem, 5vw, 4rem);
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.about-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--arc-deep);
  line-height: 1;
}

.about-stats span {
  font-size: 0.85rem;
  color: var(--ink-soft);
}

/* ---------- Contact (dark photo background slot) ---------- */

.contact {
  position: relative;
  background: var(--steel-deep);
  color: var(--paper);
  padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 3rem);
  overflow: hidden;
}

.contact .overline { color: var(--arc-bright); }

.contact-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.contact h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin-bottom: 0.8rem;
}

.contact-sub {
  color: #c2ccd8;
  margin-bottom: 2.2rem;
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 240px;
  padding: 1.3rem 1.8rem;
  background: rgba(230, 244, 255, 0.06);
  border: 1px solid #39434f;
  color: var(--paper);
  border-radius: var(--radius);
  text-decoration: none;
  text-align: left;
  backdrop-filter: blur(4px);
}

.contact-card:hover {
  background: var(--arc);
  border-color: var(--arc);
}

.contact-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #a8b4c2;
}

.contact-card:hover .contact-label { color: #cfe6ff; }

.contact-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
}

.contact-hours {
  font-size: 0.85rem;
  color: #8b95a1;
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--steel-deep);
  border-top: 1px solid var(--line-dark);
  padding: 1.6rem clamp(1.25rem, 4vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #8b95a1;
}

.tag-placeholder { color: var(--arc-bright); }

.footer-nav {
  display: flex;
  gap: 1.2rem;
}

.footer-nav a {
  color: #b9c4d0;
  text-decoration: none;
  font-weight: 500;
}

.footer-nav a:hover { color: var(--arc-glow); }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .area-inner,
  .pitch-inner {
    grid-template-columns: 1fr;
  }

  .area-watermark {
    font-size: clamp(6rem, 30vw, 10rem);
    top: auto;
    bottom: -0.1em;
    transform: none;
  }

  .photo-tag {
    font-size: 0.62rem;
    top: 0.7rem;
    right: 0.7rem;
  }

  .wordmark-logo { height: 44px; }

  .about-inner-photo {
    grid-template-columns: 1fr;
  }

  .about-photo { max-width: 420px; }

  /* Mobile nav: hamburger + dropdown panel under the sticky header */
  .nav-toggle { display: inline-flex; }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #12171d;
    border-bottom: 1px solid var(--line-dark);
    padding: 0.4rem 1.25rem 1.1rem;
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.35);
  }

  .nav-open .site-nav { display: flex; }

  .site-nav a {
    display: block;
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--line-dark);
    font-size: 1rem;
  }

  .site-nav a[aria-current="page"] { color: var(--arc-glow); }

  .site-nav .nav-cta {
    margin-top: 0.9rem;
    border-bottom: none;
    text-align: center;
    padding: 0.75rem 1rem;
  }
}
