/* =============================================
   BELARSEN QUALITY PAINTS — styles.css
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Outfit', ui-sans-serif, system-ui, sans-serif;
  background: #f5f1ea;
  color: #1c1a17;
  overflow-x: hidden;
  line-height: 1.5;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }
button { cursor: pointer; background: none; border: none; font: inherit; }
.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; }

/* --- Design Tokens --- */
:root {
  --plaster: #f5f1ea;
  --plaster-deep: #ece6db;
  --sand: #e6ded1;
  --ink: #1c1a17;
  --ink-soft: #3a352f;
  --ink-muted: #6d655b;
  --brand: #ef3b36;
  --brand-hover: rgba(239,59,54,0.45);
  --radius: 28px;
}

/* --- Grain / Texture overlays --- */
.grain-overlay {
  position: fixed; inset: 0; z-index: 55;
  pointer-events: none; opacity: 0.35;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
@media (prefers-reduced-motion: reduce) { .grain-overlay { display: none; } }
.plaster-tooth {
  position: fixed; inset: 0; pointer-events: none; z-index: 54; opacity: 0.5;
  background-image:
    radial-gradient(circle at 18% 22%, rgba(28,26,23,0.045) 0%, transparent 42%),
    radial-gradient(circle at 82% 68%, rgba(239,59,54,0.05) 0%, transparent 46%),
    repeating-linear-gradient(98deg, rgba(28,26,23,0.028) 0px, rgba(28,26,23,0.028) 1px, transparent 1px, transparent 7px);
}

/* --- Utility --- */
.text-brand { color: var(--brand); }
.eyebrow {
  display: inline-block;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--brand);
}

/* --- Buttons --- */
.btn-brand {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--brand); color: #fff;
  border-radius: 999px; padding: 0.6rem 1.4rem;
  font-size: 0.875rem; font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  white-space: nowrap;
}
.btn-brand:hover { transform: scale(1.05); box-shadow: 0 0 24px var(--brand-hover); }
.btn-brand:active { transform: scale(0.96); }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(28,26,23,0.15); color: var(--ink);
  border-radius: 999px; padding: 0.7rem 1.5rem;
  font-size: 0.875rem; font-weight: 600;
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: rgba(28,26,23,0.4); }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed; top: 1.5rem; left: 50%; transform: translateX(-50%);
  z-index: 50; width: calc(100% - 2rem); max-width: 64rem;
  transition: all 0.5s ease;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border-radius: 999px;
  transition: all 0.5s ease;
}
.navbar.scrolled .nav-inner {
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
}
.navbar-light .nav-inner, .nav-inner-light {
  border-color: rgba(28,26,23,0.1) !important;
  background: rgba(245,241,234,0.8) !important;
  box-shadow: 0 10px 40px rgba(28,26,23,0.12);
}
.logo-img { height: 2rem; width: auto; transition: opacity 0.3s; }
.nav-links {
  display: none; align-items: center; gap: 2rem;
}
@media (min-width: 768px) { .nav-links { display: flex; } }
.nav-link {
  position: relative; font-size: 0.875rem; font-weight: 500;
  color: rgba(220,220,220,0.9); transition: color 0.2s;
}
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  height: 1px; width: 0; background: var(--brand);
  transition: width 0.3s ease;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }
