/* ============================================================
   Southside Woodshop — Demo Design System
   Priya Raman (ds-web-designer) · 2026-05-24
   Mobile-first. No web fonts. No dependencies.
   ============================================================ */

:root {
  /* Wood-tone palette */
  --cream: #f5f0e6;
  --parchment: #fbf8f1;
  --bronze: #8a7a55;
  --bronze-dark: #6e6243;
  --walnut: #3d2914;
  --walnut-soft: #5a3d24;
  --charcoal: #1a1a1a;
  --ink: #2a2a2a;
  --muted: #6a6a6a;
  --border: #d8cdb0;
  --border-soft: #e8e1cf;
  --white: #ffffff;

  /* Typography */
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  /* Type scale (mobile-first) */
  --fs-xs: 0.8125rem;   /* 13px */
  --fs-sm: 0.9375rem;   /* 15px */
  --fs-base: 1.0625rem; /* 17px */
  --fs-lg: 1.1875rem;   /* 19px */
  --fs-xl: 1.375rem;    /* 22px */
  --fs-2xl: 1.625rem;   /* 26px */
  --fs-3xl: 1.875rem;   /* 30px */
  --fs-4xl: 2.125rem;   /* 34px */

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* Layout */
  --content-max: 1200px;
  --content-narrow: 760px;
  --radius: 4px;
  --radius-lg: 8px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 640px) {
  :root {
    --fs-2xl: 2rem;       /* 32px */
    --fs-3xl: 2.375rem;   /* 38px */
    --fs-4xl: 2.75rem;    /* 44px */
  }
}

@media (min-width: 768px) {
  :root {
    --fs-base: 1.125rem;
    --fs-lg: 1.375rem;
    --fs-xl: 1.875rem;
    --fs-2xl: 2.5rem;
    --fs-3xl: 3.25rem;
    --fs-4xl: 4rem;
  }
}

/* ============================================================
   Reset & Base
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--ink);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--charcoal);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 var(--sp-4) 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

h1 { font-size: var(--fs-4xl); }
h2 { font-size: var(--fs-3xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

p { margin: 0 0 var(--sp-4) 0; }

a {
  color: var(--walnut);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  transition: color 0.15s var(--ease);
}
a:hover, a:focus-visible { color: var(--bronze); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--bronze);
  outline-offset: 2px;
}

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

::selection { background: var(--bronze); color: var(--white); }

/* Skip link */
.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--charcoal); color: var(--white);
  padding: var(--sp-3) var(--sp-4);
  z-index: 100; text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ============================================================
   Layout primitives
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
@media (min-width: 768px) { .container { padding-inline: var(--sp-7); } }

.container-narrow {
  width: 100%;
  max-width: var(--content-narrow);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
@media (min-width: 768px) { .container-narrow { padding-inline: var(--sp-7); } }

.section { padding-block: var(--sp-8); }
@media (min-width: 768px) { .section { padding-block: var(--sp-9); } }

.section-tight { padding-block: var(--sp-6); }

.section-dark { background: var(--charcoal); color: var(--cream); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }
.section-dark a { color: var(--cream); }
.section-dark a:hover, .section-dark a:focus-visible { color: var(--bronze); }

.section-bronze { background: var(--bronze); color: var(--cream); }
.section-bronze h1, .section-bronze h2, .section-bronze h3 { color: var(--white); }

.section-cream { background: var(--cream); }

/* ============================================================
   Header / Navigation
   ============================================================ */

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--parchment);
  border-bottom: 1px solid var(--border-soft);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background-color: rgba(251, 248, 241, 0.92);
}

.site-header .container {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 64px;
  padding-block: var(--sp-3);
}

.brand {
  font-family: var(--serif);
  font-size: var(--fs-lg);
  color: var(--charcoal);
  text-decoration: none;
  letter-spacing: 0.02em;
  font-weight: 400;
  line-height: 1;
}
.brand:hover, .brand:focus-visible { color: var(--walnut); }
.brand .brand-mark {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--bronze);
  text-transform: uppercase;
  margin-bottom: 2px;
}

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--border);
  color: var(--charcoal); cursor: pointer;
  width: 44px; height: 44px;
  border-radius: var(--radius);
}
.nav-toggle:hover { background: var(--cream); }
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: currentColor;
  position: relative;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }

