/* =============================================
   QULVENZODEX — Main Stylesheet
   Design: Monochrome Plus (Slate + Teal Accent)
   ============================================= */


:root {
  --slate-50: #f8f9fa;
  --slate-100: #f1f3f5;
  --slate-200: #e9ecef;
  --slate-300: #dee2e6;
  --slate-400: #ced4da;
  --slate-500: #adb5bd;
  --slate-600: #6c757d;
  --slate-700: #495057;
  --slate-800: #343a40;
  --slate-900: #1a1d21;
  --slate-950: #0f1114;

  --accent: #0d9488;
  --accent-light: #14b8a6;
  --accent-dark: #0a7c72;
  --accent-subtle: rgba(13, 148, 136, 0.1);
  --accent-subtle2: rgba(13, 148, 136, 0.18);

  --text-primary: #1a1d21;
  --text-secondary: #495057;
  --text-muted: #6c757d;
  --text-light: #f8f9fa;
  --text-light-muted: rgba(248, 249, 250, 0.75);

  --bg-primary: #f8f9fa;
  --bg-secondary: #f1f3f5;
  --bg-dark: #1a1d21;
  --bg-darker: #0f1114;
  --bg-card: #ffffff;

  --border-subtle: rgba(0,0,0,0.07);
  --border-medium: rgba(0,0,0,0.12);

  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.05);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10), 0 4px 8px rgba(0,0,0,0.06);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12), 0 8px 16px rgba(0,0,0,0.07);
  --shadow-accent: 0 4px 20px rgba(13, 148, 136, 0.28), 0 2px 6px rgba(13, 148, 136, 0.15);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --nav-height: 76px;
  --transition-fast: 0.18s ease;
  --transition-base: 0.28s ease;
  --transition-slow: 0.45s ease;
}


*, *::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: 'Schibsted Grotesk', system-ui, -apple-system, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

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

ul { list-style: none; }

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}


h1, h2, h3, h4, h5 {
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
h5 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; }

p { color: var(--text-secondary); line-height: 1.75; }


.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.narrow-inner {
  max-width: 800px;
}


.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 1rem;
  padding: 0.3rem 0.8rem;
  background: var(--accent-subtle);
  border-radius: var(--radius-full);
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.light-label {
  color: var(--accent-light);
  background: rgba(20, 184, 166, 0.15);
  border-color: rgba(20, 184, 166, 0.3);
}

.centered-heading { text-align: center; }

/* =============================================
   NAVIGATION
   ============================================= */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(248, 249, 250, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  height: var(--nav-height);
  transition: transform var(--transition-base), opacity var(--transition-base);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-brand { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 38px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin: 0 auto;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), background var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-primary);
  background: var(--slate-200);
}

.nav-link.active { color: var(--accent); background: var(--accent-subtle); }

.nav-cta {
  flex-shrink: 0;
  font-size: 0.875rem;
  padding: 0.6rem 1.4rem;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}


.floating-pill {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 850;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px) scale(0.9);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.floating-pill.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

.pill-burger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: white;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-accent);
  font-size: 1.1rem;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.pill-burger:hover {
  background: var(--accent-dark);
  transform: scale(1.07);
  box-shadow: 0 6px 24px rgba(13, 148, 136, 0.35);
}


.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  padding: 2rem;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.97);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.mobile-overlay.open {
  opacity: 1;
  pointer-events: all;
  transform: scale(1);
}

.overlay-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.overlay-logo { height: 40px; width: auto; filter: brightness(0) invert(1); }

.overlay-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.4rem;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.overlay-close:hover { background: rgba(255,255,255,0.15); transform: rotate(90deg); }

.overlay-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  flex: 1;
  align-content: center;
}

.overlay-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.5rem 1rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  color: var(--text-light);
  font-size: 0.875rem;
  font-weight: 500;
  min-height: 80px;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.overlay-item i { font-size: 1.4rem; color: var(--accent-light); }
.overlay-item:hover { background: rgba(255,255,255,0.1); border-color: rgba(13,148,136,0.4); transform: translateY(-2px); }

.overlay-cta-item {
  background: var(--accent-subtle2);
  border-color: rgba(13,148,136,0.35);
}
.overlay-cta-item:hover { background: rgba(13,148,136,0.25); }

