/* ───────────────────────────────────────────
   Overture Media — design system
   White background · orange accent · simple
   ─────────────────────────────────────────── */

:root {
  --bg: #FFFFFF;
  --bg-soft: #FAFAF8;
  --bg-card: #FFFFFF;

  --text: #0A0A0A;
  --text-2: #4B4B4B;
  --text-3: #7C7C7C;
  --text-4: #ABABAB;

  --border: #ECECEC;
  --border-strong: #D6D6D6;

  --orange: #F15A24;
  --orange-dark: #D94917;
  --orange-soft: #FFF1EA;

  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px rgba(15, 15, 15, 0.04);
  --shadow-md: 0 8px 24px -8px rgba(15, 15, 15, 0.08);
  --shadow-lg: 0 24px 60px -24px rgba(15, 15, 15, 0.18);

  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Geist', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

::selection { background: var(--orange); color: #fff; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

/* Thin orange brand bar at the very top */
.top-bar {
  height: 3px;
  background: var(--orange);
  width: 100%;
  position: relative;
  z-index: 50;
}

/* ─────────── Container ─────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ─────────── Typography utilities ─────────── */
.serif { font-family: 'Instrument Serif', Georgia, serif; }

.eyebrow {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

.muted { color: var(--text-2); }
.tiny { color: var(--text-3); font-size: 14px; }

/* ─────────── Navigation ─────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  max-width: 1440px;
  margin: 0 auto;
  gap: 32px;
}

.logo {
  font-family: 'Geist', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.025em;
  text-decoration: none;
  color: var(--text);
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
}
.logo .dot { color: var(--orange); margin-left: 1px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 1.5px;
  width: 0;
  background: var(--orange);
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* ─────────── Buttons ─────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 100px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.btn:hover .arrow { transform: translateX(4px); }

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

.btn-dark {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.btn-dark:hover { background: var(--orange); border-color: var(--orange); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-ghost:hover { border-color: var(--text); }

.btn-text {
  background: transparent;
  border: none;
  padding: 8px 0;
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  border-radius: 0;
  position: relative;
}
.btn-text::after {
  content: '';
  position: absolute;
  left: 0; bottom: 2px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transition: background 0.25s;
}
.btn-text:hover { color: var(--orange); }

.btn-lg { padding: 16px 30px; font-size: 16px; }

/* ─────────── Hero ─────────── */
.hero {
  padding: clamp(72px, 12vw, 140px) var(--gutter) clamp(64px, 10vw, 110px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }

/* Subtle blurred orange glow in background */
.hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(241, 90, 36, 0.07), transparent 65%);
  pointer-events: none;
  z-index: 1;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px 7px 10px;
  background: var(--orange-soft);
  color: var(--orange-dark);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
  border: 1px solid rgba(241, 90, 36, 0.15);
}
.pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
  animation: ping 2.4s ease-in-out infinite;
}
@keyframes ping {
  0%, 100% { box-shadow: 0 0 0 0 rgba(241, 90, 36, 0.5); }
  50% { box-shadow: 0 0 0 5px rgba(241, 90, 36, 0); }
}

.h1 {
  font-family: 'Geist', sans-serif;
  font-size: clamp(2.6rem, 7.6vw, 6.2rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.035em;
  max-width: 16ch;
  margin: 0 auto 28px;
  color: var(--text);
}
.h1 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  letter-spacing: -0.015em;
  padding: 0 0.04em;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-2);
  max-width: 56ch;
  margin: 0 auto 44px;
  line-height: 1.5;
}

.hero-ctas {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Trust logos under hero */
.trust {
  margin-top: clamp(80px, 10vw, 120px);
  text-align: center;
}
.trust-label {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 28px;
  font-weight: 500;
}
.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(28px, 6vw, 64px);
  flex-wrap: wrap;
  opacity: 0.7;
}
.trust-logo {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--text-2);
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: color 0.25s, opacity 0.25s;
}
.trust-logo:hover { color: var(--orange); }

/* ─────────── Sections ─────────── */
.section {
  padding: clamp(80px, 11vw, 140px) var(--gutter);
  position: relative;
}
.section.tight { padding: clamp(64px, 8vw, 100px) var(--gutter); }
.section-soft { background: var(--bg-soft); }

.section-head {
  max-width: 760px;
  margin: 0 auto clamp(48px, 7vw, 80px);
  text-align: center;
}
.section-head.left { text-align: left; margin-left: 0; margin-right: auto; }

.h2 {
  font-family: 'Geist', sans-serif;
  font-size: clamp(2.1rem, 4.6vw, 3.6rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-top: 18px;
  max-width: 22ch;
  color: var(--text);
}
.section-head:not(.left) .h2 { margin-left: auto; margin-right: auto; }
.h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
  padding: 0 0.04em;
}

.section-lede {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-2);
  margin-top: 20px;
  max-width: 56ch;
  line-height: 1.55;
}
.section-head:not(.left) .section-lede { margin-left: auto; margin-right: auto; }

