/* ==== Ridge Outdoor Lighting ==== */

:root {
  --ink: #0c1310;
  --ink-2: #141c17;
  --ink-3: #1c2520;
  --cream: #ebe4d3;
  --cream-2: #f4eee0;
  --cream-3: #d8cfb8;
  --brass: #c9a86a;
  --brass-2: #a88a4f;
  --brass-glow: rgba(244, 201, 118, 0.55);
  --moss: #3a4a3c;
  --line: rgba(235, 228, 211, 0.18);
  --line-dark: rgba(12, 19, 16, 0.18);
  --serif: "Cormorant Garamond", "Cormorant", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--ink);
  color: var(--cream);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.serif { font-family: var(--serif); font-weight: 400; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brass);
}
.eyebrow.dark { color: var(--brass-2); }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.2; letter-spacing: -0.015em; }
h1 { line-height: 1.05; }
h2 { padding-bottom: 0.35em; margin-bottom: 0.4em; }
h2 em, h1 em { line-height: 1.3; display: inline-block; padding-bottom: 0.2em; }
h1 { font-size: clamp(48px, 7vw, 104px); }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: clamp(22px, 2.4vw, 30px); }
p { font-size: 16px; line-height: 1.7; color: rgba(235, 228, 211, 0.78); }
.dark-section p { color: rgba(12, 19, 16, 0.7); }

.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.section { padding: 140px 0; position: relative; }
.section-cream { background: var(--cream-2); color: var(--ink); }
.section-cream h1, .section-cream h2, .section-cream h3 { color: var(--ink); }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 32px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease;
}
.nav.scrolled, .nav.menu-open {
  background: rgba(12, 19, 16, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 32px;
  border-bottom: 1px solid var(--line);
}
.nav-brand { display: flex; align-items: center; gap: 16px; color: var(--cream); text-decoration: none; }
.nav-brand img {
  width: 76px; height: 76px;
  object-fit: contain;
  transition: width 0.4s ease, height 0.4s ease;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.35));
}
.nav.scrolled .nav-brand img { width: 56px; height: 56px; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-text .name { font-family: var(--serif); font-size: 24px; letter-spacing: 0.04em; }
.nav-brand-text .tag { font-size: 9px; letter-spacing: 0.32em; color: var(--brass); margin-top: 6px; text-transform: uppercase; }

.nav-right { display: flex; align-items: center; gap: 24px; flex-shrink: 0; }

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.82;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--brass); }
.nav-cta {
  border: 1px solid var(--brass);
  color: var(--brass) !important;
  padding: 10px 22px;
  border-radius: 2px;
  opacity: 1 !important;
  transition: background 0.25s, color 0.25s;
}
.nav-cta:hover { background: var(--brass); color: var(--ink) !important; }

/* Hamburger — hidden on desktop */
.nav-hamburger {
  display: none;
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 4px;
  flex-direction: column;
  gap: 5px;
  z-index: 110;
}
.hamburger-line {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav.menu-open .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.menu-open .hamburger-line:nth-child(2) { opacity: 0; }
.nav.menu-open .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile backdrop */
.nav-backdrop {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 98;
}

/* Day/Night toggle — now in nav */
.dn-toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(12, 19, 16, 0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--line);
  padding: 10px 14px 10px 18px;
  border-radius: 100px;
  cursor: pointer;
  user-select: none;
  transition: background 0.4s ease, border-color 0.4s ease;
  flex-shrink: 0;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 740px;
  overflow: hidden;
  background: var(--ink);
}
.hero-img-wrap { position: absolute; inset: 0; overflow: hidden; }

.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity 1.6s ease;
}
.hero-photo-off { opacity: 0; }
.hero-photo-on { opacity: 1; }
.hero.is-off .hero-photo-off { opacity: 1; }
.hero.is-off .hero-photo-on { opacity: 0; }

