/* ===== Design Tokens ===== */
/* Core Brand: Warm Rose (#c4627a) · Calm Teal (#2a9d8f) · Warm Cream (#faf6f0) */
:root {
  --dark: #1a3142;
  --dark-800: #1f3a4f;
  --dark-700: #254a5e;
  --text: #2c4a56;
  --text-light: #5a7a86;
  --text-muted: #7a9aa6;
  --cream: #faf6f0;
  --cream-dark: #ede6dc;
  --white: #ffffff;
  --accent: #c4627a;
  --accent-dark: #a84e64;
  --accent-light: rgba(196, 98, 122, 0.08);
  --pink: #c4627a;
  --pink-dark: #a84e64;
  --pink-light: rgba(196, 98, 122, 0.1);
  --blue: #2a9d8f;
  --blue-dark: #1b7d6d;
  --blue-deeper: #1a3142;
  --blue-light: rgba(42, 157, 143, 0.08);
  --sage: #2a9d8f;
  --sage-light: rgba(42, 157, 143, 0.08);
  --radius-lg: 36px;
  --radius: 24px;
  --radius-sm: 14px;
  --radius-xs: 10px;
  --shadow: 0 4px 20px rgba(26, 49, 66, 0.06);
  --shadow-lg: 0 16px 48px rgba(26, 49, 66, 0.1);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html {
  scroll-behavior: smooth; scroll-padding-top: 80px;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%; -moz-text-size-adjust: 100%; text-size-adjust: 100%;
}
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text); background: var(--white); line-height: 1.6; overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; -webkit-tap-highlight-color: transparent; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ===== Typography ===== */
h1 { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(3rem, 6vw, 4.5rem); font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; }
h2 { font-family: 'DM Serif Display', Georgia, serif; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 400; line-height: 1.2; letter-spacing: -0.005em; color: var(--dark); }
h3 { font-family: 'DM Serif Display', Georgia, serif; font-size: 1.15rem; font-weight: 400; color: var(--dark); }
h4 { font-family: 'DM Sans', sans-serif; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); }
.serif-italic { font-family: 'DM Serif Display', Georgia, serif; font-style: italic; }

/* ===== Tags ===== */
.tag {
  display: inline-block; font-size: 0.72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--pink-dark); padding: 6px 16px;
  background: var(--pink-light); border-radius: 50px; margin-bottom: 16px;
}
.tag-light { background: rgba(255,255,255,0.15); color: rgba(255,255,255,0.85); }

/* ===== Buttons ===== */
.btn-accent {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  padding: 16px 32px; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
  background: var(--pink); color: var(--white); border: none;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-out), background 0.3s var(--ease);
  box-shadow: 0 4px 16px rgba(196, 98, 122, 0.3);
  will-change: transform;
}
.btn-accent:hover { background: var(--pink-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(196, 98, 122, 0.4); }
.btn-accent:active { transform: translateY(0) scale(0.98); transition-duration: 0.1s; }

.btn-glass {
  display: inline-flex; align-items: center; gap: 10px; justify-content: center;
  padding: 16px 32px; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
  background: rgba(255,255,255,0.1); color: var(--white);
  border: 1px solid rgba(255,255,255,0.25); backdrop-filter: blur(8px);
  transition: transform 0.4s var(--ease-spring), background 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}
.btn-glass:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.45); transform: translateY(-2px); }
.btn-glass:active { transform: translateY(0) scale(0.98); transition-duration: 0.1s; }

