/* ============================================================
   Magnolia Sand & Gravel — Stylesheet
   Fonts: Kanit (display, uppercase) + DM Sans (body)
   Palette: Green #006633 · Gray #999999 · White
   ============================================================ */

:root {
  --green: #006633;
  --green-dark: #004d26;
  --green-darker: #003a1d;
  --green-tint: #eef4f0;
  --gray: #999999;
  --gray-light: #c9c9c9;
  --ink: #20231f;
  --ink-soft: #4a4f48;
  --cream: #f4f2ec;
  --cream-dark: #e9e6dd;
  --white: #ffffff;

  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 6px 20px rgba(0,0,0,.10);
  --shadow-lg: 0 18px 50px rgba(0,0,0,.18);

  --radius: 0px;
  --radius-lg: 0px;

  --maxw: 1240px;
  --nav-h: 84px;

  --font-display: "Bevan", Georgia, "Times New Roman", serif;
  --font-body: "Arimo", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin: 0;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55em;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .04em;
  font-size: .92rem;
  padding: 14px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .12s ease, border-color .18s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: translateY(1px); }
.btn-green { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-outline { background: transparent; color: var(--green); border-color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-white { background: #fff; color: var(--green); }
.btn-white:hover { background: var(--green-tint); }
.btn-ghost-light { background: rgba(255,255,255,.12); color:#fff; border-color: rgba(255,255,255,.7); backdrop-filter: blur(2px); }
.btn-ghost-light:hover { background:#fff; color: var(--green); border-color:#fff; }
.btn-lg { padding: 17px 34px; font-size: 1rem; }

.btn svg { width: 1.1em; height: 1.1em; }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: 0 2px 14px rgba(0,0,0,.05);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 20px;
}
.nav-logo img { height: 62px; width: auto; }
.nav-logo { display: flex; align-items: center; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .04em;
  font-size: .95rem;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
  transition: color .15s ease;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--green);
  transition: right .22s ease;
}
.nav-links a:hover { color: var(--green); }
.nav-links a:hover::after { right: 0; }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--green);
  letter-spacing: .01em;
  white-space: nowrap;
}
.nav-phone svg { width: 18px; height: 18px; }
.nav-phone:hover { color: var(--green-dark); }

.nav-cta-group { display: flex; align-items: center; gap: 22px; }

/* burger + mobile phone (hidden on desktop) */
.nav-mobile { display: none; align-items: center; gap: 18px; }
.icon-phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
}
.icon-phone-btn svg { width: 20px; height: 20px; }
.burger {
  width: 46px; height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
}
.burger span {
  display: block;
  width: 28px; height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* mobile drawer */
.mobile-menu {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-lg);
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
  z-index: 99;
  max-height: calc(100vh - var(--nav-h));
  overflow-y: auto;
}
.mobile-menu.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu ul { list-style: none; margin: 0; padding: 8px 0; }
.mobile-menu a.m-link {
  display: block;
  font-family: var(--font-body);
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: .04em;
  font-size: 1.15rem;
  padding: 16px 28px;
  border-bottom: 1px solid var(--cream);
  color: var(--ink);
}
.mobile-menu a.m-link:hover { background: var(--cream); color: var(--green); }
.mobile-actions { padding: 20px 28px 26px; display: grid; gap: 12px; }
.mobile-actions .btn { width: 100%; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: clamp(560px, 82vh, 760px);
  display: flex;
  align-items: center;
  color: #fff;
  background: #2a2a2a;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 60%;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(0,40,18,.86) 0%, rgba(0,42,20,.62) 42%, rgba(20,18,10,.30) 100%);
}
.hero .wrap { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-weight: 500;
  font-size: .82rem;
  color: #cfe6d8;
  margin-bottom: 22px;
}
.hero-eyebrow::before { content: none; }
.hero h1 {
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  max-width: 19ch;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.hero h1 .accent { color: #ffffff; }
.hero-sub {
  font-size: clamp(1.05rem, 1.9vw, 1.3rem);
  max-width: 46ch;
  margin: 22px 0 34px;
  color: #eef3ef;
  line-height: 1.55;
  text-shadow: 0 1px 12px rgba(0,0,0,.3);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* trust strip below hero */
.trust-bar { background: var(--green); color: #fff; }
.trust-bar .wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px 28px;
  padding-top: 20px;
  padding-bottom: 20px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: .98rem;
}
.trust-item svg { width: 26px; height: 26px; flex: 0 0 auto; color: #bfe3cd; }
.trust-item strong { font-family: var(--font-body); text-transform: uppercase; font-weight: 600; letter-spacing:.02em; }

/* ============================================================
   SECTION SHELL
   ============================================================ */
section { scroll-margin-top: var(--nav-h); }
.sec { padding: clamp(64px, 9vw, 112px) 0; }
.sec-cream { background: var(--cream); }
.sec-green { background: var(--green-dark); color: #fff; }

.kicker {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-weight: 600;
  font-size: .8rem;
  color: var(--green);
  margin-bottom: 14px;
  display: block;
}
.sec-green .kicker { color: #bfe3cd; }
.sec-title {
  font-size: clamp(1.65rem, 3.4vw, 2.5rem);
  color: var(--ink);
  max-width: 20ch;
}
.sec-green .sec-title { color: #fff; }
.sec-head { margin-bottom: 52px; max-width: 760px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; max-width: 720px; }
.sec-head.center .sec-title { margin-left:auto; margin-right:auto; }
.sec-lead { font-size: 1.12rem; color: var(--ink-soft); margin-top: 18px; max-width: 60ch; }
.sec-green .sec-lead { color: #dceae1; }
.sec-head.center .sec-lead { margin-left:auto; margin-right:auto; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: stretch;
}
.about-media { position: relative; min-height: 440px; }
.about-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 10px solid #f4f2ed;
}
.about-badge {
  position: absolute;
  bottom: -26px; left: -26px;
  background: var(--green);
  color: #fff;
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 230px;
}
.about-badge .big { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; line-height: 1.05; }
.about-badge .small { font-size: .86rem; margin-top: 6px; display:block; color:#cfe6d8; }

.about-copy h2 { margin-bottom: 8px; }
.feature-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 26px;
}
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-weight: 500;
  font-size: .98rem;
}
.feature-list li svg { width: 21px; height: 21px; flex: 0 0 auto; color: var(--green); margin-top: 2px; }

/* ============================================================
   MATERIALS GRID
   ============================================================ */
.mat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.mat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.mat-thumb { aspect-ratio: 4/3; overflow: hidden; }
.mat-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.mat-card:hover .mat-thumb img { transform: scale(1.06); }
.mat-body { padding: 20px 20px 24px; display: flex; flex-direction: column; flex: 1; }
.mat-body h3 { font-size: 1.18rem; color: var(--ink); margin-bottom: 8px; line-height: 1.12; }
.mat-body p { font-size: .92rem; color: var(--ink-soft); margin: 0; line-height: 1.5; }

.mat-soon {
  grid-column: 1 / -1;
  background: linear-gradient(100deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.mat-soon .tag {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .76rem;
  font-weight: 600;
  color: #bfe3cd;
  display: block;
  margin-bottom: 8px;
}
.mat-soon h3 { font-size: 1.5rem; margin-bottom: 8px; }
.mat-soon p { color: #dceae1; margin: 0; max-width: 60ch; font-size: .98rem; }

.mat-note { text-align: center; margin-top: 40px; color: var(--ink-soft); font-size: 1.02rem; }
.mat-note a { color: var(--green); font-weight: 600; }
.mat-note a:hover { text-decoration: underline; }

/* ============================================================
   DELIVERY (split with image)
   ============================================================ */
.delivery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.delivery-body { display: flex; flex-direction: column; }
.delivery-media { position: relative; align-self: stretch; min-height: 380px; }
.delivery-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border: 10px solid #f4f2ed; }
.chip-list { list-style: none; margin: 30px 0 36px; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 22px; }
.chip-list li { display: flex; align-items: center; gap: 11px; font-weight: 500; font-size: .98rem; }
.chip-list li svg { width: 20px; height: 20px; flex:0 0 auto; color: #bfe3cd; }
.sec-green .chip-list li { color: #eef3ef; }

/* ============================================================
   COMMERCIAL / RESIDENTIAL
   ============================================================ */
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.duo-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: 40px 38px 44px;
  box-shadow: var(--shadow-sm);
}
.duo-card .duo-icon {
  width: 58px; height: 58px;
  border-radius: var(--radius);
  background: var(--green-tint);
  color: var(--green);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.duo-card .duo-icon svg { width: 30px; height: 30px; }
.duo-card h3 { font-size: 1.5rem; color: var(--ink); margin-bottom: 18px; }
.duo-ul { list-style: none; margin: 0; padding: 0; columns: 2; column-gap: 28px; }
.duo-ul li { display: flex; align-items: flex-start; gap: 10px; font-size: .96rem; margin-bottom: 11px; break-inside: avoid; color: var(--ink-soft); }
.duo-ul li svg { width: 18px; height: 18px; flex:0 0 auto; color: var(--green); margin-top: 3px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.test-carousel { position: relative; }
.test-viewport { overflow: hidden; }
.test-track {
  display: flex;
  gap: 26px;
  transition: transform .42s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.test-track > .test-card { flex: 0 0 auto; }
.test-controls { display: flex; justify-content: center; gap: 14px; margin-top: 34px; }
.test-arrow {
  width: 54px; height: 54px;
  border-radius: 50%;
  border: 0;
  background: var(--green);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background .18s ease, opacity .18s ease;
}
.test-arrow svg { width: 24px; height: 24px; }
.test-arrow:hover { background: var(--green-dark); }
.test-arrow:disabled { opacity: .3; cursor: not-allowed; }
.test-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--cream-dark);
  display: flex;
  flex-direction: column;
}
.stars { display: flex; gap: 3px; margin-bottom: 18px; color: #e0a92b; }
.stars svg { width: 20px; height: 20px; }
.test-card blockquote { margin: 0 0 22px; font-size: 1.06rem; line-height: 1.6; color: var(--ink); font-style: italic; }
.test-card .test-by { font-family: var(--font-body); text-transform: uppercase; font-weight: 600; font-size: .86rem; letter-spacing: .04em; color: var(--green); }
.test-card .test-by span { display:block; font-family: var(--font-body); text-transform: none; letter-spacing: 0; font-weight: 400; color: var(--gray); font-size: .85rem; margin-top: 3px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--cream-dark); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 26px 52px 26px 0;
  position: relative;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 0;
  font-size: 1.15rem;
  color: var(--ink);
  line-height: 1.25;
}
.faq-q:hover { color: var(--green); }
.faq-q .plus {
  position: absolute;
  right: 6px; top: 50%;
  transform: translateY(-50%);
  width: 26px; height: 26px;
}
.faq-q .plus::before,
.faq-q .plus::after {
  content: ""; position: absolute; background: var(--green);
  left: 50%; top: 50%;
}
.faq-q .plus::before { width: 18px; height: 2.5px; transform: translate(-50%,-50%); }
.faq-q .plus::after { width: 2.5px; height: 18px; transform: translate(-50%,-50%); transition: transform .25s ease; }
.faq-q[aria-expanded="true"] .plus::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height .3s ease;
}
.faq-a-inner { padding: 0 52px 26px 0; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.65; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: start;
}
.info-block { margin-bottom: 30px; }
.info-block h3 {
  font-size: 1.05rem;
  color: var(--green);
  margin-bottom: 12px;
  letter-spacing: .04em;
}
.info-row { display: flex; align-items: flex-start; gap: 13px; margin-bottom: 9px; }
.info-row svg { width: 21px; height: 21px; flex:0 0 auto; color: var(--green); margin-top: 3px; }
.info-row .lbl { font-size: 1.02rem; color: var(--ink); }
.info-row a.lbl:hover { color: var(--green); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 7px 0; font-size: 1rem; border-bottom: 1px dashed var(--cream-dark); }
.hours-table td:first-child { color: var(--ink); font-weight: 500; }
.hours-table td:last-child { text-align: right; color: var(--ink-soft); }
.hours-table tr.closed td:last-child { color: var(--gray); }

.map-box {
  margin-top: 26px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
  max-width: 420px;
}
.map-box iframe { display: block; width: 100%; height: 240px; border: 0; }

/* form */
.form-card {
  background: #fff;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-md);
}
.form-card h3 { font-size: 1.5rem; color: var(--ink); margin-bottom: 6px; }
.form-card .form-sub { color: var(--ink-soft); font-size: .98rem; margin-bottom: 26px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-body);
  text-transform: uppercase;
  font-weight: 500;
  font-size: .76rem;
  letter-spacing: .06em;
  color: var(--ink-soft);
}
.field label .req { color: var(--green); }
.field input, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 13px 15px;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--ink);
  transition: border-color .15s ease, background .15s ease;
  width: 100%;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
}
.field textarea { resize: vertical; min-height: 110px; }
.form-card .btn { margin-top: 6px; width: 100%; }
.form-note { font-size: .82rem; color: var(--gray); margin-top: 14px; text-align: center; }
.form-success {
  display: none;
  background: var(--green-tint);
  border: 1.5px solid var(--green);
  color: var(--green-dark);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-weight: 500;
  margin-top: 18px;
}
.form-success.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--cream);
  color: #2c2f2b;
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-logo { background: none; padding: 0; display:inline-block; margin-bottom: 20px; }
.footer-logo img { height: 60px; width: auto; }
.footer-about p { color: #2c2f2b; font-size: .95rem; max-width: 38ch; }
.footer-col h4 { font-family: var(--font-body); font-weight: 700; text-transform: uppercase; color: #1c1f1c; font-size: 1rem; letter-spacing: .05em; margin-bottom: 18px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a, .footer-col .f-line { color: #2c2f2b; font-size: .95rem; }
.footer-col ul a:hover { color: #003a1d; }
.footer-col .f-line { display:flex; gap: 10px; align-items:flex-start; }
.footer-col .f-line svg { width: 18px; height: 18px; color: var(--green-darker); flex:0 0 auto; margin-top:3px; }
.social-row { display: flex; gap: 12px; margin-top: 6px; }
.social-row a {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(0,0,0,.55);
  display: flex; align-items: center; justify-content: center;
  transition: background .18s ease;
}
.social-row a:hover { background: var(--green); }
.social-row svg { width: 20px; height: 20px; color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(0,0,0,.18);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: .85rem;
  color: #3a3d38;
}
.footer-bottom a:hover { color: #003a1d; }
.footer-bottom .fb-links { display:flex; gap: 22px; }

/* Contact section — photo overlay background */
.contact-photo { position: relative; background: #1f231f; }
.contact-photo > .wrap { position: relative; z-index: 1; }
.contact-photo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(rgba(0,40,18,.85), rgba(14,17,11,.9)), url("../assets/hero-rock.jpg") center/cover no-repeat;
}
.contact-photo .sec-title { color: #fff; }
.contact-photo .sec-lead { color: #e4ece6; }
.contact-photo .kicker { color: #bfe3cd; }
.contact-photo .info-block h3 { color: #bfe3cd; }
.contact-photo .info-row .lbl { color: #eef3ef; }
.contact-photo .info-row a.lbl:hover { color: #fff; }
.contact-photo .info-row svg { color: #bfe3cd; }
.contact-photo .hours-table td { border-bottom-color: rgba(255,255,255,.18); }
.contact-photo .hours-table td:first-child { color: #fff; }
.contact-photo .hours-table td:last-child { color: #d7e2da; }
.contact-photo .hours-table tr.closed td:last-child { color: #9fb0a5; }
.contact-photo .map-box { border-color: rgba(255,255,255,.25); }

/* FAQ section background */
#faqs { background: #f4f2ed; }

/* Widen the Materials intro paragraph ~10% */
#services .sec-head.center { max-width: 792px; }
#services .sec-lead { max-width: 66ch; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .mat-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 940px) {
  :root { --nav-h: 72px; }
  .nav-right { display: none; }
  .nav-mobile { display: flex; }
  .nav-logo img { height: 51px; }

  .about-grid { grid-template-columns: 1fr; gap: 56px; }
  .about-badge { left: auto; right: 20px; }
  .delivery-grid { grid-template-columns: 1fr; }
  .delivery-media { min-height: 300px; order: -1; }
  .test-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .wrap { padding: 0 20px; }
  .mat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .mat-body { padding: 16px 16px 20px; }
  .mat-body h3 { font-size: 1.05rem; }
  .feature-list { grid-template-columns: 1fr; }
  .chip-list { grid-template-columns: 1fr; }
  .duo-ul { columns: 1; }
  .form-grid { grid-template-columns: 1fr; }
  .mat-soon { padding: 26px 24px; }
  .trust-bar .wrap { justify-content: flex-start; }
}

@media (max-width: 460px) {
  .mat-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .about-badge { position: static; margin-top: 18px; max-width: none; right:auto; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