.hero-vignette {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 60%, transparent 0%, transparent 35%, rgba(12,19,16,0.55) 100%),
    linear-gradient(180deg, rgba(12,19,16,0.5) 0%, transparent 25%, transparent 55%, rgba(12,19,16,0.92) 100%);
  pointer-events: none;
  transition: opacity 1.6s ease;
}
.hero.is-off .hero-vignette {
  background:
    linear-gradient(180deg, rgba(12,19,16,0.45) 0%, transparent 30%, transparent 55%, rgba(12,19,16,0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 5;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 64px 110px;
  max-width: 1500px;
  margin: 0 auto;
}
.hero-logo {
  width: clamp(240px, 24vw, 330px);
  height: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 8px 30px rgba(0, 0, 0, 0.55));
  transition: filter 1s ease;
}
.hero.is-on .hero-logo {
  filter:
    drop-shadow(0 8px 30px rgba(0, 0, 0, 0.65))
    drop-shadow(0 0 36px rgba(244, 201, 118, 0.3));
}
.hero-content .eyebrow {
  margin-bottom: 22px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.34em;
  color: #f0d9a3;
  text-shadow:
    0 1px 2px rgba(0,0,0,0.95),
    0 2px 10px rgba(0,0,0,0.9),
    0 0 30px rgba(0,0,0,0.85);
}
.hero h1 {
  max-width: 14ch;
  color: var(--cream-2);
  font-weight: 300;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
.hero h1 .accent {
  color: var(--brass);
  font-style: italic;
  text-shadow:
    0 1px 2px rgba(0,0,0,0.95),
    0 2px 10px rgba(0,0,0,0.9),
    0 0 30px rgba(0,0,0,0.85);
}

.hero-sub {
  max-width: 44ch;
  margin-top: 28px;
  font-size: 17px;
  color: rgba(235, 228, 211, 0.92);
  font-weight: 300;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}
.hero-actions { margin-top: 44px; display: flex; gap: 18px; align-items: center; }

.btn {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.25s ease;
  border-radius: 2px;
}
.btn-primary { background: var(--brass); color: var(--ink); }
.btn-primary:hover { background: var(--cream); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(235,228,211,0.5); }
.btn-ghost:hover { border-color: var(--brass); color: var(--brass); }

/* Day/Night toggle (now in nav — see nav section for base .dn-toggle) */
.dn-toggle-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream-3);
  transition: color 0.4s ease;
}

.dn-switch {
  position: relative;
  width: 56px; height: 28px;
  border-radius: 100px;
  background: rgba(235, 228, 211, 0.15);
  border: 1px solid var(--line);
  transition: background 0.4s ease;
}
.dn-switch::after {
  content: "";
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--cream-3);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s;
}
.dn-toggle.is-on .dn-switch { background: rgba(201, 168, 106, 0.3); }
.dn-toggle.is-on .dn-switch::after { transform: translateX(28px); background: var(--brass); box-shadow: 0 0 12px var(--brass-glow); }
.dn-toggle.is-off .dn-switch::after { background: #6a6a64; }

.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  opacity: 0.7;
  transition: color 0.4s ease;
}

.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, currentColor, transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== Marquee ===== */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 26px 0;
  overflow: hidden;
  background: var(--ink-2);
}
.marquee-track {
  display: flex;
  gap: 80px;
  animation: marqueeScroll 50s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  color: var(--cream-3);
  display: flex;
  align-items: center;
  gap: 80px;
}
.marquee-dot { color: var(--brass); }
@keyframes marqueeScroll {
  to { transform: translateX(-50%); }
}

/* ===== Section header ===== */
.sec-head { display: grid; grid-template-columns: 1fr 1.6fr; gap: 80px; align-items: end; margin-bottom: 80px; }
.sec-head-r p { max-width: 56ch; }
.sec-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--brass);
}

/* ===== Services ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service {
  background: var(--ink);
  padding: 56px 44px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 460px;
  transition: background 0.3s;
}
.service:hover { background: var(--ink-2); }
.service-num {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--brass);
  letter-spacing: 0.2em;
}
.service-icon {
  margin-top: 32px;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  color: var(--brass);
}
.service h3 { margin-top: 36px; max-width: 14ch; color: var(--cream); }
.service p { margin-top: 18px; font-size: 15px; }
.service-tags {
  margin-top: auto;
  padding-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.service-tag {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-3);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 2px;
}

/* ===== About ===== */
.about-narrow { max-width: 880px; }
.editorial { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: start; }

