/* ============================================================
   BRUMMITT EMBROIDERY — Production Stylesheet
   Design tokens + components + page-specific rules
   ============================================================ */

/* Design tokens — verbatim from colors_and_type.css */
:root {
  --color-navy:        #022130;
  --color-cream:       #F2EDE1;
  --color-copper:      #B8733E;

  --color-slate:       #4A5568;
  --color-light-gray:  #E2E0DB;
  --color-white:       #FFFFFF;

  --color-navy-hover:  #053654;
  --color-navy-light:  #0a4a6e;

  --color-copper-hover: #9e6133;
  --color-copper-light: #d4955a;

  --surface-page:      var(--color-cream);
  --surface-card:      var(--color-white);
  --surface-nav:       var(--color-navy);
  --surface-hero:      var(--color-navy);
  --surface-footer:    var(--color-navy);

  --text-heading:      var(--color-navy);
  --text-body:         var(--color-slate);
  --text-muted:        #718096;
  --text-on-dark:      var(--color-cream);
  --text-on-copper:    var(--color-white);
  --text-link:         var(--color-copper);

  --border-default:    var(--color-light-gray);
  --border-accent:     var(--color-copper);

  --font-sans:    'Inter', Calibri, Arial, sans-serif;
  --font-serif:   'Source Serif 4', Georgia, Cambria, serif;

  --text-xs:      12px;
  --text-sm:      14px;
  --text-base:    16px;
  --text-md:      18px;
  --text-lg:      20px;
  --text-xl:      24px;
  --text-2xl:     30px;
  --text-3xl:     36px;
  --text-4xl:     48px;

  --weight-regular:    400;
  --weight-medium:     500;
  --weight-semibold:   600;
  --weight-bold:       700;

  --leading-tight:     1.2;
  --leading-snug:      1.35;
  --leading-normal:    1.5;
  --leading-relaxed:   1.65;

  --tracking-normal:   0;
  --tracking-wide:     0.02em;
  --tracking-label:    0.05em;

  --space-1:    4px;
  --space-2:    8px;
  --space-3:    12px;
  --space-4:    16px;
  --space-5:    20px;
  --space-6:    24px;
  --space-8:    32px;
  --space-10:   40px;
  --space-12:   48px;
  --space-16:   64px;
  --space-20:   80px;
  --space-24:   96px;
  --space-28:   112px;
  --space-32:   128px;

  --radius-sm:   4px;
  --radius-md:   6px;
  --radius-lg:   8px;
  --radius-xl:   12px;
  --radius-full: 9999px;

  --shadow-sm:   0 1px 3px rgba(2, 33, 48, 0.08);
  --shadow-md:   0 2px 8px rgba(2, 33, 48, 0.10);
  --shadow-lg:   0 4px 16px rgba(2, 33, 48, 0.14);
  --shadow-xl:   0 8px 32px rgba(2, 33, 48, 0.18);

  --transition-fast:   0.12s ease;
  --transition-base:   0.18s ease;
  --transition-slow:   0.3s ease;

  --max-width:         1200px;
  --max-width-narrow:  1100px;
}

/* ============================================================
   RESET / BASE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-serif);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--text-body);
  background-color: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-sans);
  color: var(--text-heading);
}
h1 { font-size: var(--text-4xl); font-weight: var(--weight-bold); line-height: var(--leading-tight); }
h2 { font-size: var(--text-2xl); font-weight: var(--weight-semibold); line-height: var(--leading-snug); }
h3 { font-size: var(--text-lg); font-weight: var(--weight-medium); line-height: var(--leading-snug); color: var(--text-body); }
h4 { font-size: var(--text-base); font-weight: var(--weight-semibold); }

p {
  font-family: var(--font-serif);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: var(--text-body);
  max-width: 65ch;
  text-wrap: pretty;
}

a {
  color: var(--text-link);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { text-decoration: underline; }

:focus-visible {
  outline: 2px solid var(--color-copper);
  outline-offset: 2px;
  border-radius: 3px;
}

.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;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: var(--weight-semibold);
  line-height: 1;
  padding: 13px 28px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base), transform var(--transition-fast);
}
.btn:hover { text-decoration: none; }
.btn:active { transform: scale(0.98); }

.btn-primary { background: var(--color-navy); color: var(--color-white); }
.btn-primary:hover { background: var(--color-navy-hover); color: var(--color-white); }

.btn-cta { background: var(--color-copper); color: var(--color-white); }
.btn-cta:hover { background: var(--color-copper-hover); color: var(--color-white); }

.btn-outline { background: transparent; color: var(--color-navy); border: 1.5px solid var(--color-navy); }
.btn-outline:hover { background: var(--color-navy); color: var(--color-white); }

.btn-ghost-light {
  background: transparent;
  color: var(--color-cream);
  border: 1.5px solid rgba(242, 237, 225, 0.40);
}
.btn-ghost-light:hover { border-color: var(--color-cream); color: var(--color-cream); }

.btn-on-copper { background: var(--color-navy); color: var(--color-cream); }
.btn-on-copper:hover { background: var(--color-navy-hover); color: var(--color-cream); }

.btn-sm { font-size: 13px; padding: 9px 18px; }
.btn-lg { font-size: 16px; padding: 14px 32px; }

/* ============================================================
   NAV
   ============================================================ */

