/* ==========================================================================
   Field's Timber Supplies — Design Tokens & Base
   ========================================================================== */

:root {
  /* Brand colors — steel grey accent (from the yard/roof steel) + deep navy */
  --timber-900: #20242A;
  --timber-800: #323A42;
  --timber-700: #4A545E;
  --timber-600: #5E6A75;
  --timber-500: #8B96A0;
  --timber-100: #E4E8EB;
  --timber-50:  #F2F4F6;

  --navy-900: #0E1B2B;
  --navy-800: #16283F;
  --navy-700: #1E3A5F;
  --navy-600: #2A4F7C;

  --cream-50: #FBF8F3;
  --white: #FFFFFF;

  --ink-900: #1C1B19;
  --ink-700: #3A362F;
  --ink-500: #6B6459;
  --ink-300: #A79E8F;

  --border: #E7DECD;
  --border-strong: #D8CBB2;

  --success-700: #2E6B3E;
  --success-100: #E4F1E6;

  /* Type scale */
  --font-head: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 3rem;
  --fs-4xl: 3.75rem;

  /* Spacing (8pt rhythm) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 16px;
  --sp-4: 24px;
  --sp-5: 32px;
  --sp-6: 48px;
  --sp-7: 64px;
  --sp-8: 96px;

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

  --shadow-sm: 0 1px 2px rgba(28, 27, 25, 0.06), 0 1px 3px rgba(28, 27, 25, 0.08);
  --shadow-md: 0 4px 10px rgba(28, 27, 25, 0.08), 0 2px 4px rgba(28, 27, 25, 0.06);
  --shadow-lg: 0 20px 40px -12px rgba(14, 27, 43, 0.25);

  --container: 1200px;
  --header-h: 76px;
}

/* Reset ------------------------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--cream-50);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
h1, h2, h3, h4, p, figure { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

:focus-visible {
  outline: 3px solid var(--navy-600);
  outline-offset: 2px;
}

.icon { flex-shrink: 0; }

/* Layout helpers ----------------------------------------------------------*/
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-4);
}
@media (min-width: 768px) {
  .container { padding-inline: var(--sp-6); }
}

.section { padding-block: var(--sp-7); }
@media (min-width: 900px) { .section { padding-block: var(--sp-8); } }
.section--tight { padding-block: var(--sp-6); }
.section--navy { background: var(--navy-900); color: var(--white); }
.section--cream { background: var(--timber-50); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-head);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--timber-700);
  margin-bottom: var(--sp-2);
}
.section--navy .eyebrow, .section--dark .eyebrow { color: var(--timber-500); }

.section-head {
  max-width: 620px;
  margin-bottom: var(--sp-6);
}
.section-head--center { margin-inline: auto; text-align: center; }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; color: var(--ink-900); line-height: 1.15; }
.section--navy h2, .section--navy h3 { color: var(--white); }

h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-lg); }
@media (min-width: 768px) { h2 { font-size: var(--fs-3xl); } }

