/* ============================================
   GVS PAINT — The Color Atlas
   Design System & Styles
   ============================================ */

/* --- Reset & Base --- */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}

:root {
  --color-canvas: #F5F0EB;
  --color-white: #FFFFFF;
  --color-slate-50: #F8FAFC;
  --color-slate-100: #F1F5F9;
  --color-slate-200: #E2E8F0;
  --color-slate-300: #CBD5E1;
  --color-slate-400: #94A3B8;
  --color-slate-500: #64748B;
  --color-slate-600: #475569;
  --color-slate-700: #334155;
  --color-slate-800: #1E293B;
  --color-slate-900: #0F172A;
  --color-teal-500: #14B8A6;
  --color-teal-600: #0D9488;
  --color-teal-700: #0F766E;
  --color-teal-800: #115E59;
  --color-orange-500: #F97316;
  --color-orange-600: #EA580C;
  --color-orange-700: #C2410C;
  --color-blue-700: #1D4ED8;
  --color-blue-800: #1E40AF;
  --color-blue-900: #1E3A8A;
  --color-amber-500: #F59E0B;
  --color-amber-600: #D97706;
  --color-red-600: #DC2626;
  --color-red-700: #B91C1C;
  --color-emerald-600: #059669;
  --color-emerald-700: #047857;
  --font-sans: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-display: Georgia, 'Times New Roman', serif;
  --max-width: 1200px;
  --header-h: 72px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: #1F2937;
  background: var(--color-canvas);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Skip Link --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: #0F172A;
  color: #FFFFFF;
  padding: 12px 20px;
  z-index: 10000;
  border-radius: 0 0 6px 6px;
  font-weight: 600;
  font-size: 15px;
}
.skip-link:focus {
  top: 0;
  position: fixed;
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #0F172A;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: #EA580C;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.22);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #FFFFFF;
  border-bottom: 1px solid #E2E8F0;
  height: var(--header-h);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo / Brand Mark */
.brand-mark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: #0F172A;
  letter-spacing: -0.5px;
}
.brand-mark svg {
  width: 38px;
  height: 38px;
}
.brand-dot {
  color: #EA580C;
}

/* Nav */
.main-nav ul {
  display: flex;
  gap: 6px;
}
.nav-link {
  display: block;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #475569;
  border-radius: 20px;
  transition: all 0.25s ease;
  position: relative;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.nav-link:hover,
.nav-link.active {
  color: #0F172A;
  background: #F1F5F9;
}

/* Nav progress indicator */
.nav-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #F1F5F9;
}
.nav-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #0D9488, #EA580C, #D97706, #059669);
  background-size: 400% 100%;
  transition: width 0.3s ease;
  width: 0%;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: #0F172A;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO — Rotated Vertical Headline
   ============================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--header-h);
  position: relative;
  overflow: hidden;
  background: #FFFFFF;
}

/* Large rotated text block on the left */
.hero-rotated-block {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 220px;
  background: #0F172A;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.hero-rotated-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--font-display);
  font-size: clamp(72px, 9vw, 120px);
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 12px;
  line-height: 0.85;
  transform: rotate(180deg);
  user-select: none;
}
.hero-rotated-text span {
  color: #EA580C;
}

/* Paint drops on the rotated block */
.paint-drops {
  position: absolute;
  right: -30px;
  top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 3;
}
.paint-drop {
  width: 28px;
  height: 36px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  animation: dripFloat 4s ease-in-out infinite;
}
.paint-drop:nth-child(1) { background: #EA580C; animation-delay: 0s; }
.paint-drop:nth-child(2) { background: #0D9488; animation-delay: 0.6s; width: 20px; height: 26px; }
.paint-drop:nth-child(3) { background: #D97706; animation-delay: 1.2s; width: 24px; height: 30px; }
.paint-drop:nth-child(4) { background: #1E40AF; animation-delay: 0.3s; width: 16px; height: 22px; }
.paint-drop:nth-child(5) { background: #059669; animation-delay: 0.9s; width: 22px; height: 28px; }

@keyframes dripFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.85; }
  50% { transform: translateY(-14px) scale(1.12); opacity: 1; }
}

/* Hero content on the right */
.hero-content {
  margin-left: 260px;
  padding: 80px 48px 80px 64px;
  max-width: 720px;
  z-index: 1;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: #EA580C;
  margin-bottom: 20px;
  padding: 6px 16px;
  background: #FFF7ED;
  border-radius: 3px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  color: #0F172A;
  margin-bottom: 24px;
  letter-spacing: -1px;
}
.hero-headline em {
  font-style: normal;
  color: #EA580C;
  position: relative;
}
.hero-headline em::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: #FED7AA;
  z-index: -1;
  border-radius: 2px;
}
.hero-subtitle {
  font-size: 19px;
  color: #4B5563;
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 540px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 32px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.3px;
  font-family: var(--font-sans);
}
.btn-primary {
  background: #EA580C;
  color: #FFFFFF;
  box-shadow: 0 4px 14px rgba(234,88,12,0.35);
}
.btn-primary:hover {
  background: #C2410C;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(234,88,12,0.4);
}
.btn-outline {
  background: transparent;
  color: #0F172A;
  border: 2px solid #E2E8F0;
}
.btn-outline:hover {
  border-color: #0F172A;
  background: #F8FAFC;
}
.btn-submit {
  background: #0F172A;
  color: #FFFFFF;
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 17px 32px;
}
.btn-submit:hover {
  background: #EA580C;
}
.btn-back {
  background: #F1F5F9;
  color: #475569;
  font-size: 14px;
  padding: 12px 24px;
}
.btn-back:hover {
  background: #E2E8F0;
  color: #0F172A;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #94A3B8;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: scrollPulse 2s ease-in-out infinite;
  z-index: 2;
}
.scroll-hint-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid #CBD5E1;
  border-bottom: 2px solid #CBD5E1;
  transform: rotate(45deg);
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(8px); }
}

