/* ==========================================================================
   Stoneworx — stylesheet
   Warm stone-neutral palette, serif display + sans body, airy editorial layout
   ========================================================================== */

:root {
  /* Warm stone neutrals */
  --sand-50:  #faf8f5;
  --sand-100: #f4f0ea;
  --sand-200: #e9e2d8;
  --sand-300: #d9cfc1;

  --ink-900: #1c1a17;
  --ink-800: #2b2723;
  --ink-700: #3d3830;
  --ink-600: #5a544b;
  --ink-500: #756e64;
  --ink-400: #9a9289;

  --white: #ffffff;

  /* Bronze accent */
  --bronze-800: #6f381c;
  --bronze-700: #8f4a26;
  --bronze-600: #b05c31;
  --bronze-500: #c47a4d;
  --bronze-200: #ecd9c9;
  --bronze-100: #f6ebe1;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 18px;

  --shadow-sm: 0 1px 3px rgba(28, 26, 23, 0.05);
  --shadow-md: 0 14px 40px rgba(28, 26, 23, 0.08);
  --shadow-lg: 0 30px 70px rgba(28, 26, 23, 0.12);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --header-h: 78px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  font-family: var(--font-body);
  color: var(--ink-800);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:focus-visible {
  outline: 2.5px solid var(--bronze-600);
  outline-offset: 3px;
  border-radius: 3px;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--ink-900);
  line-height: 1.14;
  letter-spacing: -0.015em;
  font-variation-settings: "SOFT" 0, "WONK" 0;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.wrap-narrow {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
}

.accent { color: var(--bronze-600); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-700);
  margin-bottom: 20px;
}
.eyebrow-light { color: var(--bronze-500); }

.section-lede {
  max-width: 620px;
  color: var(--ink-600);
  font-size: 17px;
  margin-top: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease);
  white-space: nowrap;
  min-height: 48px;
}
.btn .arrow { transition: transform 0.25s var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary { background: var(--ink-900); color: var(--white); }
.btn-primary:hover { background: var(--bronze-700); }

.btn-bronze { background: var(--bronze-600); color: var(--white); }
.btn-bronze:hover { background: var(--bronze-700); }

.btn-outline {
  background: transparent;
  border-color: var(--sand-300);
  color: var(--ink-900);
}
.btn-outline:hover { border-color: var(--ink-900); background: var(--sand-100); }

.btn-ghost-light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.18); border-color: var(--white); }

.btn-lg { padding: 17px 32px; font-size: 16px; min-height: 54px; }
.btn-block { width: 100%; }

/* Text link with underline slide */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 15px;
  color: var(--ink-900);
  border-bottom: 1px solid var(--sand-300);
  padding-bottom: 4px;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}
.link-arrow .arrow { transition: transform 0.25s var(--ease); display: inline-block; }
.link-arrow:hover { color: var(--bronze-700); border-color: var(--bronze-600); }
.link-arrow:hover .arrow { transform: translateX(4px); }

/* ---------- Announce bar ---------- */
.announce-bar {
  background: var(--ink-900);
  color: var(--sand-200);
  text-align: center;
  font-size: 12.5px;
  letter-spacing: 0.05em;
  padding: 9px 16px;
}
.announce-bar a { color: var(--bronze-500); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border-bottom: 1px solid var(--sand-200);
  transition: box-shadow 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 13px; }
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--ink-900);
  color: var(--sand-100);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: 0.02em;
  border-radius: 3px;
  flex-shrink: 0;
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  white-space: nowrap;
}
.brand-name em { font-style: normal; color: var(--bronze-600); }
.brand-sub {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-top: 2px;
}

.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: 14.5px;
  color: var(--ink-600);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--bronze-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.main-nav a:hover { color: var(--ink-900); }
.main-nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 20px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14.5px;
  color: var(--ink-900);
  white-space: nowrap;
  flex-shrink: 0;
}
.header-phone svg { color: var(--bronze-600); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--sand-200);
  background: var(--white);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  margin: 0 auto;
  background: var(--ink-900);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero (split editorial) ---------- */
