/* Rand Contracting — Static Site Stylesheet
   Design: Warm Residential — Lora headings, Nunito Sans body
   Colors: Navy #1E2A3A (headings), Olive #7A6A2A (accent/CTA), Off-white #F8F5F0 (bg)
*/

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Nunito Sans', sans-serif;
  color: #1E2A3A;
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: 'Lora', serif;
  line-height: 1.2;
  color: #1E2A3A;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }
.section-title { text-align: center; margin-bottom: 0.75rem; }
.section-subtitle {
  text-align: center;
  color: #5a6a7a;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7A6A2A;
  margin-bottom: 1rem;
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 0 0 2rem;
  height: 1px;
  background: #7A6A2A;
}
.bg-light { background: #F8F5F0; }
.bg-dark { background: #1E2A3A; color: #fff; }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: #fff; }
.text-center { text-align: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  text-decoration: none;
  line-height: 1;
}
.btn:focus-visible {
  outline: 3px solid #7A6A2A;
  outline-offset: 3px;
}
.btn-primary {
  background: #7A6A2A;
  color: #fff;
  border-color: #7A6A2A;
}
.btn-primary:hover {
  background: #5c4f1f;
  border-color: #5c4f1f;
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline:hover {
  background: #fff;
  color: #1E2A3A;
}
.btn-outline-dark {
  background: transparent;
  color: #1E2A3A;
  border-color: #1E2A3A;
}
.btn-outline-dark:hover {
  background: #1E2A3A;
  color: #fff;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: #7A6A2A;
  color: #fff;
  padding: 0.5rem 1rem;
  font-weight: 700;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ===== TOP BAR ===== */
.topbar {
  background: #1E2A3A;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.topbar a { color: #fff; }
.topbar a:hover { color: #c8b87a; }
.topbar a:focus-visible { outline: 2px solid #c8b87a; outline-offset: 2px; }

/* ===== HEADER / NAV ===== */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e8e0d0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.site-logo img { height: 56px; width: auto; }
.site-logo:focus-visible { outline: 2px solid #7A6A2A; outline-offset: 3px; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-menu a {
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1E2A3A;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-menu a:hover, .nav-menu a[aria-current="page"] {
  color: #7A6A2A;
  background: #f5f0e8;
}
.nav-menu a:focus-visible { outline: 2px solid #7A6A2A; outline-offset: 2px; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 0.3rem; }
.nav-dropdown > a::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.2s;
}
.nav-dropdown:hover > a::after,
.nav-dropdown:focus-within > a::after { transform: rotate(180deg); }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  background: #fff;
  border: 1px solid #e8e0d0;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  min-width: 220px;
  padding: 0.5rem 0;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1E2A3A;
  border-radius: 0;
  transition: background 0.15s, color 0.15s;
}
.dropdown-menu a:hover { background: #f5f0e8; color: #7A6A2A; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: #1E2A3A;
}
.nav-toggle:focus-visible { outline: 2px solid #7A6A2A; outline-offset: 2px; }
.nav-toggle svg { display: block; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; align-items: center; }
  .nav-cta { display: none; }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e8e0d0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0.25rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { padding: 0.75rem 1rem; border-radius: 4px; }
  .nav-dropdown .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    border-left: 3px solid #e8e0d0;
    margin-left: 1rem;
    padding: 0.25rem 0;
    border-radius: 0;
  }
  .nav-dropdown:hover .dropdown-menu,
  .nav-dropdown:focus-within .dropdown-menu,
  .nav-dropdown.open .dropdown-menu { display: block; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: #1E2A3A;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  opacity: 0.45;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  color: #fff;
  padding: 4rem 0;
}
.hero-content h1 { color: #fff; margin-bottom: 1.25rem; }
.hero-content h1 span { color: #c8b87a; display: block; }
.hero-content p { font-size: 1.15rem; color: rgba(255,255,255,0.9); margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ===== IMAGE COLLAGE ===== */
.collage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}
.collage-grid img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
@media (max-width: 768px) {
  .collage-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: #fff;
  border: 1px solid #e8e0d0;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.service-card:focus-visible {
  outline: 3px solid #7A6A2A;
  outline-offset: 2px;
}
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card-body { padding: 1.25rem; }
.service-card-body h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.service-card-body p { font-size: 0.9rem; color: #5a6a7a; margin-bottom: 0.75rem; }
.service-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: #7A6A2A;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.service-link::after { content: '→'; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-img { border-radius: 8px; overflow: hidden; }
.about-img img { width: 100%; height: 450px; object-fit: cover; }
.about-text .section-label { justify-content: flex-start; }
.about-text .section-label::before { display: none; }
/* Hero section-label uses lighter gold for contrast on dark background */
.hero .section-label { color: #c8b87a; }
.hero .section-label::before,
.hero .section-label::after { background: #c8b87a; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p { color: #5a6a7a; margin-bottom: 1rem; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0;
  padding: 1.5rem;
  background: #F8F5F0;
  border-radius: 8px;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Lora', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #7A6A2A;
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: #5a6a7a; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; }
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: process;
}
.process-step { text-align: center; position: relative; }
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 2rem;
  right: -1rem;
  width: 2rem;
  height: 2px;
  background: #c8b87a;
}
.process-icon {
  width: 64px;
  height: 64px;
  background: #7A6A2A;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #fff;
  font-family: 'Lora', serif;
  font-size: 1.5rem;
  font-weight: 700;
}
.process-step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p { font-size: 0.875rem; color: #5a6a7a; }
@media (max-width: 768px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step::after { display: none; }
}

/* ===== TESTIMONIALS ===== */
.testimonials-wrap { position: relative; overflow: hidden; }
.testimonials-track {
  display: flex;
  transition: transform 0.4s ease;
}
.testimonial-slide {
  min-width: 100%;
  padding: 0 2rem;
}
.testimonial-card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 2.5rem;
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
}
.testimonial-stars { color: #c8b87a; font-size: 1.25rem; margin-bottom: 1rem; letter-spacing: 0.1em; }
.testimonial-text {
  font-family: 'Lora', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.testimonial-author { font-weight: 700; color: #c8b87a; }
.testimonial-location { font-size: 0.875rem; color: rgba(255,255,255,0.6); }
.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.testimonial-btn {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.testimonial-btn:hover { background: rgba(255,255,255,0.25); }
.testimonial-btn:focus-visible { outline: 2px solid #c8b87a; outline-offset: 2px; }
.testimonial-dots { display: flex; gap: 0.5rem; }
.testimonial-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  padding: 0;
}
.testimonial-dot.active { background: #c8b87a; }
.testimonial-dot:focus-visible { outline: 2px solid #c8b87a; outline-offset: 2px; }

/* ===== BEFORE/AFTER GRID ===== */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.ba-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== CTA SECTION ===== */
.cta-section {
  position: relative;
  padding: 6rem 0;
  background: #1E2A3A;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.3;
}
.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
}
.cta-content h2 { color: #fff; margin-bottom: 1rem; }
.cta-content p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.site-footer {
  background: #111820;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 48px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; }
.footer-col h3, .footer-contact h3, .site-footer nav h3 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
}
.footer-col ul, .site-footer nav ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a, .site-footer nav a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}
.footer-col a:hover, .site-footer nav a:hover { color: #c8b87a; }
.footer-col a:focus-visible, .site-footer nav a:focus-visible { outline: 2px solid #c8b87a; outline-offset: 2px; }
.footer-contact p { font-size: 0.875rem; margin-bottom: 0.5rem; }
.footer-contact a { color: rgba(255,255,255,0.65); }
.footer-contact a:hover { color: #c8b87a; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); }
.footer-bottom-links a:hover { color: #c8b87a; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: #1E2A3A;
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.page-hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
}
.page-hero-content h1 { color: #fff; margin-bottom: 0.75rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: #c8b87a; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ===== GALLERY PAGE ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.gallery-grid img:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { color: #5a6a7a; margin-bottom: 2rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: #F8F5F0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #7A6A2A;
}
.contact-detail-text strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; color: #7A6A2A; margin-bottom: 0.25rem; }
.contact-form-wrap {
  background: #F8F5F0;
  padding: 2.5rem;
  border-radius: 12px;
}
.contact-form-wrap h3 { margin-bottom: 1.5rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1E2A3A;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d0c8b8;
  border-radius: 6px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  color: #1E2A3A;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #7A6A2A;
  box-shadow: 0 0 0 3px rgba(122, 106, 42, 0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231E2A3A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.required { color: #c0392b; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== SERVICE DETAIL PAGE ===== */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }
.service-detail-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 8px;
}
.service-features { margin: 1.5rem 0; }
.service-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e8e0d0;
  font-size: 0.95rem;
}
.service-features li::before {
  content: '✓';
  color: #7A6A2A;
  font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .service-detail-grid { grid-template-columns: 1fr; gap: 2rem; }
  .service-detail-grid.reverse { direction: ltr; }
}

/* ===== ABOUT PAGE ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.value-card {
  padding: 2rem;
  background: #F8F5F0;
  border-radius: 8px;
  border-left: 4px solid #7A6A2A;
}
.value-card h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.value-card p { font-size: 0.9rem; color: #5a6a7a; margin: 0; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.team-card { text-align: center; }
.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1rem;
}
.team-card h3 { margin-bottom: 0.25rem; }
.team-card p { color: #7A6A2A; font-size: 0.875rem; font-weight: 600; margin: 0; }
@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== PROSE (Privacy/Terms) ===== */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { margin: 2.5rem 0 1rem; font-size: 1.4rem; }
.prose h3 { margin: 2rem 0 0.75rem; font-size: 1.1rem; }
.prose p { color: #4a5a6a; margin-bottom: 1rem; }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ul li { color: #4a5a6a; margin-bottom: 0.4rem; }

/* ===== 404 ===== */
.not-found {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.not-found h1 { font-size: 6rem; color: #e8e0d0; margin-bottom: 0; }
.not-found h2 { margin-bottom: 1rem; }
.not-found p { color: #5a6a7a; margin-bottom: 2rem; }

/* ===== 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;
}
