/* ============================================================
   GREAT BASIN WOOL SCOUR — Main Stylesheet
   Aesthetic: High Desert Pastoral × Industrial Craft
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Karla:wght@300;400;500&display=swap');

/* ---- CSS Variables ---- */
:root {
  --ivory:      #F4EFE4;
  --cream:      #EBE4D4;
  --sage:       #3F5444;
  --sage-light: #5C7A62;
  --terra:      #B8622F;
  --terra-light:#D4804E;
  --charcoal:   #242420;
  --warm-gray:  #8A857C;
  --pale-sage:  #C8D4C4;
  --border:     rgba(63, 84, 68, 0.18);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Karla', Helvetica, sans-serif;

  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --transition-med: 0.45s var(--ease-out-quart);
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }

/* ---- Grain Overlay ---- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.6;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 4rem;
  transition: background var(--transition-med), box-shadow var(--transition-med);
}

.nav.scrolled {
  background: rgba(244, 239, 228, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}

.nav__logo span {
  color: var(--terra);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.75;
  transition: opacity 0.25s;
}

.nav__links a:hover { opacity: 1; }

.nav__cta {
  display: inline-block;
  padding: 0.6rem 1.6rem;
  background: var(--sage);
  color: var(--ivory) !important;
  opacity: 1 !important;
  border-radius: 2px;
  font-size: 0.78rem !important;
  letter-spacing: 0.14em !important;
  transition: background 0.25s !important;
}

.nav__cta:hover { background: var(--sage-light) !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 10rem 5rem 6rem 5rem;
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.75rem;
  opacity: 0;
  transform: translateY(12px);
  animation: fadeUp 0.8s var(--ease-out-quart) 0.2s forwards;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 5.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.9s var(--ease-out-quart) 0.35s forwards;
}

.hero__title em {
  font-style: italic;
  color: var(--sage);
}

.hero__desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--warm-gray);
  max-width: 38ch;
  line-height: 1.8;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.9s var(--ease-out-quart) 0.5s forwards;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  transform: translateY(14px);
  animation: fadeUp 0.9s var(--ease-out-quart) 0.65s forwards;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.4rem;
  background: var(--terra);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--transition-med), transform 0.2s;
}

.btn-primary:hover {
  background: var(--terra-light);
  transform: translateY(-2px);
}

.btn-ghost {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  border-bottom: 1px solid var(--pale-sage);
  padding-bottom: 2px;
  transition: color 0.25s, border-color 0.25s;
}

.btn-ghost:hover {
  color: var(--charcoal);
  border-color: var(--sage);
}

/* Hero right: illustrated/textured visual panel */
.hero__right {
  position: relative;
  background: var(--sage);
  overflow: hidden;
}

.hero__right-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

/* SVG landscape illustration fills the right panel */
.hero__illustration {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__badge {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(244, 239, 228, 0.12);
  border: 1px solid rgba(244, 239, 228, 0.3);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border-radius: 2px;
  white-space: nowrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out-quart) 1s forwards;
}

/* Hero decorative line */
.hero__line {
  position: absolute;
  left: 5rem;
  bottom: 4rem;
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--border), transparent);
  opacity: 0;
  animation: fadeIn 1.2s ease 1.1s forwards;
}

/* ============================================================
   DIVIDER / MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--charcoal);
  padding: 0.9rem 0;
  overflow: hidden;
  display: flex;
  gap: 0;
}

.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.8rem;
  padding: 0 2.5rem;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.55);
}

.marquee-item::after {
  content: '✦';
  color: var(--terra);
  font-size: 0.5rem;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

.section-title em {
  font-style: italic;
  color: var(--sage);
}

.section-body {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--warm-gray);
  max-width: 52ch;
}

/* Fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease-out-quart), transform 0.75s var(--ease-out-quart);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1440px;
  margin: 0 auto;
  padding: 8rem 4rem;
  align-items: center;
}

.about__visual {
  position: relative;
  padding-right: 5rem;
}

.about__img-wrap {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--cream);
  border-radius: 3px;
  overflow: hidden;
}

/* Placeholder pattern for "photo" */
.about__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about__img-caption {
  position: absolute;
  bottom: -1px;
  right: -2rem;
  width: 60%;
  background: var(--sage);
  color: var(--ivory);
  padding: 1.5rem 1.8rem;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  border-radius: 2px;
}

