/*
  Umnik Web — Agency Website Styles
  Luxury boutique digital agency, 2026
  Fonts: Cormorant Garamond (display) · Syne (heading) · DM Sans (body)
*/

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background: #0D0C0B;
  color: #FAF7F2;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: 'DM Sans', 'Helvetica Neue', sans-serif;
  font-weight: 300;
  line-height: 1.5;
}

::selection {
  background: rgba(124, 91, 196, 0.25);
  color: #FAF7F2;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #0D0C0B; }
::-webkit-scrollbar-thumb { background: #332D27; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #5A4F42; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; }

/* ─── CSS Tokens ─── */
:root {
  --black-950: #080706;
  --black-900: #0D0C0B;
  --black-800: #1A1713;
  --black-700: #26221D;
  --black-600: #332D27;

  --neutral-500: #5A4F42;
  --neutral-400: #8A7E70;
  --neutral-300: #B8AFA4;
  --neutral-200: #D6CEBE;
  --neutral-100: #EDE6DB;
  --neutral-50:  #F5F0E8;

  --ivory-100: #FAF7F2;
  --ivory-50:  #FDFCFA;

  --gold-500: #7C5BC4;
  --gold-400: #9075D4;
  --gold-300: #B0A0E3;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-heading: 'Syne', 'Futura', sans-serif;
  --font-body:    'DM Sans', 'Helvetica Neue', sans-serif;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ─── Layout Containers ─── */
.section-inner {
  max-width: 1344px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ─── Scroll Reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ─────────────────────────────────────────
   HEADER
───────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  transition: all 300ms var(--ease-out);
  background: transparent;
  border-bottom: 1px solid transparent;
}

#site-header.scrolled {
  background: rgba(13, 12, 11, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255, 255, 255, 0.07);
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 48px;
  transition: padding 300ms var(--ease-out);
}

#site-header.scrolled .header-inner {
  padding: 14px 48px;
}

/* Logo */
.logo, .footer-logo {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #FAF7F2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

.logo-accent {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: 22px;
  text-transform: none;
  color: var(--gold-500);
  letter-spacing: 0.04em;
}

/* Desktop nav */
.desktop-nav {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral-400);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 150ms ease, border-color 150ms ease;
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: #FAF7F2;
  border-bottom-color: var(--gold-500);
}

/* Mobile menu */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 1px;
  background: #FAF7F2;
  transition: transform 250ms ease, opacity 250ms ease;
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  background: rgba(13, 12, 11, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 24px 48px 32px;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-nav.open { display: flex; }

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral-400);
  text-decoration: none;
  transition: color 150ms ease;
}
.mobile-nav-link:hover { color: #FAF7F2; }
.mobile-nav-link.accent { color: var(--gold-500); }

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #FAF7F2;
  background: var(--gold-500);
  border: none;
  border-radius: 2px;
  padding: 14px 32px;
  cursor: pointer;
  text-decoration: none;
  transition: background 150ms ease;
}
.btn-primary:hover { background: var(--gold-400); }
.btn-primary:active { background: #6a4ab0; }

.btn-sm { padding: 10px 22px; }

.btn-secondary {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: #FAF7F2;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  padding: 13px 32px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 150ms ease;
}
.btn-secondary:hover { border-color: rgba(255, 255, 255, 0.5); }

.btn-outline-dark {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #0D0C0B;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 2px;
  padding: 11px 24px;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 150ms ease;
  white-space: nowrap;
  align-self: flex-end;
}
.btn-outline-dark:hover { border-color: rgba(0, 0, 0, 0.5); }

/* ─────────────────────────────────────────
   TYPOGRAPHY HELPERS
───────────────────────────────────────── */
.eyebrow {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--neutral-400);
  margin-bottom: 28px;
}
.eyebrow.gold { color: var(--gold-500); }
.eyebrow.centered { text-align: center; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 0;
}
.section-title em { font-style: italic; }
.section-title.dark { color: #0D0C0B; }
.section-title.light { color: #FAF7F2; }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  flex-wrap: wrap;
  gap: 24px;
}
.section-header > div:first-child { display: flex; flex-direction: column; }

.body-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--neutral-500);
  margin-bottom: 16px;
}
.body-text.muted { color: var(--neutral-400); }

