/* ============================================================
   DUGENTO PRO — 2026 Theme Stylesheet
   Color Identity: Lapis (#1C2AB5), Ink (#090D26), Gesso (#EBEEF3)
   Typography: Schibsted Grotesk
   ============================================================ */

/* ── 1. Design Tokens ────────────────────────────────────────── */
:root {
  /* Brand Palette */
  --lapis:       #1C2AB5;
  --lapis-dark:  #141F8A;
  --lapis-light: #2535CC;
  --ink:         #090D26;
  --ink-surface: #0E1436;
  --gesso:       #EBEEF3;

  /* Semantic Aliases */
  --color-brand:     var(--lapis);
  --color-bg:        var(--gesso);
  --color-bg-alt:    #F6F7FA;
  --color-surface:   var(--ink);
  --color-fg:        var(--ink);
  --color-fg-inv:    var(--gesso);
  --color-muted:     #4B5170;
  --color-muted-inv: #A3AAC8;
  --color-line:      #C6CCDB;
  --color-line-inv:  #262D57;

  /* Typography */
  --font-sans: "Schibsted Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  /* Fluid Font Scale */
  --text-xs:      0.75rem;    /* 12px */
  --text-sm:      0.875rem;   /* 14px */
  --text-base:    1.0625rem;  /* 17px */
  --text-lg:      1.25rem;    /* 20px */
  --text-xl:      1.5rem;     /* 24px */
  --text-2xl:     2rem;       /* 32px */
  --text-3xl:     clamp(2rem, 3.5vw, 2.75rem);
  --text-4xl:     clamp(2.5rem, 4.5vw, 3.75rem);
  --text-display: clamp(3rem, 6vw, 5.25rem);

  /* Font Weights */
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;

  /* Spacing */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-32: 128px;

  /* Layout */
  --container-max: 1200px;
  --container-pad: clamp(16px, 4vw, 32px);
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  /* Transitions & Shadows */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --dur-fast: 150ms;
  --dur-base: 250ms;
  --shadow-sm: 0 1px 3px rgba(9, 13, 38, 0.05);
  --shadow-md: 0 4px 16px -2px rgba(9, 13, 38, 0.08);
  --shadow-lg: 0 12px 32px -4px rgba(9, 13, 38, 0.12);

  --z-nav: 100;
  --z-modal: 200;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-fg);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease);
}

ul, ol {
  list-style: none;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: var(--fw-medium);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--color-fg);
}

/* Screen reader text */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/* ── 3. Layout Utilities ─────────────────────────────────────── */
.dugento-container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}

.section {
  padding-top: clamp(64px, 8vw, 112px);
  padding-bottom: clamp(64px, 8vw, 112px);
  position: relative;
}

.section-alt {
  background-color: var(--color-bg-alt);
}

.section-dark {
  background-color: var(--color-surface);
  color: var(--color-fg-inv);
}

.section-dark h1, .section-dark h2, .section-dark h3 {
  color: var(--color-fg-inv);
}

.section-header {
  margin-bottom: clamp(36px, 5vw, 64px);
}

.section-header.text-center {
  text-align: center;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--lapis);
  background: rgba(28, 42, 181, 0.08);
  padding: 6px 14px;
  border-radius: var(--radius-xs);
  margin-bottom: var(--space-4);
}

.section-dark .badge-tag {
  color: var(--gesso);
  background: rgba(235, 238, 243, 0.12);
}

.section-title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-4);
}

.section-desc {
  font-size: var(--text-lg);
  color: var(--color-muted);
  max-width: 640px;
  line-height: 1.5;
}

.section-dark .section-desc {
  color: var(--color-muted-inv);
}