/* =============================================
   BUTTONS / ACTIONS
   ============================================= */
.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  background: var(--accent);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  letter-spacing: 0.01em;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  box-shadow: var(--shadow-accent);
  white-space: nowrap;
  text-decoration: none;
}

.primary-action:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(13, 148, 136, 0.35), 0 2px 8px rgba(13,148,136,0.2);
  color: white;
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  background: transparent;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-full);
  border: 2px solid var(--slate-300);
  transition: border-color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
  white-space: nowrap;
}

.secondary-action:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-subtle);
  transform: translateY(-2px);
}

/* =============================================
   DIAGONAL BREAKS
   ============================================= */
.visual-break {
  height: 80px;
  position: relative;
  overflow: hidden;
}

.diagonal-down {
  background: var(--bg-secondary);
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
}

.diagonal-up {
  background: var(--bg-secondary);
  clip-path: polygon(0 100%, 100% 40%, 100% 100%, 0 100%);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  padding-top: var(--nav-height);
  padding-left: clamp(1.5rem, 6vw, 5rem);
  padding-right: clamp(1.5rem, 6vw, 5rem);
  gap: 3rem;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--slate-100) 100%);
}

.hero-bg-number {
  position: absolute;
  font-size: clamp(14rem, 30vw, 28rem);
  font-weight: 800;
  color: var(--slate-200);
  line-height: 1;
  right: -2%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.05em;
}

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

.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  padding: 0.35rem 1rem;
  background: var(--accent-subtle);
  border-radius: var(--radius-full);
  border: 1px solid rgba(13,148,136,0.2);
}