.lede { font-size: var(--fs-md); color: var(--ink-700); }
.section--navy .lede { color: #C7CEDA; }
.muted { color: var(--ink-500); }

.grid { display: grid; gap: var(--sp-4); }
@media (min-width: 640px) { .grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) {
  .grid--3 { grid-template-columns: repeat(3, 1fr); }
  .grid--4 { grid-template-columns: repeat(4, 1fr); }
}

/* Buttons ------------------------------------------------------------------*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 13px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-sm);
  border: 2px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
  min-height: 48px;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.98); }

.btn--primary { background: var(--timber-700); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--timber-800); box-shadow: var(--shadow-md); }

.btn--navy { background: var(--navy-700); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--navy:hover { background: var(--navy-800); box-shadow: var(--shadow-md); }

.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn--outline:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn--outline-dark { background: transparent; color: var(--ink-900); border-color: var(--border-strong); }
.btn--outline-dark:hover { background: var(--timber-50); border-color: var(--timber-500); }

.btn--block { width: 100%; }
.btn--sm { padding: 9px 18px; min-height: 40px; font-size: var(--fs-xs); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 243, 1);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  min-height: var(--header-h);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  min-height: var(--header-h);
}
.brand { display: flex; align-items: center; gap: var(--sp-2); }
.brand-logo { height: 64px; width: auto; }

.header-topline {
  display: none;
  background: var(--navy-900);
  color: #C7CEDA;
  font-size: var(--fs-xs);
}
@media (min-width: 900px) { .header-topline { display: block; } }
.header-topline .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 40px;
}
.topline-links { display: flex; gap: var(--sp-5); }
.topline-links a, .topline-links span { display: inline-flex; align-items: center; gap: 6px; color: #C7CEDA; }
.topline-links a:hover { color: var(--white); }

.main-nav {
  display: none;
  align-items: center;
  gap: var(--sp-5);
}
@media (min-width: 1000px) { .main-nav { display: flex; } }
.main-nav a {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--ink-700);
  padding-block: 6px;
  border-bottom: 2px solid transparent;
  transition: color 150ms ease, border-color 150ms ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--timber-700); border-color: var(--timber-700); }

.header-actions { display: flex; align-items: center; gap: var(--sp-3); }
.header-call {
  display: none;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--ink-900);
}
@media (min-width: 1000px) { .header-call { display: inline-flex; } }
.header-call .icon { color: var(--timber-700); }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: transparent;
  border: 1px solid var(--border-strong);
  color: var(--ink-900);
}
@media (min-width: 1000px) { .nav-toggle { display: none; } }

.mobile-nav {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.mobile-nav.is-open { display: block; }
@media (min-width: 1000px) { .mobile-nav { display: none !important; } }
.mobile-nav .container { padding-block: var(--sp-3); display: flex; flex-direction: column; gap: var(--sp-1); }
.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  font-family: var(--font-head);
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  min-height: 44px;
}
.mobile-nav .btn { margin-top: var(--sp-3); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--timber-50) 0%, var(--cream-50) 65%);
  padding-block: var(--sp-7);
}
@media (min-width: 900px) { .hero { padding-block: var(--sp-8); } }
.hero-grid {
  display: grid;
  gap: var(--sp-6);
  align-items: center;
}
@media (min-width: 960px) { .hero-grid { grid-template-columns: 1.05fr 0.95fr; gap: var(--sp-7); } }

.hero h1 { font-size: var(--fs-3xl); margin-bottom: var(--sp-3); }
@media (min-width: 768px) { .hero h1 { font-size: var(--fs-4xl); } }
.hero h1 em { font-style: normal; color: var(--timber-700); }

.hero-lede { font-size: var(--fs-md); color: var(--ink-700); max-width: 46ch; margin-bottom: var(--sp-5); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-6); }

.hero-trust { display: flex; flex-wrap: wrap; gap: var(--sp-5); }
.hero-trust-item { display: flex; align-items: center; gap: 10px; font-size: var(--fs-sm); font-weight: 600; color: var(--ink-700); }
.hero-trust-item .icon { color: var(--success-700); }

.hero-art { position: relative; }
.hero-art svg { width: 100%; height: auto; }
.hero-badge {
  position: absolute;
  bottom: -10px;
  left: -10px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-3) var(--sp-4);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  max-width: 240px;
}
@media (min-width: 640px) { .hero-badge { left: -28px; bottom: -18px; } }
.hero-badge-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-md);
  background: var(--timber-100);
  color: var(--timber-700);
  display: flex; align-items: center; justify-content: center;
}
.hero-badge strong { display: block; font-family: var(--font-head); font-size: var(--fs-md); line-height: 1.1; }
.hero-badge span { font-size: var(--fs-xs); color: var(--ink-500); }

.hero--photo {
  background:
    linear-gradient(90deg, rgba(14,27,43,0.90) 0%, rgba(14,27,43,0.78) 45%, rgba(14,27,43,0.45) 100%),
    url('../assets/hero-bg.jpg') center 55%/cover no-repeat;
  min-height: 480px;
  display: flex;
  align-items: center;
}
@media (min-width: 900px) { .hero--photo { min-height: 600px; } }
.hero--photo .hero-grid { grid-template-columns: 1fr; }
.hero--photo .hero-art { display: none; }
.hero--photo .eyebrow { color: var(--timber-500); }
.hero--photo h1 { color: var(--white); }
.hero--photo h1 em { color: var(--timber-100); }
.hero--photo .hero-lede { color: rgba(255,255,255,0.85); }
.hero--photo .hero-trust-item { color: rgba(255,255,255,0.92); }
.hero--photo .hero-trust-item .icon { color: var(--timber-100); }

/* ==========================================================================
   Stats strip
   ========================================================================== */
.stats-strip {
  background: var(--navy-900);
  color: var(--white);
}
.stats-strip .grid { padding-block: var(--sp-5); }
.stat { text-align: center; padding-inline: var(--sp-2); }
.stat strong { display: block; font-family: var(--font-head); font-size: var(--fs-2xl); color: var(--timber-500); }
.stat span { font-size: var(--fs-xs); color: #C7CEDA; text-transform: uppercase; letter-spacing: 0.06em; }

/* ==========================================================================
   Cards — product categories
   ========================================================================== */
.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
  height: 100%;
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--timber-500); }
.cat-card-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--timber-100);
  color: var(--timber-700);
  display: flex; align-items: center; justify-content: center;
}
.cat-card h3 { font-size: var(--fs-md); }
.cat-card p { color: var(--ink-500); font-size: var(--fs-sm); flex-grow: 1; }
.cat-card-link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-head); font-weight: 600; color: var(--timber-700); font-size: var(--fs-sm); }
.cat-card-link .icon { transition: transform 180ms ease; width: 16px; height: 16px; }
.cat-card:hover .cat-card-link .icon { transform: translateX(4px); }