.logo-feature {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 50% 50%, rgba(201, 168, 106, 0.15), transparent 60%),
    repeating-linear-gradient(135deg, rgba(58,74,60,0.04) 0 12px, rgba(12,19,16,0.02) 12px 24px),
    linear-gradient(135deg, #ebe4d3, #d8cfb8);
  border: 1px solid rgba(12,19,16,0.08);
  position: relative;
}
.logo-feature::before, .logo-feature::after {
  content: "";
  position: absolute;
  width: 14px; height: 14px;
  border: 1px solid var(--brass-2);
}
.logo-feature::before { top: 24px; left: 24px; border-right: none; border-bottom: none; }
.logo-feature::after { bottom: 24px; right: 24px; border-left: none; border-top: none; }
.logo-feature img {
  max-width: 78%;
  max-height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 8px 32px rgba(12,19,16,0.18));
}

.editorial-text h2 .accent { color: var(--brass-2); font-style: italic; }
.editorial-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 48px; padding-top: 48px; border-top: 1px solid var(--line-dark); }
.stat-num { font-family: var(--serif); font-size: 56px; color: var(--ink); font-weight: 300; line-height: 1; }
.stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--moss); margin-top: 10px; }

/* ===== Process ===== */
.process { background: var(--ink); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); margin-top: 60px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process-step { background: var(--ink); padding: 48px 32px; min-height: 280px; display: flex; flex-direction: column; }
.process-num { font-family: var(--serif); font-size: 64px; color: var(--brass); font-weight: 300; line-height: 1; }
.process-step h4 { margin-top: 32px; font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--cream); }
.process-step p { margin-top: 12px; font-size: 14px; }

/* ===== Contact ===== */
.contact { background: var(--ink); position: relative; overflow: hidden; }
.contact-glow {
  position: absolute;
  top: 50%; left: 80%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,106,0.12), transparent 70%);
  pointer-events: none;
}
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 100px; position: relative; z-index: 2; }
.contact h2 .accent { color: var(--brass); font-style: italic; }
.contact-info { margin-top: 56px; }
.contact-row { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 22px 0; border-bottom: 1px solid var(--line); align-items: center; }
.contact-row:last-child { border-bottom: none; }
.contact-row-label { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); }
.contact-row-value { font-family: var(--serif); font-size: 22px; color: var(--cream); }
.contact-row-value a { color: inherit; text-decoration: none; transition: color 0.2s; }
.contact-row-value a:hover { color: var(--brass); }

.form { display: flex; flex-direction: column; gap: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brass); margin-bottom: 10px; }
.field input, .field textarea, .field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  padding: 10px 0;
  outline: none;
  transition: border-color 0.2s;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--brass); }
