/* ─────────────────────────────────────────────────────
   PinnacleOS Wedding Photographer Landing Page
   Premium Editorial Aesthetic — Warm, Sophisticated
───────────────────────────────────────────────────── */
:root {
  --bg: #faf7f9;
  --bg-warm: #f5eff3;
  --surface: #ffffff;
  --surface-alt: #faf6f8;
  --border: #e5dbe0;
  --border-light: #f0e9ed;
  --text-primary: #1c1720;
  --text-secondary: #5e5268;
  --text-muted: #9a8a9e;
  --accent: #E8604C;
  --accent-dark: #c94a38;
  --accent-purple: #7B2D8E;
  --accent-light: rgba(232, 96, 76, 0.08);
  --accent-mid: rgba(232, 96, 76, 0.15);
  --accent-gradient: linear-gradient(135deg, #E8604C 0%, #c44b8a 50%, #7B2D8E 100%);
  --accent-gradient-hover: linear-gradient(135deg, #d4503e 0%, #b0407a 50%, #6a2579 100%);
  --overlay: rgba(28, 23, 32, 0.55);
  --shadow-sm: 0 1px 3px rgba(28,23,32,0.06), 0 1px 2px rgba(28,23,32,0.04);
  --shadow-md: 0 4px 16px rgba(28,23,32,0.08), 0 2px 6px rgba(28,23,32,0.05);
  --shadow-lg: 0 12px 40px rgba(28,23,32,0.12), 0 4px 12px rgba(28,23,32,0.06);
  --shadow-xl: 0 24px 64px rgba(28,23,32,0.14);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--accent-mid); color: var(--text-primary); }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-primary);
}

/* ── Navigation ── */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 56px;
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 249, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
}

.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-mark {
  width: 32px; height: 32px;
  background: var(--accent-gradient);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 16px; font-weight: 700;
}
.brand-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px; font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-cta {
  background: var(--accent-gradient);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.nav-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* ── Hero ── */
.hero {
  min-height: calc(100vh - 73px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 72px 56px 56px;
  max-width: 1320px;
  margin: 0 auto;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  font-family: 'DM Sans', sans-serif;
}

.hero-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(40px, 4.5vw, 62px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-content { max-width: 520px; }

/* Hero form */
.hero-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}

.hero-form-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.hero-form-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.5;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group.full { grid-column: 1 / -1; }

.form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.form-input, .form-select {
  background: var(--bg-warm);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.form-input::placeholder { color: var(--text-muted); }
.form-input:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b5e52' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}

.form-textarea {
  background: var(--bg-warm);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  width: 100%;
  resize: vertical;
  min-height: 100px;
}
.form-textarea::placeholder { color: var(--text-muted); }
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
  outline: none;
}

.form-submit {
  width: 100%;
  background: var(--accent-gradient);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 24px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 4px;
  box-shadow: 0 2px 8px rgba(232,96,76,0.3);
}
.form-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,96,76,0.4);
}
.form-submit:active { transform: translateY(0); }

.form-footnote {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  line-height: 1.5;
}

/* Hero image */
.hero-visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(45,24,48,0.4) 100%);
}
.hero-visual-caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: white;
  font-size: 13px;
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ── Stats Bar ── */
.stats-bar {
  background: linear-gradient(135deg, #2d1830 0%, #1c1720 50%, #201218 100%);
  padding: 0;
}

.stats-inner {
  display: flex;
  align-items: stretch;
  max-width: 1400px;
  margin: 0 auto;
  border-left: 1px solid rgba(255,255,255,0.08);
}

.stat-item {
  flex: 1;
  padding: 28px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 30px;
  font-weight: 600;
  color: white;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ── Before/After Slider ── */
.ba-section {
  padding: 100px 56px;
  background: var(--bg-warm);
  border-top: 1px solid var(--border-light);
}

.ba-header { text-align: center; margin-bottom: 56px; }
.ba-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.ba-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.ba-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.65;
}

.ba-slider-wrap {
  max-width: 960px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  cursor: col-resize;
  user-select: none;
  aspect-ratio: 16/9;
}

.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}

.ba-img-before {
  clip-path: inset(0 50% 0 0);
}

.ba-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 3px;
  background: white;
  transform: translateX(-50%);
  z-index: 10;
  box-shadow: 0 0 12px rgba(0,0,0,0.3);
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 50%;
  z-index: 11;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.2);
  pointer-events: none;
}

.ba-label-before {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0,0,0,0.55);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}

.ba-label-after {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--accent-gradient);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  z-index: 5;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  pointer-events: none;
}

.ba-caption {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
}

/* ── Differentiators ── */
.diff-section {
  padding: 100px 56px;
  background: var(--surface);
  border-top: 1px solid var(--border-light);
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.diff-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}

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

