/* ═══════════════════════════════════════════════════
   RED PATH DESIGN — Homepage Styles
   Palette: TerraCotta_2
   ═══════════════════════════════════════════════════ */

:root {
  --burnt-sienna:  #E8722C;
  --desert-sand:   #F0A78A;
  --cream:         #FAD2B1;
  --cream-dark:    #FAD2B1;
  --rustic-brown:  #9C2A0F;
  --rustic-deep:   #7A2009;
  --warm-sage:     #A8BF95;
  --deep-teal:     #395862;
  --charcoal:      #1E1A17;

  --ff-serif: 'Cormorant Garamond', 'Georgia', serif;
  --ff-sans:  'DM Sans', 'Helvetica Neue', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-sans);
  font-weight: 300;
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
}

/* ── Shared ── */
.section-label {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--burnt-sienna);
  margin-bottom: 1.25rem;
}

.btn {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.2rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
}

.btn--primary {
  background: var(--rustic-brown);
  color: var(--cream);
  border-color: var(--rustic-brown);
}
.btn--primary:hover {
  background: var(--rustic-deep);
  border-color: var(--rustic-deep);
}

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250, 243, 232, 0.5);
}
.btn--ghost:hover {
  background: rgba(250, 243, 232, 0.1);
  border-color: var(--cream);
}

.btn--sm { padding: 0.65rem 1.6rem; font-size: 0.75rem; }

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.reveal.visible {
  opacity: 1;
}


/* ═══════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0.8rem 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(156, 42, 15, 0.85);
  backdrop-filter: blur(12px);
  padding: 0.48rem 0;
}

.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo-img {
  width: auto;
  height: 35px;
  transition: transform 0.3s var(--ease-out);
}
.nav__logo-img:hover { transform: scale(1.08); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-family: var(--ff-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  transition: opacity 0.3s;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--desert-sand);
  transition: width 0.4s var(--ease-out);
}
.nav__links a:hover::after { width: 100%; }
.nav__links a:hover { opacity: 0.85; }

.nav__cta {
  padding: 0.55rem 1.4rem !important;
  border: 1px solid rgba(250, 243, 232, 0.4) !important;
  transition: all 0.3s var(--ease-out) !important;
}
.nav__cta:hover {
  background: rgba(250, 243, 232, 0.1);
  border-color: var(--cream) !important;
}
.nav__cta::after { display: none !important; }

/* Mobile toggle */
.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
  z-index: 101;
}
.nav__toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--cream);
  position: absolute;
  left: 0;
  transition: all 0.35s var(--ease-out);
}
.nav__toggle span:first-child { top: 0; }
.nav__toggle span:last-child { bottom: 0; }
.nav__toggle[aria-expanded="true"] span:first-child {
  top: 50%; transform: rotate(45deg);
}
.nav__toggle[aria-expanded="true"] span:last-child {
  bottom: 50%; transform: rotate(-45deg);
}


/* ═══════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  animation: fadeUp 1s ease-in-out;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}

.hero__image-wrap {
  position: absolute;
  inset: 0;
  background-image: url('assets/images/desert_walker_2.jpeg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scaleX(1);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(30, 26, 23, 0.92) 0%,
      rgba(30, 26, 23, 0.5) 50%,
      rgba(30, 26, 23, 0.2) 100%
    );
}

.hero__overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/red-path-logo-1.png') center / contain no-repeat;
  opacity: 0;
  animation: fadeToWatermark 3s 0.25s ease-in-out forwards;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  color: var(--cream);
  padding: 0 1.5rem;
  margin-left: 12vw;
  margin-right: auto;
}

.hero__kicker {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 3s ease-in-out forwards;
}

.hero__title {
  margin: 0 0 1.5rem;
  line-height: 0;
  opacity: 0;
  animation: fadeUp 3s ease-in-out forwards;
}

.hero__title picture,
.hero__title img {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
}

.hero__subtitle {
  font-family: var(--ff-sans);
  font-size: clamp(1.215rem, 2.025vw, 1.4175rem);
  font-weight: 300;
  line-height: 1.8;
  max-width: 440px;
  margin: 0 0 2.5rem;
  opacity: 0.85;
  opacity: 0;
  animation: fadeUp 3s ease-in-out forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 3s ease-in-out forwards;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.hero__scroll-hint span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(250,243,232,0.6), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes fadeToWatermark {
  from { opacity: 0; }
  to   { opacity: 0.07; }
}

@keyframes fadeUp {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
  50%      { opacity: 0.8; transform: scaleY(1); }
}


/* ═══════════════════════════════════════════════════
   STAKES
   ═══════════════════════════════════════════════════ */