.hero {
  background: var(--sand-50);
  padding: 88px 0 0;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero h1 {
  font-size: clamp(33px, 6.6vw, 68px);
  font-weight: 400;
  margin-bottom: 26px;
}
.hero h1 em {
  font-style: italic;
  color: var(--bronze-600);
  font-variation-settings: "SOFT" 20, "WONK" 1;
}
.hero-lede {
  font-size: 18px;
  color: var(--ink-600);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-media {
  position: relative;
  align-self: stretch;
  min-height: 460px;
}
.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.hero-stat {
  position: absolute;
  left: -34px;
  bottom: 46px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px 26px;
  box-shadow: var(--shadow-lg);
  max-width: 210px;
}
.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 500;
  line-height: 1;
  color: var(--ink-900);
  margin-bottom: 6px;
}
.hero-stat span { font-size: 13.5px; color: var(--ink-500); line-height: 1.45; display: block; }

/* Trust strip below hero */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--sand-200);
  margin-top: 72px;
}
.trust-strip li {
  padding: 30px 26px 34px 0;
  border-right: 1px solid var(--sand-200);
}
.trust-strip li:last-child { border-right: 0; padding-right: 0; }
.trust-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  color: var(--ink-900);
  margin-bottom: 5px;
}
.trust-strip p { font-size: 13.5px; color: var(--ink-500); line-height: 1.5; }

/* ---------- Section rhythm ---------- */
.section { padding: 118px 0; }
.section-tight { padding: 88px 0; }
.section-sand { background: var(--sand-50); }
.section-dark { background: var(--ink-900); color: var(--sand-100); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.section-dark p { color: rgba(250,248,245,0.68); }

.section-head { max-width: 680px; margin-bottom: 62px; }
.section-head h2 {
  font-size: clamp(26px, 4.6vw, 46px);
  font-weight: 400;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Services (numbered rows) ---------- */
.services-list { border-top: 1px solid var(--sand-200); }
.service-row {
  display: grid;
  grid-template-columns: 64px 1.1fr 1.4fr;
  gap: 28px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--sand-200);
  transition: background 0.3s var(--ease);
}
.service-row:hover { background: var(--sand-50); }
.service-num {
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--bronze-600);
  padding-top: 4px;
  letter-spacing: 0.04em;
}
.service-row h3 { font-size: 23px; font-weight: 500; }
.service-row p { color: var(--ink-600); font-size: 15.5px; padding-top: 3px; }

/* ---------- Process steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.process-step { position: relative; padding-top: 30px; border-top: 2px solid var(--bronze-600); }
.process-step:nth-child(n+2) { border-top-color: var(--sand-300); }
.process-step .step-num {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--bronze-700);
  display: block;
  margin-bottom: 14px;
}
.process-step h3 { font-size: 20px; margin-bottom: 10px; font-weight: 500; }
.process-step p { font-size: 14.5px; color: var(--ink-600); }

/* ---------- Projects / case studies ---------- */
.projects-grid { display: grid; gap: 28px; }
.project-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 46px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.project-card:nth-child(even) .project-media { order: 2; }
.project-media { overflow: hidden; align-self: stretch; }
.project-media img {
  width: 100%; height: 100%; min-height: 340px;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.project-card:hover .project-media img { transform: scale(1.04); }
.project-body { padding: 44px 46px 44px 0; }
.project-card:nth-child(even) .project-body { padding: 44px 0 44px 46px; }
.project-body h3 { font-size: 26px; font-weight: 500; margin-bottom: 14px; }
.project-body p { color: var(--ink-600); font-size: 15.5px; margin-bottom: 22px; }
.project-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(125px, 1fr));
  gap: 18px 26px;
  border-top: 1px solid var(--sand-200);
  padding-top: 20px;
}
.project-meta dt {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 5px;
}
.project-meta dd { font-size: 14.5px; color: var(--ink-800); font-weight: 500; }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  grid-template-rows: repeat(2, 250px);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--sand-100);
}
.gallery-item.feature { grid-row: span 2; }
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: 78px;
  align-items: center;
}
.about-media { position: relative; }
.about-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-content h2 { font-size: clamp(25px, 4.4vw, 42px); font-weight: 400; margin-bottom: 22px; }
.about-content p { color: var(--ink-600); margin-bottom: 18px; font-size: 16.5px; }
.check-list { margin: 30px 0 34px; display: flex; flex-direction: column; gap: 14px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15.5px; color: var(--ink-800);
}
.check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bronze-100);
  color: var(--bronze-700);
  border-radius: 50%;
  font-size: 11px;
  margin-top: 2px;
}

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
}
.team-photo { display: block; margin: 0; }
.team-photo img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  /* Bias the crop upward so a headshot doesn't get cut off at the chin */
  object-position: center 22%;
  border-radius: var(--radius-lg);
  background: var(--sand-100);
}
.team-placeholder {
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: var(--sand-100);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  color: var(--ink-400);
}
.team-placeholder[hidden] { display: none; }
.team-placeholder svg { margin: 0 auto 14px; color: var(--sand-300); }
.team-placeholder strong { display: block; font-size: 14px; color: var(--ink-500); margin-bottom: 6px; font-weight: 500; }
.team-placeholder span { font-size: 12.5px; line-height: 1.5; display: block; }
.team-placeholder code {
  font-size: 12px;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: 3px;
  padding: 1px 5px;
}
.team-caption {
  margin-top: 14px;
  font-size: 13.5px;
  color: var(--ink-500);
  letter-spacing: 0.02em;
}
.team-content h2 { font-size: clamp(24px, 4vw, 38px); font-weight: 400; margin-bottom: 18px; }
.team-content p { color: var(--ink-600); font-size: 16.5px; margin-bottom: 16px; }

