/**
 * Plumber Template
 * Aesthetic: Rugged & Trustworthy
 * Earth Color Palette: deep warm brown-black, copper, gold, warm white, green, taupe
 * Fonts: Playfair Display (display) + Lora (body)
 *
 * To customize for a client, change values in :root below.
 */

/* ============================================================
   TOKENS
   ============================================================ */

:root {
  /* Brand */
  --brand-dark:       #1A120B;
  --brand-dark-900:   #1A120B;
  --brand-dark-800:   #2C1E14;
  --brand-dark-700:   #3D2A1E;
  --brand-dark-600:   #4E3628;

  --brand-copper:     #C45C2A;
  --brand-copper-700: #9A4A22;
  --brand-copper-600: #C45C2A;
  --brand-copper-500: #D46832;
  --brand-copper-400: #E07840;

  --brand-yellow:     #F5A623;
  --brand-yellow-600: #D48A1A;
  --brand-yellow-500: #F5A623;
  --brand-yellow-400: #F7B84A;

  --brand-cream:      #FAF8F5;

  /* Neutrals */
  --brand-taupe:      #8B7355;
  --warm-50:  #FAF8F5;
  --warm-100: #F0EBE3;
  --warm-200: #E5DDD3;
  --warm-300: #D4C8B8;
  --warm-400: #B8AFA0;
  --warm-500: #9A9182;
  --warm-600: #7D6E5F;
  --warm-700: #6B5E4F;
  --warm-800: #4A3F34;
  --warm-900: #1A120B;

  /* Semantic — Light sections */
  --bg-primary:    var(--warm-50);
  --bg-secondary:  var(--warm-100);
  --bg-inverse:    var(--brand-dark-800);
  --text-primary:  var(--brand-dark-800);
  --text-secondary:var(--warm-700);
  --text-muted:    var(--brand-taupe);
  --text-inverse:  var(--brand-cream);
  --accent:        var(--brand-copper-600);
  --accent-hover:  var(--brand-copper-500);
  --accent-active: var(--brand-copper-700);
  --border:        var(--warm-300);
  --gold:          var(--brand-yellow-500);
  --taupe:         var(--brand-taupe);

  /* Dark section overrides */
  --dark-text:      var(--warm-50);
  --dark-text-sec:  var(--warm-300);
  --dark-accent:    var(--brand-copper-400);
  --dark-border:    rgba(245,166,35,0.15);

  /* Overlays */
  --overlay-dark:   rgba(26,18,11,0.82);
  --overlay-header: rgba(26,18,11,0.92);
  --overlay-mobile: rgba(26,18,11,0.97);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body:    'Lora', Georgia, 'Times New Roman', serif;

  /* Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  2rem;
  --text-3xl:  2.5rem;
  --text-4xl:  3.5rem;
  --text-5xl:  4.5rem;

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

  /* Layout */
  --max-width: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast:    150ms;
  --dur-base:    250ms;
  --dur-slow:    400ms;
  --dur-reveal:  700ms;
}

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

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

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

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol {
  list-style: none;
}

/* ============================================================
   UTILITY
   ============================================================ */

.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--space-7); }
}

.section {
  padding-block: var(--space-10);
}

@media (min-width: 768px) {
  .section { padding-block: var(--space-11); }
}

.section--dark {
  background: var(--bg-inverse);
  color: var(--dark-text);
}

.section--alt {
  background: var(--bg-secondary);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-8);
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: var(--space-3);
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  line-height: 1.15;
  color: inherit;
  margin-bottom: var(--space-4);
}

@media (min-width: 768px) {
  .section-title { font-size: var(--text-4xl); }
}

.section-desc {
  font-size: var(--text-md);
  color: var(--text-secondary);
  max-width: 55ch;
  margin-inline: auto;
  line-height: 1.6;
}

.section--dark .section-desc {
  color: var(--dark-text-sec);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  padding: var(--space-3) var(--space-5);
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease-out);
}

.btn-copper {
  background: var(--accent);
  color: var(--warm-50);
  border-color: var(--accent);
}

.btn-copper:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(196,92,42,0.3);
}

.btn-copper:active {
  background: var(--accent-active);
  transform: translateY(0);
}

.btn-ghost {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.btn-ghost:hover {
  background: rgba(196,92,42,0.08);
  border-color: var(--accent);
  color: var(--accent);
}

.btn-full {
  width: 100%;
}

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--dur-reveal) var(--ease-out),
              transform var(--dur-reveal) var(--ease-out);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding-block: var(--space-3);
  transition: background var(--dur-base) var(--ease-out),
              backdrop-filter var(--dur-base) var(--ease-out),
              box-shadow var(--dur-base) var(--ease-out);
}