/* ── 4. Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  letter-spacing: -0.01em;
  line-height: 1;
  padding: 14px 28px;
  border-radius: var(--radius-xs);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background-color: var(--lapis);
  color: var(--gesso);
  border-color: var(--lapis);
}

.btn-primary:hover {
  background-color: var(--lapis-dark);
  border-color: var(--lapis-dark);
  color: #fff;
  box-shadow: 0 4px 18px rgba(28, 42, 181, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--ink);
  border-color: var(--color-line);
}

.btn-outline:hover {
  border-color: var(--ink);
  background-color: rgba(9, 13, 38, 0.04);
}

.btn-white {
  background-color: var(--gesso);
  color: var(--ink);
  border-color: var(--gesso);
}

.btn-white:hover {
  background-color: #fff;
  border-color: #fff;
}

.btn-outline-white {
  background-color: transparent;
  color: var(--gesso);
  border-color: rgba(235, 238, 243, 0.35);
}

.btn-outline-white:hover {
  border-color: var(--gesso);
  background-color: rgba(235, 238, 243, 0.1);
}

/* ── 5. Site Header ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  height: 76px;
  transition: all var(--dur-base) var(--ease);
  background: transparent;
}

.site-header.is-scrolled {
  background: rgba(235, 238, 243, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--color-line);
  box-shadow: var(--shadow-sm);
  height: 68px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  display: flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.dugento-wordmark-wrap {
  display: block;
  width: 140px;
  height: auto;
}

.dugento-wordmark-svg {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-link {
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-muted);
  position: relative;
  padding: 8px 0;
}

.nav-link:hover, .nav-link.active {
  color: var(--ink);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--lapis);
  transition: width var(--dur-base) var(--ease);
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}

/* ── 6. Hero Section ────────────────────────────────────────── */
.hero-section {
  padding-top: calc(76px + clamp(48px, 8vw, 96px));
  padding-bottom: clamp(64px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}

.hero-bg-ring {
  position: absolute;
  right: -12%;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(380px, 45vw, 680px);
  height: clamp(380px, 45vw, 680px);
  color: rgba(28, 42, 181, 0.04);
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.hero-title {
  font-size: var(--text-display);
  font-weight: var(--fw-medium);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-top: var(--space-4);
  margin-bottom: var(--space-6);
}

.hero-title span.text-lapis {
  color: var(--lapis);
}

.hero-desc {
  font-size: clamp(1.125rem, 1.8vw, 1.35rem);
  color: var(--color-muted);
  line-height: 1.55;
  max-width: 680px;
  margin-bottom: var(--space-8);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-4);
}

/* ── 7. Stats Bar ───────────────────────────────────────────── */
.stats-bar {
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background-color: #fff;
  padding: clamp(32px, 4vw, 48px) 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.stat-item {
  border-left: 1px solid var(--color-line);
  padding-left: var(--space-6);
}

.stat-item:first-child {
  border-left: none;
  padding-left: 0;
}

.stat-val {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--fw-medium);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--lapis);
  margin-bottom: var(--space-2);
}

.stat-lbl {
  font-size: var(--text-sm);
  color: var(--color-muted);
  font-weight: var(--fw-regular);
}

/* ── 8. Services Section ────────────────────────────────────── */
.services-tabs {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
  flex-wrap: wrap;
}

.tab-btn {
  background: transparent;
  border: 1px solid var(--color-line);
  padding: 8px 18px;
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius-xs);
  cursor: pointer;
  transition: all var(--dur-fast) var(--ease);
}

.tab-btn:hover, .tab-btn.active {
  background-color: var(--ink);
  color: var(--gesso);
  border-color: var(--ink);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.service-card {
  background: #fff;
  border: 1px solid var(--color-line);
  padding: var(--space-8);
  border-radius: var(--radius-xs);
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease), box-shadow var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
  position: relative;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--lapis);
}

.service-icon-box {
  width: 48px;
  height: 48px;
  background-color: rgba(28, 42, 181, 0.07);
  color: var(--lapis);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xs);
  margin-bottom: var(--space-5);
}