.hero-heading {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.highlight-text {
  color: var(--accent);
  position: relative;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 440px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-btn { font-size: 0.95rem; padding: 0.9rem 2rem; }
.hero-btn-ghost { font-size: 0.95rem; padding: 0.9rem 2rem; }

.hero-image-wrap {
  position: relative;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: clamp(400px, 55vh, 600px);
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.hero-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
}

.hero-badge i { color: var(--accent); font-size: 1.3rem; }

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: var(--slate-400);
  font-size: 1.2rem;
  animation: bounce 2s infinite;
  z-index: 1;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* =============================================
   SERVICES INTRO
   ============================================= */
.services-intro-section {
  padding: 5rem 0;
  background: var(--bg-secondary);
}

.services-intro-section .section-heading {
  margin-bottom: 3.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(13,148,136,0.25);
}

.service-icon-wrap {
  width: 52px;
  height: 52px;
  background: var(--accent-subtle);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent);
  font-size: 1.4rem;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.service-card:hover .service-icon-wrap {
  background: var(--accent);
  color: white;
  transform: scale(1.05);
}

.service-card h3 {
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.service-card p {
  font-size: 0.925rem;
  margin-bottom: 1.5rem;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.card-link:hover { gap: 0.7rem; color: var(--accent-dark); }

/* =============================================
   PROCESS SECTION
   ============================================= */
.process-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.process-section .section-heading {
  margin-bottom: 3.5rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-fast);
}

.process-step:last-child { border-bottom: none; }
.process-step:hover { background: var(--bg-secondary); border-radius: var(--radius-md); padding-left: 1rem; padding-right: 1rem; }

.step-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--slate-200);
  line-height: 1;
  flex-shrink: 0;
  width: 80px;
  text-align: center;
  transition: color var(--transition-fast);
}

.process-step:hover .step-number { color: var(--accent-subtle2); }

.step-content h4 {
  color: var(--text-primary);
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.step-content p { font-size: 0.925rem; }

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery-section {
  padding: 6rem 0;
  background: var(--bg-dark);
}

.gallery-section .section-label { color: var(--accent-light); background: rgba(20,184,166,0.15); border-color: rgba(20,184,166,0.3); }
.gallery-section .section-heading { color: var(--text-light); margin-bottom: 2.5rem; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
}

.gallery-tall { grid-row: span 2; aspect-ratio: unset; }
.gallery-wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay span {
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* =============================================
   CAROUSEL SECTION
   ============================================= */
.carousel-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.carousel-section .section-heading { margin-bottom: 2.5rem; }

.carousel-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.carousel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.carousel-card i {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 1.25rem;
  display: block;
}

.carousel-card h4 {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}

.carousel-card p { font-size: 0.9rem; line-height: 1.7; }


.splide__pagination__page.is-active { background: var(--accent); }
.splide__arrow { background: white; box-shadow: var(--shadow-md); color: var(--text-primary); }
.splide__arrow:hover { background: var(--accent); color: white; }
.splide__arrow svg { fill: currentColor; }

/* =============================================
   ABOUT TEASER
   ============================================= */
.about-teaser-section {
  padding: 7rem 0;
  background: var(--bg-dark);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-text .section-heading.light-heading { color: var(--text-light); }
.about-body { color: var(--text-light-muted); margin-bottom: 1rem; font-size: 1.05rem; }
.about-body:last-of-type { margin-bottom: 2rem; }
.about-btn { margin-top: 0.5rem; }

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.about-image::before {
  content: '';
  position: absolute;
  inset: -12px;
  border: 2px solid rgba(13,148,136,0.3);
  border-radius: calc(var(--radius-xl) + 12px);
  pointer-events: none;
}

/* =============================================
   FAQ SECTION
   ============================================= */
.faq-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.faq-section .section-heading { margin-bottom: 3rem; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-item:hover { border-color: rgba(13,148,136,0.3); box-shadow: var(--shadow-sm); }

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  gap: 1rem;
  transition: background var(--transition-fast);
}

.faq-trigger:hover { background: var(--bg-secondary); }

.faq-icon {
  flex-shrink: 0;
  color: var(--accent);
  font-size: 0.9rem;
  transition: transform var(--transition-base);
}

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

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

.faq-answer p {
  padding: 0 1.75rem 1.5rem;
  font-size: 0.925rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

.faq-item.open .faq-answer { max-height: 400px; }

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  padding: 7rem 0;
  background: var(--bg-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bg-number {
  position: absolute;
  font-size: clamp(18rem, 40vw, 40rem);
  font-weight: 800;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.cta-inner { position: relative; z-index: 1; }

.cta-heading {
  color: var(--text-light);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.cta-sub {
  color: var(--text-light-muted);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.cta-main-btn { font-size: 1rem; padding: 1rem 2.5rem; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--bg-darker);
  padding-top: 5rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem) 4rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1fr;
  gap: 3rem;
}

.footer-logo { height: 36px; width: auto; filter: brightness(0) invert(0.85); margin-bottom: 1rem; }

.footer-tagline {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  line-height: 1.6;
  max-width: 260px;
}

.footer-nav-col h5,
.footer-contact-col h5,
.footer-legal-col h5 {
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.25rem;
}

.footer-nav-col ul li,
.footer-legal-col ul li {
  margin-bottom: 0.6rem;
}

.footer-nav-col a,
.footer-legal-col a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-nav-col a:hover,
.footer-legal-col a:hover { color: var(--accent-light); }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.footer-contact-list i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.footer-contact-list a { color: rgba(255,255,255,0.5); transition: color var(--transition-fast); }
.footer-contact-list a:hover { color: var(--accent-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1.5rem clamp(1.25rem, 5vw, 3rem);
  max-width: 1200px;
  margin: 0 auto;
}

.footer-bottom p {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem;
  text-align: center;
}

/* =============================================
   PAGE HERO (inner pages)
   ============================================= */
.page-hero {
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 4rem;
  padding-left: clamp(1.5rem, 6vw, 5rem);
  padding-right: clamp(1.5rem, 6vw, 5rem);
  text-align: center;
  background: linear-gradient(135deg, var(--bg-primary) 0%, var(--slate-100) 100%);
  position: relative;
  overflow: hidden;
}

.hero-bg-number {
  position: absolute;
  font-size: clamp(12rem, 25vw, 24rem);
  font-weight: 800;
  color: var(--slate-200);
  line-height: 1;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
  letter-spacing: -0.05em;
}

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

.page-hero-heading {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.page-hero-sub {
  font-size: 1.15rem;
  color: var(--text-secondary);
}

/* =============================================
   PHILOSOPHY PAGE
   ============================================= */
.philosophy-section {
  padding: 6rem 0;
  background: var(--bg-secondary);
}

.philosophy-intro { margin-bottom: 3.5rem; }

.large-body-text {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 700px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.pillar-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.pillar-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.pillar-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--slate-100);
  line-height: 1;
  margin-bottom: 1rem;
  letter-spacing: -0.04em;
}

.pillar-card h3 { color: var(--text-primary); margin-bottom: 0.75rem; }
.pillar-card p { font-size: 0.925rem; }

/* =============================================
   SPLIT SECTION
   ============================================= */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.dark-split { background: var(--bg-dark); }

.split-image {
  overflow: hidden;
}

.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.split-image:hover img { transform: scale(1.04); }

.split-content {
  padding: clamp(3rem, 6vw, 6rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.split-content .section-heading.light-heading { color: var(--text-light); }
.split-content p { color: var(--text-light-muted); font-size: 1rem; }

/* =============================================
   VALUES SECTION
   ============================================= */
.values-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.values-section .section-heading { margin-bottom: 3rem; }

.values-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.value-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.75rem 2rem;
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-xs);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast);
}

.value-item:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); border-color: rgba(13,148,136,0.25); }

.value-item > i {
  color: var(--accent);
  font-size: 1.4rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.value-item h4 { color: var(--text-primary); margin-bottom: 0.3rem; }
.value-item p { font-size: 0.9rem; }

/* =============================================
   SERVICE DETAIL PAGES
   ============================================= */
.service-detail-section {
  padding: 6rem 0;
  background: var(--bg-primary);
}

.alt-service { background: var(--bg-secondary); }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.reverse-grid { direction: rtl; }
.reverse-grid > * { direction: ltr; }

.service-detail-content h2 { margin-bottom: 1.25rem; color: var(--text-primary); }
.service-detail-content p { margin-bottom: 1rem; font-size: 1rem; }
.service-detail-content h4 { margin-top: 1.5rem; margin-bottom: 0.75rem; color: var(--text-primary); }

.service-list {
  list-style: none;
  margin-bottom: 2rem;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  font-size: 0.925rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-subtle);
}

.service-list li:last-child { border-bottom: none; }
.service-list li i { color: var(--accent); flex-shrink: 0; }

.service-detail-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

/* =============================================
   ARTICLES PAGE
   ============================================= */
.articles-section {
  padding: 5rem 0;
  background: var(--bg-primary);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.article-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.featured-article { grid-column: span 2; display: grid; grid-template-columns: 1fr 1fr; }

.article-image {
  overflow: hidden;
  aspect-ratio: 16/9;
}

.featured-article .article-image { aspect-ratio: unset; }

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.article-card:hover .article-image img { transform: scale(1.05); }

.article-content { padding: 2rem; }
.featured-article .article-content { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }

.article-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  background: var(--accent-subtle);
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.article-content h2, .article-content h3 {
  color: var(--text-primary);
  margin-bottom: 0.75rem;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
}

.article-content p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  line-height: 1.75;
}

/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-page-section {
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 0;
  background: var(--bg-primary);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - var(--nav-height));
}

.contact-info-side {
  background: var(--bg-dark);
  padding: clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
}

.contact-info-inner { max-width: 480px; }

.contact-main-heading {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.contact-intro {
  color: var(--text-light-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.contact-details { margin-bottom: 3rem; }

.contact-detail-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.contact-detail-item i { color: var(--accent-light); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }

.contact-detail-item strong {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
}

.contact-detail-item span, .contact-detail-item a {
  color: var(--text-light);
  font-size: 0.925rem;
}

.contact-detail-item a:hover { color: var(--accent-light); }


.inquiry-timeline h3 {
  color: rgba(255,255,255,0.7);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.timeline-steps { display: flex; flex-direction: column; gap: 0; }

.timeline-step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding-bottom: 1.5rem;
  position: relative;
}

.timeline-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 16px;
  top: 36px;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.08);
}

.timeline-dot {
  width: 32px;
  height: 32px;
  background: var(--accent);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}

.timeline-dot span {
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
}

.timeline-step-content h4 {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  margin-bottom: 0.2rem;
}

.timeline-step-content p {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}


.contact-form-side {
  padding: clamp(2.5rem, 5vw, 5rem);
  background: var(--bg-primary);
  overflow-y: auto;
}

.contact-form { max-width: 540px; }

.form-field-group {
  margin-bottom: 1.75rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: var(--bg-card);
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.925rem;
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(13,148,136,0.12);
}

.form-input::placeholder, .form-textarea::placeholder { color: var(--slate-400); }

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

.form-helper {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.form-privacy-group { margin-top: 0.5rem; }

.privacy-label {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  cursor: pointer;
}

.privacy-label input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.privacy-checkbox-custom {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid var(--slate-300);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition-fast), background var(--transition-fast);
  margin-top: 1px;
}

.privacy-label input:checked ~ .privacy-checkbox-custom {
  background: var(--accent);
  border-color: var(--accent);
}

.privacy-label input:checked ~ .privacy-checkbox-custom::after {
  content: '';
  width: 10px;
  height: 6px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg) translate(1px, -1px);
  display: block;
}

.privacy-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.privacy-text a { color: var(--accent); text-decoration: underline; }

.form-submit-btn {
  width: 100%;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
  margin-top: 0.5rem;
}


.map-section { position: relative; }

.map-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: var(--bg-dark);
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
}

.map-label i { color: var(--accent-light); }

.map-wrap { line-height: 0; }
.map-wrap iframe { display: block; filter: grayscale(0.3) contrast(1.05); }

/* =============================================
   THANKS PAGE
   ============================================= */
.thanks-main {
  min-height: calc(100vh - var(--nav-height) - 300px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--nav-height) + 4rem) 2rem 4rem;
}

.thanks-container {
  max-width: 560px;
  text-align: center;
}

.thanks-animation {
  margin-bottom: 2.5rem;
  display: flex;
  justify-content: center;
}

.checkmark-svg {
  width: 90px;
  height: 90px;
}

.checkmark-circle {
  stroke-dasharray: 226;
  stroke-dashoffset: 226;
  animation: drawCircle 0.8s ease forwards;
}

.checkmark-check {
  stroke-dasharray: 50;
  stroke-dashoffset: 50;
  animation: drawCheck 0.5s ease 0.85s forwards;
}

@keyframes drawCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}

.thanks-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.5s ease 1.4s forwards;
}