.primary-nav {
  display: none;
}

.primary-nav ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: var(--sp-6); align-items: center;
}

.primary-nav a {
  font-family: var(--sans);
  font-size: var(--fs-sm);
  color: var(--charcoal);
  text-decoration: none;
  font-weight: 500;
  padding-block: var(--sp-2);
}
.primary-nav a:hover, .primary-nav a:focus-visible {
  color: var(--bronze);
}
.primary-nav a.active {
  color: var(--bronze);
  border-bottom: 1px solid var(--bronze);
}

.header-phone {
  display: none;
  font-family: var(--sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  padding: var(--sp-2) var(--sp-4);
  border: 1px solid var(--charcoal);
  border-radius: var(--radius);
  min-height: 44px;
  align-items: center;
}
.header-phone:hover { background: var(--charcoal); color: var(--cream); }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; }
  .header-phone { display: inline-flex; }
}

/* Mobile nav drawer */
.mobile-drawer {
  position: fixed; inset: 64px 0 0 0; z-index: 49;
  background: var(--parchment);
  transform: translateX(100%);
  transition: transform 0.25s var(--ease);
  overflow-y: auto;
  padding: var(--sp-6) var(--sp-5);
}
.mobile-drawer.open { transform: translateX(0); }
.mobile-drawer ul {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0;
}
.mobile-drawer li { border-bottom: 1px solid var(--border-soft); }
.mobile-drawer a {
  display: block;
  font-family: var(--serif);
  font-size: var(--fs-xl);
  color: var(--charcoal);
  text-decoration: none;
  padding: var(--sp-4) 0;
  min-height: 44px;
}
.mobile-drawer .drawer-contact {
  margin-top: var(--sp-6);
  padding-top: var(--sp-6);
  border-top: 2px solid var(--border);
}
.mobile-drawer .drawer-contact a {
  font-family: var(--sans);
  font-size: var(--fs-base);
  padding: var(--sp-3) 0;
  border-bottom: none;
  min-height: 44px;
  display: flex; align-items: center;
}

@media (min-width: 1024px) {
  .mobile-drawer { display: none; }
}

/* ============================================================
   Buttons
   ============================================================ */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  padding: var(--sp-3) var(--sp-5);
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.15s var(--ease);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--charcoal);
  color: var(--cream);
  border-color: var(--charcoal);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--walnut);
  border-color: var(--walnut);
  color: var(--cream);
}

.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--charcoal);
}
.btn-ghost:hover, .btn-ghost:focus-visible {
  background: var(--charcoal);
  color: var(--cream);
}

.btn-bronze {
  background: var(--bronze);
  color: var(--white);
  border-color: var(--bronze);
}
.btn-bronze:hover, .btn-bronze:focus-visible {
  background: var(--bronze-dark);
  border-color: var(--bronze-dark);
  color: var(--white);
}

.btn-on-dark {
  background: var(--cream);
  color: var(--charcoal);
  border-color: var(--cream);
}
.btn-on-dark:hover, .btn-on-dark:focus-visible {
  background: var(--bronze);
  border-color: var(--bronze);
  color: var(--white);
}

.btn-large { font-size: var(--fs-base); padding: var(--sp-4) var(--sp-6); min-height: 56px; }

/* ============================================================
   Hero
   ============================================================ */

.hero {
  position: relative;
  min-height: 70vh;
  display: flex; align-items: center;
  background: linear-gradient(180deg, #2a1d10 0%, #3d2914 50%, #5a3d24 100%);
  color: var(--cream);
  overflow: hidden;
}
.hero::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at top right, rgba(138, 122, 85, 0.4), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(245, 240, 230, 0.08), transparent 50%);
  pointer-events: none;
  z-index: 1;
}
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.55;
  filter: brightness(0.65);
}
.hero-with-image::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30, 20, 12, 0.45) 0%, rgba(30, 20, 12, 0.75) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; padding-block: var(--sp-8); }
.hero-eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: var(--sp-4);
}
.hero h1 {
  color: var(--cream);
  max-width: 20ch;
  margin-bottom: var(--sp-5);
}
.hero p.lede {
  font-size: var(--fs-lg);
  max-width: 50ch;
  color: rgba(245, 240, 230, 0.85);
  line-height: 1.5;
  margin-bottom: var(--sp-6);
  overflow-wrap: break-word;
}
.hero-cta { display: flex; flex-direction: column; gap: var(--sp-3); align-items: stretch; }
.hero-cta .btn { width: 100%; }
@media (min-width: 640px) {
  .hero-cta { flex-direction: row; flex-wrap: wrap; align-items: center; }
  .hero-cta .btn { width: auto; }
}