/* Hero decorative swatch */
.hero-swatch {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 1;
}
.hero-swatch span {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  transition: transform 0.3s ease;
}
.hero-swatch span:nth-child(1) { background: #1E40AF; }
.hero-swatch span:nth-child(2) { background: #0D9488; }
.hero-swatch span:nth-child(3) { background: #059669; }
.hero-swatch span:nth-child(4) { background: #D97706; }
.hero-swatch span:nth-child(5) { background: #EA580C; }
.hero-swatch:hover span:nth-child(1) { transform: translateX(-8px); }
.hero-swatch:hover span:nth-child(2) { transform: translateX(-4px); }
.hero-swatch:hover span:nth-child(4) { transform: translateX(4px); }
.hero-swatch:hover span:nth-child(5) { transform: translateX(8px); }

/* ============================================
   SECTION COMMONS
   ============================================ */
.section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #EA580C;
  margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: #0F172A;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
.section-title--light {
  color: #FFFFFF;
}

/* ============================================
   SERVICES — Overlapping Horizontal Bands
   ============================================ */
.services-section {
  position: relative;
  padding: 0;
  background: #F5F0EB;
}

.services-header {
  text-align: center;
  padding: 100px 32px 60px;
  max-width: 640px;
  margin: 0 auto;
}
.services-header .section-title {
  margin-bottom: 16px;
}
.services-subtitle {
  color: #4B5563;
  font-size: 17px;
  line-height: 1.6;
}

/* Overlapping bands */
.services-stack {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 80px;
}

.service-band {
  position: relative;
  margin: 0 auto 0;
  padding: 56px 48px;
  border-radius: 12px;
  color: #FFFFFF;
  width: 92%;
  z-index: 1;
  transform: translateY(-16px);
}
.service-band:nth-child(1) {
  background: #0D9488;
  width: 100%;
  z-index: 5;
  transform: translateY(0);
}
.service-band:nth-child(2) {
  background: #1E40AF;
  width: 95%;
  z-index: 4;
  margin-top: -28px;
}
.service-band:nth-child(3) {
  background: #0F172A;
  width: 90%;
  z-index: 3;
  margin-top: -28px;
}
.service-band:nth-child(4) {
  background: #EA580C;
  width: 85%;
  z-index: 2;
  margin-top: -28px;
}
.service-band:nth-child(5) {
  background: #059669;
  width: 80%;
  z-index: 1;
  margin-top: -28px;
}

.service-band-inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.service-band-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
}
.service-band-icon svg {
  width: 28px;
  height: 28px;
  fill: #FFFFFF;
}

.service-band-body h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.service-band-body p {
  font-size: 15px;
  line-height: 1.65;
  opacity: 0.9;
  max-width: 520px;
}

.service-band-number {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  opacity: 0.18;
  line-height: 1;
  margin-top: -12px;
}

/* ============================================
   ABOUT — Magazine Editorial Layout
   ============================================ */
.about-section {
  background: #FFFFFF;
  padding: 100px 32px;
}

.about-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

/* Main article area */
.about-article {
  position: relative;
}

.about-lede {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.45;
  margin-bottom: 28px;
  padding-left: 24px;
  border-left: 4px solid #EA580C;
  font-style: italic;
}

.about-body p {
  color: #4B5563;
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 20px;
}

.about-body p:last-child {
  margin-bottom: 0;
}

/* Sidebar */
.about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sidebar-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 28px;
}
.sidebar-card h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #EA580C;
  margin-bottom: 12px;
  font-weight: 700;
}
.sidebar-card p,
.sidebar-card address {
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
  font-style: normal;
}
.sidebar-card--highlight {
  background: #0F172A;
  color: #FFFFFF;
  border-color: #0F172A;
}
.sidebar-card--highlight h4 {
  color: #F97316;
}
.sidebar-card--highlight p {
  color: #CBD5E1;
}

/* Pull quote */
.pull-quote {
  margin: 40px 0 0;
  padding: 32px;
  background: #FFF7ED;
  border-radius: 10px;
  position: relative;
}
.pull-quote blockquote {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: #0F172A;
  line-height: 1.5;
  font-style: italic;
}
.pull-quote blockquote::before {
  content: '\201C';
  font-size: 56px;
  color: #EA580C;
  line-height: 0;
  vertical-align: -18px;
  margin-right: 6px;
}
.pull-quote cite {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: #64748B;
  font-style: normal;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   STATS — Inline Highlighted Numbers
   ============================================ */
.stats-section {
  background: #0F172A;
  padding: 90px 32px;
  color: #FFFFFF;
}

.stats-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.stats-header {
  margin-bottom: 48px;
}

.stats-paragraph {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.6;
  color: #CBD5E1;
  max-width: 780px;
}

.stat-highlight {
  display: inline;
  font-family: var(--font-sans);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1;
  position: relative;
  color: #FFFFFF;
  vertical-align: -6px;
  margin: 0 4px;
}
.stat-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -4px;
  right: -4px;
  height: 8px;
  border-radius: 4px;
  z-index: 0;
}
.stat-highlight--teal { color: #14B8A6; }
.stat-highlight--teal::after { background: rgba(20,184,166,0.2); }
.stat-highlight--orange { color: #F97316; }
.stat-highlight--orange::after { background: rgba(249,115,22,0.2); }
.stat-highlight--amber { color: #F59E0B; }
.stat-highlight--amber::after { background: rgba(245,158,11,0.2); }
.stat-highlight--emerald { color: #34D399; }
.stat-highlight--emerald::after { background: rgba(52,211,153,0.2); }

.stat-unit {
  font-size: 0.45em;
  font-weight: 600;
  color: #94A3B8;
}

/* Stats grid for secondary metrics */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid #1E293B;
}
.stat-card {
  text-align: left;
}
.stat-card-value {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 900;
  color: #FFFFFF;
  margin-bottom: 6px;
}
.stat-card-label {
  font-size: 14px;
  color: #94A3B8;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ============================================
   CONTACT — Two-Step Form
   ============================================ */
.contact-section {
  padding: 100px 32px;
  background: #F5F0EB;
}

.contact-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-info .section-label {
  margin-bottom: 12px;
}
.contact-info .section-title {
  margin-bottom: 24px;
}
.contact-desc {
  color: #4B5563;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: #475569;
}
.contact-detail-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  border: 1px solid #E2E8F0;
}

/* Two-step form */
.contact-form-wrapper {
  background: #FFFFFF;
  border-radius: 14px;
  padding: 44px 40px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.06), 0 8px 24px rgba(0,0,0,0.04);
  border: 1px solid #E2E8F0;
}

.form-steps-indicator {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
  align-items: center;
}
.form-step-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #E2E8F0;
  transition: all 0.3s ease;
}
.form-step-dot.active {
  background: #EA580C;
  box-shadow: 0 0 0 4px rgba(234,88,12,0.18);
}
.form-step-dot.done {
  background: #0D9488;
}
.form-step-line {
  flex: 1;
  height: 2px;
  background: #E2E8F0;
  transition: background 0.3s ease;
}
.form-step-line.done {
  background: #0D9488;
}

.form-step {
  display: none;
}
.form-step.active {
  display: block;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #E2E8F0;
  border-radius: 8px;
  font-size: 15px;
  font-family: var(--font-sans);
  color: #1F2937;
  background: #F8FAFC;
  transition: all 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #EA580C;
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(234,88,12,0.08);
}
.form-group input.error,
.form-group textarea.error {
  border-color: #DC2626;
  background: #FEF2F2;
}
.form-group .error-msg {
  font-size: 12px;
  color: #DC2626;
  margin-top: 4px;
  display: none;
}
.form-group .error-msg.visible {
  display: block;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success.visible {
  display: block;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #D1FAE5;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #059669;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 22px;
  color: #0F172A;
  margin-bottom: 8px;
}
.form-success p {
  color: #4B5563;
  font-size: 15px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: #0F172A;
  color: #FFFFFF;
  padding: 0;
}

/* Color bar */
.footer-color-bar {
  display: flex;
  height: 6px;
}
.footer-color-bar span {
  flex: 1;
}
.footer-color-bar span:nth-child(1) { background: #EA580C; }
.footer-color-bar span:nth-child(2) { background: #D97706; }
.footer-color-bar span:nth-child(3) { background: #059669; }
.footer-color-bar span:nth-child(4) { background: #0D9488; }
.footer-color-bar span:nth-child(5) { background: #1E40AF; }

.footer-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 32px 48px;
}

/* Large letter-spaced brand mark */
.footer-brand {
  margin-bottom: 48px;
}
.footer-brand-mark {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  letter-spacing: 16px;
  color: #FFFFFF;
  line-height: 1;
  opacity: 0.9;
}
.footer-brand-mark span {
  color: #EA580C;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-col--brand p {
  color: #94A3B8;
  font-size: 14px;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #64748B;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: #CBD5E1;
  font-size: 14px;
  transition: color 0.2s ease;
}
.footer-col a:hover {
  color: #EA580C;
}

.footer-bottom {
  border-top: 1px solid #1E293B;
  padding: 24px 32px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: #64748B;
}

.footer-legal-links {
  display: flex;
  gap: 24px;
}
.footer-legal-links a:hover {
  color: #FFFFFF;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  padding-top: calc(var(--header-h) + 60px);
  padding-bottom: 80px;
  background: #FFFFFF;
  min-height: 100vh;
}

.legal-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 32px;
}

.legal-container h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  color: #0F172A;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.legal-meta {
  font-size: 14px;
  color: #64748B;
  margin-bottom: 40px;
}

.legal-container h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #0F172A;
  margin: 36px 0 14px;
  padding-top: 20px;
  border-top: 1px solid #E2E8F0;
}
.legal-container h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.legal-container p {
  color: #4B5563;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-container ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
  color: #4B5563;
  font-size: 15px;
  line-height: 1.75;
}
.legal-container ul li {
  margin-bottom: 6px;
}

.legal-container a {
  color: #EA580C;
  text-decoration: underline;
}
.legal-container a:hover {
  color: #C2410C;
}

.legal-container address {
  font-style: normal;
  color: #475569;
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 16px;
}

.legal-contact-block {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 28px;
  margin-top: 32px;
}
.legal-contact-block h3 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #EA580C;
  margin-bottom: 14px;
  font-weight: 700;
}
.legal-contact-block p,
.legal-contact-block address {
  font-size: 15px;
  color: #475569;
  margin-bottom: 6px;
}

/* ============================================
   SCROLL FADE-UP ANIMATION
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-rotated-block {
    width: 140px;
  }
  .hero-rotated-text {
    font-size: clamp(48px, 7vw, 72px);
    letter-spacing: 6px;
  }
  .hero-content {
    margin-left: 180px;
    padding: 60px 32px;
  }
  .hero-swatch {
    display: none;
  }
  .paint-drops {
    right: -20px;
    gap: 14px;
  }
  .paint-drop {
    width: 20px;
    height: 26px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .service-band {
    width: 96%;
  }
  .service-band:nth-child(2) { width: 93%; }
  .service-band:nth-child(3) { width: 90%; }
  .service-band:nth-child(4) { width: 87%; }
  .service-band:nth-child(5) { width: 84%; }
  .service-band-inner {
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    min-height: auto;
  }
  .hero-rotated-block {
    position: relative;
    width: 100%;
    height: 120px;
    flex-shrink: 0;
  }
  .hero-rotated-text {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: clamp(36px, 8vw, 52px);
    letter-spacing: 6px;
  }
  .hero-content {
    margin-left: 0;
    padding: 40px 24px 60px;
  }
  .paint-drops {
    flex-direction: row;
    right: auto;
    top: auto;
    bottom: -16px;
    left: 24px;
    gap: 10px;
  }
  .hero-swatch {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: #FFFFFF;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    display: none;
    z-index: 999;
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .nav-link {
    font-size: 18px;
    padding: 12px 28px;
  }
  .mobile-toggle {
    display: flex;
  }

  .service-band {
    width: 100%;
    border-radius: 0;
    padding: 40px 24px;
    transform: none;
    margin-top: 0;
  }
  .service-band:nth-child(n) {
    width: 100%;
  }
  .service-band-inner {
    flex-direction: column;
    gap: 16px;
  }
  .service-band-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 48px;
  }

  .about-section {
    padding: 60px 24px;
  }
  .about-sidebar {
    grid-template-columns: 1fr;
  }

  .stats-section {
    padding: 60px 24px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-paragraph {
    font-size: 18px;
  }

  .contact-section {
    padding: 60px 24px;
  }
  .contact-form-wrapper {
    padding: 28px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-main {
    padding: 48px 24px 36px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand-mark {
    font-size: clamp(36px, 10vw, 52px);
    letter-spacing: 8px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 32px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn {
    width: 100%;
    justify-content: center;
  }
  .service-band-inner {
    padding: 0;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .footer-legal-links {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .hero-rotated-block {
    height: 90px;
  }
}