.diff-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--accent);
}

.diff-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.diff-body {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.diff-detail {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.diff-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── Services ── */
.services-section {
  padding: 80px 56px;
  background: var(--bg-warm);
  border-top: 1px solid var(--border-light);
}

.services-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-align: center;
}

.services-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.02em;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--accent-mid);
}

.service-icon {
  width: 36px;
  height: 36px;
  background: var(--accent-light);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.service-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin-top: 2px;
}

/* ── Trust ── */
.trust-section {
  padding: 100px 56px;
  background: var(--surface);
  border-top: 1px solid var(--border-light);
}

.trust-inner { max-width: 1200px; margin: 0 auto; }

.trust-header { text-align: center; margin-bottom: 56px; }

.trust-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.trust-sub { font-size: 16px; color: var(--text-secondary); line-height: 1.6; }

.trust-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.trust-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.trust-stat-item { text-align: center; }

.trust-stat-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 40px;
  font-weight: 600;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.trust-stat-label {
  font-size: 13px;
  color: var(--text-secondary);
  letter-spacing: 0.01em;
}

/* ── Client Logos ── */
.client-logos {
  text-align: center;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid var(--border-light);
}

.client-logos-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

.client-logos-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.client-logo-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 0;
  opacity: 0.6;
  transition: opacity 0.2s;
}
.client-logo-text:hover { opacity: 1; }

/* ── Awards ── */
.awards-section {
  margin-top: 72px;
  text-align: center;
  padding-top: 56px;
  border-top: 1px solid var(--border-light);
}

.awards-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 28px;
}

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

.award-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.award-badge {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  padding: 8px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--surface);
  white-space: nowrap;
}

.award-source {
  font-size: 11px;
  color: var(--text-muted);
  font-style: italic;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}

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

.testimonial-card-accent {
  background: var(--bg-warm);
  border-color: var(--accent-mid);
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 18px;
}

.testimonial-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px;
  font-style: italic;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.testimonial-attr {
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}

.testimonial-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.testimonial-meta {
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Lead Form Section ── */
.lead-section {
  padding: 100px 56px;
  background: linear-gradient(135deg, #2d1830 0%, #1c1720 50%, #201218 100%);
  position: relative;
  overflow: hidden;
}

.lead-bg-glow {
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(232,96,76,0.12) 0%, rgba(123,45,142,0.06) 40%, transparent 60%);
  pointer-events: none;
}

.lead-inner { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }

.lead-header { text-align: center; margin-bottom: 48px; }

.lead-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.lead-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: white;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.lead-sub { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.65; }

.lead-form-card {
  background: white;
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
}

.lead-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.lead-form-group { display: flex; flex-direction: column; gap: 6px; }
.lead-form-group.full { grid-column: 1 / -1; }

.lead-form-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.lead-form-input, .lead-form-select {
  background: var(--bg-warm);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  width: 100%;
}

.lead-form-input::placeholder { color: var(--text-muted); }
.lead-form-input:focus, .lead-form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.lead-form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b5e52' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.lead-form-textarea {
  background: var(--bg-warm);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-primary);
  width: 100%;
  resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.lead-form-textarea::placeholder { color: var(--text-muted); }
.lead-form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
  outline: none;
}

.lead-form-submit {
  width: 100%;
  background: var(--accent-gradient);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  padding: 17px 24px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-top: 4px;
  box-shadow: 0 2px 12px rgba(232,96,76,0.35);
}
.lead-form-submit:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(232,96,76,0.5);
}

.lead-form-footnote {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

/* ── Closing ── */
.closing {
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  padding: 100px 56px;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.closing-rule {
  width: 48px;
  height: 2px;
  background: var(--accent-gradient);
  margin: 0 auto 28px;
}

.closing-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: 'DM Sans', sans-serif;
}

.closing-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.closing-body {
  font-size: 18px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.closing-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.closing-cta-primary {
  background: var(--accent-gradient);
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(232,96,76,0.3);
}

.closing-cta-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,96,76,0.4);
}

.closing-cta-sep {
  font-size: 14px;
  color: var(--text-muted);
}

.closing-cta-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.closing-cta-link:hover {
  color: var(--text-primary);
  border-color: var(--text-primary);
}

/* ── Footer ── */
.footer {
  background: #120e16;
  padding: 40px 56px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand { display: flex; align-items: center; gap: 12px; }

.footer-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
}

.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: rgba(255,255,255,0.7); }