.service-icon-box svg {
  width: 24px;
  height: 24px;
}

.service-category-tag {
  font-size: var(--text-xs);
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-1);
}

.service-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.service-desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.55;
  margin-bottom: var(--space-6);
  flex-grow: 1;
}

.service-features {
  border-top: 1px solid var(--color-line);
  padding-top: var(--space-4);
  margin-top: auto;
}

.service-feature-item {
  font-size: var(--text-xs);
  color: var(--color-muted);
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-bottom: 6px;
}

.service-feature-item svg {
  color: var(--lapis);
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.service-tools {
  margin-top: var(--space-3);
  font-size: 0.7rem;
  color: #8A92A6;
}

/* ── 9. Portfolio / Case Studies ────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.portfolio-card {
  background: var(--ink-surface);
  border: 1px solid var(--color-line-inv);
  border-radius: var(--radius-xs);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: var(--lapis);
}

.portfolio-cover {
  height: 240px;
  background-color: var(--lapis-dark);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-base) var(--ease);
}

.portfolio-card:hover .portfolio-cover img {
  transform: scale(1.04);
}

.portfolio-cover-pattern {
  position: absolute;
  width: 120px;
  height: 120px;
  color: rgba(235, 238, 243, 0.15);
}

.portfolio-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.portfolio-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-muted-inv);
  margin-bottom: var(--space-2);
}

.portfolio-title {
  font-size: var(--text-lg);
  color: var(--gesso);
  margin-bottom: var(--space-3);
}

.portfolio-summary {
  font-size: var(--text-sm);
  color: var(--color-muted-inv);
  line-height: 1.5;
  margin-bottom: var(--space-5);
  flex-grow: 1;
}

.portfolio-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3);
  border-top: 1px solid var(--color-line-inv);
  padding-top: var(--space-4);
  margin-top: auto;
}

.portfolio-metric-val {
  font-size: var(--text-lg);
  font-weight: var(--fw-semibold);
  color: var(--gesso);
}

.portfolio-metric-lbl {
  font-size: var(--text-xs);
  color: var(--color-muted-inv);
}

/* ── 10. Process Section ────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.process-card {
  background-color: #fff;
  border: 1px solid var(--color-line);
  padding: var(--space-8);
  border-radius: var(--radius-xs);
  position: relative;
}

.process-step-num {
  font-size: var(--text-3xl);
  font-weight: var(--fw-semibold);
  color: var(--lapis);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--space-4);
}

.process-step-title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}

.process-step-desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.55;
}

/* ── 11. FAQ Accordion ──────────────────────────────────────── */
.faq-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-line);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  transition: color var(--dur-fast) var(--ease);
}

.faq-question:hover {
  color: var(--lapis);
}

.faq-icon {
  width: 20px;
  height: 20px;
  transition: transform var(--dur-base) var(--ease);
  flex-shrink: 0;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-base) var(--ease), padding var(--dur-base) var(--ease);
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: var(--text-base);
  color: var(--color-muted);
  line-height: 1.6;
}

/* ── 12. CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  background: var(--lapis);
  color: var(--gesso);
  border-radius: var(--radius-xs);
  padding: clamp(48px, 6vw, 80px);
  position: relative;
  overflow: hidden;
}

.cta-banner-ring {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  width: 360px;
  height: 360px;
  color: rgba(235, 238, 243, 0.08);
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.cta-banner h2 {
  font-size: var(--text-3xl);
  color: var(--gesso);
  margin-bottom: var(--space-4);
}

.cta-banner p {
  font-size: var(--text-lg);
  color: rgba(235, 238, 243, 0.85);
  margin-bottom: var(--space-8);
}

/* ── 13. Blog & Standard Pages ──────────────────────────────── */
.page-hero {
  padding-top: calc(76px + clamp(36px, 5vw, 64px));
  padding-bottom: clamp(36px, 5vw, 64px);
  border-bottom: 1px solid var(--color-line);
  background-color: #fff;
}