.field textarea { resize: vertical; min-height: 80px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23c9a86a' fill='none' stroke-width='1.2'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0 center; }
.field select option { background: var(--ink-2); color: var(--cream); }

.form-success {
  background: rgba(201, 168, 106, 0.08);
  border: 1px solid var(--brass);
  padding: 32px;
  text-align: center;
  border-radius: 2px;
}
.form-success h4 { font-family: var(--serif); font-size: 28px; color: var(--cream); }
.form-success p { margin-top: 10px; }

/* ===== Footer ===== */
.footer { background: var(--ink); border-top: 1px solid var(--line); padding: 60px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img {
  width: 96px; height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.4));
}
.footer-brand-text .name { font-family: var(--serif); font-size: 24px; color: var(--cream); display: block; }
.footer-brand-text .tag { font-size: 9px; letter-spacing: 0.32em; color: var(--brass); margin-top: 6px; text-transform: uppercase; }
.footer-col h5 { font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brass); margin-bottom: 18px; }
.footer-col a { display: block; color: var(--cream-3); text-decoration: none; font-size: 14px; padding: 6px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--brass); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 32px; border-top: 1px solid var(--line); font-size: 12px; color: rgba(235,228,211,0.5); }

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 1024px) {
  .sec-head { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service { min-height: 380px; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
  .editorial { grid-template-columns: 1fr; gap: 60px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .editorial-stats { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile */
@media (max-width: 768px) {
  /* Nav */
  .nav {
    padding: 12px 16px;
    flex-wrap: nowrap;
    overflow: visible;
  }
  .nav.scrolled { padding: 8px 16px; }
  .nav-brand { flex-shrink: 1; min-width: 0; overflow: hidden; }
  .nav-brand-text .name { font-size: 20px; white-space: nowrap; }
  .nav-brand-text .tag { font-size: 8px; letter-spacing: 0.24em; margin-top: 4px; }
  .nav-brand img { width: 48px; height: 48px; }
  .nav.scrolled .nav-brand img { width: 40px; height: 40px; }

  .nav-right { gap: 12px; flex-shrink: 0; }

  /* Hamburger visible */
  .nav-hamburger { display: flex; }

  /* Toggle shrinks on mobile — hide label, compact switch */
  .dn-toggle { padding: 6px 10px 6px 12px; gap: 8px; }
  .dn-toggle-label { display: none; }
  .dn-switch { width: 40px; height: 22px; }
  .dn-switch::after { width: 16px; height: 16px; }
  .dn-toggle.is-on .dn-switch::after { transform: translateX(18px); }

  /* Mobile nav drawer — pulled OUT of flex flow with fixed positioning */
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    height: 100%;
    background: rgba(12, 19, 16, 0.95);
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    padding: 80px 32px 40px;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: -webkit-transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 105;
    overflow-y: auto;
  }
  .nav-links.open {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .nav-links a {
    display: block;
    font-size: 18px;
    letter-spacing: 0.12em;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
    width: 100%;
    opacity: 1;
  }
  .nav-links .nav-cta {
    border: 1px solid var(--brass) !important;
    padding: 16px 24px !important;
    margin-top: 24px;
    text-align: center;
    width: 100%;
    display: block;
    border-bottom: none;
  }
  .nav-backdrop { display: block; }

  /* Hero */
  .hero { min-height: 100vh; min-height: 100svh; }
  .hero-content { padding: 0 20px 80px; }
  .hero-logo { width: 180px; margin-bottom: 20px; }
  .hero-content .eyebrow { font-size: 10px; letter-spacing: 0.2em; margin-bottom: 16px; }
  h1 { font-size: clamp(36px, 10vw, 56px); }
  .hero-sub { font-size: 15px; margin-top: 20px; max-width: 100%; }
  .hero-actions {
    margin-top: 28px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .hero-actions .btn {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    width: 100%;
    box-sizing: border-box;
  }
  .hero-scroll { display: none; }

  /* Container */
  .container { padding: 0 20px; }
  .section { padding: 80px 0; }

  /* Typography */
  h2 { font-size: clamp(28px, 8vw, 42px); }
  h3 { font-size: clamp(20px, 5vw, 26px); }

  /* Marquee */
  .marquee { padding: 18px 0; }
  .marquee-item { font-size: 16px; }
  .marquee-track { gap: 40px; }
  .marquee-item { gap: 40px; }

  /* Services */
  .sec-head { grid-template-columns: 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .service { padding: 40px 28px; min-height: auto; }
  .service-icon { margin-top: 24px; }
  .service h3 { margin-top: 24px; max-width: none; }
  .service-tags { padding-top: 24px; }

  /* About */
  .about-narrow { max-width: 100%; }
  .about-narrow p { font-size: 16px !important; }
  .editorial { grid-template-columns: 1fr; gap: 60px; }
  .editorial-stats { grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; padding-top: 36px; }
  .stat-num { font-size: 36px; }
  .stat-num span { font-size: 22px !important; }
  .stat-label { font-size: 9px; letter-spacing: 0.15em; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; margin-top: 40px; }
  .process-step { padding: 36px 24px; min-height: auto; }
  .process-num { font-size: 48px; }
  .process-step h4 { margin-top: 20px; font-size: 20px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-info { margin-top: 36px; }
  .contact-row { grid-template-columns: 90px 1fr; gap: 16px; padding: 16px 0; }
  .contact-row-value { font-size: 18px; word-break: break-word; overflow-wrap: break-word; }
  .form-row { grid-template-columns: 1fr; }
  .field input, .field textarea, .field select { font-size: 16px; }

  /* Footer */
  .footer { padding: 48px 0 32px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; margin-bottom: 36px; }
  .footer-brand img { width: 72px; height: 72px; }
  .footer-col { margin-top: 0; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* Small phones */
@media (max-width: 380px) {
  .nav { padding: 10px 12px; }
  .nav-brand-text .name { font-size: 18px; }
  .hero-content { padding: 0 16px 70px; }
  .hero-logo { width: 150px; }
  h1 { font-size: 32px; }
  .container { padding: 0 16px; }
  .section { padding: 60px 0; }
  .editorial-stats { grid-template-columns: 1fr; gap: 24px; text-align: center; }
  .stat-num { font-size: 42px; }
}
