:root {
  --ink: #1a2228;
  --ink-soft: #2d3842;
  --paper: #f4f6f8;
  --white: #ffffff;
  --muted: #6b7a88;
  --line: #d8dfe6;
  --accent: #d15540;
  --accent-hover: #b84734;
  --accent-ink: #fff8f6;
  --overlay: rgba(18, 24, 30, 0.72);
  --radius: 4px;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "DM Sans", system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
}

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

.skip {
  position: absolute; left: -999px; top: 0;
}
.skip:focus {
  left: 16px; top: 16px; z-index: 100;
  background: var(--white); padding: 10px 16px;
  border: 2px solid var(--accent);
}

.wrap {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  padding: 0.85rem 1.5rem;
  background: rgba(26, 34, 40, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  color: var(--white);
}

.logo {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
}
.logo img { height: 40px; width: auto; }

nav {
  display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap;
}
nav a {
  font-family: var(--display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.72);
  transition: color 0.2s;
}
nav a:hover, nav a[aria-current="page"] { color: var(--accent); }

.header-social {
  display: flex; gap: 0.75rem; align-items: center;
}
.header-social a {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.55);
}
.header-social a:hover { color: var(--accent); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  cursor: pointer;
}

/* ── Hero (Forty: full-bleed photo + overlay copy) ── */
.hero-banner {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 6rem 1.5rem 4rem;
  color: var(--white);
  overflow: hidden;
}
.hero-banner__media {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-banner::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    160deg,
    rgba(14, 20, 26, 0.35) 0%,
    rgba(14, 20, 26, 0.82) 55%,
    rgba(14, 20, 26, 0.94) 100%
  );
}
.hero-banner .wrap { position: relative; z-index: 2; }

.kicker {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero-banner h1 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  max-width: 14ch;
  margin: 0 0 1.25rem;
}

.lede {
  font-size: 1.1rem;
  max-width: 42ch;
  color: rgba(255,255,255,0.82);
  margin: 0;
}

.hero-actions {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  margin-top: 2rem;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 1.6rem;
  border: 2px solid var(--accent);
  background: var(--accent);
  color: var(--accent-ink);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}
.btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
}
.btn.ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn.ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn.dark {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.btn.dark:hover {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
}

/* ── Photo tile grid (Forty services pattern) ── */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 4px;
}
.tile {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  color: var(--white);
}
.tile:nth-child(1) { grid-column: span 7; min-height: 360px; }
.tile:nth-child(2) { grid-column: span 5; }
.tile:nth-child(3) { grid-column: span 5; }
.tile:nth-child(4) { grid-column: span 7; }
.tile:nth-child(5) { grid-column: span 6; }
.tile:nth-child(6) { grid-column: span 6; }

.tile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tile:hover img { transform: scale(1.04); }

.tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(14,20,26,0.88) 0%, rgba(14,20,26,0.2) 60%);
  transition: background 0.3s;
}
.tile:hover::after {
  background: linear-gradient(0deg, rgba(209,85,64,0.75) 0%, rgba(14,20,26,0.35) 65%);
}

.tile__body {
  position: relative; z-index: 1;
  padding: 1.5rem;
}
.tile__body h3 {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 0.35rem;
  line-height: 1.05;
}
.tile__body p {
  margin: 0;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.78);
  max-width: 32ch;
}

/* ── Sections ── */
.section {
  padding: 5rem 0;
}
.section--dark {
  background: var(--ink);
  color: var(--white);
}
.section--white {
  background: var(--white);
}
.section h2 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0 0 1.5rem;
}
.section-intro {
  max-width: 52ch;
  color: var(--muted);
  margin: 0 0 2.5rem;
}
.section--dark .section-intro { color: rgba(255,255,255,0.65); }

.muted { color: var(--muted); }
.section--dark .muted { color: rgba(255,255,255,0.55); }