.about__img-caption strong {
  font-style: normal;
  font-weight: 500;
  display: block;
  font-size: 1.8rem;
  margin-bottom: 0.2rem;
}

.about__content {
  padding-left: 3rem;
}

.about__content .section-body {
  margin-bottom: 2rem;
}

.about__stats {
  display: flex;
  gap: 3rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border);
}

.stat__num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat__num span {
  color: var(--terra);
}

.stat__label {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process {
  background: var(--charcoal);
  padding: 8rem 4rem;
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63,84,68,0.35) 0%, transparent 70%);
  pointer-events: none;
}

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

.process__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
  align-items: end;
}

.process__header .section-title {
  color: var(--ivory);
}

.process__header .section-body {
  color: rgba(244, 239, 228, 0.55);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(244, 239, 228, 0.1);
}

.step {
  padding: 2.5rem 2rem 2.5rem 0;
  border-right: 1px solid rgba(244, 239, 228, 0.1);
  position: relative;
  transition: background 0.3s;
}

.step:last-child { border-right: none; padding-right: 0; }
.step:first-child { padding-left: 0; }

.step:not(:first-child) { padding-left: 2rem; }

.step__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(244, 239, 228, 0.08);
  line-height: 1;
  margin-bottom: 1.2rem;
  display: block;
}

.step__icon {
  width: 40px;
  height: 40px;
  background: var(--terra);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.step__icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--ivory);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}

.step__body {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(244, 239, 228, 0.5);
  line-height: 1.75;
}

/* ============================================================
   ADVANTAGES / WHY US
   ============================================================ */
.advantages {
  padding: 8rem 4rem;
  max-width: 1440px;
  margin: 0 auto;
}

.advantages__header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 5rem;
}

.advantages__header .section-body {
  margin: 0 auto;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.advantage-card {
  background: var(--ivory);
  padding: 3rem 2.5rem;
  transition: background var(--transition-med);
}

.advantage-card:hover {
  background: var(--cream);
}

.advantage-card__icon {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  transition: border-color 0.3s, background 0.3s;
}

.advantage-card:hover .advantage-card__icon {
  border-color: var(--terra);
  background: rgba(184, 98, 47, 0.06);
}

.advantage-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s;
}

.advantage-card:hover .advantage-card__icon svg {
  stroke: var(--terra);
}

.advantage-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.75rem;
}

.advantage-card__body {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.8;
}

/* ============================================================
   SERVICES / PRODUCTS
   ============================================================ */
.services {
  background: var(--cream);
  padding: 8rem 4rem;
  position: relative;
}

.services__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 6rem;
  align-items: start;
}

.services__content .section-body {
  margin-bottom: 3rem;
}

.services__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  cursor: default;
  transition: transform 0.25s;
}

.service-item:first-child { border-top: 1px solid var(--border); }

.service-item:hover { transform: translateX(6px); }

.service-item__dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  background: var(--terra);
  border-radius: 50%;
  margin-top: 0.55rem;
}

.service-item__title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.service-item__desc {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* Right side: byproduct highlight */
.services__byproduct {
  background: var(--sage);
  color: var(--ivory);
  padding: 3.5rem;
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.services__byproduct::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, transparent 70%);
}

.byproduct__label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pale-sage);
  margin-bottom: 1rem;
}

