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

body {
  font-family: 'Inter', sans-serif;
  background: #E8E4DE;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── Navigation ── */

#floating-nav {
  position: fixed;
  top: -72px;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 56px;
  background: rgba(232, 228, 222, 0.90);
  border: 1px solid rgba(26, 16, 9, 0.09);
  border-radius: 20px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.10);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  color: rgba(26, 16, 9, 0.5);
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
}

#floating-nav.visible {
  top: 14px;
}

.nav-brand {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  background: linear-gradient(135deg, #E8405C 0%, #8D2738 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  margin-right: 60px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(26, 16, 9, 0.5);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: rgba(26, 16, 9, 0.9);
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  background: #E8E4DE;
  isolation: isolate;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: right center;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    #E8E4DE 0%,
    #E8E4DE 38%,
    rgba(232, 228, 222, 0.92) 52%,
    rgba(232, 228, 222, 0.55) 68%,
    rgba(232, 228, 222, 0.15) 85%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 0 24px 0 10vw;
  max-width: calc(10vw + 560px);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(26, 16, 9, 0.55);
  border: 1px solid rgba(232, 64, 92, 0.35);
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
  margin-bottom: 32px;
  backdrop-filter: blur(8px);
  background: rgba(232, 64, 92, 0.08);
}

.hero-eyebrow__dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #E8405C;
  box-shadow: 0 0 6px 2px rgba(232, 64, 92, 0.6);
  animation: eyebrow-pulse 2.4s ease-in-out infinite;
}

@keyframes eyebrow-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px 2px rgba(232, 64, 92, 0.6); }
  50%       { opacity: 0.6; box-shadow: 0 0 10px 4px rgba(232, 64, 92, 0.3); }
}

.hero-headline {
  font-size: clamp(2.75rem, 6.5vw, 5.5rem);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.04em;
  background: linear-gradient(160deg, #1a1009 0%, rgba(26, 16, 9, 0.82) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: clamp(1rem, 1.4vw, 1.1875rem);
  font-weight: 400;
  line-height: 1.65;
  color: rgba(26, 16, 9, 0.6);
  max-width: 480px;
  margin-bottom: 44px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: 100px;
  padding: 14px 28px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  white-space: nowrap;
}

.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); transition-duration: 0.06s; }