/* ─────────── Services grid ─────────── */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(16px, 1.6vw, 22px);
  max-width: 1240px;
  margin: 0 auto;
}
.service {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.4vw, 44px);
  position: relative;
  transition: border-color 0.3s ease, transform 0.4s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.service:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--orange-soft);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: background 0.3s, color 0.3s, transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.service:hover .service-icon {
  background: var(--orange);
  color: #fff;
  transform: rotate(-6deg) scale(1.04);
}
.service-icon svg { width: 26px; height: 26px; }

.service h3 {
  font-family: 'Geist', sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.1;
}
.service p {
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.55;
  margin-bottom: 28px;
  max-width: 44ch;
}

.service-list {
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: auto;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  font-size: 14.5px;
  color: var(--text-2);
}
.service-list li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.service-link {
  margin-top: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.25s, gap 0.25s;
}
.service:hover .service-link { color: var(--orange); gap: 12px; }

/* ─────────── How we work / steps ─────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 40px);
  max-width: 1240px;
  margin: 0 auto;
}
.step {
  padding: 8px 0;
}
.step-num {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 24px;
  display: inline-block;
}
.step h4 {
  font-family: 'Geist', sans-serif;
  font-size: clamp(1.3rem, 1.8vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.15;
}
.step p {
  color: var(--text-2);
  line-height: 1.55;
  max-width: 40ch;
  font-size: 16px;
}

/* ─────────── Testimonial ─────────── */
.testimonial {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding: 0 var(--gutter);
}
.testimonial .quote-mark {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 5rem;
  color: var(--orange);
  line-height: 0.5;
  margin-bottom: 24px;
  display: block;
}
.testimonial blockquote {
  font-family: 'Geist', sans-serif;
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 36px;
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}
.testimonial blockquote em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}
.testimonial-attribution {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text-3);
}
.testimonial-attribution .avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Geist', sans-serif;
}
.testimonial-attribution strong {
  color: var(--text);
  font-weight: 600;
}
.testimonial-attribution .sep { color: var(--border-strong); }

/* ─────────── Final CTA card ─────────── */
.cta-card {
  background: var(--text);
  color: #fff;
  border-radius: clamp(20px, 3vw, 32px);
  padding: clamp(56px, 8vw, 100px) clamp(28px, 5vw, 80px);
  text-align: center;
  position: relative;
  overflow: hidden;
  max-width: 1240px;
  margin: 0 auto;
}
.cta-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(241, 90, 36, 0.45), transparent 60%);
  pointer-events: none;
}
.cta-card-inner { position: relative; z-index: 1; }
.cta-card .eyebrow { color: #fff; opacity: 0.85; }
.cta-card .eyebrow::before { background: var(--orange); }
.cta-card h2 {
  font-family: 'Geist', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 20ch;
  margin: 18px auto 24px;
  color: #fff;
}
.cta-card h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}
.cta-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  max-width: 50ch;
  margin: 0 auto 40px;
  line-height: 1.55;
}
.cta-card .btn-primary { background: var(--orange); border-color: var(--orange); }
.cta-card .btn-primary:hover { background: #fff; color: var(--orange); border-color: #fff; }

/* ─────────── Footer ─────────── */
.footer {
  padding: clamp(56px, 7vw, 88px) var(--gutter) 32px;
  border-top: 1px solid var(--border);
}
.footer-top {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(36px, 5vw, 64px);
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo { font-size: 28px; margin-bottom: 16px; }
.footer-brand p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.6;
  max-width: 36ch;
  margin-bottom: 20px;
}
.footer-brand .address {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.7;
}
.footer-col h5 {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-3);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-size: 15px;
  margin-bottom: 10px;
  transition: color 0.25s;
}
.footer-col a:hover { color: var(--orange); }

.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: var(--text-3);
}
.footer-bottom .links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom .links a {
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.25s;
}
.footer-bottom .links a:hover { color: var(--orange); }

/* ─────────── Reveal animation ─────────── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
              transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }

/* ─────────── Page hero (sub pages) ─────────── */
.page-hero {
  padding: clamp(64px, 10vw, 120px) var(--gutter) clamp(48px, 7vw, 80px);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 {
  font-family: 'Geist', sans-serif;
  font-size: clamp(2.4rem, 6.4vw, 5.2rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.035em;
  max-width: 18ch;
  margin: 18px auto 24px;
}
.page-hero h1 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}
.page-hero .lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--text-2);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.55;
}