.nav {
  background: var(--surface-nav);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-xl);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}
.nav-logo {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  text-decoration: none;
}
.nav-logo:hover { text-decoration: none; }
.nav-logo img {
  height: 36px;
  width: 36px;
  border-radius: 50%;
}
.nav-logo-text {
  color: var(--color-cream);
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  letter-spacing: var(--tracking-wide);
}

.nav-links {
  display: flex;
  gap: 2px;
  flex: 1;
  justify-content: center;
}
.nav-link {
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(242, 237, 225, 0.75);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.nav-link:hover {
  color: var(--color-cream);
  text-decoration: none;
  background: rgba(242, 237, 225, 0.06);
}
.nav-link.active {
  color: var(--color-cream);
  background: rgba(242, 237, 225, 0.10);
}

.nav-cta {
  background: var(--color-copper);
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  padding: 9px 18px;
  border-radius: 5px;
  text-decoration: none;
  white-space: nowrap;
  transition: background var(--transition-fast);
}
.nav-cta:hover { background: var(--color-copper-hover); color: var(--color-white); text-decoration: none; }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-cream);
  padding: 8px;
  border-radius: 4px;
}
.nav-mobile-toggle svg { display: block; }

/* ============================================================
   HERO
   ============================================================ */

.hero {
  background: var(--surface-hero);
  min-height: 480px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.10;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(184, 115, 62, 0.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  padding: 80px 32px;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.hero-content {
  max-width: 580px;
  flex: 1;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: var(--space-4);
}
.hero-title {
  font-family: var(--font-sans);
  font-size: 52px;
  font-weight: var(--weight-bold);
  line-height: 1.1;
  color: var(--color-cream);
  margin-bottom: 20px;
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: var(--text-md);
  line-height: var(--leading-relaxed);
  color: rgba(242, 237, 225, 0.80);
  margin-bottom: var(--space-8);
  max-width: 48ch;
}
.hero-buttons {
  display: flex;
  gap: var(--space-3);
  flex-wrap: wrap;
}
.hero-badge {
  width: 200px;
  height: 200px;
  flex-shrink: 0;
  opacity: 0.18;
  margin-left: auto;
}
.hero-badge img { width: 100%; height: 100%; object-fit: contain; }

/* Inner-page slim hero */
.page-hero {
  background: var(--surface-hero);
  padding: 48px 32px;
}
.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: var(--space-4);
}
.page-hero-title {
  font-family: var(--font-sans);
  font-size: var(--text-3xl);
  font-weight: var(--weight-bold);
  line-height: 1.1;
  color: var(--color-cream);
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section {
  background: var(--surface-page);
  padding: 80px 32px;
}
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-inner-narrow { max-width: 760px; }
.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: var(--weight-bold);
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: var(--space-3);
}
.section-lede {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--color-slate);
  line-height: var(--leading-relaxed);
  max-width: 60ch;
  margin: 0 auto;
}

.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }

/* ============================================================
   CARDS — Service + Portfolio
   ============================================================ */

.service-card {
  background: var(--surface-card);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }

.service-detail-card {
  background: var(--surface-card);
  border-radius: 8px;
  box-shadow: var(--shadow-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition-base);
}
.service-detail-card:hover { box-shadow: var(--shadow-lg); }

.card-accent-line {
  width: 36px;
  height: 3px;
  background: var(--color-copper);
  border-radius: 2px;
}
.card-title {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--color-navy);
}
.service-detail-card .card-title { font-size: 18px; }
.card-body {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--color-slate);
  line-height: var(--leading-relaxed);
}
.card-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-copper);
  text-decoration: none;
  text-align: left;
  margin-top: auto;
  transition: color var(--transition-fast);
  align-self: flex-start;
}
.card-link:hover { color: var(--color-copper-hover); text-decoration: underline; }

/* Portfolio */
.portfolio-card {
  background: var(--surface-card);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: inherit;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}