/* Feature list ------------------------------------------------------------*/
.feature {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
}
.feature-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: var(--radius-md);
  background: var(--navy-700);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.feature h4 { font-size: var(--fs-md); margin-bottom: 4px; }
.feature p { color: var(--ink-500); font-size: var(--fs-sm); }

/* Testimonials --------------------------------------------------------------*/
.testimonial {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.stars { display: flex; gap: 4px; color: var(--timber-600); }
.testimonial p.quote { font-size: var(--fs-md); color: var(--ink-900); flex-grow: 1; }
.testimonial-author { display: flex; align-items: center; gap: var(--sp-3); }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy-700); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700;
}
.author-name { font-family: var(--font-head); font-weight: 600; font-size: var(--fs-sm); }
.author-role { font-size: var(--fs-xs); color: var(--ink-500); }

/* CTA banner ----------------------------------------------------------------*/
.cta-banner {
  background: var(--timber-700);
  background-image: radial-gradient(circle at 15% 20%, rgba(255,255,255,0.10), transparent 40%),
                     radial-gradient(circle at 85% 80%, rgba(255,255,255,0.08), transparent 45%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  align-items: center;
  justify-content: space-between;
}
.cta-banner h2 { color: var(--white); font-size: var(--fs-xl); margin-bottom: 6px; }
.cta-banner p { color: #F3E4D5; }
.cta-actions { display: flex; gap: var(--sp-3); flex-wrap: wrap; }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--navy-900); color: #C7CEDA; }
.footer-top { padding-block: var(--sp-7); }
.footer-grid { display: grid; gap: var(--sp-6); }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-brand-logo { height: 60px; width: auto; margin-bottom: var(--sp-3); filter: brightness(0) invert(1); }
.footer-about p { font-size: var(--fs-sm); max-width: 32ch; margin-bottom: var(--sp-4); }

.footer-heading { font-family: var(--font-head); color: var(--white); font-size: var(--fs-sm); font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: var(--sp-3); }
.footer-links li { margin-bottom: var(--sp-2); }
.footer-links a { font-size: var(--fs-sm); transition: color 150ms ease; }
.footer-links a:hover { color: var(--white); }

.footer-contact li { display: flex; gap: 10px; margin-bottom: var(--sp-3); font-size: var(--fs-sm); align-items: flex-start; }
.footer-contact .icon { color: var(--timber-500); margin-top: 2px; }
.footer-contact a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-block: var(--sp-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: #8C99AC;
}
.footer-bottom-links { display: flex; gap: var(--sp-4); }
.footer-bottom-links a:hover { color: var(--white); }

/* ==========================================================================
   Page header (inner pages)
   ========================================================================== */
.page-header {
  background: var(--navy-900);
  color: var(--white);
  padding-block: var(--sp-6);
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: var(--fs-xs); color: #9AA6B8; margin-bottom: var(--sp-3); }
.breadcrumb a:hover { color: var(--white); }
.page-header h1 { color: var(--white); font-size: var(--fs-2xl); }
.page-header p { color: #C7CEDA; margin-top: var(--sp-2); max-width: 60ch; }

.legal-content { max-width: 760px; margin-inline: auto; }
.legal-content .updated { color: var(--ink-500); font-size: var(--fs-sm); margin-bottom: var(--sp-6); }
.legal-content h2 { font-size: var(--fs-xl); margin-top: var(--sp-7); margin-bottom: var(--sp-3); }
.legal-content h2:first-of-type { margin-top: 0; }
.legal-content p { color: var(--ink-700); margin-bottom: var(--sp-4); }
.legal-content ul { list-style: disc; padding-left: 1.25em; margin-bottom: var(--sp-4); }
.legal-content li { color: var(--ink-700); margin-bottom: var(--sp-2); }
.legal-content a { color: var(--timber-700); text-decoration: underline; }
.legal-content strong { color: var(--ink-900); }

/* ==========================================================================
   Products page
   ========================================================================== */
.cat-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(251, 248, 243, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
}
.cat-nav .container { display: flex; gap: var(--sp-2); padding-block: var(--sp-3); }
.cat-nav a {
  flex-shrink: 0;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-sm);
  border: 1px solid var(--border-strong);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.cat-nav a:hover, .cat-nav a.is-active { background: var(--timber-700); color: var(--white); border-color: var(--timber-700); }

.product-section { scroll-margin-top: calc(var(--header-h) + 70px); }
.product-section + .product-section { margin-top: var(--sp-7); }
.product-section-head { display: flex; align-items: center; gap: var(--sp-3); margin-bottom: var(--sp-5); }
.product-section-icon {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  background: var(--timber-100); color: var(--timber-700);
  display: flex; align-items: center; justify-content: center;
}

.product-section-head--photo {
  background-image: linear-gradient(90deg, rgba(14,27,43,0.88) 0%, rgba(14,27,43,0.65) 55%, rgba(14,27,43,0.35) 100%), url('../assets/pallet-stacks.jpg');
  background-position: center 42%;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
}
.product-section-head--photo .product-section-icon { background: rgba(255,255,255,0.15); color: var(--white); }
.product-section-head--photo h2 { color: var(--white); }
.product-section-head--photo .muted { color: rgba(255,255,255,0.85); }

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 200ms ease, transform 200ms ease;
}
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-card-media {
  aspect-ratio: 4 / 3;
  background: var(--timber-50);
  display: flex; align-items: center; justify-content: center;
  color: var(--timber-600);
  border-bottom: 1px solid var(--border);
}
.product-card-media svg { width: 46%; height: 46%; }
.product-card-media--photo {
  background-image: linear-gradient(180deg, rgba(14,27,43,0.10) 0%, rgba(14,27,43,0.55) 100%), url('../assets/pallet-stacks.jpg');
  background-position: var(--photo-pos, center 35%);
  background-size: cover;
  background-repeat: no-repeat;
}
.product-card-media--photo svg { display: none; }
.product-card-body { padding: var(--sp-4); display: flex; flex-direction: column; gap: var(--sp-2); flex-grow: 1; }
.product-card h3 { font-size: var(--fs-md); }
.product-card .specs { display: flex; flex-wrap: wrap; gap: 6px; margin-block: 4px; }
.spec-chip {
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--navy-700);
  background: var(--timber-50);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}
.product-card p.desc { color: var(--ink-500); font-size: var(--fs-sm); flex-grow: 1; }
.product-card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: var(--sp-2); }
.product-card-foot .btn { flex: 1; }