.header.scrolled {
  background: var(--overlay-header);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-5);
}

@media (min-width: 768px) {
  .header-inner { padding-inline: var(--space-7); }
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--brand-cream);
}

.logo-mark {
  width: 40px;
  height: 40px;
}

.nav-list {
  display: none;
  gap: var(--space-6);
}

@media (min-width: 768px) {
  .nav-list {
    display: flex;
    align-items: center;
  }
}

.nav-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--warm-200);
  transition: color var(--dur-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-yellow);
  transition: width var(--dur-base) var(--ease-out);
}

.nav-link:hover,
.nav-link.active {
  color: var(--brand-cream);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.header-phone {
  display: none;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--brand-cream);
  padding: var(--space-2) var(--space-4);
  border: 1.5px solid var(--brand-yellow);
  border-radius: var(--radius-md);
  transition: all var(--dur-base);
}

.header-phone:hover {
  background: var(--brand-yellow);
  color: var(--brand-dark-900);
}

@media (min-width: 768px) {
  .header-phone { display: inline-flex; }
}

/* Mobile nav toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-2);
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
}

.nav-toggle-bar {
  width: 24px;
  height: 2px;
  background: var(--brand-cream);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease-out);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay */
.nav-list.open {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-7);
  position: fixed;
  inset: 0;
  background: var(--overlay-mobile);
  backdrop-filter: blur(8px);
  z-index: 99;
}

.nav-list.open .nav-link {
  font-size: var(--text-2xl);
  font-family: var(--font-display);
}

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

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--dark-text);
  overflow: hidden;
  padding-top: 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/hero-bg.svg') center center / cover no-repeat;
  z-index: 1;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    var(--overlay-dark) 0%,
    rgba(26,18,11,0.75) 40%,
    var(--overlay-dark) 100%
  );
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 800px;
  padding-inline: var(--space-5);
}

.hero-badge {
  display: inline-block;
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-yellow);
  border: 1px solid var(--dark-border);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-6);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--space-5);
}

@media (min-width: 768px) {
  .hero-heading { font-size: var(--text-5xl); }
}

.hero-line {
  display: block;
}

.hero-line--accent {
  color: var(--brand-copper-400);
}

.hero-sub {
  font-size: var(--text-md);
  color: var(--dark-text-sec);
  max-width: 55ch;
  margin-inline: auto;
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.hero-sub em {
  color: var(--brand-yellow);
  font-style: italic;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  justify-content: center;
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .hero-actions {
    flex-direction: row;
    gap: var(--space-5);
  }
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-5);
  align-items: center;
}

.hero-stat {
  text-align: center;
}

.hero-stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--brand-cream);
  line-height: 1;
}

.hero-stat-label {
  display: block;
  font-size: var(--text-sm);
  color: var(--dark-text-sec);
  margin-top: var(--space-1);
}

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--dark-border);
  display: none;
}

@media (min-width: 768px) {
  .hero-stat-divider { display: block; }
}

/* ============================================================
   SERVICES
   ============================================================ */

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  position: relative;
  transition: all var(--dur-base) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(26,18,11,0.1);
  border-color: var(--accent);
}

.service-card-marker {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 700;
  color: var(--warm-800);
  opacity: 0.2;
  line-height: 1;
}

.service-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-4);
  color: var(--accent);
}

.service-card-title {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--space-2);
  color: var(--text-primary);
}

.service-card-desc {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

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

.about {
  position: relative;
  overflow: hidden;
  color: var(--dark-text);
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/about-bg.svg') center center / cover no-repeat;
  z-index: 1;
}

.about::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
  z-index: 2;
}

.about .container {
  position: relative;
  z-index: 3;
}

.about-inner {
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

.about .section-desc {
  color: var(--dark-text-sec);
  margin-inline: auto;
}

.about-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-6);
  text-align: left;
}

.about-list li {
  padding-left: var(--space-4);
  border-left: 2px solid var(--gold);
}

.about-list strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: var(--space-1);
}

.about-list span {
  font-size: var(--text-sm);
  color: var(--dark-text-sec);
  line-height: 1.5;
}

/* ============================================================
   FAQ — Photo Background
   ============================================================ */

.faq {
  position: relative;
  overflow: hidden;
  color: var(--dark-text);
}

.faq::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/faq-bg.svg') center center / cover no-repeat;
  z-index: 1;
}