.portfolio-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); text-decoration: none; }
.portfolio-img {
  height: 200px;
  background: var(--color-navy);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.portfolio-img img,
.portfolio-img picture {
  width: 100%; height: 100%; display: block;
}
.portfolio-img img { object-fit: cover; }
.portfolio-info {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cat-badge {
  display: inline-block;
  align-self: flex-start;
  color: var(--color-white);
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 9999px;
}
.cat-badge--Patches { background: var(--color-copper); }
.cat-badge--Creative { background: var(--color-slate); }
.cat-badge--Headwear { background: var(--color-navy-hover); }
.cat-badge--Corporate { background: var(--color-navy); }
.portfolio-label {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: var(--color-navy);
}

.filter-bar {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.filter-btn {
  background: var(--color-white);
  color: var(--color-slate);
  border: 1.5px solid var(--border-default);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  padding: 7px 16px;
  border-radius: 9999px;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
}
.filter-btn:hover { border-color: var(--color-navy); color: var(--color-navy); }
.filter-btn.active { background: var(--color-navy); color: var(--color-cream); border-color: var(--color-navy); }

/* ============================================================
   STATS BAR
   ============================================================ */

.stats-bar {
  background: var(--color-navy);
  padding: 40px 32px;
}
.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 24px;
}
.stat { text-align: center; }
.stat-val {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: var(--weight-bold);
  color: var(--color-cream);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  color: rgba(242, 237, 225, 0.6);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */

.testimonial {
  background: var(--color-navy);
  padding: 80px 32px;
}
.testimonial-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--color-copper);
  line-height: 0.6;
  margin-bottom: 24px;
}
.testimonial-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  color: var(--color-cream);
  line-height: var(--leading-relaxed);
  margin-bottom: 20px;
  max-width: none;
}
.testimonial-author {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: var(--weight-semibold);
  color: rgba(242, 237, 225, 0.55);
  letter-spacing: 0.04em;
}

/* ============================================================
   QUOTE CTA — copper section
   ============================================================ */

.quote-cta {
  background: var(--color-copper);
  padding: 80px 32px;
}
.quote-cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.quote-cta-title {
  font-family: var(--font-sans);
  font-size: 32px;
  font-weight: var(--weight-bold);
  color: var(--color-white);
  margin-bottom: 14px;
}
.quote-cta-body {
  font-family: var(--font-serif);
  font-size: var(--text-md);
  color: rgba(255, 255, 255, 0.85);
  line-height: var(--leading-relaxed);
  margin: 0 auto 28px;
  max-width: none;
}

/* ============================================================
   ABOUT page
   ============================================================ */

.about-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  flex-wrap: wrap;
}
.about-text { flex: 1; min-width: 260px; }
.about-text p { margin-bottom: 16px; max-width: none; }
.about-badge { width: 200px; flex-shrink: 0; }
.about-badge-frame {
  background: var(--color-navy);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-badge-frame img { width: 140px; height: 140px; object-fit: contain; }
.about-badge-caption {
  margin-top: 12px;
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-sans);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============================================================
   FORM
   ============================================================ */

.quote-form-section {
  background: var(--surface-page);
  padding: 64px 32px 96px;
}
.quote-form-inner {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
}
.quote-form-layout {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.quote-form-sidebar {
  width: 280px;
  flex-shrink: 0;
  position: relative;
}
.quote-form-sidebar-title {
  font-family: var(--font-sans);
  font-size: 30px;
  font-weight: var(--weight-bold);
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: 16px;
}
.quote-form-sidebar-body {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--color-slate);
  line-height: 1.7;
  max-width: none;
}
.quote-form-sidebar-divider {
  border-top: 1px solid var(--border-default);
  margin: 24px 0;
}
.contact-block { display: flex; flex-direction: column; gap: 6px; }
.contact-label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2px;
}
.contact-line {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-navy);
  font-weight: var(--weight-medium);
}
.contact-line a { color: inherit; }
.contact-line a:hover { color: var(--color-copper); text-decoration: none; }
.sidebar-badge {
  margin-top: 32px;
  opacity: 0.12;
}
.sidebar-badge img { width: 120px; height: 120px; object-fit: contain; }

.form {
  flex: 1;
  min-width: 300px;
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row-2 {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
  min-width: 200px;
}
.form-label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: var(--weight-semibold);
  color: var(--color-navy);
}
.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--color-slate);
  background: var(--color-white);
  border: 1.5px solid var(--border-default);
  border-radius: 5px;
  padding: 10px 12px;
  outline: none;
  width: 100%;
  transition: border-color var(--transition-fast);
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-navy);
}
.form-textarea {
  min-height: 120px;
  resize: vertical;
  font-family: var(--font-sans);
}
.form-submit {
  background: var(--color-navy);
  color: var(--color-cream);
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: var(--weight-semibold);
  padding: 13px 28px;
  border-radius: 5px;
  align-self: flex-start;
  transition: background var(--transition-fast);
}
.form-submit:hover { background: var(--color-navy-hover); }
.form-submit:disabled { opacity: 0.5; cursor: progress; }
.form-note {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--text-muted);
  margin-top: -8px;
}
.form-error {
  font-family: var(--font-sans);
  font-size: 13px;
  color: #c0392b;
}