/* ---------- Service areas ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 68px;
  align-items: center;
}
.areas-content h2 { font-size: clamp(25px, 4.4vw, 42px); font-weight: 400; margin-bottom: 20px; }
.areas-content p { margin-bottom: 32px; max-width: 440px; }
.areas-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.12); }
.area-chip {
  display: flex;
  align-items: center;
  gap: 11px;
  background: var(--ink-900);
  padding: 17px 20px;
  font-size: 14.5px;
  color: rgba(250,248,245,0.9);
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.area-chip svg { color: var(--bronze-500); flex-shrink: 0; }
.area-chip:hover { background: var(--ink-800); color: var(--white); }

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.review-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-md);
  padding: 34px;
}
.review-card-wide { grid-column: span 2; }
.review-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
.stars { color: var(--bronze-600); font-size: 15px; letter-spacing: 3px; }
.quote-mark { font-family: var(--font-display); font-size: 46px; color: var(--sand-200); line-height: 0.6; }
.fb-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: var(--bronze-700);
}
.review-card p { font-size: 16px; color: var(--ink-700); margin-bottom: 20px; line-height: 1.65; }
.review-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 22px; }
.review-tags span {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-500);
  border: 1px solid var(--sand-200);
  border-radius: 3px;
  padding: 5px 9px;
}
.review-person {
  display: flex; align-items: center; gap: 13px;
  padding-top: 20px; margin-top: auto;
  border-top: 1px solid var(--sand-200);
}
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bronze-100);
  color: var(--bronze-700);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 15px;
  flex-shrink: 0;
}
.review-person strong { display: block; font-size: 14.5px; font-weight: 500; color: var(--ink-900); }
.review-person span { font-size: 13px; color: var(--ink-400); }
.reviews-cta { margin-top: 42px; }

/* ---------- FAQ ---------- */
.faq-list { border-top: 1px solid var(--sand-200); }
.faq-item { border-bottom: 1px solid var(--sand-200); }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 500;
  color: var(--ink-900);
  list-style: none;
  transition: color 0.25s var(--ease);
  min-height: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--bronze-700); }
.faq-icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--sand-300);
  border-radius: 50%;
  transition: transform 0.3s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.faq-item[open] .faq-icon {
  transform: rotate(45deg);
  background: var(--bronze-600);
  border-color: var(--bronze-600);
  color: var(--white);
}
.faq-answer { padding: 0 60px 28px 0; color: var(--ink-600); font-size: 15.5px; max-width: 760px; }
.faq-answer p + p { margin-top: 12px; }