/* ─────────── Service detail rows (services.html) ─────────── */
.service-detail {
  padding: clamp(64px, 9vw, 110px) var(--gutter);
  border-bottom: 1px solid var(--border);
}
.service-detail:nth-child(even) { background: var(--bg-soft); }
.service-detail-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.service-detail-left .eyebrow { margin-bottom: 20px; }
.service-detail-left h2 {
  font-family: 'Geist', sans-serif;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 16ch;
}
.service-detail-left h2 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  color: var(--orange);
}
.service-detail-left > p {
  color: var(--text-2);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.55;
  margin-bottom: 32px;
  max-width: 44ch;
}
.service-detail-left .service-icon-lg {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: var(--orange-soft);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.service-detail-left .service-icon-lg svg { width: 30px; height: 30px; }

.deliverables {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.deliverable {
  padding: 22px 26px;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 18px;
  align-items: start;
  transition: background 0.25s;
}
.deliverable:last-child { border-bottom: none; }
.deliverable:hover { background: var(--bg-soft); }
.deliverable .ix {
  font-family: 'Geist', sans-serif;
  font-size: 13px;
  color: var(--orange);
  font-weight: 500;
  padding-top: 2px;
}
.deliverable .name {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.deliverable .desc {
  color: var(--text-2);
  font-size: 14.5px;
  line-height: 1.5;
}

/* ─────────── About: story prose ─────────── */
.prose {
  max-width: 740px;
  margin: 0 auto;
}
.prose p {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  line-height: 1.65;
  color: var(--text-2);
  margin-bottom: 24px;
}
.prose p:last-child { margin-bottom: 0; }
.prose p strong { color: var(--text); font-weight: 600; }
.prose p em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  color: var(--orange);
  font-weight: 400;
  font-size: 1.05em;
}

/* ─────────── Values grid (About) ─────────── */
.values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(18px, 2vw, 24px);
  max-width: 1180px;
  margin: 0 auto;
}
.value {
  padding: clamp(28px, 3.4vw, 40px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-card);
  transition: border-color 0.3s, transform 0.4s ease, box-shadow 0.3s;
}
.value:hover {
  border-color: var(--orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.value .step-num { margin-bottom: 20px; }
.value h4 {
  font-family: 'Geist', sans-serif;
  font-size: clamp(1.2rem, 1.7vw, 1.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.15;
}
.value p {
  color: var(--text-2);
  font-size: 15.5px;
  line-height: 1.55;
}

/* ─────────── Contact: grid + form + info ─────────── */
.contact-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.6vw, 48px);
  box-shadow: var(--shadow-sm);
}
.form { display: flex; flex-direction: column; gap: 20px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: -0.005em;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: border-color 0.25s, box-shadow 0.25s;
  -webkit-appearance: none;
  appearance: none;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-4); }
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-soft);
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.5; }
.field select {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237C7C7C' stroke-width='1.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 40px;
}
.form-note {
  font-size: 13px;
  color: var(--text-3);
  line-height: 1.5;
}
.form .btn { margin-top: 4px; align-self: flex-start; }

.info-card {
  background: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3.6vw, 40px);
  position: sticky;
  top: 100px;
}
.info-card h3 {
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.info-card > p {
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 24px;
}
.info-block {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.info-block:first-of-type { border-top: none; padding-top: 0; }
.info-block .label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-3);
  font-weight: 500;
  margin-bottom: 6px;
}
.info-block .value {
  font-size: 16px;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}
.info-block a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.25s;
}
.info-block a:hover { color: var(--orange); }

/* ─────────── FAQ (Contact) ─────────── */
.faq {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  text-align: left;
  font-family: inherit;
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.015em;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.25s;
}
.faq-q:hover { color: var(--orange); }
.faq-q .icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--orange-soft);
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
  font-size: 14px;
}
.faq-item.open .faq-q .icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a p {
  padding-bottom: 24px;
  color: var(--text-2);
  font-size: 16px;
  line-height: 1.6;
  max-width: 64ch;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ─────────── Mobile nav (hidden by default) ─────────── */
.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--border-strong);
  background: var(--bg);
  border-radius: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  transition: border-color 0.25s;
}
.menu-toggle:hover { border-color: var(--text); }
.menu-toggle span {
  display: block;
  width: 18px; height: 1.5px;
  background: var(--text);
  border-radius: 2px;
}

/* ─────────── Responsive ─────────── */
@media (max-width: 960px) {
  .services { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 36px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .service-detail-inner { grid-template-columns: 1fr; gap: 40px; }
  .values { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .info-card { position: static; }
}

@media (max-width: 720px) {
  .nav-inner { padding: 14px var(--gutter); gap: 12px; }
  .nav-links, .nav-cta .btn { display: none; }
  .menu-toggle { display: inline-flex; }
  .menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--bg);
    padding: 24px var(--gutter) 32px;
    gap: 4px;
    align-items: flex-start;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .menu-open .nav-links a {
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid var(--border);
    font-size: 17px;
  }
  .menu-open .nav-cta { display: flex; width: 100%; padding: 16px var(--gutter); }
  .menu-open .nav-cta .btn { display: inline-flex; width: 100%; }
  .menu-open .nav-cta {
    position: absolute;
    top: calc(100% + 200px);
    left: 0; right: 0;
    background: var(--bg);
  }

  .hero-ctas .btn { width: 100%; }
  .hero-ctas { width: 100%; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; }
}