/* ── Split band ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.split img {
  width: 100%;
  height: min(480px, 60vw);
  object-fit: cover;
}
.split h2 { margin-top: 0; }

/* ── Proof list (Solid State influence) ── */
.proof-list {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--line);
}
.proof-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.proof-list .mark {
  font-family: var(--display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.proof-list strong {
  display: block;
  font-family: var(--display);
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.section--dark .proof-list { border-color: rgba(255,255,255,0.12); }
.section--dark .proof-list li { border-color: rgba(255,255,255,0.12); }

/* ── Testimonials ── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testimonial {
  background: var(--white);
  border-left: 3px solid var(--accent);
  padding: 1.5rem;
}
.testimonial blockquote {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.6;
}
.testimonial cite {
  font-style: normal;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ── Contact band ── */
.contact-band {
  background: var(--ink-soft);
  color: var(--white);
  padding: 4rem 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.contact-grid h3 {
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.5rem;
}
.contact-grid p { margin: 0; }
.contact-grid a { color: var(--white); text-decoration: none; }
.contact-grid a:hover { color: var(--accent); }

/* ── Map ── */
.map-wrap {
  margin-top: 2rem;
  border: 1px solid var(--line);
  overflow: hidden;
  line-height: 0;
}
.map-wrap iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

/* ── CTA strip ── */
.cta-strip {
  text-align: center;
  padding: 4rem 1.5rem;
  background: var(--accent);
  color: var(--accent-ink);
}
.cta-strip h2 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.75rem;
}
.cta-strip p { margin: 0 0 1.5rem; opacity: 0.9; }
.cta-strip .btn {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.cta-strip .btn:hover {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
}

/* ── Journal / blog ── */
.journal-list {
  display: grid;
  gap: 0;
}
.journal-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.journal-item:hover { background: rgba(209,85,64,0.04); }
.journal-item:last-child { border-bottom: 1px solid var(--line); }
.journal-item img {
  width: 140px;
  height: 100px;
  object-fit: cover;
}
.journal-item time {
  font-family: var(--display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.journal-item h3 {
  font-family: var(--display);
  font-size: 1.35rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0.25rem 0 0.5rem;
}
.journal-item p { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 5rem 0 3.5rem;
}
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1;
  margin: 0;
}

/* ── Services detail grid ── */
.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.service-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.service-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.service-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(14,20,26,0.9) 0%, rgba(14,20,26,0.25) 55%);
}
.service-card__body {
  position: relative; z-index: 1;
  padding: 1.75rem;
  color: var(--white);
}
.service-card__body h3 {
  font-family: var(--display);
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 0.5rem;
}
.service-card__body p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  max-width: 40ch;
}

/* ── Forms ── */
form {
  display: grid;
  gap: 1rem;
  max-width: 520px;
}
label {
  display: grid;
  gap: 0.35rem;
  font-family: var(--display);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
input, textarea, select {
  font: inherit;
  font-family: var(--body);
  text-transform: none;
  letter-spacing: normal;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius);
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}
textarea { resize: vertical; min-height: 120px; }
fieldset {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1rem;
  display: grid;
  gap: 0.75rem;
}
.choice { display: flex; align-items: center; gap: 0.5rem; }
.choice input { width: auto; }

.hours {
  display: grid;
  gap: 0.5rem;
  max-width: 420px;
}
.hours div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}

/* ── Footer ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 3rem 1.5rem 2rem;
  font-size: 0.88rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-inner strong {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 0.5rem;
}
.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.footer-social a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.85rem;
}
.footer-social a:hover { color: var(--accent); }

.footer-inner > .footer-social {
  display: grid;
  grid-template-columns: repeat(4, 2.5rem);
  gap: 0.5rem;
}
.footer-inner > .footer-social strong {
  grid-column: 1 / -1;
  margin-bottom: 0.25rem;
}
.footer-inner > .footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.75);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-inner > .footer-social a:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(209, 85, 64, 0.08);
}
.footer-inner > .footer-social a svg {
  display: block;
  flex-shrink: 0;
}
.footer-newsletter {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.75rem 1.5rem 0;
  margin-bottom: 1.75rem;
}
.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto auto auto;
  gap: 0.75rem 1rem;
  align-items: end;
  max-width: none;
}
.newsletter-form__copy {
  grid-column: 1 / -1;
}
.newsletter-form__copy strong {
  font-family: var(--display);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  display: block;
  margin-bottom: 0.35rem;
}
.newsletter-form__copy p {
  margin: 0;
  font-size: 0.85rem;
  max-width: 48ch;
}
.newsletter-form__field { margin: 0; }
.newsletter-form__field input {
  min-width: 0;
  width: 100%;
}
.newsletter-form__field--optional input { max-width: 10rem; }
.newsletter-form .btn {
  padding: 0.75rem 1.25rem;
  white-space: nowrap;
}

.footer-copy {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── WhatsApp float ── */
.wa {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.wa:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(0,0,0,0.3);
}
.wa svg {
  width: 1.75rem;
  height: 1.75rem;
  fill: currentColor;
}

/* ── Stat row ── */
.statrow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.stat b {
  display: block;
  font-family: var(--display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}
.stat span { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding-bottom: 0.5rem;
  }
  nav.open { display: flex; }
  .header-social { display: none; }

  .tile-grid { grid-template-columns: 1fr; }
  .tile, .tile:nth-child(n) {
    grid-column: span 1;
    min-height: 240px;
  }

  .split, .contact-grid, .testimonials, .footer-inner,
  .service-cards, .statrow {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    grid-template-columns: 1fr;
  }
  .newsletter-form__field--optional input { max-width: none; }
  .newsletter-form .btn { width: 100%; }

  .journal-item { grid-template-columns: 1fr; }
  .journal-item img { width: 100%; height: 180px; }

  .hero-banner { min-height: 75vh; }
}