/* ---------- Map ---------- */
.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--sand-200);
  background: var(--sand-100);
  line-height: 0;
}
.map-frame iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 68px;
  align-items: start;
}
.info-row { display: flex; gap: 17px; margin-top: 28px; }
.info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-sm);
  color: var(--bronze-600);
}
.info-label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-400);
  margin-bottom: 5px;
}
.info-row a { color: var(--bronze-700); font-weight: 500; }
.info-row a:hover { text-decoration: underline; text-underline-offset: 3px; }
.static-text { color: var(--ink-800); line-height: 1.55; }
.info-sub { display: block; font-size: 13.5px; color: var(--ink-400); margin-top: 3px; }

.quote-form {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
}
.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-700);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--ink-900);
  padding: 14px 15px;
  border: 1px solid var(--sand-300);
  border-radius: var(--radius-sm);
  background: var(--white);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  min-height: 48px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--bronze-600);
  box-shadow: 0 0 0 3px var(--bronze-100);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { margin-top: 16px; font-size: 14.5px; text-align: center; min-height: 20px; }
.form-note.success { color: #1a6b3c; }
.form-note.error { color: #a52a1f; }
.form-legal { margin-top: 16px; font-size: 12.5px; color: var(--ink-400); text-align: center; }
.form-legal a { text-decoration: underline; text-underline-offset: 2px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink-900); color: rgba(250,248,245,0.62); padding: 72px 0 34px; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .brand-mark { background: var(--bronze-600); color: var(--white); }
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-sub { color: rgba(255,255,255,0.4); }
.footer-blurb { font-size: 14.5px; margin-top: 20px; max-width: 300px; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 18px;
  font-weight: 500;
}
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { font-size: 14.5px; color: rgba(250,248,245,0.62); transition: color 0.25s var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  padding-top: 28px;
  font-size: 13px;
}
.footer-bottom nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--white); }
.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.7);
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.footer-social:hover { color: var(--white); border-color: rgba(255,255,255,0.45); background: rgba(255,255,255,0.07); }

/* ---------- Sticky mobile CTA bar ---------- */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 95;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid var(--sand-200);
}
.mobile-cta-bar .btn { flex: 1; padding: 14px 12px; font-size: 15px; }

/* ---------- Breadcrumbs ---------- */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-wrap: wrap;
  font-size: 13.5px;
  color: var(--ink-400);
  margin-bottom: 26px;
}
.breadcrumbs a { color: var(--ink-500); }
.breadcrumbs a:hover { color: var(--bronze-700); text-decoration: underline; text-underline-offset: 3px; }
.breadcrumbs span[aria-current] { color: var(--ink-800); }
.breadcrumbs .sep { color: var(--sand-300); }

/* ---------- Simple page (404 / thanks / privacy) ---------- */
.page-hero { background: var(--sand-50); padding: 68px 0 62px; border-bottom: 1px solid var(--sand-200); }
.page-hero h1 { font-size: clamp(28px, 5.4vw, 52px); font-weight: 400; margin-bottom: 16px; }
.page-hero p { color: var(--ink-600); font-size: 17.5px; max-width: 620px; }

.prose { padding: 68px 0 100px; }
.prose h2 {
  font-size: 25px;
  font-weight: 500;
  margin: 42px 0 14px;
}
.prose h2:first-child { margin-top: 0; }
.prose p { color: var(--ink-600); margin-bottom: 15px; font-size: 16px; }
.prose ul { margin: 0 0 18px 0; display: flex; flex-direction: column; gap: 9px; }
.prose ul:not(.next-steps) li { position: relative; padding-left: 22px; color: var(--ink-600); font-size: 16px; }
.prose ul:not(.next-steps) li::before {
  content: "";
  position: absolute; left: 4px; top: 11px;
  width: 5px; height: 5px;
  background: var(--bronze-500);
  border-radius: 50%;
}
.prose .next-steps { margin-bottom: 0; }
.prose p a, .prose li a { color: var(--bronze-700); text-decoration: underline; text-underline-offset: 3px; }
.prose .btn, .prose .helpful-links a { text-decoration: none; }
.prose .btn { color: var(--white); }
.prose .btn-outline { color: var(--ink-900); }
.prose .updated { font-size: 13.5px; color: var(--ink-400); margin-bottom: 34px; }