.bespoke-panel {
  display: grid;
  gap: var(--sp-6);
  align-items: center;
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
}
.bespoke-panel .lede, .bespoke-panel p { color: #C7CEDA; }
@media (min-width: 860px) { .bespoke-panel { grid-template-columns: 1fr 1fr; } }
.bespoke-steps { display: flex; flex-direction: column; gap: var(--sp-3); margin-block: var(--sp-4); }
.bespoke-step { display: flex; gap: var(--sp-3); align-items: flex-start; }
.bespoke-step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--timber-700); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; font-size: var(--fs-sm);
  flex-shrink: 0;
}

/* ==========================================================================
   Quote / Contact page
   ========================================================================== */
.quote-layout {
  display: grid;
  gap: var(--sp-6);
  align-items: start;
}
@media (min-width: 960px) { .quote-layout { grid-template-columns: 1.3fr 0.9fr; } }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
}
@media (min-width: 640px) { .form-card { padding: var(--sp-6); } }

.form-row { display: grid; gap: var(--sp-4); margin-bottom: var(--sp-4); }
@media (min-width: 640px) { .form-row--2 { grid-template-columns: 1fr 1fr; } }

.field label {
  display: block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--fs-sm);
  margin-bottom: 6px;
}
.field .req { color: var(--timber-700); }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 12px 14px;
  min-height: 48px;
  background: var(--white);
  color: var(--ink-900);
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--timber-600);
  box-shadow: 0 0 0 4px var(--timber-100);
  outline: none;
}
.field-hint { font-size: var(--fs-xs); color: var(--ink-500); margin-top: 4px; }
.field-error { font-size: var(--fs-xs); color: #B3261E; margin-top: 4px; display: none; align-items: center; gap: 4px; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #B3261E; }
.field.has-error .field-error { display: flex; }

.checkbox-row { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-row input { width: 20px; height: 20px; min-height: auto; margin-top: 2px; accent-color: var(--timber-700); }
.checkbox-row label { font-size: var(--fs-sm); font-weight: 400; color: var(--ink-700); }

.form-success {
  display: none;
  text-align: center;
  padding: var(--sp-6) var(--sp-4);
}
.form-success.is-visible { display: block; }
.form-success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--success-100); color: var(--success-700);
  display: flex; align-items: center; justify-content: center;
  margin-inline: auto; margin-bottom: var(--sp-4);
}
.quote-form.is-hidden { display: none; }

.info-card {
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  margin-bottom: var(--sp-4);
}
.info-card h3 { color: var(--white); margin-bottom: var(--sp-3); }
.info-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: var(--sp-3); font-size: var(--fs-sm); color: #C7CEDA; }
.info-list li:last-child { margin-bottom: 0; }
.info-list .icon { color: var(--timber-500); margin-top: 2px; }
.info-list strong { display: block; color: var(--white); }

.hours-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
}
.hours-row { display: flex; justify-content: space-between; padding-block: 8px; font-size: var(--fs-sm); border-bottom: 1px solid var(--border); }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { font-weight: 600; }
.hours-row.today { color: var(--timber-700); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/10;
  margin-top: var(--sp-4);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* Utility ------------------------------------------------------------------*/
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 8px; top: -60px;
  background: var(--navy-900); color: var(--white);
  padding: 10px 16px; border-radius: var(--radius-md);
  z-index: 200; transition: top 150ms ease;
}
.skip-link:focus { top: 8px; }