.btn-full { width: 100%; }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 32px; transition: background 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), backdrop-filter 0.5s var(--ease-out);
  will-change: background, backdrop-filter;
}
.nav.scrolled {
  background: rgba(255,255,255,0.92); backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.nav-logo {
  display: flex; align-items: center;
  font-family: 'DM Serif Display', Georgia, serif; font-weight: 700; font-size: 1.35rem;
  color: var(--white); transition: color 0.5s var(--ease-out); letter-spacing: -0.02em;
}
.nav.scrolled .nav-logo { color: var(--dark); }
.logo-text-mark { font-weight: 700; }
.logo-text-highlight { color: var(--pink); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 18px; border-radius: 8px; font-size: 0.88rem; font-weight: 500;
  color: rgba(255,255,255,0.7); transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.nav.scrolled .nav-links a { color: var(--text-light); }
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav.scrolled .nav-links a:hover { color: var(--dark); background: var(--cream); }

.nav-btn {
  background: var(--pink) !important; color: var(--white) !important;
  padding: 10px 22px !important; border-radius: 50px !important; font-weight: 600 !important;
  margin-left: 8px !important; transition: all 0.3s var(--ease) !important;
}
.nav-btn:hover { background: var(--pink-dark) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--white); border-radius: 2px;
  transition: all 0.4s var(--ease-out);
  transform-origin: center;
}
.nav.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle.active span { background: var(--dark); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== Hero ===== */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  will-change: transform;
  transition: transform 0.6s var(--ease-out);
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 80%, rgba(196,98,122,0.18) 0%, transparent 55%),
    linear-gradient(180deg, rgba(26,49,66,0.4) 0%, rgba(26,49,66,0.55) 50%, rgba(26,49,66,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 1; text-align: center;
  max-width: 720px; padding: 120px 32px 80px;
}
.hero-label {
  display: inline-block; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em;
  color: var(--white); margin-bottom: 24px;
  background: rgba(196, 98, 122, 0.2); padding: 8px 20px; border-radius: 50px;
  border: 1px solid rgba(196, 98, 122, 0.3); backdrop-filter: blur(4px);
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 20px;
  line-height: 1.7;
}
.hero-diff {
  font-size: 1rem; font-weight: 600; color: rgba(255,255,255,0.9);
  letter-spacing: 0.01em; margin-bottom: 36px;
  padding: 10px 24px; display: inline-block;
  border-left: 3px solid var(--pink); background: rgba(196, 98, 122, 0.12);
  border-radius: 0 12px 12px 0;
}
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 0.7rem; text-transform: uppercase;
  letter-spacing: 0.15em; font-weight: 500;
}
.scroll-line {
  width: 1px; height: 48px; background: linear-gradient(180deg, rgba(255,255,255,0.4), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ===== Split Section (About) ===== */
.split-section {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 700px;
}
.split-image {
  position: relative; overflow: hidden;
}
.split-image img {
  width: 100%; height: 100%; object-fit: cover; min-height: 600px;
  transition: transform 0.8s var(--ease-out);
}
.split-image:hover img { transform: scale(1.03); }
.split-badge {
  position: absolute; bottom: 40px; right: 40px;
  background: var(--white); border-radius: var(--radius); padding: 24px 28px;
  box-shadow: var(--shadow-lg); text-align: center;
  transition: transform 0.4s var(--ease-spring);
}
.split-badge:hover { transform: translateY(-4px); }
.badge-number { font-size: 2.2rem; font-weight: 800; color: var(--pink); line-height: 1; letter-spacing: -0.02em; }
.badge-text { font-size: 0.78rem; color: var(--text-light); margin-top: 4px; line-height: 1.4; }

.split-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 72px; background: var(--cream);
  border-left: 4px solid var(--pink);
}
.split-lead { font-size: 1.05rem; color: var(--text-light); margin: 16px 0 36px; line-height: 1.75; }

.features-list { display: flex; flex-direction: column; gap: 20px; }
.feature {
  display: flex; gap: 16px; align-items: flex-start;
  transition: transform 0.3s var(--ease-out);
}
.feature:hover { transform: translateX(4px); }
.feature-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--pink); margin-top: 6px; flex-shrink: 0;
  transition: transform 0.3s var(--ease-spring);
}
.feature:nth-child(even) .feature-dot { background: var(--blue); }
.feature:hover .feature-dot { transform: scale(1.3); }
.feature strong { font-size: 0.92rem; display: block; margin-bottom: 2px; color: var(--dark); }
.feature span { font-size: 0.85rem; color: var(--text-light); }