.success-panel {
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  padding: 42px;
  margin-bottom: 40px;
}
.success-panel h2 { font-size: 22px; margin-bottom: 16px; }
.success-icon {
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--bronze-100);
  color: var(--bronze-700);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.next-steps { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.next-steps li { display: flex; gap: 15px; align-items: flex-start; font-size: 15.5px; color: var(--ink-600); }
.next-steps .n {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--sand-300);
  color: var(--ink-800);
  display: flex; align-items: center; justify-content: center;
  font-size: 12.5px;
  font-weight: 500;
}

.error-code {
  font-family: var(--font-display);
  font-size: clamp(72px, 12vw, 132px);
  line-height: 1;
  color: var(--sand-300);
  margin-bottom: 12px;
  font-weight: 400;
}
.helpful-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 40px; }
.helpful-links a {
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.helpful-links a:hover { border-color: var(--bronze-500); background: var(--sand-50); }
.helpful-links strong { display: block; font-family: var(--font-display); font-size: 18px; font-weight: 500; color: var(--ink-900); margin-bottom: 6px; }
.helpful-links span { font-size: 14px; color: var(--ink-500); }

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--ink-900);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 0 var(--radius-sm) 0;
  font-size: 14px;
}
.skip-link:focus { left: 0; }

/* ---------- Active nav state ---------- */
.main-nav a.active { color: var(--ink-900); }
.main-nav a.active::after { transform: scaleX(1); }

/* ---------- Service cards (home teaser grid) ---------- */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--sand-200);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.svc-card {
  background: var(--white);
  padding: 32px 28px 34px;
  transition: background 0.25s var(--ease);
}
.svc-card:hover { background: var(--sand-50); }
.svc-num {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--bronze-600);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.svc-card h3 { font-size: 20px; font-weight: 500; margin-bottom: 9px; }
.svc-card p { font-size: 14.5px; color: var(--ink-600); }

/* ---------- Materials ---------- */
.material-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.material-card {
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-md);
  padding: 34px 32px;
}
.material-card h3 { font-size: 24px; font-weight: 500; margin-bottom: 12px; }
.material-card p { color: var(--ink-600); font-size: 15.5px; margin-bottom: 18px; }
.material-tag {
  display: inline-block;
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bronze-700);
  background: var(--bronze-100);
  border-radius: 3px;
  padding: 6px 11px;
}

/* ---------- Values ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 34px;
}
.value-card { border-top: 1px solid var(--sand-300); padding-top: 24px; }
.value-card h3 { font-size: 19px; font-weight: 500; margin-bottom: 10px; }
.value-card p { font-size: 14.5px; color: var(--ink-600); }

/* ---------- Showcase image band ---------- */
.showcase { padding: 0 0 30px; }
.showcase-figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand-100);
}
.showcase-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.showcase-figure figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 60px 40px 32px;
  background: linear-gradient(0deg, rgba(18,16,14,0.86), rgba(18,16,14,0.45) 55%, transparent);
  color: var(--white);
}
.showcase-figure figcaption strong {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 7px;
}
.showcase-figure figcaption span {
  font-size: 15px;
  color: rgba(255,255,255,0.78);
  max-width: 520px;
  display: block;
}

