/* ============================================
   PoshHaus Stone — design tokens (2026 refresh)
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

:root {
  /* PoshHaus-aligned black & white theme */
  --bone: #FFFFFF;
  --bone-dim: #F4F4F3;
  --paper: #FFFFFF;
  --basalt: #111111;
  --basalt-soft: #1D1D1D;
  --ink: #111111;

  /* accents: near-monochrome, one small functional green (status dot) */
  --gold: #111111;
  --gold-light: #FFFFFF;
  --oxide: #3A3A3A;
  --oxide-light: #565656;
  --moss: #1E7B4D;
  --moss-light: #3F9C6D;
  --green-dot: #2FAE6B;

  --line: rgba(17,17,17,0.13);
  --line-dark: rgba(255,255,255,0.16);

  --font-display: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'Inter', sans-serif;

  --max-w: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }

/* subtle grain texture for tactility, applied to dark sections */
.grain { position: relative; }
.grain::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}
.grain > * { position: relative; z-index: 2; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.02; margin: 0; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14.5px;
  padding: 15px 28px;
  border-radius: 0;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .22s cubic-bezier(.4,0,.2,1);
}
.btn-primary { background: var(--basalt); color: var(--bone); }
.btn-primary:hover { background: var(--oxide); }
.btn-outline { border-color: var(--ink); background: transparent; }
.btn-outline:hover { background: var(--ink); color: var(--bone); }
.btn-ghost-light { border-color: rgba(255,255,255,0.4); color: var(--bone); }
.btn-ghost-light:hover { background: var(--bone); color: var(--basalt); border-color: var(--bone); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-body); font-size: 12.5px; letter-spacing: .01em;
  padding: 9px 32px; background: var(--basalt); color: rgba(255,255,255,0.85);
}
.topbar a { color: #fff; font-weight: 600; }
.topbar .status-dot { display:inline-block; width:7px; height:7px; border-radius:50%; background: var(--green-dot); margin-right:7px; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
  max-width: var(--max-w); margin: 0 auto;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; line-height: 1; }
.logo-img { height: 44px; width: auto; display: block; }
.logo-img-footer { filter: invert(1) brightness(1.6); height: 40px; }
.stone-badge {
  font-family: var(--font-display); font-weight: 800; font-size: 15px; letter-spacing: -0.01em;
  color: var(--ink); border: 1.5px solid var(--ink); padding: 2px 8px; border-radius: 2px;
  text-transform: uppercase; line-height: 1.3;
}
.stone-badge-footer { color: var(--bone); border-color: var(--bone); }
.logo .word-wrap { display: flex; flex-direction: column; gap: 3px; }
.logo .sub { font-family: var(--font-body); font-size: 9.5px; letter-spacing: .2em; color: var(--oxide-light); margin-top: 2px; text-transform: uppercase; }
.nav-center { display: flex; align-items: center; gap: 30px; flex: 1; justify-content: center; }
.nav-links { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-links a { font-size: 13.5px; font-weight: 500; padding: 6px 0; border-bottom: 1px solid transparent; text-transform: uppercase; letter-spacing: .03em; }
.nav-links a:hover, .nav-links a.active { border-color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-family: var(--font-body); font-size: 13.5px; font-weight: 700; }
.menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; }

@media (max-width: 900px) {
  .nav-center { position: fixed; top: 118px; left: 0; right: 0; bottom: 0; background: var(--bone); flex-direction: column; padding: 30px 32px; gap: 6px; display: none; overflow-y:auto; align-items: flex-start; }
  .nav-center.open { display: flex; }
  .nav-links { flex-direction: column; align-items: flex-start; width: 100%; gap: 0; }
  .nav-links a { display:block; padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 18px; width:100%; }
  .menu-toggle { display: block; }
  .nav-cta .nav-phone { display: none; }
}

/* ---------- Materials strip (always-visible photo tiles) ---------- */
.material-strip {
  display: flex;
  border-bottom: 1px solid var(--line);
  background: var(--basalt);
}
.material-strip a {
  flex: 1;
  min-width: 100px;
  height: 64px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: flex .28s cubic-bezier(.4,0,.2,1);
}
.material-strip a:hover { flex: 1.5; }
.material-strip a img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .78; transition: transform .4s ease, opacity .2s; }
.material-strip a:hover img { transform: scale(1.06); opacity: .55; }
.material-strip a::after { content:''; position:absolute; inset:0; background: linear-gradient(0deg, rgba(0,0,0,.55), rgba(0,0,0,0) 60%); }
.material-strip a span {
  position: relative; z-index: 2; padding: 8px 10px;
  font-family: var(--font-body); font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; font-weight: 600;
}
@media (max-width: 700px) {
  .material-strip { flex-wrap: wrap; }
  .material-strip a { flex: 1 1 33%; min-width: 33%; height: 52px; }
  .material-strip a:hover { flex: 1 1 33%; }
}