.thanks-body {
  color: var(--text-secondary);
  margin-bottom: 2rem;
  font-size: 1rem;
  opacity: 0;
  animation: fadeUp 0.5s ease 1.6s forwards;
}

.thanks-contact-strip {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.5s ease 1.8s forwards;
}

.thanks-contact-strip a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.thanks-contact-strip a:hover { color: var(--accent-dark); }

.thanks-home-btn {
  opacity: 0;
  animation: fadeUp 0.5s ease 2s forwards;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =============================================
   LEGAL PAGES
   ============================================= */
.legal-page-section {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 6rem;
  background: var(--bg-primary);
}

.legal-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.legal-header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-medium);
}

.legal-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.legal-date {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.legal-body h2 {
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-subtle);
}

.legal-body h3 {
  font-size: 1.05rem;
  color: var(--text-primary);
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.legal-body p {
  margin-bottom: 1.25rem;
  font-size: 0.925rem;
  line-height: 1.8;
}

.legal-body code {
  background: var(--slate-200);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  font-size: 0.85rem;
  color: var(--text-primary);
}

/* =============================================
   COOKIE CONSENT
   ============================================= */
.cookie-trigger-wrap {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 800;
}

.cookie-trigger-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  padding: 0.4rem 0.85rem;
  box-shadow: var(--shadow-sm);
  transition: color var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
}

