/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:           #090909;
  --bg-alt:       #111111;
  --text:         #f0f0f0;
  --text-muted:   #787878;
  --border:       rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.22);
  --gold:         #f4ad24;
  --gold-hover:   #d9941a;
  --font:         'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w:        1200px;
  --nav-h:        72px;
  --pad-x:        72px;
  --pad-y:        96px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3 { line-height: 1.12; font-weight: 700; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* =========================================
   UTILITIES
   ========================================= */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
}

.section-label {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  border-radius: 2px;
  transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
  text-decoration: none;
  min-height: 48px;
}

.btn--primary {
  background: var(--gold);
  color: #fff;
}
.btn--primary:hover { background: var(--gold-hover); }

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}
.btn--ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.04);
}

/* =========================================
   NAVIGATION
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(9, 9, 9, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.nav__logo {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.nav__menu {
  display: flex;
  list-style: none;
  gap: 48px;
  align-items: center;
}
.nav__menu a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.10em;
  color: #d0d0d0;
  transition: color 0.18s;
  text-transform: uppercase;
}
.nav__menu a:hover { color: #fff; }
.nav__menu .nav__cta {
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  padding: 9px 22px;
  border-radius: 2px;
}
.nav__menu .nav__cta:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: all 0.28s ease;
  transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =========================================
   SHARED PHOTO PANEL
   ========================================= */
.photo-panel {
  position: relative;
  overflow: hidden;
}
.photo-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
}

/* Background image */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(9,9,9,0.90) 30%,
    rgba(9,9,9,0.55) 60%,
    rgba(9,9,9,0.20) 100%
  );
}

/* Content */
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  padding: var(--pad-y) var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero__eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 24px;
}