/* ---------- Hero ---------- */
.hero {
  background: var(--basalt); color: var(--bone);
  position: relative; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; align-items: end; gap: 48px;
  max-width: var(--max-w); margin: 0 auto; padding: 88px 32px 0;
}
.hero h1 { font-size: clamp(42px, 6.6vw, 84px); color: var(--bone); font-weight: 700; letter-spacing: -0.02em; }
.hero h1 em { font-style: italic; color: var(--gold-light); font-weight: 500; opacity: .85; }
.hero-copy { font-size: 18px; color: rgba(255,255,255,0.72); max-width: 44ch; margin: 24px 0 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-img { position: relative; }
.hero-img img { border-radius: 0; }
.hero-badge {
  position: absolute; bottom: -20px; left: -20px; background: var(--bone);
  color: var(--basalt); font-family: var(--font-body); font-size: 11px;
  padding: 13px 17px; letter-spacing: .04em; max-width: 200px; line-height: 1.45; font-weight: 700;
  border: 1px solid var(--basalt);
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding-top: 56px; }
  .hero-badge { display: none; }
}

/* ---------- Sections ---------- */
section { padding: 96px 0; }
.section-dark { background: var(--basalt); color: var(--bone); }
.section-tint { background: var(--bone-dim); }
.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); margin-top: 16px; font-weight: 700; }
.section-head p { margin-top: 18px; font-size: 16.5px; color: #514E45; }
.section-dark .section-head p { color: rgba(255,255,255,0.7); }

/* ---------- Stat row ---------- */
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.stat { padding: 30px 22px; border-right: 1px solid var(--line-dark); }
.stat:last-child { border-right: none; }
.stat .num { font-family: var(--font-display); font-size: 36px; color: var(--gold-light); font-weight: 500; }
.stat .lbl { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,0.58); margin-top: 8px; }
@media (max-width: 700px) { .stat-row { grid-template-columns: repeat(2,1fr); } .stat:nth-child(2) { border-right:none; } }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card-grid.cols-2 { grid-template-columns: repeat(2,1fr); }
.card-grid.cols-5 { grid-template-columns: repeat(5,1fr); }
@media (max-width: 1000px) { .card-grid, .card-grid.cols-5 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 620px) { .card-grid, .card-grid.cols-5, .card-grid.cols-2 { grid-template-columns: 1fr; } }