/* ===== Section Intro ===== */
.section-intro { max-width: 500px; margin-bottom: 56px; position: relative; }
.section-intro::after {
  content: ''; display: block; width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--blue)); border-radius: 2px;
  margin-top: 20px;
}
.section-intro p { color: var(--text-light); margin-top: 12px; font-size: 1.02rem; line-height: 1.7; }
.section-intro-center { text-align: center; max-width: 600px; margin-left: auto; margin-right: auto; }
.section-intro-center::after {
  content: ''; display: block; width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--blue)); border-radius: 2px;
  margin: 20px auto 0;
}
.section-intro-light h2 { color: var(--white); }
.section-intro-light p { color: rgba(255,255,255,0.7); }

/* ===== Services Cards ===== */
.services { padding: 120px 0; background: var(--white); }
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}

.card {
  background: var(--cream); border-radius: var(--radius); padding: 36px 28px;
  transition: transform 0.5s var(--ease-spring), box-shadow 0.5s var(--ease-out), border-color 0.3s var(--ease);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  will-change: transform;
  border-top: 3px solid transparent;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-top-color: var(--pink); }
.card:nth-child(odd):hover { border-top-color: var(--blue); }
.card:active { transform: translateY(-2px) scale(0.99); }

/* Large featured card */
.card-large {
  grid-column: 1 / -1; padding: 0;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  background: var(--blue-deeper); min-height: 380px;
  border-radius: var(--radius-lg);
}
.card-large > img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.card-large:hover > img { transform: scale(1.05); }
.card-overlay {
  padding: 48px 40px; display: flex; flex-direction: column; justify-content: center;
}
.card-large h3 { color: var(--white); font-size: 1.5rem; margin-bottom: 12px; }
.card-large p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.7; margin-bottom: 20px; }
.card-large .card-link { color: var(--pink); }

.card-icon {
  width: 56px; height: 56px; border-radius: 16px; background: var(--pink-light);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
  color: var(--pink-dark);
  transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out), transform 0.4s var(--ease-spring);
}
.card:hover .card-icon { background: var(--pink); color: var(--white); transform: scale(1.08) rotate(-3deg); }
.card:nth-child(odd) .card-icon { background: var(--blue-light); color: var(--blue-dark); }
.card:nth-child(odd):hover .card-icon { background: var(--blue); color: var(--white); }
.card:not(.card-large) h3 { margin-bottom: 8px; }
.card:not(.card-large) p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; margin-bottom: 16px; }
.card-link {
  font-size: 0.85rem; font-weight: 600; color: var(--pink-dark);
  transition: letter-spacing 0.4s var(--ease-out), color 0.3s var(--ease); margin-top: auto;
}
.card-link:hover { letter-spacing: 0.04em; }