.stakes {
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.stakes__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.stakes__heading {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--rustic-deep);
  margin-bottom: 1.5rem;
}

.stakes__subheading {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.75;
}

.stakes__body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--charcoal);
  opacity: 0.8;
  max-width: 480px;
}

.stakes__image {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
}


/* ═══════════════════════════════════════════════════
   VALUE / FEATURES
   ═══════════════════════════════════════════════════ */
.value {
  position: relative;
  padding: 0;
  background: var(--rustic-deep);
  color: var(--cream);
}

.value__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 60vh;
}

.value__image-col {
  position: relative;
  overflow: hidden;
}

.value__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.value__header {
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.value .section-label {
  color: var(--desert-sand);
}

.value__heading {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
}

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

.value__card {
  padding: clamp(2rem, 3.5vw, 3rem);
  background: rgba(45, 79, 89, 0.75);
  border: 1px solid rgba(250, 243, 232, 0.12);
  transition: background 0.4s var(--ease-out), opacity 0.6s ease-in-out;
}
.value__card:hover {
  background: rgba(45, 79, 89, 0.85);
}

.value__number {
  font-family: var(--ff-serif);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--desert-sand);
  display: block;
  margin-bottom: 1.25rem;
  opacity: 0.6;
}

.value__card h3 {
  font-family: var(--ff-serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}

.value__card p {
  font-size: 0.9rem;
  line-height: 1.75;
  opacity: 0.7;
}

.value__card--highlight {
  background: rgba(196, 117, 62, 0.6);
  border-color: rgba(196, 117, 62, 0.35);
}
.value__card--highlight:hover {
  background: rgba(196, 117, 62, 0.7);
}

.value__description {
  font-family: var(--ff-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.8;
  max-width: 600px;
  opacity: 0.85;
}

/* ═══════════════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════════════ */
.features {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background:
    linear-gradient(0deg, rgba(42, 36, 32, 0.88), rgba(42, 36, 32, 0.92)),
    url('assets/images/red-rock-4.jpeg') center / cover no-repeat;
  color: var(--cream);
}

.features .section-label {
  color: var(--desert-sand);
}

/* ═══════════════════════════════════════════════════
   PORTFOLIO
   ═══════════════════════════════════════════════════ */
.portfolio {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background:
    linear-gradient(0deg, rgba(250, 243, 232, 0.88), rgba(250, 243, 232, 0.92)),
    url('assets/images/red-rock-3.jpeg') center / cover no-repeat;
}

.portfolio__groups {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.portfolio__group .portfolio__group-label {
  margin-bottom: 1rem;
}

.portfolio .value__card {
  background: rgba(42, 36, 32, 0.06);
  border: 1px solid rgba(42, 36, 32, 0.12);
  transition: background 0.4s var(--ease-out), opacity 0.6s ease-in-out;
}
.portfolio .value__card:hover {
  background: rgba(42, 36, 32, 0.1);
}
.portfolio .value__card h3 {
  color: var(--burnt-sienna);
}
.portfolio .value__card p {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  color: var(--charcoal);
}

.portfolio__heading {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--rustic-deep);
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

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

.portfolio__group-label {
  font-family: var(--ff-sans);
  font-size: 1.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burnt-sienna);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--cream-dark);
}

.portfolio__items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.portfolio__item {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--charcoal);
  padding: 0.6rem 0;
  position: relative;
  display: inline-block;
  transition: color 0.3s;
}
.portfolio__item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--burnt-sienna);
  transition: width 0.5s var(--ease-out);
}
.portfolio__item:hover {
  color: var(--rustic-brown);
}
.portfolio__item:hover::before { width: 100%; }


/* ═══════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════ */
.testimonials {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background: var(--rustic-deep);
  color: var(--cream);
  overflow: hidden;
}

.testimonials__label {
  padding-left: clamp(2rem, 5vw, 6rem);
  color: var(--desert-sand);
}

.testimonials__heading {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
  padding-left: clamp(2rem, 5vw, 6rem);
}

.testimonials__carousel-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(1rem, 2vw, 2rem);
}

.testimonials__arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(250, 243, 232, 0.25);
  background: rgba(92, 46, 22, 0.7);
  color: var(--cream);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials__arrow--left {
  margin-right: clamp(0.75rem, 1.5vw, 1.5rem);
}