.footer-divider { width: 1px; height: 16px; background: rgba(255,255,255,0.1); }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ── Scroll animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Gallery ── */
.gallery-section {
  padding: 100px 56px;
  background: var(--surface);
  border-top: 1px solid var(--border-light);
}
.gallery-inner { max-width: 1200px; margin: 0 auto; }
.gallery-header { text-align: center; margin-bottom: 56px; }
.gallery-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.gallery-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.gallery-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.65;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 20px;
  align-items: start;
  margin-bottom: 56px;
}
.gallery-feature {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.gallery-feature img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.gallery-feature-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(transparent, rgba(28,25,23,0.7));
  color: white;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.gallery-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
}
.gallery-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-md);
}
.gallery-card img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
}
.gallery-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(28,25,23,0.65));
  color: white;
  font-size: 12px;
  font-weight: 500;
}
.gallery-accent {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: 400px;
  margin: 0 auto;
}
.gallery-accent-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.gallery-accent-text {
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  white-space: nowrap;
}

/* ── Awards ── */
.awards-section {
  padding: 100px 56px;
  background: var(--bg-warm);
  border-top: 1px solid var(--border-light);
}
.awards-inner { max-width: 1100px; margin: 0 auto; }
.awards-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  text-align: center;
}
.awards-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  text-align: center;
  margin-bottom: 12px;
}
.awards-sub {
  font-size: 16px;
  color: var(--text-secondary);
  text-align: center;
  max-width: 480px;
  margin: 0 auto 56px;
  line-height: 1.65;
}
.awards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.award-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
}
.award-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}
.award-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
}
.award-name {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.4;
  margin-bottom: 6px;
}
.award-org {
  font-size: 12px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 8px;
}
.award-year {
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.awards-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  max-width: 440px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Pipeline ── */
.pipeline {
  padding: 80px 56px;
  background: var(--surface);
  border-top: 1px solid var(--border-light);
}
.pipeline-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin-bottom: 48px;
}
.pipeline-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.pipeline-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 24px 28px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}
.step-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-light);
  border: 1px solid var(--accent-mid);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.step-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.step-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.pipeline-arrow {
  color: var(--text-muted);
  flex-shrink: 0;
  padding: 0 12px;
}

/* ── Closing ── */
.closing {
  padding: 100px 56px;
  background: var(--bg-warm);
  border-top: 1px solid var(--border-light);
  text-align: center;
}
.closing-inner { max-width: 600px; margin: 0 auto; }
.closing-mark {
  color: var(--accent);
  margin-bottom: 32px;
  display: flex;
  justify-content: center;
}
.closing-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.closing-body {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .diff-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .pipeline-track { gap: 16px; }
  .pipeline-arrow { display: none; }
  .pipeline-step { flex: 1 0 200px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto 40px; }
  .process-steps { flex-direction: column; align-items: center; gap: 40px; }
  .process-connector { display: none; }
  .process-step { flex: 0 0 auto; width: 280px; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 60px 32px 40px; }
  .hero-content { max-width: 100%; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .stats-inner { flex-wrap: wrap; }
  .stat-item { flex: 1 0 40%; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .diff-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .lead-section, .ba-section, .diff-section, .gallery-section, .awards-section, .process-section, .pricing-section, .faq-section { padding: 72px 32px; }
  .services-section { padding: 60px 32px; }
  .lead-form-card { padding: 32px 28px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-feature img, .gallery-card img { aspect-ratio: 16/9; }
}

@media (max-width: 600px) {
  .nav { padding: 16px 24px; }
  .hero { padding: 48px 24px 32px; gap: 36px; }
  .hero-form-wrap { padding: 28px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .stats-inner { flex-direction: column; }
  .stat-item { flex: 1 0 auto; padding: 20px 28px; }
  .ba-section, .diff-section, .lead-section, .gallery-section, .awards-section, .closing, .process-section, .pricing-section, .faq-section { padding: 60px 24px; }
  .services-section { padding: 48px 24px; }
  .pipeline { padding: 60px 24px; }
  .services-grid { grid-template-columns: 1fr; }
  .lead-form-row { grid-template-columns: 1fr; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .awards-grid { grid-template-columns: 1fr 1fr; }
  .pipeline-step { flex: 1 0 100%; }
}

/* ── Process Section ── */
.process-section {
  padding: 100px 56px;
  background: var(--surface);
  border-top: 1px solid var(--border-light);
}
.process-inner { max-width: 960px; margin: 0 auto; }
.process-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  text-align: center; margin-bottom: 16px;
}
.process-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 600;
  color: var(--text-primary); letter-spacing: -0.02em;
  text-align: center; margin-bottom: 12px; line-height: 1.15;
}
.process-sub {
  font-size: 16px; color: var(--text-secondary);
  text-align: center; margin-bottom: 64px; line-height: 1.65;
}
.process-steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; flex-wrap: wrap; margin-bottom: 48px;
}
.process-step {
  flex: 0 0 180px; padding: 0 20px; text-align: center;
}
.process-step-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--accent); margin-bottom: 16px; opacity: 0.7;
}
.process-step-body { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.process-step-icon {
  width: 48px; height: 48px;
  background: var(--accent-light); border: 1px solid var(--accent-mid);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.process-step-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px; font-weight: 600;
  color: var(--text-primary); letter-spacing: -0.01em; line-height: 1.3;
}
.process-step-desc {
  font-size: 13px; color: var(--text-secondary); line-height: 1.6;
}
.process-connector {
  color: var(--text-muted); padding-top: 20px; flex: 0 0 auto;
}
.process-sla {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12px; color: var(--text-muted);
  padding: 16px 24px; background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-sm); max-width: 560px; margin: 0 auto;
}