.cookie-trigger-link:hover {
  color: var(--accent);
  border-color: rgba(13,148,136,0.35);
  box-shadow: var(--shadow-md);
}

.cookie-trigger-link i { font-size: 0.9rem; }

.cookie-trigger-link.pulse {
  animation: cookiePulse 2.5s ease-in-out 2;
}

@keyframes cookiePulse {
  0%, 100% { box-shadow: var(--shadow-sm); }
  50% { box-shadow: 0 0 0 4px rgba(13,148,136,0.2), var(--shadow-md); border-color: rgba(13,148,136,0.4); }
}


.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  max-width: 480px;
  width: 100%;
  overflow: hidden;
  transform: translateY(16px) scale(0.97);
  transition: transform var(--transition-base);
}

.cookie-modal-overlay.open .cookie-modal {
  transform: translateY(0) scale(1);
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.cookie-modal-header h3 { font-size: 1.05rem; color: var(--text-primary); }

.cookie-modal-close {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  color: var(--text-muted);
  font-size: 1rem;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.cookie-modal-close:hover { background: var(--slate-200); color: var(--text-primary); }

.cookie-modal-body { padding: 1.5rem 1.75rem; }
.cookie-modal-body > p { font-size: 0.875rem; margin-bottom: 1.25rem; }

.cookie-category { margin-bottom: 1rem; }

.cookie-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
}

.cookie-cat-header strong { font-size: 0.875rem; color: var(--text-primary); display: block; margin-bottom: 0.2rem; }
.cookie-cat-header p { font-size: 0.78rem; color: var(--text-muted); margin: 0; }

.cookie-always-on {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--accent);
  background: var(--accent-subtle);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-full);
  white-space: nowrap;
  flex-shrink: 0;
}