.hero-mini {
  min-height: 40vh;
}
.hero-mini h1 { font-size: var(--fs-3xl); max-width: 24ch; }

/* ============================================================
   Page header (smaller hero for inner pages)
   ============================================================ */

.page-header {
  background: var(--charcoal);
  color: var(--cream);
  padding-block: var(--sp-7);
}
@media (min-width: 768px) { .page-header { padding-block: var(--sp-8); } }
.page-header h1 { color: var(--cream); margin-bottom: var(--sp-3); }
.page-header p.lede {
  font-size: var(--fs-lg);
  color: rgba(245, 240, 230, 0.8);
  max-width: 60ch;
  margin: 0;
  overflow-wrap: break-word;
}
.page-header .eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: var(--sp-3);
}

/* ============================================================
   Grid utilities
   ============================================================ */

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

/* ============================================================
   Section header
   ============================================================ */

.section-header {
  text-align: center;
  margin-bottom: var(--sp-7);
}
.section-header.left { text-align: left; }
.section-header .eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: var(--sp-3);
}
.section-header h2 { margin-bottom: var(--sp-3); }
.section-header p {
  font-size: var(--fs-lg);
  max-width: 55ch;
  margin-inline: auto;
  color: var(--muted);
}
.section-header.left p { margin-inline: 0; }

/* ============================================================
   Product cards (homepage feature grid)
   ============================================================ */

.product-card {
  display: flex; flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  text-decoration: none;
  color: inherit;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.08);
}
.product-card .placeholder { aspect-ratio: 4 / 3; }
.product-card .pc-body { padding: var(--sp-5); }
.product-card h3 { margin-bottom: var(--sp-2); }
.product-card p { color: var(--muted); margin-bottom: var(--sp-3); }
.product-card .pc-link {
  font-family: var(--sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--walnut);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.product-card:hover .pc-link { color: var(--bronze); }

/* ============================================================
   Placeholder image system (wood-tone gradient blocks)
   ============================================================ */

.placeholder {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #5a3d24 0%, #8a6d4a 50%, #3d2914 100%);
  overflow: hidden;
}
.placeholder::before {
  content: ""; position: absolute; inset: 0;
  background:
    repeating-linear-gradient(180deg,
      rgba(0,0,0,0.04) 0px,
      rgba(0,0,0,0.04) 1px,
      transparent 1px,
      transparent 8px);
  pointer-events: none;
}
.placeholder .ph-label {
  position: absolute; left: var(--sp-4); bottom: var(--sp-4);
  font-family: var(--sans);
  font-size: var(--fs-xs);
  color: rgba(245, 240, 230, 0.95);
  background: rgba(0, 0, 0, 0.5);
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  max-width: 90%;
  z-index: 2;
}
.placeholder img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}