.faq::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--overlay-dark);
  z-index: 2;
}

.faq .container {
  position: relative;
  z-index: 3;
}

.faq .section-desc {
  color: var(--dark-text-sec);
}

.faq-item {
  background: rgba(26,18,11,0.5);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-4) var(--space-5);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: var(--text-md);
  font-weight: 600;
  color: var(--dark-text);
  transition: color var(--dur-fast);
}

.faq-trigger:hover {
  color: var(--gold);
}

.faq-trigger::after {
  content: '+';
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--gold);
  transition: transform var(--dur-base) var(--ease-out);
  flex-shrink: 0;
  margin-left: var(--space-4);
}

.faq-item.open .faq-trigger::after {
  transform: rotate(45deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}

.faq-item.open .faq-content {
  max-height: 300px;
}

.faq-content p {
  padding: 0 var(--space-5) var(--space-4);
  font-size: var(--text-base);
  color: var(--dark-text-sec);
  line-height: 1.6;
}

/* ============================================================
   REVIEWS
   ============================================================ */

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

.review-card {
  background: var(--bg-inverse);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: all var(--dur-base) var(--ease-out);
}

.review-card:hover {
  border-color: var(--brand-copper-400);
  transform: translateY(-4px);
}

.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: var(--space-4);
  color: var(--brand-yellow);
  font-size: var(--text-lg);
}

.review-card blockquote {
  font-size: var(--text-md);
  color: var(--dark-text);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  font-style: italic;
}

.review-card blockquote p::before {
  content: '"';
  color: var(--brand-copper-400);
  font-size: 1.5em;
  line-height: 0;
  margin-right: 2px;
}

.review-card figcaption {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--dark-text-sec);
}

.reviews-footer {
  text-align: center;
  margin-top: var(--space-8);
}

.reviews-footer a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--accent);
  font-weight: 600;
  font-size: var(--text-md);
  transition: color var(--dur-fast);
}

.reviews-footer a:hover {
  color: var(--accent-hover);
}

/* ============================================================
   CONTACT
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1.2fr 0.8fr; }
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: var(--text-base);
  padding: var(--space-3) var(--space-4);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--bg-primary);
  color: var(--text-primary);
  transition: border-color var(--dur-fast), box-shadow var(--dur-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196,92,42,0.15);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.required {
  color: var(--accent);
}

.contact-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.contact-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.contact-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--space-3);
  color: var(--text-primary);
}

.contact-card address,
.contact-card p {
  font-style: normal;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

.contact-card-note {
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid var(--border);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: var(--text-sm);
  padding-block: var(--space-2);
  border-bottom: 1px solid var(--border);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-value {
  font-weight: 600;
  color: var(--accent);
}

.contact-map iframe {
  width: 100%;
  height: 160px;
  border-radius: var(--radius-md);
  border: none;
  margin-top: var(--space-3);
}

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

.footer {
  background: var(--bg-inverse);
  color: var(--dark-text-sec);
  padding-block: var(--space-10);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-brand {
  max-width: 400px;
}

.footer-logo-link {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--brand-cream);
  margin-bottom: var(--space-4);
}

.footer-tagline {
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--dark-text-sec);
}

.footer-tagline em {
  color: var(--brand-yellow);
  font-style: italic;
}

.footer-nav h4,
.footer-contact-info h4 {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--brand-cream);
  margin-bottom: var(--space-4);
}

.footer-nav ul,
.footer-contact-info ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-nav a,
.footer-contact-info a {
  font-size: var(--text-sm);
  color: var(--dark-text-sec);
  transition: color var(--dur-fast);
}

.footer-nav a:hover,
.footer-contact-info a:hover {
  color: var(--brand-cream);
}

.footer-contact-info address {
  font-size: var(--text-sm);
  font-style: normal;
  color: var(--dark-text-sec);
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid var(--dark-border);
  padding-top: var(--space-6);
  text-align: center;
  font-size: var(--text-sm);
  color: var(--dark-text-sec);
}

/* ============================================================
   THANKS & 404
   ============================================================ */

.page-simple {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-8);
  background: var(--bg-inverse);
  color: var(--dark-text);
}

.page-simple h1 {
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  font-weight: 700;
  margin-bottom: var(--space-4);
  color: var(--brand-cream);
}

.page-simple p {
  font-size: var(--text-md);
  color: var(--dark-text-sec);
  max-width: 50ch;
  margin-bottom: var(--space-6);
  line-height: 1.6;
}

.page-simple .btn {
  margin-top: var(--space-2);
}