/* ─────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: #0D0C0B;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 120px 48px 120px;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 300;
  font-style: italic;
  color: #FAF7F2;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: 32px;
}

.hero-sub {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  color: var(--neutral-400);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 48px;
}

.hero-cta-row {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.scroll-hint {
  position: absolute;
  bottom: 100px;
  left: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neutral-500);
}
.scroll-hint-line {
  width: 48px;
  height: 1px;
  background: #332D27;
}

/* Skill ticker */
.ticker-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 14px 0;
  overflow: hidden;
  background: #0D0C0B;
}
.ticker-inner {
  display: flex;
  gap: 40px;
  animation: ticker 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.ticker-item {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #332D27;
}
.ticker-dot {
  color: var(--gold-500);
  margin-right: 0;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────
   SERVICES SECTION
───────────────────────────────────────── */
#services {
  background: var(--neutral-50);
  padding: 100px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2px;
}

.service-card {
  background: var(--neutral-100);
  padding: 32px 28px;
  border-radius: 0;
  transition: background 200ms ease;
}
.service-card:hover { background: var(--neutral-200); }
.service-card.featured { background: #0D0C0B; }
.service-card.featured:hover { background: #1A1713; }

.service-num {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--neutral-400);
  margin-bottom: 16px;
}
.service-num.gold { color: var(--gold-500); }

.service-title {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #0D0C0B;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-title.light { color: #FAF7F2; }

.service-desc {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--neutral-500);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-desc.muted { color: var(--neutral-400); }

.tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  font-family: var(--font-heading);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  color: var(--neutral-400);
}
.tag.light { border-color: rgba(255, 255, 255, 0.1); }

/* ─────────────────────────────────────────
   WORK SECTION
───────────────────────────────────────── */
#work {
  background: #0D0C0B;
  padding: 100px 0;
}

.work-filters {
  display: flex;
  gap: 4px;
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding-bottom: 0;
}

.filter-btn {
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neutral-500);
  background: none;
  border: none;
  border-bottom: 1px solid transparent;
  padding: 10px 20px 11px;
  cursor: pointer;
  transition: color 150ms ease;
  margin-bottom: -1px;
}
.filter-btn:hover { color: #FAF7F2; }
.filter-btn.active {
  color: #FAF7F2;
  border-bottom-color: var(--gold-500);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
}

.project-card {
  background: #1A1713;
  overflow: hidden;
  transform: translateY(0);
  transition: all 250ms var(--ease-out);
  cursor: default;
}
.project-card.alt { background: #26221D; }
.project-card:hover {
  background: #1E1A16;
  transform: translateY(-2px);
}

.project-thumb {
  height: 180px;
  background: #26221D;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.project-card.alt .project-thumb { background: #332D27; }

.project-monogram {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  font-style: italic;
  color: rgba(124, 91, 196, 0.2);
  letter-spacing: -0.02em;
}

.project-type-badge {
  position: absolute;
  top: 12px; right: 12px;
  font-family: var(--font-heading);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--neutral-500);
  background: rgba(13, 12, 11, 0.6);
  padding: 4px 8px;
  border-radius: 2px;
}

.project-content { padding: 20px 22px 24px; }

.project-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.project-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #FAF7F2;
  letter-spacing: -0.01em;
}

.project-year {
  font-family: var(--font-heading);
  font-size: 9px;
  color: var(--neutral-500);
  letter-spacing: 0.08em;
}

.project-desc {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  color: var(--neutral-400);
  line-height: 1.6;
  margin-bottom: 14px;
}

.project-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project-platform {
  font-family: var(--font-heading);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--neutral-500);
}

.project-link {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--gold-500);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 150ms ease;
}
.project-link:hover { color: var(--gold-400); }

/* ─────────────────────────────────────────
   ABOUT SECTION
───────────────────────────────────────── */
#about {
  background: var(--neutral-50);
  padding: 100px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text .eyebrow { margin-bottom: 20px; }