/* ===== Process / Timeline ===== */
.process { padding: 120px 0; background: linear-gradient(180deg, #f0ece4 0%, var(--cream) 100%); }
.timeline {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative;
}
.timeline-track {
  position: absolute; top: 145px; left: 12.5%; right: 12.5%; height: 2px;
  background: var(--cream-dark);
}
.timeline-step {
  text-align: center; position: relative;
  transition: transform 0.4s var(--ease-spring);
}
.timeline-step:hover { transform: translateY(-4px); }
.timeline-img {
  border-radius: var(--radius); overflow: hidden; margin-bottom: 24px;
  aspect-ratio: 4/3;
}
.timeline-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.timeline-step:hover .timeline-img img { transform: scale(1.06); }
.timeline-dot {
  width: 36px; height: 36px; border-radius: 50%; background: var(--blue);
  color: var(--white); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.85rem; margin: 0 auto 16px;
  position: relative; z-index: 2; box-shadow: 0 0 0 4px #f0ece4;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-out);
}
.timeline-step:hover .timeline-dot { transform: scale(1.15); box-shadow: 0 0 0 6px #f0ece4, 0 4px 12px rgba(107,141,181,0.3); }
.timeline-step h3 { margin-bottom: 6px; }
.timeline-step p { color: var(--text-light); font-size: 0.88rem; line-height: 1.55; }

/* stagger */
.timeline .scroll-in:nth-child(2) { transition-delay: 0.1s; }
.timeline .scroll-in:nth-child(3) { transition-delay: 0.2s; }
.timeline .scroll-in:nth-child(4) { transition-delay: 0.3s; }
.timeline .scroll-in:nth-child(5) { transition-delay: 0.4s; }


/* ===== Contact ===== */
.contact { background: var(--blue-deeper); padding: 80px 0; }
.contact .container { max-width: 720px; margin: 0 auto; padding: 0 24px; }

.contact-header { text-align: center; margin-bottom: 40px; }
.contact-header h2 { color: var(--white); margin-bottom: 12px; }
.contact-header p { color: rgba(255,255,255,0.6); font-size: 1.05rem; line-height: 1.7; max-width: 520px; margin: 0 auto; }

.contact-quick {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 40px;
}
.contact-link {
  display: flex; align-items: center; gap: 14px; padding: 16px 24px;
  background: rgba(255,255,255,0.06); border-radius: var(--radius);
  transition: background 0.3s var(--ease), transform 0.4s var(--ease-spring); color: var(--white);
  will-change: transform; flex: 1; min-width: 240px; max-width: 340px;
}
.contact-link:hover { background: rgba(255,255,255,0.1); transform: translateY(-3px); }
.contact-link svg { color: var(--pink); flex-shrink: 0; }
.contact-link strong { font-size: 0.95rem; display: block; }
.contact-link span { font-size: 0.8rem; color: rgba(255,255,255,0.5); }

.contact-form-wrapper {
  background: var(--white); border-radius: 32px; padding: 44px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.contact-form {
  width: 100%;
}

.contact .contact-trust {
  display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; margin-top: 32px;
}
.contact .trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.85rem; font-weight: 500; color: rgba(255,255,255,0.5);
}
.contact .trust-item svg { color: var(--pink); }
.contact-form h3 { font-size: 1.4rem; margin-bottom: 6px; color: var(--dark); }
.contact-form > p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-field { margin-bottom: 16px; }
.form-field label {
  display: block; font-weight: 500; font-size: 0.82rem; margin-bottom: 6px; color: var(--text);
  transition: color 0.2s var(--ease);
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--cream-dark);
  border-radius: var(--radius-sm); font-family: inherit; font-size: 0.9rem;
  background: var(--cream);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.2s var(--ease);
  outline: none; color: var(--dark);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: var(--text-muted); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-light); transform: translateY(-1px);
}
.form-field textarea { resize: vertical; min-height: 80px; }
.form-note { text-align: center; font-size: 0.75rem; color: var(--text-muted); margin-top: 12px; }


/* ===== Footer ===== */
.footer {
  background: var(--blue-deeper); color: var(--white); padding: 72px 0 0;
  border-top: 3px solid var(--pink);
}
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .nav-logo { margin-bottom: 16px; color: var(--white); font-size: 1.35rem; }
.footer-brand > p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-col { display: flex; flex-direction: column; gap: 4px; }
.footer-col h4 { margin-bottom: 12px; color: var(--white); }
.footer-col a {
  color: var(--text-muted); font-size: 0.88rem; padding: 3px 0;
  transition: color 0.3s var(--ease), transform 0.3s var(--ease-out);
  display: inline-block;
}
.footer-col a:hover { color: var(--white); transform: translateX(3px); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 0.8rem; color: var(--text-muted);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: var(--text-muted); transition: color 0.3s; }
.footer-legal a:hover { color: var(--white); }

/* ===== Animations ===== */
.animate-in {
  opacity: 0; transform: translateY(24px);
  animation: fadeUp 0.8s var(--ease-out) forwards;
}
.d1 { animation-delay: 0.15s; }
.d2 { animation-delay: 0.3s; }
.d3 { animation-delay: 0.5s; }
.d4 { animation-delay: 0.7s; }

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

.scroll-in {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
  will-change: opacity, transform;
}
.scroll-in.visible { opacity: 1; transform: translateY(0); }

/* Card stagger */
.cards-grid .scroll-in:nth-child(2) { transition-delay: 0.06s; }
.cards-grid .scroll-in:nth-child(3) { transition-delay: 0.12s; }
.cards-grid .scroll-in:nth-child(4) { transition-delay: 0.18s; }
.cards-grid .scroll-in:nth-child(5) { transition-delay: 0.24s; }
.cards-grid .scroll-in:nth-child(6) { transition-delay: 0.30s; }
.cards-grid .scroll-in:nth-child(7) { transition-delay: 0.36s; }


/* ===== Mobile overlay backdrop ===== */
.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 998;
  opacity: 0; visibility: hidden; backdrop-filter: blur(4px);
  transition: opacity 0.4s var(--ease-out), visibility 0.4s var(--ease-out);
}
.nav-overlay.active { opacity: 1; visibility: visible; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .split-section { grid-template-columns: 1fr; }
  .split-image img { min-height: 400px; max-height: 500px; }
  .split-content { padding: 64px 40px; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .card-large { grid-column: 1 / -1; }
  .timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .timeline-track { display: none; }
  .contact { padding: 64px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }

  .nav { padding: 0 12px; }
  .nav-inner { height: 64px; }
  .nav-toggle { display: flex; z-index: 1001; padding: 10px; min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }
  .nav-links {
    position: fixed; top: 0; right: 0; width: min(300px, 85vw); height: 100vh; height: 100dvh;
    background: var(--white); flex-direction: column;
    padding: 80px 24px 24px; gap: 2px; box-shadow: -10px 0 40px rgba(0,0,0,0.15);
    transition: transform 0.45s var(--ease-out), opacity 0.4s var(--ease-out);
    z-index: 999; align-items: stretch;
    transform: translateX(100%); opacity: 0;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    padding-bottom: env(safe-area-inset-bottom, 24px);
  }
  .nav-links.active { transform: translateX(0); opacity: 1; }
  .nav-links a {
    padding: 14px 16px !important; color: var(--text) !important;
    font-size: 1rem; width: 100%; text-align: left; margin-left: 0 !important;
    background: transparent !important; border-radius: 8px !important;
    transition: background 0.2s var(--ease), transform 0.2s var(--ease) !important;
    min-height: 48px; display: flex; align-items: center;
  }
  .nav-links a:hover, .nav-links a:active { background: var(--cream) !important; transform: translateX(4px); }
  .nav-btn { margin-top: 8px !important; text-align: center !important; justify-content: center !important; background: var(--pink) !important; color: var(--white) !important; }

  .hero { min-height: 100vh; min-height: 100dvh; }
  .hero-content { padding: 100px 16px 60px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-sub { font-size: 0.95rem; margin-bottom: 16px; line-height: 1.6; }
  .hero-diff { font-size: 0.88rem; padding: 8px 18px; margin-bottom: 24px; }
  .hero-label { font-size: 0.72rem; letter-spacing: 0.12em; margin-bottom: 20px; }
  .hero-scroll { display: none; }
  .hero-btns { gap: 10px; }

  .split-section { grid-template-columns: 1fr; }
  .split-image img { min-height: 280px; max-height: 360px; }
  .split-badge { bottom: 12px; right: 12px; padding: 14px 18px; }
  .badge-number { font-size: 1.8rem; }
  .badge-text { font-size: 0.72rem; }
  .split-content { padding: 36px 16px 48px; border-left: none; border-top: 4px solid var(--pink); }
  .split-lead { font-size: 0.95rem; margin: 12px 0 28px; }

  .feature { gap: 12px; }
  .feature strong { font-size: 0.88rem; }
  .feature span { font-size: 0.82rem; }


  .services { padding: 64px 0; }
  .cards-grid { grid-template-columns: 1fr; gap: 12px; }
  .card-large { grid-template-columns: 1fr; min-height: auto; }
  .card-large > img { height: 200px; }
  .card-overlay { padding: 24px 20px; }
  .card-large h3 { font-size: 1.25rem; }
  .card-large p { font-size: 0.9rem; margin-bottom: 16px; }
  .card { padding: 24px 20px; }
  .card-icon { width: 48px; height: 48px; border-radius: 12px; margin-bottom: 20px; }

  .process { padding: 64px 0; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 20px 12px; }
  .timeline-step p { font-size: 0.8rem; }
  .timeline-step h3 { font-size: 1.05rem; }
  .timeline-dot { width: 32px; height: 32px; font-size: 0.8rem; margin: 0 auto 12px; }
  .timeline-img { margin-bottom: 16px; }


  .contact { padding: 48px 0; }
  .contact-header h2 { font-size: clamp(1.5rem, 5vw, 1.9rem); }
  .contact-header p { font-size: 0.92rem; }
  .contact-quick { flex-direction: column; align-items: center; gap: 12px; }
  .contact-link { max-width: 100%; min-width: 0; }
  .contact-form-wrapper { padding: 28px 20px; border-radius: 24px; }
  .contact-form h3 { font-size: 1.25rem; }
  .contact-form > p { font-size: 0.85rem; margin-bottom: 24px; }
  .contact .contact-trust { gap: 16px; }
  .contact .trust-item { font-size: 0.78rem; }
  .form-row { grid-template-columns: 1fr; }
  .form-field input, .form-field select, .form-field textarea {
    padding: 14px 14px; font-size: 16px; /* prevents iOS zoom on focus */
  }
  .btn-accent { padding: 14px 28px; font-size: 0.88rem; min-height: 48px; }
  .btn-glass { padding: 14px 28px; font-size: 0.88rem; min-height: 48px; }

  .footer { padding: 48px 0 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-brand > p { max-width: 100%; }
  .footer-col a { font-size: 0.85rem; padding: 4px 0; min-height: 36px; display: flex; align-items: center; }
  .footer-bottom {
    flex-direction: column; gap: 12px; text-align: center;
    padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  }

  .section-intro { margin-bottom: 36px; }
  .section-intro p { font-size: 0.95rem; }
  h2 { font-size: clamp(1.6rem, 5vw, 2.2rem); }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }

  .hero h1 { font-size: clamp(1.8rem, 9vw, 2.2rem); }
  .hero-content { padding: 90px 14px 50px; }
  .hero-sub { font-size: 0.9rem; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 8px; }
  .btn-accent, .btn-glass { width: 100%; justify-content: center; padding: 14px 20px; }

  .split-image img { min-height: 240px; max-height: 300px; }

  .timeline { grid-template-columns: 1fr; gap: 28px; }
  .timeline-img { aspect-ratio: 16/10; }

  .contact .contact-trust { flex-direction: column; align-items: center; gap: 10px; }

  .footer-grid { grid-template-columns: 1fr; gap: 24px; }

  .card { padding: 22px 18px; }
  .card-overlay { padding: 22px 18px; }
  .card-large > img { height: 180px; }

  .contact-form-wrapper { padding: 24px 14px; border-radius: 20px; }
}

/* ===== Reduce motion for accessibility ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .scroll-in { opacity: 1; transform: none; }
  .animate-in { opacity: 1; transform: none; }
}