/* ── Pricing Section ── */
.pricing-section {
  padding: 100px 56px;
  background: var(--bg-warm);
  border-top: 1px solid var(--border-light);
}
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  text-align: center; margin-bottom: 16px;
}
.pricing-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 600;
  color: var(--text-primary); letter-spacing: -0.02em;
  text-align: center; margin-bottom: 12px;
}
.pricing-sub {
  font-size: 16px; color: var(--text-secondary);
  text-align: center; margin-bottom: 20px; line-height: 1.65;
}
.pricing-note {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; color: var(--text-secondary);
  background: var(--surface); border: 1px solid var(--accent-mid);
  border-radius: var(--radius-sm); padding: 10px 20px;
  max-width: 400px; margin: 0 auto 56px;
}
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 960px; margin: 0 auto 40px;
}
.pricing-card {
  background: var(--surface); border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 36px 28px;
  display: flex; flex-direction: column; gap: 0;
  transition: box-shadow 0.25s, transform 0.25s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.pricing-card-featured {
  border-color: var(--accent); box-shadow: 0 0 0 2px var(--accent), var(--shadow-lg);
  position: relative;
}
.pricing-popular {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  background: var(--accent-gradient); color: white;
  padding: 4px 12px; border-radius: 100px;
  margin-bottom: 20px; align-self: flex-start;
}
.pricing-card-header { margin-bottom: 20px; }
.pricing-tier {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px; font-weight: 600;
  color: var(--text-primary); margin-bottom: 6px;
}
.pricing-desc { font-size: 13px; color: var(--text-muted); line-height: 1.5; }
.pricing-price { margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border-light); }
.pricing-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 38px; font-weight: 600;
  color: var(--text-primary); letter-spacing: -0.03em;
}
.pricing-period { font-size: 16px; color: var(--text-muted); font-weight: 400; }
.pricing-features { list-style: none; margin-bottom: 28px; flex: 1; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--text-secondary); line-height: 1.4;
}
.pricing-features svg { flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.pricing-cta {
  display: block; text-align: center;
  background: var(--bg-warm); border: 1.5px solid var(--border);
  color: var(--text-primary); font-family: 'DM Sans', sans-serif;
  font-size: 14px; font-weight: 600;
  padding: 13px 20px; border-radius: var(--radius-sm);
  text-decoration: none; letter-spacing: 0.01em;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.pricing-cta:hover { background: var(--border); transform: translateY(-1px); }
.pricing-cta-featured { background: var(--accent-gradient); border-color: var(--accent); color: white; border: none; }
.pricing-cta-featured:hover { opacity: 0.9; }
.pricing-footer {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
}

/* ── FAQ Section ── */
.faq-section {
  padding: 100px 56px;
  background: var(--surface);
  border-top: 1px solid var(--border-light);
}
.faq-inner { max-width: 720px; margin: 0 auto; }
.faq-label {
  font-size: 11px; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 16px; text-align: center;
}
.faq-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 44px); font-weight: 600;
  color: var(--text-primary); letter-spacing: -0.02em;
  text-align: center; margin-bottom: 56px;
}
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 24px 0; background: none; border: none; cursor: pointer;
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600;
  color: var(--text-primary); text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-chevron { flex-shrink: 0; color: var(--text-muted); transition: transform 0.25s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-item.open .faq-question { color: var(--accent); }
.faq-answer {
  display: none; padding-bottom: 24px;
  font-size: 15px; color: var(--text-secondary); line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }
.faq-more { text-align: center; margin-top: 48px; }
.faq-link {
  font-size: 14px; color: var(--accent); font-weight: 500;
  text-decoration: none; border-bottom: 1px solid var(--accent-mid);
  padding-bottom: 2px; transition: border-color 0.2s;
}
.faq-link:hover { border-color: var(--accent); }