/* Form success card */
.form-success {
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  padding: 64px 48px;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.form-success-icon {
  width: 56px;
  height: 56px;
  background: var(--color-navy);
  color: var(--color-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 8px;
}
.form-success-title {
  font-family: var(--font-sans);
  font-size: 26px;
  font-weight: var(--weight-bold);
  color: var(--color-navy);
}
.form-success-body {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--color-slate);
  line-height: var(--leading-relaxed);
  max-width: none;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--surface-footer);
  padding: 64px 32px 32px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-top {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 200px;
}
.footer-brand img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
}
.footer-brand-name {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
  color: var(--color-cream);
}
.footer-tagline {
  font-family: var(--font-serif);
  font-size: var(--text-sm);
  color: rgba(242, 237, 225, 0.55);
  line-height: 1.6;
  max-width: none;
}
.footer-cols {
  display: flex;
  gap: 48px;
  flex: 1;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 140px;
}
.footer-col-title {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-copper);
  margin-bottom: 4px;
}
.footer-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: rgba(242, 237, 225, 0.65);
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-link:hover { color: var(--color-cream); text-decoration: none; }
.footer-contact-item {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(242, 237, 225, 0.55);
  line-height: 1.6;
}
.footer-contact-item a { color: inherit; text-decoration: none; }
.footer-contact-item a:hover { color: var(--color-cream); }
.footer-divider {
  border-top: 1px solid rgba(242, 237, 225, 0.10);
  margin-bottom: 24px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy {
  font-family: var(--font-sans);
  font-size: 12px;
  color: rgba(242, 237, 225, 0.35);
}

/* ============================================================
   404 PAGE
   ============================================================ */

.notfound {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 32px;
  text-align: center;
}
.notfound-inner { max-width: 480px; }
.notfound-code {
  font-family: var(--font-sans);
  font-size: 88px;
  font-weight: var(--weight-bold);
  color: var(--color-copper);
  line-height: 1;
  margin-bottom: var(--space-3);
}
.notfound-title {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: var(--weight-bold);
  color: var(--color-navy);
  margin-bottom: var(--space-4);
}
.notfound-body { margin: 0 auto var(--space-6); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 900px) {
  .hero-title { font-size: 40px; }
  .hero-badge { display: none; }
  .hero-inner { padding: 64px 24px; }
}

@media (max-width: 768px) {
  /* Nav becomes hamburger */
  .nav-inner { padding: 0 20px; gap: 8px; }
  .nav-mobile-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--color-navy);
    flex-direction: column;
    gap: 0;
    padding: 8px 16px 16px;
    border-top: 1px solid rgba(242, 237, 225, 0.10);
    box-shadow: var(--shadow-lg);
    z-index: 99;
  }
  .nav-links.is-open { display: flex; }
  .nav-link {
    width: 100%;
    text-align: left;
    padding: 12px;
    border-radius: 4px;
  }
  .nav-cta { display: none; }
  .nav-logo-text { font-size: 14px; }

  .hero { min-height: 380px; }
  .hero-inner { padding: 56px 20px; }
  .hero-title { font-size: 34px; }
  .hero-sub { font-size: 16px; }

  .page-hero { padding: 36px 20px; }
  .page-hero-title { font-size: 28px; }

  .section { padding: 56px 20px; }
  .section-head { margin-bottom: 32px; }
  .section-title { font-size: 26px; }

  .stats-bar { padding: 32px 20px; }
  .stats-inner { gap: 24px; }

  .testimonial { padding: 56px 20px; }
  .testimonial-text { font-size: 18px; }

  .quote-cta { padding: 56px 20px; }
  .quote-cta-title { font-size: 26px; }

  .quote-form-section { padding: 48px 20px 64px; }
  .quote-form-layout { gap: 32px; }
  .quote-form-sidebar { width: 100%; }
  .form { padding: 24px; }
  .form-row-2 { flex-direction: column; gap: 20px; }

  .footer { padding: 48px 20px 24px; }
  .footer-top { gap: 32px; margin-bottom: 32px; }
  .footer-cols { gap: 28px; }

  .about-layout { gap: 32px; }
  .about-badge { width: 100%; max-width: 240px; margin: 0 auto; }
}

@media (max-width: 420px) {
  .hero-title { font-size: 28px; }
  .hero-buttons .btn { flex: 1; }
}

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