.about-text .section-title { margin-bottom: 28px; }

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

.stat-box {
  padding: 32px 28px;
}
.stat-box.dark { background: #0D0C0B; }
.stat-box.light { background: var(--neutral-100); }

.stat-num {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num.gold { color: var(--gold-500); }
.stat-num.dark { color: #0D0C0B; }

.stat-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  line-height: 1.5;
  color: var(--neutral-400);
}

.signature {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-500);
  margin-top: 28px;
}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials-strip {
  background: #1A1713;
  padding: 80px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.testimonials-strip .eyebrow { margin-bottom: 48px; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
}

.testimonial-card {
  padding: 32px 28px;
  background: #0D0C0B;
}

.testimonial-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 300;
  font-style: italic;
  color: #FAF7F2;
  line-height: 1.5;
  margin-bottom: 20px;
}

.testimonial-client {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
}

/* ─────────────────────────────────────────
   CONTACT SECTION
───────────────────────────────────────── */
#contact {
  background: #0D0C0B;
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info .eyebrow { margin-bottom: 20px; }
.contact-info .section-title { margin-bottom: 28px; }
.contact-info .body-text { margin-bottom: 40px; }

.contact-email-block {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 32px;
}

.contact-email-label {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neutral-500);
  margin-bottom: 10px;
}

.contact-email {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--gold-500);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 150ms ease;
}
.contact-email:hover { color: var(--gold-400); }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.form-field {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--neutral-400);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: #1A1713;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #FAF7F2;
  outline: none;
  box-sizing: border-box;
  transition: border-color 150ms ease;
}
.form-input::placeholder { color: var(--neutral-500); }
.form-input:focus { border-color: rgba(124, 91, 196, 0.4); }

.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  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='%235A4F42' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.form-select option { background: #1A1713; }

.form-textarea {
  height: 120px;
  resize: none;
  font-family: var(--font-body);
}

.contact-form .btn-primary { align-self: flex-start; margin-top: 4px; }

/* Form success */
.form-success {
  padding: 48px 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  text-align: center;
}
.form-success-title {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  font-style: italic;
  color: var(--gold-500);
  margin-bottom: 16px;
}
.form-success-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--neutral-400);
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
#site-footer {
  background: #080706;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 64px 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 32px;
}

.footer-logo {
  display: block;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--neutral-500);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 24px;
}

.footer-email {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--gold-500);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 150ms ease;
}
.footer-email:hover { color: var(--gold-400); }

.footer-col-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--neutral-500);
  margin-bottom: 18px;
}

.footer-link {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 300;
  color: var(--neutral-400);
  text-decoration: none;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 150ms ease;
}
.footer-link:hover { color: #FAF7F2; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: var(--font-heading);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #332D27;
}

/* ─────────────────────────────────────────
   DARK / LIGHT SECTION HELPERS
───────────────────────────────────────── */
section.dark { background: #0D0C0B; }

/* Project card image thumbnails */
.project-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}
.project-card:hover .project-thumb img { transform: scale(1.04); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .desktop-nav { display: none; }
  .header-inner > .btn-primary { display: none; }
  .mobile-menu-btn { display: flex; }

  .header-inner {
    padding: 18px 24px;
  }
  #site-header.scrolled .header-inner {
    padding: 12px 24px;
  }
  .mobile-nav { padding: 20px 24px 28px; }

  .section-inner { padding: 0 24px; }

  #hero .hero-inner {
    padding: 100px 24px 100px;
  }
  .scroll-hint { left: 24px; }
  .hero-cta-row { flex-direction: column; align-items: flex-start; }

  #services,
  #work,
  #about,
  #contact,
  .testimonials-strip { padding: 72px 0; }

  .section-header { margin-bottom: 40px; }
  .section-header { flex-direction: column; align-items: flex-start; }

  .services-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .form-row-2 { grid-template-columns: 1fr; }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  #site-footer { padding: 48px 0 32px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: clamp(40px, 11vw, 64px); }
  .stats-grid { grid-template-columns: 1fr; }
}