.page-hero h1 {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-3);
}

.dugento-breadcrumbs {
  margin-bottom: var(--space-4);
}

.breadcrumbs-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-muted);
}

.breadcrumb-separator svg {
  width: 12px;
  height: 12px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.blog-card {
  background: #fff;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-xs);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card-thumb {
  height: 200px;
  background-color: var(--color-bg-alt);
  overflow: hidden;
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-base) var(--ease);
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.04);
}

.blog-card-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  font-size: var(--text-xs);
  color: var(--color-muted);
  margin-bottom: var(--space-2);
  display: flex;
  gap: var(--space-3);
}

.blog-card-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-3);
}

.blog-card-excerpt {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.5;
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

/* Single Post Layout */
.single-post-wrap {
  max-width: 800px;
  margin: 0 auto;
}

.post-content {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #1A1F3D;
}

.post-content p {
  margin-bottom: var(--space-6);
}

.post-content h2, .post-content h3 {
  margin-top: var(--space-10);
  margin-bottom: var(--space-4);
}

.post-content ul, .post-content ol {
  margin-bottom: var(--space-6);
  padding-left: var(--space-6);
}

.post-content ul { list-style: disc; }
.post-content ol { list-style: decimal; }

.post-content blockquote {
  border-left: 3px solid var(--lapis);
  padding-left: var(--space-6);
  margin: var(--space-8) 0;
  font-style: italic;
  color: var(--ink);
}

/* ── 14. Site Footer ────────────────────────────────────────── */
.site-footer {
  background-color: var(--color-surface);
  color: var(--color-fg-inv);
  padding-top: clamp(64px, 8vw, 96px);
  padding-bottom: var(--space-8);
  border-top: 1px solid var(--color-line-inv);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--space-10);
  margin-bottom: clamp(48px, 6vw, 80px);
}

.footer-brand .footer-wordmark {
  width: 160px;
  margin-bottom: var(--space-4);
  color: var(--gesso);
}

.footer-tagline {
  font-size: var(--text-sm);
  color: var(--color-muted-inv);
  line-height: 1.6;
  max-width: 320px;
}

.footer-title {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gesso);
  margin-bottom: var(--space-5);
}

.footer-links li {
  margin-bottom: var(--space-3);
}

.footer-links a {
  font-size: var(--text-sm);
  color: var(--color-muted-inv);
}

.footer-links a:hover {
  color: var(--gesso);
}

.footer-contact-info {
  font-size: var(--text-sm);
  color: var(--color-muted-inv);
  line-height: 1.6;
}

.footer-social-links {
  display: flex;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.social-link-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line-inv);
  border-radius: var(--radius-xs);
  color: var(--color-muted-inv);
  transition: all var(--dur-fast) var(--ease);
}

.social-link-btn:hover {
  color: var(--gesso);
  border-color: var(--lapis);
  background-color: var(--lapis);
}

.social-link-btn svg {
  width: 16px;
  height: 16px;
}

.footer-giant-wordmark {
  border-top: 1px solid var(--color-line-inv);
  border-bottom: 1px solid var(--color-line-inv);
  padding: var(--space-8) 0;
  margin-bottom: var(--space-8);
  color: rgba(235, 238, 243, 0.08);
}

.footer-giant-wordmark svg {
  width: 100%;
  height: auto;
  max-height: 90px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--color-muted-inv);
}

/* ── 15. Mobile Drawer Menu ─────────────────────────────────── */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(9, 13, 38, 0.7);
  backdrop-filter: blur(8px);
  z-index: var(--z-modal);
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur-base) var(--ease);
}

.mobile-drawer.is-open {
  opacity: 1;
  visibility: visible;
}

.drawer-inner {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 360px;
  height: 100%;
  background-color: var(--gesso);
  padding: var(--space-8) var(--space-6);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform var(--dur-base) var(--ease);
}