.testimonials__arrow--right {
  margin-left: clamp(0.75rem, 1.5vw, 1.5rem);
}

.testimonials__arrow:hover {
  background: rgba(196, 117, 62, 0.6);
  border-color: rgba(250, 243, 232, 0.4);
}

.testimonials__track-clip {
  flex: 1;
  min-width: 0;
  overflow: hidden;
}

.testimonials__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s var(--ease-out);
}

.testimonials__card {
  flex: 0 0 clamp(280px, 30vw, 380px);
  padding: clamp(2rem, 3vw, 2.5rem);
  background: rgba(250, 243, 232, 0.12);
  border: 1px solid rgba(250, 243, 232, 0.15);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out), opacity 0.6s ease-in-out;
}

.testimonials__card:hover {
  background: rgba(250, 243, 232, 0.18);
  border-color: rgba(250, 243, 232, 0.25);
}

.testimonials__quote {
  font-family: var(--ff-serif);
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.85;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.testimonials__author {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  border-top: 1px solid rgba(250, 243, 232, 0.1);
  padding-top: 1.25rem;
}

.testimonials__name {
  font-family: var(--ff-serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--desert-sand);
}

.testimonials__role {
  font-family: var(--ff-sans);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  opacity: 0.5;
}


/* ═══════════════════════════════════════════════════
   EMPATHY
   ═══════════════════════════════════════════════════ */
.empathy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.empathy__image-wrap {
  position: relative;
  overflow: hidden;
}
.empathy__image {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.empathy__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem);
  background: var(--cream-dark);
}

.empathy__heading {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--rustic-deep);
  margin-bottom: 1.5rem;
}

.empathy__content p {
  font-size: 1rem;
  line-height: 1.85;
  opacity: 0.8;
  max-width: 480px;
}
.empathy__content p + p {
  margin-top: 1rem;
}


/* ═══════════════════════════════════════════════════
   PLAN (3 STEPS)
   ═══════════════════════════════════════════════════ */
.plan {
  padding: clamp(5rem, 10vw, 9rem) 0;
  position: relative;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
}
.plan::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(250, 243, 232, 0.88) 0%,
    rgba(250, 243, 232, 0.92) 50%,
    rgba(250, 243, 232, 0.88) 100%
  );
}
.plan > .container {
  position: relative;
  z-index: 1;
}

.plan__heading {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--rustic-deep);
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}

.plan__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.plan__step {
  padding: 2.5rem 2rem;
  background: var(--cream);
  border-top: 2px solid var(--burnt-sienna);
  transition: transform 0.4s var(--ease-out), opacity 0.6s ease-in-out;
}
.plan__step:hover {
  transform: translateY(-4px);
}

.plan__step-num {
  font-family: var(--ff-serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--burnt-sienna);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.plan__step h3 {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--rustic-deep);
  margin-bottom: 0.75rem;
}

.plan__step p {
  font-size: 0.9rem;
  line-height: 1.75;
  opacity: 0.75;
}

.plan__cta {
  text-align: center;
}


/* ═══════════════════════════════════════════════════
   UNIQUENESS
   ═══════════════════════════════════════════════════ */
.uniqueness {
  background: var(--deep-teal);
  color: var(--cream);
  overflow: hidden;
}

.uniqueness__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

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

.uniqueness .section-label {
  color: var(--desert-sand);
}