/* ---------- CTA band ---------- */
.cta-band { background: var(--ink-900); color: var(--sand-100); padding: 76px 0; }
.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  flex-wrap: wrap;
}
.cta-band h2 {
  color: var(--white);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 400;
  margin-bottom: 10px;
}
.cta-band p { color: rgba(250,248,245,0.66); font-size: 16.5px; max-width: 520px; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Misc helpers ---------- */
.hero-note { font-size: 14.5px; color: var(--ink-500); }
.hero-note strong { color: var(--ink-800); font-weight: 500; }
.contact-h2 { font-size: clamp(25px, 4.4vw, 42px); font-weight: 400; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .main-nav, .header-phone { display: none; }
  .nav-toggle { display: flex; }
  .mobile-cta-bar { display: flex; }
  body { padding-bottom: 74px; }

  .site-header.nav-open .main-nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    padding: 12px 32px 26px;
    gap: 0;
    border-bottom: 1px solid var(--sand-200);
    box-shadow: var(--shadow-md);
  }
  .site-header.nav-open .main-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--sand-100);
    font-size: 16px;
  }

  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-media { min-height: 380px; }
  .hero-media img { min-height: 380px; border-radius: var(--radius-lg); }
  .hero-stat { left: auto; right: 22px; bottom: 22px; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); margin-top: 56px; }
  .trust-strip li:nth-child(2n) { border-right: 0; padding-right: 0; }
  .trust-strip li { border-bottom: 1px solid var(--sand-200); }
  .trust-strip li:nth-last-child(-n+2) { border-bottom: 0; }

  .about-grid, .areas-grid, .contact-grid, .team-grid { grid-template-columns: 1fr; gap: 46px; }
  .about-media, .team-photo { max-width: 420px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }

  .project-card { grid-template-columns: 1fr; gap: 0; }
  .project-card:nth-child(even) .project-media { order: 0; }
  /* Consistent landscape crop so portrait photos don't run the full screen */
  .project-media img { min-height: 0; height: auto; aspect-ratio: 4 / 3; }
  .project-body,
  .project-card:nth-child(even) .project-body { padding: 34px 30px 38px; }
}

/* ---------- Tablet / large phone ---------- */
@media (max-width: 900px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .material-grid { gap: 18px; }
  .cta-band-inner { flex-direction: column; align-items: flex-start; gap: 28px; }
}

@media (max-width: 780px) {
  .section { padding: 64px 0; }
  .section-tight { padding: 52px 0; }
  .section-head { margin-bottom: 36px; }
  .cta-band { padding: 58px 0; }

  .hero { padding-top: 44px; }
  /* Pull the photo up between the headline and the supporting copy — on a phone
     the work itself should be visible without scrolling past a wall of text. */
  .hero-grid { display: flex; flex-direction: column; align-items: stretch; gap: 0; }
  .hero-copy { display: contents; }
  .hero-copy .eyebrow { order: 1; }
  .hero-copy h1 { order: 2; margin-bottom: 26px; }
  .hero-media { order: 3; margin-bottom: 26px; }
  .hero-copy .hero-lede { order: 4; font-size: 16.5px; margin-bottom: 24px; }
  .hero-copy .hero-cta { order: 5; }
  .hero-copy .hero-note { order: 6; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 20px; }
  .hero-cta .btn { width: 100%; }
  /* Consistent landscape crop — portrait source photos otherwise run very tall */
  .hero-media { min-height: 0; }
  .hero-media img { min-height: 0; height: auto; aspect-ratio: 5 / 4; }

  .page-hero { padding: 44px 0 46px; }
  .page-hero p { font-size: 16.5px; }

  .service-row { grid-template-columns: 36px 1fr; gap: 14px; row-gap: 6px; padding: 24px 0; }
  .service-row h3 { font-size: 20px; }
  .service-row p { grid-column: 2; padding-top: 0; font-size: 15px; }
  .service-num { padding-top: 2px; }

  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 240px 190px 190px; gap: 14px; }
  .gallery-item.feature { grid-row: span 1; }

  .reviews-grid { grid-template-columns: 1fr; gap: 18px; }
  .review-card { padding: 26px 24px; }
  .review-card p { font-size: 15.5px; }
  .review-card-wide { grid-column: span 1; }

  .areas-list { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .quote-form { padding: 26px 20px; }

  .faq-answer { padding: 0 8px 24px 0; font-size: 15px; }
  .faq-item summary { font-size: 17px; padding: 22px 0; gap: 16px; }

  .material-grid { grid-template-columns: 1fr; }
  .material-card { padding: 28px 24px; }
  .material-card h3 { font-size: 21px; }

  .showcase-figure img { aspect-ratio: 4 / 3; }
  .showcase-figure figcaption { padding: 44px 22px 24px; }
  .showcase-figure figcaption strong { font-size: 18px; }
  .showcase-figure figcaption span { font-size: 14px; }

  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px 24px; padding-bottom: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 14px; }
  .helpful-links { grid-template-columns: 1fr; gap: 12px; }
  .helpful-links a { padding: 20px; }
  .map-frame iframe { height: 300px; }
  .prose { padding: 48px 0 72px; }
  .prose h2 { font-size: 22px; margin: 34px 0 12px; }
}