.hero__title {
  font-size: clamp(36px, 5vw, 88px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.0;
  margin-bottom: 48px;
  color: #fff;
}

/* =========================================
   ABOUT  (light section)
   ========================================= */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  background: #f5f4f2;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.about__content {
  padding: var(--pad-y) var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about .section-label { color: #999; }

.about__heading {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.15;
  color: #0a0a0a;
}

.about__lead {
  font-size: 18px;
  line-height: 1.75;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.about__content p {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 18px;
}
.about__content p.about__lead { color: #1a1a1a; }
.about__content strong { color: #1a1a1a; }

.about__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 28px;
}
.chip {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border: 1px solid rgba(0,0,0,0.14);
  color: #666;
  border-radius: 100px;
  white-space: nowrap;
}

.about__quote {
  font-size: 18px !important;
  font-style: italic;
  color: #1a1a1a !important;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  margin-bottom: 36px !important;
  line-height: 1.6 !important;
}

.about__photo {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.about__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* =========================================
   SERVICES
   ========================================= */
.services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.services__photo {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.services__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.services__content {
  padding: var(--pad-y) var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services__title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  margin-bottom: 48px;
  line-height: 1.15;
}

.service-item {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--border);
}
.service-item:last-of-type {
  margin-bottom: 40px;
}

.service-item h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  position: relative;
  padding-bottom: 14px;
}
.service-item h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.service-item p {
  font-size: 14px;
  line-height: 1.85;
  color: #c8c8c8;
}

/* =========================================
   TESTIMONIALS  (light section)
   ========================================= */
.testimonials {
  padding: 112px 0;
  background: #f5f4f2;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.testimonials__header { margin-bottom: 56px; }

.testimonials .section-label { color: #999; }

.testimonials__title {
  font-size: clamp(28px, 4vw, 48px);
  margin-top: 10px;
  color: #0a0a0a;
}

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

.testimonial {
  padding: 36px 32px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.22s, box-shadow 0.22s;
}
.testimonial:hover {
  border-color: rgba(0,0,0,0.18);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.testimonial__quote {
  font-size: 14px;
  line-height: 1.85;
  color: #555;
  font-style: italic;
  flex: 1;
  margin-bottom: 28px;
  position: relative;
}
.testimonial__quote::before {
  content: '\201C';
  font-size: 48px;
  line-height: 1;
  color: rgba(0,0,0,0.06);
  font-style: normal;
  position: absolute;
  top: -8px;
  left: -4px;
}

.testimonial__footer {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  filter: grayscale(20%);
}

.testimonial__name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #0a0a0a;
}

/* =========================================
   CONTACT  (light section)
   ========================================= */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  background: #f5f4f2;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.contact__content {
  padding: var(--pad-y) var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact .section-label { color: #999; }

.contact__title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  margin-bottom: 10px;
  color: #0a0a0a;
}

.contact__sub {
  color: #666;
  font-size: 15px;
  margin-bottom: 40px;
}

.contact__photo {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.contact__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

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

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 2px;
  color: #1a1a1a;
  font-family: var(--font);
  font-size: 16px;
  outline: none;
  resize: vertical;
  transition: border-color 0.18s, box-shadow 0.18s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(244,173,36,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(0,0,0,0.28);
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}
.form-check input[type="checkbox"] {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-check label {
  font-size: 12px;
  color: #666;
  cursor: pointer;
  line-height: 1.6;
}
.form-check a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Validation states */
.form-error {
  display: block;
  font-size: 11px;
  color: #c0392b;
  margin-top: 6px;
  letter-spacing: 0.02em;
}
.form-group--error input,
.form-group--error textarea {
  border-color: #c0392b;
}
.form-group--error input:focus,
.form-group--error textarea:focus {
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
  border-color: #c0392b;
}
.form-check--error label { color: #c0392b; }

/* Success message (light section context) */
.form-success {
  text-align: center;
  padding: 48px 0;
  color: #555;
  font-size: 15px;
}
.form-success strong {
  display: block;
  font-size: 22px;
  color: #1a1a1a;
  margin-bottom: 12px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  padding: 36px 0;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__copy { font-size: 12px; color: #b0b0b0; }

.footer__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.footer__links a {
  font-size: 12px;
  color: #b0b0b0;
  transition: color 0.18s;
}
.footer__links a:hover { color: var(--text); }
.footer__social svg { width: 18px; height: 18px; display: block; }

/* =========================================
   COOKIE BANNER
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: #181818;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 32px;
  transform: translateY(100%);
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}
.cookie-banner.show { transform: translateY(0); }

.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 680px;
  line-height: 1.6;
}
.cookie-banner__text a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-banner__actions .btn { padding: 10px 22px; font-size: 11px; min-height: 40px; }

/* =========================================
   POLICY PAGES
   ========================================= */
.policy-page {
  padding: calc(var(--nav-h) + 72px) 0 96px;
}
.policy-page .container { max-width: 760px; }
.policy-page h1 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 12px; }
.policy-page .policy-date {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  margin-bottom: 56px;
  display: block;
}
.policy-page h2 {
  font-size: 18px;
  font-weight: 600;
  margin-top: 48px;
  margin-bottom: 16px;
}
.policy-page p,
.policy-page li {
  font-size: 14px;
  line-height: 1.9;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.policy-page ul, .policy-page ol { padding-left: 20px; margin-bottom: 14px; }
.policy-page a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.policy-page table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 13px;
}
.policy-page th {
  text-align: left;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding: 10px 12px;
}
.policy-page td {
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  padding: 12px;
  vertical-align: top;
}

/* =========================================
   TRUSTED BY
   ========================================= */
.trusted {
  padding: 56px 0;
  background: #f5f4f2;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.trusted__title {
  text-align: center;
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 64px;
  line-height: 1.1;
}

.trusted__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
}

.trusted__logos img {
  height: 44px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.22s;
}
.trusted__logos img:hover {
  filter: grayscale(0%) opacity(1);
}

/* =========================================
   CASE STUDIES
   ========================================= */
.case-studies {
  padding: 112px 0;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.case-studies__header {
  margin-bottom: 64px;
}

.case-studies__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-top: 12px;
  line-height: 1.1;
}

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

.case-study {
  background: #f5f4f2;
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  border-radius: 2px;
  transition: box-shadow 0.22s;
}
.case-study:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
}

.case-study__name {
  font-size: 20px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 10px;
  line-height: 1.3;
}

.case-study__metric {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
}

.case-study__desc {
  font-size: 14px;
  line-height: 1.85;
  color: #555;
  flex: 1;
  margin-bottom: 28px;
}

.case-study__result {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.case-study__tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border: 1px solid rgba(0,0,0,0.14);
  color: #555;
  border-radius: 100px;
}

/* =========================================
   NEWSLETTER CTA  (dark, centered band)
   ========================================= */
.newsletter-cta {
  padding: 112px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  text-align: center;
}

.newsletter-cta__inner {
  max-width: 640px;
  margin: 0 auto;
}

.newsletter-cta .section-label { color: var(--gold); letter-spacing: 0.2em; }

.newsletter-cta__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-top: 14px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.newsletter-cta__sub {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}

/* =========================================
   CONSULTATION  (light, split layout)
   ========================================= */
.consultation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  background: #f5f4f2;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.consultation__content {
  padding: var(--pad-y) var(--pad-x);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.consultation .section-label { color: #999; }

.consultation__title {
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.15;
  color: #0a0a0a;
  margin-top: 14px;
}

.consultation__lead {
  font-size: 18px;
  line-height: 1.75;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.consultation__content p:not(.consultation__lead) {
  font-size: 15px;
  line-height: 1.85;
  color: #555;
  margin-bottom: 36px;
}

/* 4 steps */
.consult-steps {
  list-style: none;
  margin: 4px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.consult-steps li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.consult-steps__num {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  padding-top: 3px;
  flex-shrink: 0;
  width: 24px;
}
.consult-steps strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 4px;
}
.consult-steps p {
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  margin-bottom: 0 !important;
}

.consultation__photo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad-y) var(--pad-x) var(--pad-y) 0;
}
.consultation__photo img {
  width: 100%;
  max-height: 52vh;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
}

/* =========================================
   NEWSLETTER HERO
   ========================================= */
.nl-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
}

.nl-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.nl-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
}
.nl-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(9,9,9,0.97) 35%,
    rgba(9,9,9,0.70) 62%,
    rgba(9,9,9,0.25) 100%
  );
}

.nl-hero__container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

.nl-hero__content {
  max-width: 560px;
  padding: var(--pad-y) 0;
}

.nl-hero .section-label { color: var(--gold); letter-spacing: 0.2em; }

.nl-hero__title {
  font-size: clamp(30px, 4vw, 56px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  margin-top: 14px;
  margin-bottom: 20px;
}

.nl-hero__sub {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
  margin-bottom: 28px;
}

.nl-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.nl-hero__chips .chip {
  border-color: rgba(255,255,255,0.14);
  color: #999;
}

.nl-hero__form { max-width: 480px; }

/* =========================================
   RESPONSIVE — TABLET
   ========================================= */
@media (max-width: 1024px) {
  :root { --pad-x: 48px; --pad-y: 80px; }

  .hero__title { font-size: clamp(32px, 5vw, 64px); }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================
   RESPONSIVE — MOBILE
   ========================================= */
@media (max-width: 768px) {
  :root { --nav-h: 60px; --pad-x: 24px; --pad-y: 60px; }

  /* Nav */
  .nav__inner { justify-content: flex-end; }
  .nav__menu {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(9,9,9,0.98);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 20px 18px 28px;
    gap: 0;
    border-bottom: 1px solid var(--border);
  }
  .nav__menu.open { display: flex; }
  .nav__menu li { border-bottom: 1px solid var(--border); }
  .nav__menu li:last-child { border-bottom: none; margin-top: 12px; }
  .nav__menu a { display: block; padding: 14px 0; font-size: 14px; color: var(--text); }
  .nav__menu .nav__cta { text-align: center; padding: 14px 0; border: none; }
  .nav__burger { display: flex; }

  /* Split sections — stack vertically */
  .hero,
  .about,
  .services,
  .contact {
    grid-template-columns: 1fr;
  }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero__bg::after {
    background: linear-gradient(
      180deg,
      rgba(9,9,9,0.75) 0%,
      rgba(9,9,9,0.60) 100%
    );
  }
  .hero__content { padding: 64px var(--pad-x) 56px; max-width: 100%; }
  .hero__title { font-size: clamp(32px, 10vw, 52px); margin-bottom: 32px; }

  /* About */
  .about__content { padding: var(--pad-y) var(--pad-x); }
  .about__photo { height: 65vw; min-height: 300px; order: -1; }
  .about__photo img { position: relative; inset: auto; width: 100%; height: 100%; }

  /* Services */
  .services { grid-template-columns: 1fr; }
  .services__content { padding: var(--pad-y) var(--pad-x); }
  .services__photo { height: 65vw; min-height: 300px; }
  .services__photo img { position: relative; inset: auto; width: 100%; height: 100%; }

  /* Trusted by */
  .trusted__logos { gap: 28px; }
  .trusted__logos img { height: 26px; max-width: 90px; }

  /* Case studies */
  .case-studies { padding: 72px 0; }
  .case-studies__grid { grid-template-columns: 1fr; gap: 1px; }
  .case-study { padding: 36px 28px; }
  .case-study__metric { font-size: 32px; }

  /* Newsletter CTA */
  .newsletter-cta { padding: 72px 0; }

  /* Consultation */
  .consultation { grid-template-columns: 1fr; }
  .consultation__content { padding: var(--pad-y) var(--pad-x); }
  .consultation__photo { padding: 0 var(--pad-x) var(--pad-y); justify-content: flex-start; }
  .consultation__photo img { max-height: 60vw; }

  /* Testimonials */
  .testimonials { padding: 72px 0; }
  .testimonials__grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial { padding: 28px 22px; }

  /* Contact */
  .contact__content { padding: var(--pad-y) var(--pad-x); }
  .contact__photo { height: 65vw; min-height: 300px; }
  .contact__photo img { position: relative; inset: auto; width: 100%; height: 100%; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer { padding: 32px 0; }
  .footer__inner { flex-direction: column; align-items: center; gap: 16px; text-align: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; gap: 20px; }

  /* Cookie */
  .cookie-banner { padding: 16px 18px; }
  .cookie-banner__inner { flex-direction: column; gap: 16px; }
  .cookie-banner__actions { width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }

  /* Policy */
  .policy-page { padding: calc(var(--nav-h) + 48px) 0 64px; }
  .policy-page h2 { font-size: 16px; margin-top: 36px; }
  .policy-page table { display: block; overflow-x: auto; }
}

/* =========================================
   RESPONSIVE — SMALL PHONES
   ========================================= */
@media (max-width: 420px) {
  .hero__title { font-size: 30px; }
  .about__chips { gap: 6px; }
  .chip { font-size: 10px; padding: 5px 11px; }
}