.uniqueness__heading {
  font-family: var(--ff-serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: var(--burnt-sienna);
}

.uniqueness__lead {
  font-family: var(--ff-serif);
  font-size: clamp(1.2rem, 1.6vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.uniqueness__text p:not(.uniqueness__lead) {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.7;
  max-width: 480px;
}
.uniqueness__text p + p { margin-top: 0.75rem; }
.uniqueness__text strong { color: var(--desert-sand); font-weight: 500; }

.uniqueness__image-col {
  position: relative;
  overflow: hidden;
}
.uniqueness__image {
  width: 100%; height: 100%;
  object-fit: cover;
}


/* ═══════════════════════════════════════════════════
   GUARANTEE
   ═══════════════════════════════════════════════════ */
.guarantee {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background:
    linear-gradient(0deg, rgba(250, 243, 232, 0.88), rgba(250, 243, 232, 0.92)),
    url('assets/images/red-rock-2.jpeg') center / cover no-repeat;
}

.guarantee__card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: clamp(3rem, 5vw, 4.5rem);
  border: 1px solid var(--cream-dark);
  background: white;
}

.guarantee__logo {
  width: 56px; height: 56px;
  margin: 0 auto 2rem;
  opacity: 0.8;
}

.guarantee__heading {
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 400;
  color: var(--rustic-deep);
  margin-bottom: 1.25rem;
}

.guarantee__card p {
  font-size: 0.95rem;
  line-height: 1.8;
  opacity: 0.75;
  max-width: 480px;
  margin: 0 auto;
}
.guarantee__card p + p { margin-top: 0.75rem; }
.guarantee__card strong { color: var(--rustic-brown); font-weight: 500; }
.guarantee__card .btn { margin-top: 2rem; }


/* ═══════════════════════════════════════════════════
   CONTACT FORM
   ═══════════════════════════════════════════════════ */
.contact-form {
  padding: clamp(5rem, 10vw, 9rem) 0;
  background:
    linear-gradient(0deg, rgba(240, 228, 208, 0.75), rgba(240, 228, 208, 0.75)),
    url('assets/images/red-path-logo-1.png') center / contain no-repeat;
  background-color: var(--cream-dark);
}

.contact-form__heading {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--rustic-deep);
  margin-bottom: clamp(2.5rem, 4vw, 3.5rem);
  text-align: center;
}

.contact-form .section-label {
  text-align: center;
}

.contact-form__form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form__field label {
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rustic-brown);
}

.contact-form__field input,
.contact-form__field textarea {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--charcoal);
  padding: 0.85rem 1rem;
  border: 1px solid var(--cream-dark);
  border-bottom: 2px solid rgba(142, 75, 44, 0.25);
  background: white;
  outline: none;
  transition: border-color 0.3s var(--ease-out);
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  border-bottom-color: var(--burnt-sienna);
}

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

.contact-form__form .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  .contact-form__row {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════ */
.footer {
  background: var(--charcoal);
  color: var(--cream);
  padding: clamp(4rem, 7vw, 6rem) 0 2rem;
}

.footer__layout {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 243, 232, 0.1);
}

.footer__logo {
  width: 44px; height: 44px;
  margin-bottom: 1rem;
}

.footer__tagline {
  font-size: 0.85rem;
  opacity: 0.5;
  line-height: 1.6;
}

.footer h4 {
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--desert-sand);
  margin-bottom: 1.25rem;
}

.footer__links a {
  font-size: 0.9rem;
  opacity: 0.5;
  transition: opacity 0.3s;
  display: block;
  padding: 0.3rem 0;
}
.footer__links a:hover { opacity: 0.9; }

.footer__bottom {
  padding-top: 2rem;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.75rem;
  opacity: 0.3;
}