.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
  cursor: pointer;
}

.cookie-toggle input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--slate-300);
  border-radius: var(--radius-full);
  transition: background var(--transition-fast);
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.cookie-toggle input:checked + .toggle-slider { background: var(--accent); }
.cookie-toggle input:checked + .toggle-slider::before { transform: translateX(20px); }

.cookie-modal-footer {
  display: flex;
  gap: 0.75rem;
  padding: 1.25rem 1.75rem;
  border-top: 1px solid var(--border-subtle);
}

.cookie-btn-reject {
  flex: 1;
  padding: 0.7rem;
  border: 1.5px solid var(--slate-300);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  font-family: inherit;
  transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
  cursor: pointer;
}

.cookie-btn-reject:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-subtle); }

.cookie-btn-accept {
  flex: 1;
  padding: 0.7rem;
  background: var(--accent);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
  font-family: inherit;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
  box-shadow: var(--shadow-accent);
}

.cookie-btn-accept:hover { background: var(--accent-dark); transform: translateY(-1px); }

/* =============================================
   SCROLL REVEAL
   ============================================= */
.scroll-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-section { grid-template-columns: 1fr; min-height: auto; padding-top: calc(var(--nav-height) + 3rem); padding-bottom: 3rem; }
  .hero-bg-number { font-size: 18rem; right: -5%; opacity: 0.5; }
  .hero-image-wrap { display: none; }
  .hero-content-wrap { max-width: 100%; }

  .services-grid { grid-template-columns: 1fr 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .split-section { grid-template-columns: 1fr; }
  .split-image { height: 320px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .reverse-grid { direction: ltr; }
  .service-detail-image img { height: 320px; }
  .contact-layout { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-tall { grid-row: auto; }
  .gallery-wide { grid-column: auto; }
}

@media (max-width: 768px) {
  :root { --nav-height: 68px; }

  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .services-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: 1fr; }
  .featured-article { grid-column: auto; grid-template-columns: 1fr; }
  .featured-article .article-image { aspect-ratio: 16/9; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 4/3; }

  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand-col { margin-bottom: 0.5rem; }

  .process-step { flex-direction: column; gap: 0.5rem; }
  .step-number { width: auto; font-size: 1.8rem; }

  .hero-actions { flex-direction: column; }
  .hero-btn, .hero-btn-ghost { width: 100%; justify-content: center; }

  .contact-info-side, .contact-form-side { padding: 2rem 1.5rem; }
  .contact-layout { grid-template-columns: 1fr; }

  .cta-main-btn { width: 100%; justify-content: center; }

  .thanks-contact-strip { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-bg-number { display: none; }
  .cookie-trigger-wrap { bottom: 1rem; left: 1rem; }
  .hero-badge { display: none; }
  .overlay-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .overlay-item { padding: 1.25rem 0.75rem; min-height: 70px; }
}