.material-card { background: var(--paper); border: 1px solid var(--line); display: flex; flex-direction: column; transition: border-color .2s, transform .2s; }
.material-card:hover { border-color: var(--gold); }
.material-card .img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.material-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2,.8,.2,1); }
.material-card:hover img { transform: scale(1.06); }
.material-card .body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.material-card .tag { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; color: var(--oxide); }
.material-card h3 { font-size: 23px; margin: 12px 0 10px; font-weight: 700; }
.material-card p { font-size: 14.5px; color: #514E45; flex: 1; }
.material-card .more { margin-top: 16px; font-family: var(--font-mono); font-size: 12px; font-weight:700; color: var(--ink); border-bottom: 1px solid var(--gold); display:inline-block; width: fit-content; text-transform: uppercase; letter-spacing:.03em;}

.space-card { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.space-card img { width:100%; height:100%; object-fit:cover; transition: transform .55s cubic-bezier(.2,.8,.2,1); }
.space-card:hover img { transform: scale(1.07); }
.space-card .overlay { position:absolute; inset:0; background: linear-gradient(180deg, rgba(17,17,17,0) 42%, rgba(17,17,17,0.94) 100%); display:flex; flex-direction:column; justify-content:flex-end; padding:24px; }
.space-card .tag { font-family: var(--font-mono); font-size: 10px; text-transform:uppercase; letter-spacing:.08em; color: var(--gold-light); }
.space-card h3 { color: var(--bone); font-size: 23px; margin: 7px 0; font-weight: 700; }
.space-card p { color: rgba(255,255,255,0.72); font-size: 13.5px; margin:0; }

/* ---------- Process steps ---------- */
.process-list { display: flex; flex-direction: column; }
.process-step { display: grid; grid-template-columns: 130px 1fr; gap: 30px; padding: 36px 0; border-top: 1px solid var(--line-dark); }
.process-step:last-child { border-bottom: 1px solid var(--line-dark); }
.on-light .process-step { border-top: 1px solid var(--line); }
.on-light .process-step:last-child { border-bottom: 1px solid var(--line); }
.process-step .idx { font-family: var(--font-display); font-size: 44px; color: var(--gold); font-weight: 800; line-height: 1; opacity: .85; }
.process-step h3 { font-size: 23px; margin-bottom: 9px; font-weight: 700; }
.process-step p { color: inherit; opacity: .78; font-size: 15px; max-width: 60ch; }
@media (max-width: 640px) { .process-step { grid-template-columns: 1fr; gap: 10px; } }

/* ---------- Comparison table ---------- */
.compare-table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.compare-table th, .compare-table td { text-align: left; padding: 18px 15px; border-bottom: 1px solid var(--line-dark); }
.compare-table th { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.55); font-weight: 400; }
.compare-table td:first-child, .compare-table th:first-child { font-family: var(--font-display); font-size: 18px; }
.compare-table tr:hover td { background: rgba(194,154,46,0.08); }
.table-scroll { overflow-x: auto; }

/* ---------- FAQ ---------- */
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 24px 4px; cursor: pointer; font-weight: 600; font-size: 16.5px; }
.faq-q::after { content: '+'; font-family: var(--font-mono); font-size: 20px; color: var(--gold); transition: transform .2s; flex-shrink:0; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .28s ease; font-size: 15px; color: #514E45; }
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 24px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.gallery-grid .g-item { aspect-ratio: 1; overflow: hidden; cursor: pointer; }
.gallery-grid .g-item img { width:100%; height:100%; object-fit:cover; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.gallery-grid .g-item:hover img { transform: scale(1.1); }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: repeat(2,1fr); } }
.gallery-filters { display:flex; gap: 10px; flex-wrap: wrap; margin-bottom: 38px; }
.gfilter { font-family: var(--font-mono); font-size: 11.5px; text-transform: uppercase; letter-spacing:.05em; padding: 10px 18px; border: 1px solid var(--line); background: transparent; cursor: pointer; }
.gfilter.active, .gfilter:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }

/* ---------- Form ---------- */
.quote-panel { background: var(--basalt); color: var(--bone); padding: 52px; position: relative; }
.quote-panel h2 { color: var(--bone); font-size: 32px; font-weight: 700; }
.quote-panel p { color: rgba(255,255,255,.72); margin-top: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.form-grid .full { grid-column: 1/-1; }
.form-grid label { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing:.06em; color: var(--gold-light); display:block; margin-bottom: 9px; }
.form-grid input, .form-grid textarea, .form-grid select {
  width: 100%; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.25);
  color: var(--bone); padding: 14px 15px; font-family: var(--font-body); font-size: 15px; border-radius: 0;
}
.form-grid input::placeholder, .form-grid textarea::placeholder { color: rgba(255,255,255,.4); }
.form-grid textarea { resize: vertical; min-height: 100px; }
.form-note { font-size: 12.5px; color: rgba(255,255,255,.55); margin-top: 8px; }
.form-submit { margin-top: 28px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } .quote-panel { padding: 32px 24px; } }

/* ---------- Testimonial ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial { padding: 30px; background: var(--paper); border: 1px solid var(--line); }
.testimonial .stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.testimonial p { font-size: 15px; font-style: italic; margin: 18px 0 0; color: #33322a; }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }

/* ---------- Locations ---------- */
.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { font-family: var(--font-mono); font-size: 12px; padding: 10px 16px; border: 1px solid var(--line); }