.byproduct__title {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 300;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.byproduct__body {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(244, 239, 228, 0.65);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.byproduct__uses {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.byproduct__tag {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(244, 239, 228, 0.25);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: rgba(244, 239, 228, 0.75);
}

/* ============================================================
   LOCATION / MAP CTA
   ============================================================ */
.location {
  padding: 7rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.location__content .section-body {
  margin-bottom: 2.5rem;
}

.location__details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-top: 2.5rem;
}

.location__detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.location__detail-icon {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location__detail-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--sage);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.location__detail-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.1rem;
}

.location__detail-text span {
  font-size: 0.85rem;
  color: var(--warm-gray);
}

.location__map-placeholder {
  background: var(--cream);
  aspect-ratio: 4/3;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* ============================================================
   CONTACT / CTA SECTION
   ============================================================ */
.contact {
  background: var(--charcoal);
  padding: 8rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63,84,68,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.contact__inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 300;
  color: var(--ivory);
  line-height: 1.12;
  margin-bottom: 1.5rem;
}

.contact__title em {
  font-style: italic;
  color: var(--pale-sage);
}

.contact__body {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(244, 239, 228, 0.5);
  margin-bottom: 3rem;
  line-height: 1.8;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

.contact__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact__input,
.contact__textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  background: rgba(244, 239, 228, 0.06);
  border: 1px solid rgba(244, 239, 228, 0.12);
  border-radius: 2px;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  transition: border-color 0.25s, background 0.25s;
  outline: none;
  resize: none;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: rgba(244, 239, 228, 0.3);
}

.contact__input:focus,
.contact__textarea:focus {
  border-color: rgba(200, 212, 196, 0.5);
  background: rgba(244, 239, 228, 0.09);
}

.contact__textarea { height: 110px; }

.contact__submit {
  padding: 1rem 2.8rem;
  background: var(--terra);
  color: var(--ivory);
  border: none;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--transition-med), transform 0.2s;
  align-self: flex-start;
}

.contact__submit:hover {
  background: var(--terra-light);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  border-top: 1px solid rgba(244, 239, 228, 0.06);
  padding: 3rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(244, 239, 228, 0.6);
}

.footer__logo span { color: var(--terra); }

.footer__copy {
  font-size: 0.75rem;
  font-weight: 300;
  color: rgba(244, 239, 228, 0.3);
  letter-spacing: 0.06em;
}

.footer__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer__links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 239, 228, 0.35);
  transition: color 0.25s;
}

.footer__links a:hover {
  color: rgba(244, 239, 228, 0.7);
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav { padding: 1.25rem 2rem; }
  .hero { grid-template-columns: 1fr; }
  .hero__right { display: none; }
  .hero__left { padding: 9rem 2.5rem 5rem; }
  .about { grid-template-columns: 1fr; padding: 6rem 2rem; }
  .about__visual { padding-right: 0; margin-bottom: 3rem; }
  .about__content { padding-left: 0; }
  .about__img-caption { right: 0; }
  .process { padding: 6rem 2rem; }
  .process__header { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr 1fr; }
  .step { border-right: none; border-bottom: 1px solid rgba(244,239,228,0.1); }
  .step:nth-child(odd) { border-right: 1px solid rgba(244,239,228,0.1); }
  .advantages { padding: 6rem 2rem; }
  .advantages__grid { grid-template-columns: 1fr 1fr; }
  .services { padding: 6rem 2rem; }
  .services__inner { grid-template-columns: 1fr; gap: 3rem; }
  .location { grid-template-columns: 1fr; padding: 5rem 2rem; }
  .contact { padding: 6rem 2rem; }
  .footer { flex-direction: column; gap: 1.5rem; text-align: center; padding: 2.5rem 2rem; }
}

@media (max-width: 640px) {
  .nav__links { display: none; }
  .hero__title { font-size: 2.8rem; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .process__steps { grid-template-columns: 1fr; }
  .step:nth-child(odd) { border-right: none; }
  .advantages__grid { grid-template-columns: 1fr; }
  .about__stats { flex-direction: column; gap: 1.5rem; }
  .contact__row { grid-template-columns: 1fr; }
}