/* Wood-tone variants */
.placeholder-walnut    { background: linear-gradient(135deg, #2a1810 0%, #4a2e1a 50%, #6b4423 100%); }
.placeholder-maple     { background: linear-gradient(135deg, #b8915a 0%, #d4b07a 50%, #9a7440 100%); }
.placeholder-cherry    { background: linear-gradient(135deg, #6b3019 0%, #8f4525 50%, #5a2616 100%); }
.placeholder-teak      { background: linear-gradient(135deg, #8a6038 0%, #b08555 50%, #6e4a2a 100%); }
.placeholder-zebrawood { background: linear-gradient(135deg, #5a4020 0%, #c0a070 30%, #3a2810 60%, #b09060 100%); }
.placeholder-mahogany  { background: linear-gradient(135deg, #4a1f10 0%, #6e3520 50%, #8f4a30 100%); }
.placeholder-oak       { background: linear-gradient(135deg, #8a6840 0%, #a8855a 50%, #6e5230 100%); }
.placeholder-jatoba    { background: linear-gradient(135deg, #5a2218 0%, #7e3520 50%, #4a1810 100%); }
.placeholder-sapele    { background: linear-gradient(135deg, #4a2618 0%, #6e3a22 50%, #3a1c10 100%); }
.placeholder-shedua    { background: linear-gradient(135deg, #3d2614 0%, #5a3a20 50%, #2a180a 100%); }
.placeholder-hickory   { background: linear-gradient(135deg, #8a6038 0%, #a87a4a 50%, #6e4a2a 100%); }

.placeholder-hero { aspect-ratio: 16 / 9; }
.placeholder-tall { aspect-ratio: 3 / 4; }
.placeholder-wide { aspect-ratio: 21 / 9; }
.placeholder-square { aspect-ratio: 1 / 1; }

/* ============================================================
   Warranty / Stripe sections
   ============================================================ */

.stripe {
  background: var(--charcoal);
  color: var(--cream);
  padding-block: var(--sp-8);
}
.stripe h2 { color: var(--cream); font-size: var(--fs-2xl); }
.stripe-inner {
  display: flex; flex-direction: column; gap: var(--sp-5);
  align-items: flex-start;
}
.stripe-inner p { color: rgba(245, 240, 230, 0.85); max-width: 50ch; }
@media (min-width: 768px) {
  .stripe-inner {
    flex-direction: row; align-items: center; justify-content: space-between;
  }
  .stripe-inner > div { flex: 1; }
  .stripe-inner > div:last-child { flex: 0 0 auto; }
}

/* ============================================================
   Process steps
   ============================================================ */

.process-step {
  text-align: center;
  padding: var(--sp-5);
}
.process-step .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: var(--bronze);
  color: var(--white);
  font-family: var(--serif);
  font-size: var(--fs-xl);
  border-radius: 50%;
  margin-bottom: var(--sp-4);
}
.process-step h3 { font-size: var(--fs-lg); margin-bottom: var(--sp-3); }
.process-step p { color: var(--muted); }

/* ============================================================
   Stat / callout
   ============================================================ */

.callout {
  background: var(--cream);
  border-left: 3px solid var(--bronze);
  padding: var(--sp-5);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.callout .callout-num {
  font-family: var(--serif);
  font-size: var(--fs-3xl);
  color: var(--walnut);
  display: block;
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.callout .callout-label {
  font-family: var(--sans);
  font-size: var(--fs-sm);
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* ============================================================
   Gallery
   ============================================================ */

.gallery-filters {
  display: flex; gap: var(--sp-2); flex-wrap: wrap;
  margin-bottom: var(--sp-6);
}
.gallery-filter {
  font-family: var(--sans);
  font-size: var(--fs-sm);
  background: transparent;
  border: 1px solid var(--border);
  color: var(--charcoal);
  padding: var(--sp-2) var(--sp-3);
  min-height: 44px;
  border-radius: var(--radius);
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .gallery-filter { padding: var(--sp-2) var(--sp-4); }
}
.gallery-filter:hover { background: var(--cream); }
.gallery-filter.active { background: var(--charcoal); color: var(--cream); border-color: var(--charcoal); }

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

.gallery-item {
  position: relative;
  text-decoration: none; color: inherit;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
}
.gallery-item .placeholder { aspect-ratio: 1 / 1; }
.gallery-item .gi-caption {
  padding: var(--sp-3) 0 0 0;
}
.gallery-item .gi-title {
  font-family: var(--sans);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--charcoal);
  display: block;
  margin-bottom: 2px;
}
.gallery-item .gi-meta {
  font-family: var(--sans);
  font-size: var(--fs-xs);
  color: var(--muted);
}

/* ============================================================
   Wood species grid
   ============================================================ */

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

.species-card {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.species-card .placeholder { aspect-ratio: 16 / 9; }
.species-card .sc-body { padding: var(--sp-4); }
.species-card h3 { font-size: var(--fs-base); margin-bottom: 2px; }
.species-card p { font-size: var(--fs-sm); color: var(--muted); margin: 0; }

/* ============================================================
   FAQ / Accordion
   ============================================================ */

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: var(--sp-5) 0;
}
.faq-item:first-child { padding-top: 0; }
.faq-q {
  font-family: var(--serif);
  font-size: var(--fs-lg);
  color: var(--charcoal);
  margin-bottom: var(--sp-3);
  font-weight: 400;
}
.faq-a { color: var(--ink); margin: 0; }

/* ============================================================
   Forms
   ============================================================ */

.form {
  display: flex; flex-direction: column; gap: var(--sp-4);
}
.form-row {
  display: flex; flex-direction: column; gap: var(--sp-4);
}
@media (min-width: 640px) {
  .form-row { flex-direction: row; }
  .form-row > * { flex: 1; }
}

.field {
  display: flex; flex-direction: column; gap: var(--sp-2);
}
.field label {
  font-family: var(--sans);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--charcoal);
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: var(--fs-base);
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--sp-3) var(--sp-4);
  min-height: 48px;
  width: 100%;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--bronze);
  outline: 2px solid var(--bronze);
  outline-offset: -1px;
}

/* ============================================================
   Contact info block
   ============================================================ */

.contact-info {
  display: flex; flex-direction: column; gap: var(--sp-4);
  padding: var(--sp-5);
  background: var(--cream);
  border-radius: var(--radius-lg);
}
.contact-info-item {
  display: flex; flex-direction: column;
}
.contact-info-label {
  font-family: var(--sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bronze);
  margin-bottom: var(--sp-1);
}
.contact-info-value {
  font-family: var(--serif);
  font-size: var(--fs-lg);
  color: var(--charcoal);
  text-decoration: none;
}

/* ============================================================
   Footer
   ============================================================ */

.site-footer {
  background: var(--charcoal);
  color: rgba(245, 240, 230, 0.8);
  padding-block: var(--sp-8) var(--sp-6);
  margin-top: var(--sp-8);
}
.site-footer h4 {
  color: var(--cream);
  font-family: var(--sans);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.site-footer .footer-grid {
  display: grid; gap: var(--sp-6);
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .site-footer .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .site-footer .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.site-footer .footer-brand {
  font-family: var(--serif);
  font-size: var(--fs-xl);
  color: var(--cream);
  margin-bottom: var(--sp-3);
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: var(--sp-2); }
.site-footer a {
  color: rgba(245, 240, 230, 0.8);
  text-decoration: none;
  padding-block: var(--sp-1);
  display: inline-block;
}
.site-footer a:hover, .site-footer a:focus-visible { color: var(--bronze); }
.site-footer .footer-legal {
  margin-top: var(--sp-7);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(245, 240, 230, 0.15);
  font-size: var(--fs-xs);
  color: rgba(245, 240, 230, 0.5);
  display: flex; flex-direction: column; gap: var(--sp-2);
  justify-content: space-between;
}
@media (min-width: 640px) {
  .site-footer .footer-legal { flex-direction: row; }
}

/* ============================================================
   Sticky mobile CTA
   ============================================================ */

.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  background: var(--charcoal);
  border-top: 1px solid var(--walnut);
  padding: var(--sp-3) var(--sp-5);
  display: flex; gap: var(--sp-3);
}
.mobile-cta .btn { flex: 1; min-height: 48px; font-size: var(--fs-sm); }

@media (min-width: 1024px) {
  .mobile-cta { display: none; }
}

body { padding-bottom: 80px; }
@media (min-width: 1024px) { body { padding-bottom: 0; } }

/* ============================================================
   Demo banner
   ============================================================ */

.demo-banner {
  background: #fff7d6;
  border-bottom: 1px solid #e8d56b;
  color: #6b5800;
  font-family: var(--sans);
  font-size: 0.75rem;
  text-align: center;
  padding: var(--sp-2) var(--sp-4);
  letter-spacing: 0.02em;
  line-height: 1.4;
}
.demo-banner strong { font-weight: 700; }

/* ============================================================
   Utilities
   ============================================================ */

.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mb-0 { margin-bottom: 0; }
.mt-6 { margin-top: var(--sp-6); }
.no-bottom-padding { padding-bottom: 0; }