.btn--primary {
  background: linear-gradient(135deg, #E8405C 0%, #8D2738 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 0 0 1px rgba(232, 64, 92, 0.3), 0 4px 16px rgba(232, 64, 92, 0.30), 0 1px 3px rgba(0, 0, 0, 0.15);
}

.btn--primary:hover {
  box-shadow: 0 0 0 1px rgba(232, 64, 92, 0.4), 0 8px 28px rgba(232, 64, 92, 0.42), 0 2px 6px rgba(0, 0, 0, 0.15);
}

.btn--ghost {
  background: rgba(26, 16, 9, 0.06);
  color: rgba(26, 16, 9, 0.72);
  border: 1px solid rgba(26, 16, 9, 0.18);
  backdrop-filter: blur(8px);
}

.btn--ghost:hover {
  background: rgba(26, 16, 9, 0.10);
  color: rgba(26, 16, 9, 0.92);
  border-color: rgba(26, 16, 9, 0.28);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: opacity 0.4s ease;
}

.hero-scroll__label {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(26, 16, 9, 0.35);
}

.hero-scroll__track {
  width: 22px; height: 36px;
  border: 1.5px solid rgba(26, 16, 9, 0.22);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
}

.hero-scroll__dot {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(26, 16, 9, 0.50);
  animation: scroll-bounce 1.8s ease-in-out infinite;
}

@keyframes scroll-bounce {
  0%   { top: 5px;  opacity: 1; }
  60%  { top: 22px; opacity: 0.4; }
  100% { top: 5px;  opacity: 0; }
}

.hero-eyebrow,
.hero-headline,
.hero-sub,
.hero-actions,
.hero-scroll {
  animation: hero-fade-up 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-eyebrow  { animation-delay: 0.1s; }
.hero-headline { animation-delay: 0.2s; }
.hero-sub      { animation-delay: 0.35s; }
.hero-actions  { animation-delay: 0.5s; }
.hero-scroll   { animation-delay: 0.8s; }

@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
  .hero-bg::after {
    background: linear-gradient(
      to right,
      #E8E4DE 0%,
      #E8E4DE 55%,
      rgba(232, 228, 222, 0.85) 75%,
      rgba(232, 228, 222, 0.3) 100%
    );
  }
  .hero-content { padding: 0 20px 0 24px; max-width: 100%; }
  .btn { padding: 13px 22px; font-size: 0.875rem; }
  .hero-scroll { bottom: 28px; }
}

@media (max-width: 480px) {
  .hero-actions { gap: 12px; }
  .btn--ghost { display: none; }
  .hero-sub__break { display: none; }
}

/* ── Pain Points ── */

.pain-points {
  background: #E8E4DE;
  padding: 120px 24px;
}

.pain-points-container {
  max-width: 1100px;
  margin: 0 auto;
}

.pain-points-header {
  text-align: center;
  margin-bottom: 64px;
}

.pain-points-heading {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  background: linear-gradient(160deg, #1a1009 0%, rgba(26, 16, 9, 0.78) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pain-points-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.pain-card {
  background: rgba(26, 16, 9, 0.04);
  border: 1px solid rgba(26, 16, 9, 0.09);
  border-radius: 20px;
  padding: 32px 28px;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.pain-card:hover {
  background: rgba(26, 16, 9, 0.07);
  border-color: rgba(232, 64, 92, 0.3);
}

.pain-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(232, 64, 92, 0.12);
  color: #E8405C;
  margin-bottom: 16px;
}

.pain-card__title {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(26, 16, 9, 0.90);
  margin-bottom: 10px;
}

.pain-card__body {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: rgba(26, 16, 9, 0.55);
}

.pain-points-bridge {
  text-align: center;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(26, 16, 9, 0.50);
  max-width: 540px;
  margin: 0 auto;
  font-style: italic;
}

@media (max-width: 900px) {
  .pain-points-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .pain-points { padding: 80px 16px; }
  .pain-points-header { margin-bottom: 48px; }
  .pain-points-grid { grid-template-columns: 1fr; }
  .pain-card { padding: 24px 20px; }
}

/* ── Thinking ── */

.thinking {
  background: #DEDAD4;
  padding: 120px 24px;
  overflow: hidden;
}

.thinking-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.thinking-image-col {
  margin: 0;
}

.thinking-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  display: block;
  background: #DEDAD4;
}

.thinking-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.thinking-heading {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  background: linear-gradient(160deg, #1a1009 0%, rgba(26, 16, 9, 0.78) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 40px;
}

.thinking-statements {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.thinking-statement {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(26, 16, 9, 0.58);
  padding: 22px 0;
  border-top: 1px solid rgba(26, 16, 9, 0.10);
}

.thinking-statement:last-child {
  border-bottom: 1px solid rgba(26, 16, 9, 0.10);
}

@media (max-width: 900px) {
  .thinking-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .thinking-image {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 540px) {
  .thinking { padding: 80px 16px; }
  .thinking-heading { margin-bottom: 32px; }
}

/* ── Examples ── */

.examples {
  background: #E8E4DE;
  padding: 120px 24px;
}

.examples-container {
  max-width: 1100px;
  margin: 0 auto;
}

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

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(26, 16, 9, 0.55);
  border: 1px solid rgba(232, 64, 92, 0.35);
  border-radius: 100px;
  padding: 5px 14px 5px 10px;
  margin-bottom: 28px;
  background: rgba(232, 64, 92, 0.08);
}

.section-eyebrow__dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #E8405C;
  box-shadow: 0 0 6px 2px rgba(232, 64, 92, 0.6);
}

.examples-heading {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  background: linear-gradient(160deg, #1a1009 0%, rgba(26, 16, 9, 0.78) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.examples-subheading {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(26, 16, 9, 0.55);
  max-width: 520px;
  margin: 0 auto;
}

.examples-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0;
}

.example-pill {
  display: inline-flex;
  align-items: center;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26, 16, 9, 0.55);
  background: rgba(26, 16, 9, 0.05);
  border: 1px solid rgba(26, 16, 9, 0.1);
  border-radius: 100px;
  padding: 8px 20px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.example-pill:hover {
  background: rgba(26, 16, 9, 0.08);
  border-color: rgba(26, 16, 9, 0.18);
  color: rgba(26, 16, 9, 0.8);
}

.example-pill.active {
  background: rgba(232, 64, 92, 0.1);
  border-color: rgba(232, 64, 92, 0.4);
  color: #C93050;
  font-weight: 600;
}

.examples-progress-track {
  height: 2px;
  background: rgba(26, 16, 9, 0.08);
  border-radius: 2px;
  margin: 28px 0 32px;
  overflow: hidden;
}

.examples-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #E8405C, #8D2738);
  border-radius: 2px;
}

.examples-progress-fill.animating {
  transition: width 5s linear;
  width: 100%;
}

.examples-panel {
  background: rgba(26, 16, 9, 0.04);
  border: 1px solid rgba(26, 16, 9, 0.09);
  border-radius: 20px;
  padding: 40px;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.examples-panel.transitioning {
  opacity: 0;
  transform: translateY(6px);
}

.examples-panel__headline {
  font-size: clamp(1.0625rem, 1.8vw, 1.25rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: rgba(26, 16, 9, 0.90);
  margin-bottom: 32px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(26, 16, 9, 0.09);
}

.examples-panel__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.examples-panel__side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.examples-panel__side--solution {
  padding-left: 32px;
  border-left: 2px solid rgba(232, 64, 92, 0.4);
}

.examples-panel__label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(26, 16, 9, 0.38);
}

.examples-panel__side--solution .examples-panel__label {
  color: rgba(232, 64, 92, 0.7);
}

.examples-panel__side p {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: rgba(26, 16, 9, 0.58);
}

@media (max-width: 680px) {
  .examples-panel__cols {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .examples-panel__side--solution {
    padding-left: 16px;
  }
}

@media (max-width: 600px) {
  .examples { padding: 80px 16px; }
  .examples-header { margin-bottom: 40px; }
  .examples-panel { padding: 28px 20px; }
  .examples-panel__headline { margin-bottom: 24px; padding-bottom: 20px; }
}

/* ── Case Studies ── */

.case-studies {
  background: #DEDAD4;
  padding: 120px 24px;
  overflow: hidden;
}

.case-studies-container {
  max-width: 1100px;
  margin: 0 auto;
}

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

.case-studies-heading {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  background: linear-gradient(160deg, #1a1009 0%, rgba(26, 16, 9, 0.78) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.case-studies-subheading {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(26, 16, 9, 0.55);
  max-width: 520px;
  margin: 0 auto;
}

/* Carousel */

.case-studies-carousel {
  overflow: hidden;
  border-radius: 24px;
  margin-bottom: 28px;
}

.case-studies-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Individual slide */

.case-study {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(26, 16, 9, 0.04);
  border: 1px solid rgba(26, 16, 9, 0.09);
  border-radius: 24px;
  overflow: hidden;
}

/* Reverse: image on the right */
.case-study--reversed .case-study__content {
  order: -1;
}

.case-study__image-col {
  margin: 0;
  overflow: hidden;
}

.case-study__image-link {
  display: block;
  height: 100%;
}

.case-study__image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.case-study__image-link:hover .case-study__image {
  transform: scale(1.03);
}

.case-study__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 52px 52px 56px;
}

.case-study--reversed .case-study__content {
  padding: 52px 56px 52px 52px;
}

.case-study__client {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #C93050;
  margin-bottom: 16px;
}

.case-study__headline {
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.025em;
  background: linear-gradient(160deg, #1a1009 0%, rgba(26, 16, 9, 0.82) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.case-study__body {
  font-size: 0.9375rem;
  line-height: 1.72;
  color: rgba(26, 16, 9, 0.55);
  margin-bottom: 28px;
}

.case-study__quote {
  padding: 18px 0 18px 20px;
  border-left: 2px solid rgba(232, 64, 92, 0.4);
  margin-bottom: 32px;
}

.case-study__quote p {
  font-size: 0.9375rem;
  font-style: italic;
  line-height: 1.65;
  color: rgba(26, 16, 9, 0.70);
  margin-bottom: 10px;
}

.case-study__quote cite {
  font-size: 0.8125rem;
  font-style: normal;
  font-weight: 500;
  color: rgba(26, 16, 9, 0.42);
}

.case-study__cta {
  align-self: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  padding: 11px 20px;
}

/* Navigation */

.case-studies-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.case-studies-arrow {
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  flex-shrink: 0;
}

.case-studies-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.case-studies-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(26, 16, 9, 0.18);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease, transform 0.25s ease;
}

.case-studies-dot:hover {
  background: rgba(26, 16, 9, 0.32);
}

.case-studies-dot.active {
  background: #E8405C;
  transform: scale(1.3);
}

/* Progress bar */

.case-studies-progress-track {
  height: 2px;
  background: rgba(26, 16, 9, 0.08);
  border-radius: 2px;
  overflow: hidden;
}

.case-studies-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #E8405C, #8D2738);
  border-radius: 2px;
}

.case-studies-progress-fill.animating {
  transition: width 6s linear;
  width: 100%;
}

/* Responsive */

@media (max-width: 900px) {
  .case-study {
    grid-template-columns: 1fr;
  }

  .case-study__image {
    min-height: unset;
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .case-study--reversed .case-study__content {
    order: unset;
    padding: 36px 32px;
  }

  .case-study__content {
    padding: 36px 32px;
  }
}

@media (max-width: 540px) {
  .case-studies {
    padding: 80px 16px;
  }

  .case-studies-header {
    margin-bottom: 40px;
  }

  .case-study__content,
  .case-study--reversed .case-study__content {
    padding: 28px 24px;
  }
}

/* ── Process ── */

.process {
  background: #E8E4DE;
  padding: 120px 24px;
  position: relative;
}

.process-container {
  max-width: 1100px;
  margin: 0 auto;
}

.process-header {
  text-align: center;
  margin-bottom: 80px;
}

.process-heading {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  background: linear-gradient(160deg, #1a1009 0%, rgba(26, 16, 9, 0.78) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.process-subheading {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(26, 16, 9, 0.55);
  max-width: 520px;
  margin: 0 auto;
}

.process-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

/* Connecting line running through all nodes */
.process-flow::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  height: 1px;
  background: repeating-linear-gradient(
    90deg,
    rgba(232, 64, 92, 0.35) 0px,
    rgba(232, 64, 92, 0.35) 6px,
    transparent 6px,
    transparent 14px
  );
  pointer-events: none;
  z-index: 0;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Chevron arrow between steps */
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  right: -20px;
  width: 10px;
  height: 10px;
  border-top: 1.5px solid rgba(232, 64, 92, 0.55);
  border-right: 1.5px solid rgba(232, 64, 92, 0.55);
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}

.process-step__node {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #E8E4DE;
  border: 1px solid rgba(232, 64, 92, 0.4);
  box-shadow: 0 0 0 6px #E8E4DE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E8405C;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.process-step:hover .process-step__node {
  background: rgba(232, 64, 92, 0.1);
  border-color: rgba(232, 64, 92, 0.7);
  box-shadow: 0 0 0 6px #E8E4DE, 0 0 24px rgba(232, 64, 92, 0.18);
}

.process-step__label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(232, 64, 92, 0.6);
  margin-bottom: 10px;
}

.process-step__title {
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: rgba(26, 16, 9, 0.90);
  margin-bottom: 12px;
}

.process-step__body {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(26, 16, 9, 0.55);
}

@media (max-width: 900px) {
  .process-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 40px;
  }

  .process-flow::before {
    display: none;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 540px) {
  .process-flow {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process { padding: 80px 16px; }
  .process-header { margin-bottom: 56px; }
}

/* ── Contact ── */

.contact {
  background: #E8E4DE;
  padding: 120px 24px;
}

.contact-container {
  max-width: 780px;
  margin: 0 auto;
}

.contact-header {
  text-align: center;
  margin-bottom: 64px;
}

.contact-heading {
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  background: linear-gradient(160deg, #1a1009 0%, rgba(26, 16, 9, 0.78) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}

.contact-subheading {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(26, 16, 9, 0.55);
  max-width: 480px;
  margin: 0 auto;
}

.contact-form {
  background: rgba(26, 16, 9, 0.04);
  border: 1px solid rgba(26, 16, 9, 0.09);
  border-radius: 24px;
  padding: 48px;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26, 16, 9, 0.60);
  letter-spacing: -0.01em;
}

.contact-input {
  background: rgba(26, 16, 9, 0.05);
  border: 1px solid rgba(26, 16, 9, 0.11);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: rgba(26, 16, 9, 0.88);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
}

.contact-input::placeholder {
  color: rgba(26, 16, 9, 0.30);
}

.contact-input:hover {
  border-color: rgba(26, 16, 9, 0.18);
  background: rgba(26, 16, 9, 0.07);
}

.contact-input:focus {
  border-color: rgba(232, 64, 92, 0.55);
  background: rgba(232, 64, 92, 0.04);
  box-shadow: 0 0 0 3px rgba(232, 64, 92, 0.12);
}

.contact-input.invalid {
  border-color: rgba(232, 64, 92, 0.7);
  box-shadow: 0 0 0 3px rgba(232, 64, 92, 0.15);
}

.contact-textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.65;
}

.contact-footer {
  display: flex;
  justify-content: flex-end;
}

.contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  position: relative;
}

.contact-submit__spinner {
  display: none;
  animation: contact-spin 0.75s linear infinite;
}

@keyframes contact-spin {
  to { transform: rotate(360deg); }
}

.contact-form.submitting .contact-submit__label,
.contact-form.submitting .contact-submit__icon {
  display: none;
}

.contact-form.submitting .contact-submit__spinner {
  display: block;
}

.contact-form.submitting .contact-submit {
  pointer-events: none;
  opacity: 0.75;
}

.contact-success,
.contact-error {
  display: none;
  align-items: flex-start;
  gap: 12px;
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 24px;
  font-size: 0.9375rem;
  line-height: 1.55;
}

.contact-success {
  background: rgba(232, 64, 92, 0.07);
  border: 1px solid rgba(232, 64, 92, 0.25);
  color: rgba(26, 16, 9, 0.75);
}

.contact-success svg {
  color: #E8405C;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-success__title {
  font-weight: 600;
  color: rgba(26, 16, 9, 0.90);
  margin-bottom: 2px;
}

.contact-success__body {
  color: rgba(26, 16, 9, 0.55);
  font-size: 0.875rem;
}

.contact-error {
  background: rgba(180, 40, 20, 0.07);
  border: 1px solid rgba(180, 40, 20, 0.22);
  color: rgba(140, 20, 10, 0.85);
}

.contact-error svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(160, 30, 15, 0.8);
}

.contact-success.visible,
.contact-error.visible {
  display: flex;
}

@media (max-width: 640px) {
  .contact { padding: 80px 16px; }
  .contact-form { padding: 32px 24px; }
  .contact-fields { grid-template-columns: 1fr; }
  .contact-field--full { grid-column: 1; }
  .contact-footer { justify-content: stretch; }
  .contact-submit { width: 100%; justify-content: center; }
}

/* ── About ── */

.about {
  background: #DEDAD4;
  padding: 120px 24px;
  overflow: hidden;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-heading {
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.03em;
  background: linear-gradient(160deg, #1a1009 0%, rgba(26, 16, 9, 0.78) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 40px;
}

.about-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 40px;
}

.about-body p {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(26, 16, 9, 0.58);
  padding: 22px 0;
  border-top: 1px solid rgba(26, 16, 9, 0.10);
}

.about-body p:last-child {
  border-bottom: 1px solid rgba(26, 16, 9, 0.10);
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.about-image-col {
  margin: 0;
}

.about-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 24px;
  display: block;
}

@media (max-width: 900px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .about-image-col {
    order: -1;
  }
  .about-image {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 540px) {
  .about { padding: 80px 16px; }
  .about-heading { margin-bottom: 32px; }
}

/* ── Footer ── */

.site-footer {
  border-top: 1px solid rgba(26, 16, 9, 0.10);
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.site-footer__name {
  font-size: 1rem;
  font-weight: 600;
  background: linear-gradient(135deg, #E8405C 0%, #8D2738 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
}

.site-footer__location {
  font-size: 0.8125rem;
  color: rgba(26, 16, 9, 0.40);
}

.site-footer__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-footer__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26, 16, 9, 0.50);
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-footer__link:hover {
  color: rgba(26, 16, 9, 0.90);
}

.site-footer__link--icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.site-footer__bar {
  border-top: 1px solid rgba(26, 16, 9, 0.07);
  padding: 14px 48px;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 0.8125rem;
  color: rgba(26, 16, 9, 0.35);
}

@media (max-width: 640px) {
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 20px;
  }
  .site-footer__links {
    gap: 20px;
    flex-wrap: wrap;
  }
  .site-footer__bar {
    padding: 14px 24px;
  }
}