.mobile-drawer.is-open .drawer-inner {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-8);
}

.drawer-close-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--ink);
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}

.drawer-nav a {
  font-size: var(--text-lg);
  font-weight: var(--fw-medium);
  color: var(--ink);
}

/* ── 15.1 Hero Strip & Wordmark ─────────────────────────────── */
.hero-strip {
  border-top: 1px solid var(--color-line);
  padding: var(--space-6) 0 0;
  margin-top: clamp(40px, 5vw, 64px);
  color: rgba(9, 13, 38, 0.08);
}
.hero-strip-wordmark svg {
  width: 100%;
  height: auto;
  max-height: 48px;
}

/* ── 15.2 Value Proposition ──────────────────────────────────── */
.vp-section {
  padding: clamp(64px, 8vw, 100px) 0;
}
.vp-inner {
  max-width: 860px;
}
.vp-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: var(--fw-medium);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: var(--space-5);
}
.vp-desc {
  font-size: clamp(1.0625rem, 1.5vw, 1.25rem);
  color: var(--color-muted);
  line-height: 1.6;
}

/* ── 15.3 4-Axes Approach ────────────────────────────────────── */
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.approach-item {
  background: #fff;
  border: 1px solid var(--color-line);
  padding: var(--space-8);
  border-radius: var(--radius-xs);
  position: relative;
  transition: transform var(--dur-base) var(--ease), border-color var(--dur-base) var(--ease);
}
.approach-item:hover {
  transform: translateY(-4px);
  border-color: var(--lapis);
}
.approach-number {
  font-size: var(--text-2xl);
  font-weight: var(--fw-semibold);
  color: var(--color-line);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: var(--space-4);
}
.approach-icon {
  width: 40px;
  height: 40px;
  color: var(--lapis);
  margin-bottom: var(--space-4);
}
.approach-icon svg {
  width: 100%;
  height: 100%;
}
.approach-title {
  font-size: var(--text-lg);
  margin-bottom: var(--space-2);
}
.approach-desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.55;
}

/* ── 15.4 Testimonials ───────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.testimonial-card {
  background: #fff;
  border: 1px solid var(--color-line);
  padding: var(--space-8);
  border-radius: var(--radius-xs);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.testimonial-quote {
  font-size: var(--text-base);
  color: var(--ink);
  line-height: 1.6;
  font-style: italic;
  margin-bottom: var(--space-6);
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border-top: 1px solid var(--color-line);
  padding-top: var(--space-4);
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  color: var(--lapis);
  flex-shrink: 0;
}
.testimonial-name {
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  color: var(--ink);
}
.testimonial-role {
  font-size: var(--text-xs);
  color: var(--color-muted);
}

/* ── 15.5 Client Logos ───────────────────────────────────────── */
.eyebrow-center {
  text-align: center;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: var(--fw-semibold);
  color: var(--color-muted);
  margin-bottom: var(--space-6);
}
.clients-logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.client-logo-item {
  border: 1px solid var(--color-line);
  background: #fff;
  padding: var(--space-5) var(--space-4);
  text-align: center;
  font-size: var(--text-sm);
  font-weight: var(--fw-medium);
  color: var(--color-muted);
  border-radius: var(--radius-xs);
  transition: border-color var(--dur-fast) var(--ease), color var(--dur-fast) var(--ease);
}
.client-logo-item:hover {
  border-color: var(--lapis);
  color: var(--ink);
}

/* ── 16. Responsive Breakpoints ─────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: var(--space-6);
  }
  .stat-item:nth-child(3) {
    border-left: none;
    padding-left: 0;
  }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-item {
    border-left: none;
    padding-left: 0;
    border-bottom: 1px solid var(--color-line);
    padding-bottom: var(--space-4);
  }
  .stat-item:last-child {
    border-bottom: none;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    gap: var(--space-4);
    text-align: center;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
}