/* ---------- Phone ---------- */
@media (max-width: 560px) {
  /* The sticky bottom bar already carries this CTA — drop it from the header
     so the logo and menu button have room to breathe. */
  .header-actions .btn-primary { display: none; }
  .brand-sub { white-space: nowrap; font-size: 9.5px; }
  .brand-name { font-size: 19px; }
  .brand-mark { width: 36px; height: 36px; font-size: 15px; }
  :root { --header-h: 64px; }

  .announce-bar { font-size: 11.5px; padding: 8px 14px; letter-spacing: 0.02em; }

  .wrap, .wrap-narrow { padding: 0 18px; }
  .section { padding: 52px 0; }
  .section-tight { padding: 44px 0; }
  .section-head { margin-bottom: 30px; }
  .section-lede { font-size: 15.5px; margin-top: 14px; }
  .cta-band { padding: 48px 0; }
  .cta-band p { font-size: 15.5px; }
  .cta-band-actions { flex-direction: column; align-items: stretch; width: 100%; }
  .cta-band-actions .btn { width: 100%; }

  .eyebrow { font-size: 11px; margin-bottom: 14px; }
  .btn { font-size: 14.5px; padding: 14px 22px; }
  .btn-lg { font-size: 15px; padding: 15px 24px; min-height: 50px; }

  .hero { padding-top: 38px; }
  .hero-media, .hero-media img { min-height: 260px; }
  .hero-stat {
    position: static;
    margin-top: 14px;
    max-width: none;
    padding: 18px 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--sand-200);
    display: flex;
    align-items: baseline;
    gap: 14px;
  }
  .hero-stat strong { font-size: 30px; margin-bottom: 0; }
  .hero-stat span { font-size: 13px; }

  .trust-strip { grid-template-columns: 1fr; margin-top: 40px; }
  .trust-strip li {
    border-right: 0;
    padding: 20px 0;
    border-bottom: 1px solid var(--sand-200);
  }
  .trust-strip li:last-child { border-bottom: 0; padding-bottom: 0; }
  .trust-strip strong { font-size: 16px; }

  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { padding: 24px 22px 26px; }
  .svc-card h3 { font-size: 18.5px; }

  .process-grid { grid-template-columns: 1fr; gap: 24px; }
  .process-step { padding-top: 20px; }
  .process-step h3 { font-size: 18.5px; }

  .values-grid { grid-template-columns: 1fr; gap: 22px; }

  .project-body,
  .project-card:nth-child(even) .project-body { padding: 26px 22px 30px; }
  .project-body h3 { font-size: 22px; }
  .project-body p { font-size: 15px; }
  .project-meta { gap: 14px 18px; grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)); }

  .about-grid, .team-grid { gap: 32px; }
  .about-media, .team-photo { max-width: none; }
  .about-content p { font-size: 15.5px; }
  .check-list { margin: 24px 0 26px; gap: 12px; }
  .check-list li { font-size: 15px; }

  .info-row { gap: 14px; margin-top: 22px; }
  .info-icon { width: 40px; height: 40px; }

  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .site-footer { padding: 52px 0 28px; }
  .footer-blurb { max-width: none; }

  .success-panel { padding: 26px 20px; }
  .error-code { font-size: 84px; }
  .breadcrumbs { font-size: 12.5px; margin-bottom: 20px; }

  .mobile-cta-bar { padding: 9px 12px calc(9px + env(safe-area-inset-bottom)); gap: 8px; }
  .mobile-cta-bar .btn { padding: 13px 8px; font-size: 14.5px; min-height: 46px; }
  body { padding-bottom: 70px; }
}

/* ---------- Small phone ---------- */
@media (max-width: 380px) {
  .wrap, .wrap-narrow { padding: 0 16px; }
  .brand-name { font-size: 17.5px; }
  .brand-sub { display: none; }
  .hero-stat { flex-direction: column; gap: 4px; }
  .mobile-cta-bar .btn { font-size: 13.5px; }
}