/* ---------- Footer ---------- */
.site-footer { background: var(--basalt); color: rgba(255,255,255,0.8); padding: 76px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 54px; border-bottom: 1px solid var(--line-dark); }
.footer-grid h4 { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing:.08em; color: var(--gold-light); margin-bottom: 20px; font-weight:400;}
.footer-grid ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap: 12px; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-brand .word { font-family: var(--font-display); font-size: 25px; color: var(--bone); font-weight: 500; }
.footer-brand p { font-size: 14px; margin: 18px 0; max-width: 30ch; color: rgba(255,255,255,0.62); }
.footer-bottom { display:flex; justify-content: space-between; align-items:center; padding: 24px 0; font-size: 12px; flex-wrap: wrap; gap: 10px; font-family: var(--font-mono); }
.footer-bottom a { margin-left: 20px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Misc ---------- */
.cta-band { background: var(--basalt); color: var(--bone); padding: 68px 0; text-align:center; }
.cta-band h2 { font-size: clamp(28px,3.8vw,42px); font-weight: 700; color: var(--bone); }
.cta-band .btn-primary { background: var(--bone); color: var(--basalt); margin-top: 28px; }
.cta-band .btn-primary:hover { background: var(--oxide-light); color: var(--bone); }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 36px; } }
.check-list { list-style:none; padding:0; margin: 24px 0 0; display:flex; flex-direction:column; gap:13px; }
.check-list li { display:flex; gap: 13px; font-size: 15px; align-items:flex-start; }
.check-list li::before { content:'—'; color: var(--gold); font-weight:700; flex-shrink:0; }

.breadcrumb { font-family: var(--font-mono); font-size: 11.5px; color: rgba(255,255,255,.6); padding: 28px 0 0; }
.breadcrumb a:hover { color: var(--gold-light); }

.page-hero { background: var(--basalt); color: var(--bone); padding: 22px 0 68px; }
.page-hero h1 { font-size: clamp(38px,5.2vw,62px); margin-top: 16px; font-weight: 700; letter-spacing:-0.02em; }
.page-hero p { color: rgba(255,255,255,.72); max-width: 60ch; margin-top: 18px; font-size: 16.5px; }

/* ---------- Value pillars (2026 addition) ---------- */
.pillar-row { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.pillar { background: var(--paper); border: 1px solid var(--line); padding: 34px 28px; }
.pillar .pn { font-family: var(--font-mono); font-size: 11px; color: var(--gold); letter-spacing:.05em; }
.pillar h3 { font-size: 21px; margin: 14px 0 10px; font-weight: 700; }
.pillar p { font-size: 14.5px; color: #514E45; }
@media (max-width: 800px) { .pillar-row { grid-template-columns: 1fr; } }

/* ---------- Funnel page additions ---------- */
.fact-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.fact { border: 1px solid var(--line); padding: 24px; background: var(--paper); }
.fact .fn { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing:.06em; color: var(--gold); }
.fact .fv { font-family: var(--font-display); font-size: 26px; margin-top: 10px; font-weight: 700; }
.fact .fd { font-size: 13px; color: #514E45; margin-top: 6px; }
@media (max-width: 900px) { .fact-grid { grid-template-columns: repeat(2,1fr); } }

.procon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.procon { border: 1px solid var(--line); padding: 30px; background: var(--paper); }
.procon h3 { font-size: 19px; margin-bottom: 16px; }
.procon.pro h3 { color: var(--moss); }
.procon.con h3 { color: var(--oxide); }
.procon ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.procon li { font-size: 14.5px; padding-left: 20px; position: relative; }
.procon.pro li::before { content:'+'; position:absolute; left:0; color: var(--moss); font-weight:700; }
.procon.con li::before { content:'\2212'; position:absolute; left:0; color: var(--oxide); font-weight:700; }
@media (max-width: 700px) { .procon-grid { grid-template-columns: 1fr; } }

.local-callout { border: 1px solid var(--line); border-left: 3px solid var(--gold); padding: 26px 30px; background: var(--bone-dim); font-size: 15px; }
.local-callout strong { color: var(--oxide); }

.town-chip-row { display: flex; flex-wrap: wrap; gap: 9px; }
.town-chip-row a.chip:hover { background: var(--ink); color: var(--bone); border-color: var(--ink); }