/* ═══════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .stakes__layout,
  .empathy,
  .uniqueness__inner,
  .value__layout {
    grid-template-columns: 1fr;
  }

  .value__image-col {
    aspect-ratio: 16 / 9;
  }

  .empathy__image-wrap {
    aspect-ratio: 16 / 9;
  }

  .uniqueness__image-col {
    aspect-ratio: 16 / 9;
    order: -1;
  }

  .value__grid {
    grid-template-columns: 1fr;
  }

  .plan__steps {
    grid-template-columns: 1fr;
  }

  .portfolio__categories {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nav__toggle { display: block; }

  .nav__links {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 3rem;
    gap: 1.5rem;
    background: rgba(42, 36, 32, 0.97);
    backdrop-filter: blur(16px);
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
  }
  .nav__links.open {
    transform: translateX(0);
  }
  .nav__links a { font-size: 1rem; }
}

@media (max-width: 550px) {
  .hero__actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ═══════════════════════════════════════════════════
   MOBILE TUNING — kept last so it wins the cascade
   ═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* ── Base type ── */
  body { font-size: 1.15rem; }
  .section-label { font-size: 1rem; }

  /* ── Buttons / tap targets ── */
  .btn { font-size: 1.05rem; padding: 1.05rem 2.2rem; }
  .btn--sm { font-size: 0.95rem; padding: 0.9rem 1.8rem; }

  /* ── Nav ── */
  .nav__links a { font-size: 1.1rem; }
  .nav__cta { padding: 0.85rem 1.7rem !important; }

  /* ── Hero ── */
  .hero {
    height: 100svh;
    min-height: 560px;
  }
  .hero__content {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  .hero__title picture,
  .hero__title img {
    margin-left: auto;
    margin-right: auto;
  }
  .hero__subtitle {
    margin-left: auto;
    margin-right: auto;
    font-size: 1.35rem;
    line-height: 1.55;
  }
  .hero__actions { justify-content: center; }
  .hero__kicker { font-size: 1rem; letter-spacing: 0.22em; }
  .hero__scroll-hint { bottom: 1.25rem; }
  .hero__scroll-hint span { height: 36px; }

  /* ── Section padding ── */
  .stakes,
  .features,
  .portfolio,
  .testimonials,
  .plan,
  .guarantee,
  .contact-form { padding: 3rem 0; }

  /* ── Section headings ── */
  .stakes__heading,
  .plan__heading,
  .portfolio__heading,
  .testimonials__heading,
  .contact-form__heading { font-size: 2.5rem; }
  .empathy__heading,
  .value__heading { font-size: 2.4rem; }
  .uniqueness__heading { font-size: 3.25rem; }
  .guarantee__heading { font-size: 1.95rem; }
  .stakes__heading,
  .empathy__heading,
  .value__heading,
  .uniqueness__heading { margin-bottom: 1rem; line-height: 1.15; }
  .plan__heading,
  .portfolio__heading,
  .testimonials__heading,
  .contact-form__heading { margin-bottom: 2rem; line-height: 1.2; }
  .value__header { margin-bottom: 2rem; }
  .stakes__subheading { font-size: 1.35rem; }
  .uniqueness__lead { font-size: 1.45rem; }

  /* ── Body copy ── */
  .stakes__body,
  .empathy__content p,
  .uniqueness__text p:not(.uniqueness__lead),
  .guarantee__card p,
  .value__description { font-size: 1.15rem; line-height: 1.6; }

  /* ── Stakes layout gap ── */
  .stakes__layout { gap: 2rem; }

  /* ── Content columns (empathy / uniqueness / value text col) ── */
  .empathy__content,
  .uniqueness__text,
  .value__text-col { padding: 2.25rem 1.5rem; }

  /* ── Plan cards ── */
  .plan__step { padding: 1.75rem 1.5rem; }
  .plan__step-num { font-size: 2.25rem; margin-bottom: 0.5rem; }
  .plan__step h3 { font-size: 1.4rem; }
  .plan__step p { font-size: 1.1rem; line-height: 1.65; }
  .plan__steps { gap: 1.25rem; margin-bottom: 2.5rem; }

  /* ── Value cards ── */
  .value__card { padding: 1.75rem 1.5rem; }
  .value__card h3 { font-size: 1.4rem; }
  .value__card p { font-size: 1.1rem; line-height: 1.65; }
  .value__number { margin-bottom: 0.75rem; font-size: 0.95rem; }

  /* ── Portfolio ── */
  .portfolio__group-label { font-size: 1.4rem; }
  .portfolio__item { font-size: 1.25rem; }
  .portfolio .value__card p { font-size: 1.2rem; }

  /* ── Testimonials ── */
  .testimonials__card { flex: 0 0 100%; padding: 1.75rem 1.5rem; }
  .testimonials__arrow { width: 40px; height: 40px; font-size: 1.1rem; }
  .testimonials__quote { font-size: 1.2rem; line-height: 1.7; }
  .testimonials__name { font-size: 1.2rem; }
  .testimonials__role { font-size: 0.9rem; }

  /* ── Guarantee ── */
  .guarantee__card { padding: 2.25rem 1.5rem; }
  .guarantee__logo { margin-bottom: 1.25rem; }

  /* ── Contact form ── */
  .contact-form__field input,
  .contact-form__field textarea { font-size: 1.1rem; padding: 1rem 1rem; }
  .contact-form__field label { font-size: 1rem; }

  /* ── Footer ── */
  .footer__tagline { font-size: 1.05rem; }
  .footer h4 { font-size: 0.95rem; }
  .footer__links a { font-size: 1.1rem; padding: 0.5rem 0; }
  .footer__bottom p { font-size: 0.9rem; }

  /* ── Outer page gutters (left/right margins) ── */
  .container { padding: 0 1.875rem; }
  .nav__inner { padding: 0 1.875rem; }
  .hero__content { padding: 0 1.875rem; }

  /* ── Value image: focus on the figure on mobile ── */
  .value__image-col { aspect-ratio: 4 / 5; }
  .value__image { object-position: 55% center; }

  /* ── Empathy image: focus on the walker on mobile ── */
  .empathy__image-wrap { aspect-ratio: 4 / 5; }
  .empathy__image { object-position: 32% center; }

  /* ── Uniqueness image: focus on the figure on mobile ── */
  .uniqueness__image-col { aspect-ratio: 4 / 5; }
  .uniqueness__image { object-position: 50% center; }
}