.nav-link-light { color: var(--ink-muted) !important; }
.nav-link-light:hover { color: var(--ink) !important; }
.nav-cta-wrap { display: flex; align-items: center; gap: 0.5rem; }
.nav-quote { display: none; }
@media (min-width: 768px) { .nav-quote { display: inline-flex; } }
.nav-toggle {
  display: flex; flex-direction: column; gap: 4px;
  padding: 0.5rem; border: 1px solid rgba(255,255,255,0.1); border-radius: 999px;
  color: #fff;
}
@media (min-width: 768px) { .nav-toggle { display: none; } }
.nav-toggle-light { border-color: rgba(28,26,23,0.15) !important; }
.hamburger-line {
  display: block; width: 18px; height: 2px;
  background: currentColor; border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger-line-dark { background: var(--ink) !important; }

/* Mobile menu */
.mobile-menu {
  display: none; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1rem; margin-top: 0.75rem;
}
.mobile-menu.open { display: block; }
.mobile-menu-light { border-top-color: rgba(28,26,23,0.1) !important; }
.mobile-links { display: flex; flex-direction: column; gap: 1rem; }
.mobile-link { font-size: 0.875rem; font-weight: 500; color: rgba(220,220,220,0.9); }
.mobile-link-light { color: var(--ink-soft) !important; }
.mobile-quote { margin-top: 0.5rem; }
/* Make navbar container flexible for mobile menu */
.nav-inner.menu-open { border-radius: 1.5rem; }

/* ============================================
   HERO
   ============================================ */
.hero-section {
  position: relative; height: 200svh; width: 100%;
}
.hero-sticky {
  position: sticky; top: 0; height: 100svh; width: 100%; overflow: hidden;
}
.hero-base, .hero-reveal {
  position: absolute; inset: 0;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.1s linear;
}
.hero-base-overlay {
  position: absolute; inset: 0; background: rgba(12,17,40,0.6);
}
.hero-reveal {
  clip-path: circle(0% at 50% 50%);
  transition: clip-path 0.05s linear;
}
.hero-reveal-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0.4);
}
.hero-text-wrap {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
}
.hero-title-base {
  color: #fff; font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 900; letter-spacing: -0.03em; text-align: center;
  line-height: 1.05;
}
.hero-title-reveal {
  background: linear-gradient(135deg, #bfdbfe, #e9d5ff);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 900; letter-spacing: -0.03em; text-align: center;
  line-height: 1.05;
}
.hero-scroll-indicator {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7); transition: opacity 0.3s;
  animation: bounce 1.5s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ============================================
   PRODUCTS / SERVICES
   ============================================ */
.services-section {
  background: var(--plaster); padding: 6rem 0 4rem;
}
.services-header {
  max-width: 87.5rem; margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .services-header { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .services-header { padding: 0 2rem; } }
.services-title {
  margin-top: 1rem; font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; letter-spacing: -0.03em; color: var(--ink);
  max-width: 40rem; line-height: 1.05;
}
.services-line-track {
  margin-top: 1.5rem; height: 1px; width: 100%; max-width: 40rem;
  background: rgba(28,26,23,0.1);
}
.services-line { height: 1px; background: var(--brand); width: 0; transition: width 0.1s linear; }
.services-scroll-wrap {
  overflow-x: auto; padding: 3rem 1rem;
  scrollbar-width: none;
}
.services-scroll-wrap::-webkit-scrollbar { display: none; }
.services-list {
  display: flex; gap: 1.5rem; width: max-content;
  padding-left: 1rem;
}
.service-card {
  position: relative; display: flex; flex-direction: column; justify-content: space-between;
  height: 46svh; min-height: 260px; width: 78vw; max-width: 420px;
  background: var(--sand); border: 1px solid rgba(28,26,23,0.1);
  border-radius: var(--radius); padding: 2rem; overflow: hidden;
  transition: border-color 0.5s, box-shadow 0.5s;
  flex-shrink: 0;
}
.service-card:hover {
  border-color: rgba(239,59,54,0.6);
  box-shadow: 0 18px 50px rgba(28,26,23,0.1);
}
.service-swatch {
  position: absolute; top: -4rem; right: -4rem;
  width: 13rem; height: 13rem; border-radius: 50%;
  opacity: 0.7; filter: blur(24px);
  transition: opacity 0.5s;
}
.service-card:hover .service-swatch { opacity: 1; }
.service-card-top {
  position: relative; display: flex; align-items: flex-start; justify-content: space-between;
}
.service-num {
  font-family: monospace; font-size: 0.7rem;
  letter-spacing: 0.1em; color: var(--ink-muted);
}
.service-dot {
  display: block; width: 3rem; height: 3rem; border-radius: 50%;
  box-shadow: 0 6px 18px rgba(28,26,23,0.18);
  outline: 1px solid rgba(28,26,23,0.15); outline-offset: 0;
}
.service-card-bottom { position: relative; }
.service-name {
  font-size: 1.75rem; font-weight: 900;
  letter-spacing: -0.03em; color: var(--ink);
}
.service-desc {
  margin-top: 0.75rem; font-size: 0.85rem;
  line-height: 1.6; font-weight: 300; color: var(--ink-muted);
}

/* ============================================
   WORK / PROJECTS
   ============================================ */
.work-section {
  background: var(--plaster); padding: 6rem 0;
}
.work-inner {
  max-width: 87.5rem; margin: 0 auto;
  padding: 0 1rem;
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .work-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) {
  .work-inner { grid-template-columns: 1fr 1.1fr; padding: 0 2rem; align-items: center; }
}
.work-list-header {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
  margin-bottom: 2rem;
}
.work-title {
  margin-top: 0.75rem; font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 900; letter-spacing: -0.03em; color: var(--ink);
}
.work-counter { font-family: monospace; font-size: 0.7rem; color: var(--ink-muted); }
.work-list { display: flex; flex-direction: column; gap: 0; }
.work-item { border-bottom: 1px solid rgba(28,26,23,0.1); }
.work-btn {
  display: flex; width: 100%; align-items: baseline;
  justify-content: space-between; gap: 1rem;
  padding: 0.75rem 0; text-align: left;
  transition: all 0.2s;
}
.work-name {
  font-size: clamp(1rem, 2.5vw, 1.4rem); font-weight: 900;
  letter-spacing: -0.03em; color: rgba(28,26,23,0.3);
  transition: color 0.4s, transform 0.4s;
}
.work-place {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(28,26,23,0.3); transition: color 0.4s;
  flex-shrink: 0;
}
.work-item.active .work-name { color: var(--ink); transform: translateX(8px); }
.work-item.active .work-place { color: var(--brand); }
.work-btn:hover .work-name { color: var(--ink-soft); }
.work-progress-track {
  margin-top: 1.5rem; height: 1px; background: rgba(28,26,23,0.1);
}
.work-progress { height: 1px; background: var(--brand); width: 16.66%; transition: width 0.4s ease; }
.work-cta {
  display: inline-flex; align-items: center; gap: 0.25rem;
  margin-top: 2rem; font-size: 0.875rem; font-weight: 500;
  color: var(--ink-muted); transition: color 0.2s;
}
.work-cta:hover { color: var(--ink); }
.work-cta svg { transition: transform 0.2s; }
.work-cta:hover svg { transform: translate(2px, -2px); }
/* Image side */
.work-img-wrap {
  position: relative; aspect-ratio: 4/3;
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(28,26,23,0.1);
  box-shadow: 0 24px 70px rgba(28,26,23,0.18);
  order: -1;
}
@media (min-width: 1024px) { .work-img-wrap { order: 2; aspect-ratio: 16/11; } }
.work-images { position: absolute; inset: 0; }
.work-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; transition: opacity 0.6s ease;
}
.work-img.active { opacity: 1; }
.work-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(28,26,23,0.85) 0%, rgba(28,26,23,0.1) 50%, transparent 100%);
  pointer-events: none;
}
.work-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 1.5rem;
}
.work-caption p { font-size: 0.85rem; line-height: 1.6; font-weight: 300; color: #e6ded1; }
.work-finish { font-weight: 600; color: #fff; }

/* ============================================
   ABOUT
   ============================================ */
.about-section {
  position: relative; background: var(--plaster); padding: 8rem 0;
  overflow: hidden;
}
.about-glow {
  position: absolute; top: 50%; right: -6rem;
  width: 32rem; height: 32rem; border-radius: 5rem;
  background: linear-gradient(135deg, #e6ded1 0%, #ef3b36 130%);
  opacity: 0.3; filter: blur(48px);
  transform: translateY(-50%) rotate(-8deg);
  pointer-events: none;
}
.about-inner {
  position: relative; max-width: 75rem; margin: 0 auto;
  padding: 0 1rem;
  display: grid; gap: 3.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .about-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .about-inner { grid-template-columns: 1.2fr 1fr; padding: 0 2rem; } }
.about-headline {
  font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 900;
  letter-spacing: -0.03em; color: var(--ink); line-height: 1.08;
}
.about-body {
  border-left: 2px solid var(--brand); padding-left: 1.25rem;
  font-size: 1.1rem; line-height: 1.7; font-weight: 300; color: var(--ink-soft);
}
.about-stats { margin-top: 3.5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.stat-value {
  display: block; font-size: clamp(2.5rem, 6vw, 3.75rem);
  font-weight: 900; letter-spacing: -0.04em; color: var(--ink);
}
.stat-label {
  display: block; margin-top: 0.5rem;
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-muted);
}

/* ============================================
   CLIENTS / MARQUEE
   ============================================ */
.clients-section { background: var(--plaster); padding: 6rem 0; }
.clients-header {
  max-width: 75rem; margin: 0 auto 3.5rem;
  padding: 0 1rem; text-align: center;
}
.clients-badge {
  display: inline-block; border: 1px solid rgba(28,26,23,0.1);
  background: var(--sand); border-radius: 999px;
  padding: 0.375rem 1rem; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-muted); backdrop-filter: blur(8px);
}
.clients-title {
  margin-top: 1.5rem; font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 900; letter-spacing: -0.03em; color: var(--ink);
}
.clients-marquee-wrap { position: relative; overflow: hidden; padding: 0.5rem 0; }
.clients-track {
  display: flex; width: max-content;
  gap: 2.5rem; align-items: center; white-space: nowrap;
  animation: marquee 20s linear infinite;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.client-item {
  font-size: clamp(1.5rem, 4vw, 3rem); font-weight: 900;
  letter-spacing: -0.03em; color: rgba(28,26,23,0.15);
  transition: color 0.3s; display: flex; align-items: center; gap: 2.5rem;
}
.client-item:hover { color: var(--ink); }
.client-dot {
  display: inline-block; width: 0.5rem; height: 0.5rem;
  border-radius: 50%; background: var(--brand);
}
.marquee-fade-left {
  position: absolute; inset-y: 0; left: 0; width: 8rem;
  background: linear-gradient(to right, var(--plaster), transparent);
  pointer-events: none;
}
.marquee-fade-right {
  position: absolute; inset-y: 0; right: 0; width: 8rem;
  background: linear-gradient(to left, var(--plaster), transparent);
  pointer-events: none;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(28,26,23,0.1);
  padding: 6rem 0; background: var(--plaster);
}
.footer-wipe {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, #252220 0%, #1c1a17 60%);
  transform: translateY(100%); transition: transform 0.5s ease;
}
.footer.wipe-in .footer-wipe { transform: translateY(0); }
.footer-inner {
  position: relative; max-width: 75rem; margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .footer-inner { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .footer-inner { padding: 0 2rem; } }
.footer-top {
  display: flex; flex-direction: column; gap: 2rem; align-items: flex-start;
}
@media (min-width: 768px) { .footer-top { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.footer-cta-text {
  font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 900;
  letter-spacing: -0.04em; color: #fff; line-height: 1.05; max-width: 40rem;
}
.footer-logo { margin-top: 5rem; height: auto; width: 100%; max-width: 48rem; opacity: 0.9; }
.footer-grid {
  margin-top: 4rem; display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem; border-top: 1px solid rgba(255,255,255,0.1); padding-top: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr; } }
.footer-about { grid-column: span 2; }
@media (min-width: 768px) { .footer-about { grid-column: span 1; } }
.footer-about p { font-size: 0.875rem; line-height: 1.7; font-weight: 300; color: #9ca3af; }
.footer-nav-title {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: #9ca3af;
}
.footer-nav-list, .footer-contact-list { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-link { font-size: 0.875rem; color: #d1d5db; transition: color 0.2s; }
.footer-link:hover { color: #fff; }
.footer-socials { margin-top: 1.5rem; display: flex; gap: 0.75rem; }
.social-btn {
  display: flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.05);
  color: #d1d5db; backdrop-filter: blur(8px);
  transition: border-color 0.2s, color 0.2s;
}
.social-btn:hover { border-color: var(--brand); color: #fff; }
.footer-bottom {
  margin-top: 3rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex; flex-direction: column; gap: 0.75rem;
  font-size: 0.75rem; color: #6b7280;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal-link { font-size: 0.75rem; color: #6b7280; transition: color 0.2s; }
.footer-legal-link:hover { color: #d1d5db; }
.footer-bottom-simple { border-top: 1px solid rgba(28,26,23,0.08); padding-top: 1.5rem; }
.footer-light { background: #1c1a17; }

/* ============================================
   PAGE LIGHT (contact, legal)
   ============================================ */
.page-light { background: var(--plaster); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  background: linear-gradient(180deg, #252220 0%, #1c1a17 100%);
  border-bottom: 1px solid rgba(28,26,23,0.1);
  padding: 10rem 1rem 6rem;
}
@media (min-width: 640px) { .contact-hero { padding: 10rem 1.5rem 6rem; } }
@media (min-width: 1024px) { .contact-hero { padding: 10rem 2rem 6rem; } }
.contact-hero-inner { max-width: 62rem; margin: 0 auto; }
.contact-hero-title {
  margin-top: 1rem; font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900; letter-spacing: -0.04em; color: #fff; line-height: 1.05;
}
.contact-hero-sub {
  margin-top: 1.5rem; max-width: 36rem;
  font-size: 0.9rem; line-height: 1.7; font-weight: 300; color: #9ca3af;
}
.contact-body {
  max-width: 62rem; margin: 0 auto;
  padding: 5rem 1rem;
  display: grid; gap: 3.5rem; grid-template-columns: 1fr;
}
@media (min-width: 640px) { .contact-body { padding: 5rem 1.5rem; } }
@media (min-width: 1024px) { .contact-body { grid-template-columns: 1fr 1.4fr; padding: 5rem 2rem; } }
.contact-aside-title {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink);
}
.contact-info-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; }
.contact-icon { width: 1.125rem; height: 1.125rem; flex-shrink: 0; color: var(--brand); margin-top: 2px; }
.contact-link { transition: color 0.2s; }
.contact-link:hover { color: var(--brand); }
.contact-aside-card {
  margin-top: 2rem; background: var(--sand);
  border: 1px solid rgba(28,26,23,0.1); border-radius: 1rem; padding: 1.5rem;
  font-size: 0.875rem; line-height: 1.7; font-weight: 300; color: var(--ink-soft);
}
/* Form */
.contact-form-wrap { position: relative; }
.contact-form {
  background: var(--sand); border: 1px solid rgba(28,26,23,0.1);
  border-radius: 1.5rem; padding: 1.5rem;
}
@media (min-width: 640px) { .contact-form { padding: 2rem; } }
.form-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-field { display: block; }
.form-field-full { grid-column: span 1; }
@media (min-width: 640px) { .form-field-full { grid-column: span 2; } }
.form-label {
  display: block; font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink);
}
.form-input {
  display: block; width: 100%; margin-top: 0.5rem;
  background: var(--plaster); border: 1px solid rgba(28,26,23,0.15);
  border-radius: 0.75rem; padding: 0.75rem 1rem;
  font-size: 0.875rem; color: var(--ink); font-family: inherit;
  outline: none; transition: border-color 0.2s;
  appearance: none;
}
.form-input::placeholder { color: rgba(109,101,91,0.5); }
.form-input:focus { border-color: var(--brand); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-error { display: block; margin-top: 0.5rem; font-size: 0.75rem; font-weight: 500; color: var(--brand); min-height: 1em; }
.form-submit { margin-top: 2rem; }
.form-legal {
  margin-top: 1rem; font-size: 0.7rem; line-height: 1.7;
  font-weight: 300; color: var(--ink-muted);
}
.form-legal-link { color: var(--brand); font-weight: 500; }
.form-legal-link:hover { text-decoration: underline; }
/* Success */
.contact-success {
  background: var(--sand); border: 1px solid rgba(28,26,23,0.1);
  border-radius: 1.5rem; padding: 2rem;
}
.success-icon {
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 50%; background: var(--brand);
}
.success-title {
  margin-top: 1.5rem; font-size: 1.5rem; font-weight: 900; letter-spacing: -0.02em;
}
.success-sub {
  margin-top: 0.75rem; font-size: 0.875rem; line-height: 1.7;
  font-weight: 300; color: var(--ink-soft);
}
.success-dl {
  margin-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem;
  border-top: 1px solid rgba(28,26,23,0.1); padding-top: 1.5rem;
}
.success-row { display: grid; grid-template-columns: 80px 1fr; gap: 0.75rem; }
.success-dt {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--ink-muted); padding-top: 2px;
}
.success-dd { font-size: 0.875rem; font-weight: 300; color: var(--ink-soft); word-break: break-word; }
.success-reset { margin-top: 2rem; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-hero {
  background: linear-gradient(180deg, #252220 0%, #1c1a17 100%);
  border-bottom: 1px solid rgba(28,26,23,0.1);
  padding: 10rem 1rem 5rem;
}
.legal-hero-inner { max-width: 50rem; margin: 0 auto; }
.legal-title {
  margin-top: 1rem; font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900; letter-spacing: -0.04em; color: #fff;
}
.legal-intro {
  margin-top: 1rem; font-size: 0.9rem; line-height: 1.7;
  font-weight: 300; color: #9ca3af;
}
.legal-body {
  max-width: 50rem; margin: 0 auto; padding: 4rem 1rem 6rem;
}
@media (min-width: 640px) { .legal-body { padding: 4rem 1.5rem 6rem; } }
.legal-article { display: flex; flex-direction: column; gap: 2.5rem; }
.legal-section {}
.legal-heading {
  font-size: 1.1rem; font-weight: 800; color: var(--ink);
  letter-spacing: -0.01em; margin-bottom: 0.75rem;
}
.legal-section p {
  font-size: 0.9rem; line-height: 1.75; font-weight: 300; color: var(--ink-soft);
}
.legal-list {
  list-style: disc; padding-left: 1.5rem; margin-top: 0.75rem;
  display: flex; flex-direction: column; gap: 0.5rem;
}
.legal-list li {
  font-size: 0.9rem; line-height: 1.75; font-weight: 300; color: var(--ink-soft);
}

/* ============================================
   RESPONSIVE HELPERS
   ============================================ */
@media (max-width: 767px) {
  .services-list { padding-left: 0; }
  .service-card { width: 85vw; }
}
