:root {
  --green: #6a8f2a;
  --green-soft: #a9be6f;
  --cream: #faf6e9;
  --citrus: #f2c94c;
  --text: #3a3a3a;
  --white: #ffffff;
  --sage: #eef3df;
  --line: rgba(58, 58, 58, 0.12);
  --shadow: 0 18px 46px rgba(58, 58, 58, 0.12);
  --shadow-soft: 0 10px 26px rgba(58, 58, 58, 0.08);
  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(242, 201, 76, 0.8);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 100;
  transform: translateY(-150%);
  border-radius: 999px;
  background: var(--text);
  color: var(--white);
  padding: 0.7rem 1rem;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(250, 246, 233, 0.9);
  backdrop-filter: blur(18px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(250, 246, 233, 0.97);
  box-shadow: 0 10px 34px rgba(45, 59, 22, 0.09);
}

.nav-shell {
  width: min(1120px, calc(100% - 32px));
  min-height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--green);
  text-decoration: none;
  white-space: nowrap;
}

.brand-mark {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: inset -8px -8px 0 rgba(255, 255, 255, 0.14);
  transition: transform 180ms ease;
}

.brand:hover .brand-mark {
  transform: rotate(-5deg) scale(1.04);
}

.brand-mark::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 10px;
  top: 8px;
  left: 9px;
  border-radius: 100% 0 100% 0;
  background: var(--citrus);
  transform: rotate(-22deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 15px;
  top: 13px;
  left: 16px;
  border-radius: 999px;
  background: var(--white);
}

.primary-nav {
  position: fixed;
  inset: var(--header-height) 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1.25rem;
  background: rgba(250, 246, 233, 0.98);
  opacity: 0;
  transform: translateX(100%);
  visibility: hidden;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
}

.nav-open .primary-nav {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
}

.primary-nav a {
  position: relative;
  border-radius: 8px;
  padding: 0.95rem 1rem;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.primary-nav a:hover {
  background: var(--sage);
  color: var(--green);
}

.primary-nav a.is-active {
  color: var(--green);
}

.nav-toggle {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--green);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.nav-toggle-line,
.nav-toggle-line::before,
.nav-toggle-line::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.nav-toggle-line {
  position: relative;
  transition: background 160ms ease;
}

.nav-toggle-line::before,
.nav-toggle-line::after {
  content: "";
  position: absolute;
  left: 0;
  transition:
    top 160ms ease,
    transform 160ms ease;
}

.nav-toggle-line::before {
  top: -6px;
}

.nav-toggle-line::after {
  top: 6px;
}

.nav-open .nav-toggle-line {
  background: transparent;
}

.nav-open .nav-toggle-line::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-open .nav-toggle-line::after {
  top: 0;
  transform: rotate(-45deg);
}

.section-shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: 82svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 3rem) 0 4rem;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(250, 246, 233, 0.97) 0%, rgba(250, 246, 233, 0.84) 46%, rgba(250, 246, 233, 0.16) 100%),
    url("assets/nutrir-siempre-hero.png");
  background-position: center;
  background-size: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(250, 246, 233, 0) 0%, var(--cream) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin-left: max(16px, calc((100vw - 1120px) / 2));
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.12;
}

h1 {
  max-width: 650px;
  margin-bottom: 1rem;
  color: #24300f;
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: -0.04em;
}

h2 {
  margin-bottom: 0.85rem;
  color: #2d3b16;
  font-size: 2rem;
  letter-spacing: -0.025em;
}

h3 {
  margin-bottom: 0.65rem;
  color: #2d3b16;
  font-size: 1.12rem;
}

.hero-subtitle {
  max-width: 620px;
  margin-bottom: 1rem;
  font-size: 1.18rem;
  font-weight: 700;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 1.6rem;
  font-size: 1.02rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-actions .button::after {
  content: "→";
  margin-left: 0.55rem;
  font-size: 1.05rem;
  transition: transform 160ms ease;
}

.hero-actions .button:hover::after {
  transform: translateX(3px);
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  font-weight: 850;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(106, 143, 42, 0.25);
}

.button-primary:hover {
  background: #5f8125;
}

.button-secondary {
  border-color: rgba(106, 143, 42, 0.3);
  background: rgba(255, 255, 255, 0.88);
  color: var(--green);
}

.button-secondary:hover {
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.button-small {
  min-height: 40px;
  padding: 0.65rem 1rem;
  font-size: 0.93rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-top: 1.25rem;
  color: rgba(45, 59, 22, 0.72);
  font-size: 0.86rem;
  font-weight: 750;
}

.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.hero-trust span::before {
  content: "✓";
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(106, 143, 42, 0.13);
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 950;
}

.nav-shell .nav-reserve {
  display: none;
}

.intro-strip {
  position: relative;
  z-index: 2;
  margin-top: -1.35rem;
  padding: 0 0 1.5rem;
  background: var(--cream);
}

.intro-grid {
  display: grid;
  gap: 0.75rem;
}

.intro-grid span {
  border: 1px solid rgba(106, 143, 42, 0.18);
  border-radius: var(--radius-sm);
  background: var(--white);
  padding: 0.95rem 1rem;
  color: #41521f;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.intro-grid span::before {
  content: "";
  width: 9px;
  height: 9px;
  display: inline-block;
  margin-right: 0.6rem;
  border-radius: 50%;
  background: var(--citrus);
  box-shadow: 0 0 0 5px rgba(242, 201, 76, 0.17);
}

.section {
  padding: 4.5rem 0;
  scroll-margin-top: calc(var(--header-height) + 1rem);
}

.section-light {
  background: var(--white);
}

.section-soft {
  background: var(--sage);
}

.section-heading {
  max-width: 680px;
  margin: 0 auto 2rem;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: rgba(58, 58, 58, 0.78);
  font-size: 1.02rem;
}

.align-left {
  margin-right: 0;
  margin-left: 0;
  text-align: left;
}

.card-grid {
  display: grid;
  gap: 1rem;
}

.feature-card,
.testimonial-card,
.store-card,
.mini-card,
.step,
.contact-card,
.appointment-form {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.feature-card {
  position: relative;
  overflow: hidden;
  padding: 1.4rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -28px;
  bottom: -34px;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(169, 190, 111, 0.11);
}

.feature-card:hover {
  border-color: rgba(106, 143, 42, 0.28);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.feature-card p,
.step p,
.store-card p,
.testimonial-card p {
  margin-bottom: 0;
  color: rgba(58, 58, 58, 0.78);
}

.icon-badge {
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--sage);
  color: var(--green);
  box-shadow: inset 0 0 0 1px rgba(106, 143, 42, 0.08);
}

.icon-badge svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-layout {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.about-quote {
  position: relative;
  margin: 1.5rem 0 0;
  border-left: 3px solid var(--citrus);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: rgba(255, 255, 255, 0.62);
  padding: 1rem 1.1rem;
}

.about-quote::before {
  content: "“";
  position: absolute;
  top: -0.45rem;
  right: 0.8rem;
  color: rgba(106, 143, 42, 0.15);
  font-family: Georgia, serif;
  font-size: 4.5rem;
  line-height: 1;
}

.about-quote p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #344318;
  font-weight: 720;
}

.mini-card-grid {
  display: grid;
  gap: 0.75rem;
}

.mini-card {
  padding: 1rem;
  color: #314117;
  font-weight: 850;
  box-shadow: none;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.mini-card:hover {
  background: #fffdf8;
  transform: translateX(3px);
}

.mini-card::before {
  content: "";
  width: 9px;
  height: 9px;
  display: inline-block;
  margin-right: 0.55rem;
  border-radius: 50%;
  background: var(--citrus);
  box-shadow: 0 0 0 5px rgba(242, 201, 76, 0.18);
}

.steps {
  position: relative;
  display: grid;
  gap: 1rem;
}

.step {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.82);
}

.step-number {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(106, 143, 42, 0.16);
  border-radius: 50%;
  background: var(--white);
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 900;
  box-shadow: 0 8px 20px rgba(106, 143, 42, 0.12);
}

.booking-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(242, 201, 76, 0.18), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(106, 143, 42, 0.94), rgba(81, 111, 27, 0.94)),
    var(--green);
  color: var(--white);
}

.booking-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

.booking-copy .eyebrow,
.booking-copy h2,
.booking-copy p {
  color: var(--white);
}

.booking-copy p {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
}

.booking-copy .button-secondary {
  background: var(--white);
  color: var(--green);
}

.booking-benefits {
  display: grid;
  gap: 0.65rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.booking-benefits li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
  font-weight: 720;
}

.booking-benefits li::before {
  content: "✓";
  width: 23px;
  height: 23px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 950;
}

.appointment-form {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
  color: var(--text);
  box-shadow: 0 24px 56px rgba(35, 48, 15, 0.22);
}

.form-intro {
  display: grid;
  gap: 0.15rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1rem;
}

.form-intro strong {
  color: #2d3b16;
  font-size: 1.08rem;
}

.form-intro span {
  color: rgba(58, 58, 58, 0.65);
  font-size: 0.88rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  color: #2f3b1a;
  font-size: 0.95rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(58, 58, 58, 0.16);
  border-radius: 12px;
  background: #fffdf8;
  color: var(--text);
  padding: 0.82rem 0.9rem;
  transition:
    border-color 150ms ease,
    box-shadow 150ms ease,
    background 150ms ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(106, 143, 42, 0.55);
  outline: none;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(106, 143, 42, 0.1);
}

textarea {
  min-height: 116px;
  resize: vertical;
}

.button-submit {
  width: 100%;
  border: 0;
}

.form-feedback {
  margin: 0;
  color: var(--green);
  font-weight: 800;
  text-align: center;
}

.form-note {
  margin: -0.2rem 0 0;
  color: rgba(58, 58, 58, 0.62);
  font-size: 0.82rem;
  text-align: center;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  padding: 1.35rem;
  background: #fffdf8;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: -0.25rem;
  right: 0.8rem;
  color: rgba(106, 143, 42, 0.12);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 1;
}

.testimonial-card p {
  color: #344318;
  font-size: 1.06rem;
  font-weight: 750;
}

.store-heading {
  margin-bottom: 1.5rem;
}

.store-card {
  position: relative;
  overflow: hidden;
  padding: 1.2rem;
  background: linear-gradient(180deg, var(--white), #fff9df);
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.store-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.store-card button {
  width: 100%;
  min-height: 42px;
  margin-top: 1rem;
  border: 1px solid rgba(106, 143, 42, 0.22);
  border-radius: 999px;
  background: rgba(106, 143, 42, 0.08);
  color: rgba(58, 58, 58, 0.62);
  font-weight: 850;
  cursor: not-allowed;
}

.faq-layout {
  display: grid;
  gap: 1.5rem;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

details {
  border: 1px solid rgba(106, 143, 42, 0.2);
  border-radius: var(--radius-sm);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

details[open] {
  border-color: rgba(106, 143, 42, 0.38);
  box-shadow: 0 14px 34px rgba(58, 58, 58, 0.1);
}

summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  padding: 1rem;
  color: #2d3b16;
  font-weight: 850;
}

summary::marker {
  content: "";
}

summary::after {
  content: "+";
  width: 26px;
  height: 26px;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--sage);
  color: var(--green);
  font-size: 1.05rem;
  transition: transform 160ms ease;
}

details[open] summary::after {
  transform: rotate(45deg);
}

details p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: rgba(58, 58, 58, 0.78);
}

.contact-section {
  background:
    linear-gradient(180deg, rgba(250, 246, 233, 0.76), rgba(255, 255, 255, 0.95)),
    var(--white);
}

.contact-layout {
  display: grid;
  gap: 2rem;
}

.contact-actions {
  margin-top: 1.5rem;
}

.contact-cards {
  display: grid;
  gap: 0.75rem;
}

.contact-card {
  padding: 1rem;
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.contact-card:hover {
  border-color: rgba(106, 143, 42, 0.3);
  transform: translateY(-2px);
}

.contact-card span {
  display: block;
  margin-bottom: 0.2rem;
  color: rgba(58, 58, 58, 0.62);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.contact-card a,
.contact-card strong {
  color: #2d3b16;
  font-weight: 850;
  text-decoration-color: rgba(106, 143, 42, 0.35);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #2d3b16;
  color: rgba(255, 255, 255, 0.82);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem 0;
}

.footer-inner p {
  margin: 0;
}

.footer-inner a {
  color: var(--white);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 45;
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 16px 34px rgba(58, 58, 58, 0.24);
  transition: transform 160ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-2px);
}

.floating-whatsapp svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 819px) {
  .nav-open .site-header {
    background: var(--cream);
  }

  .primary-nav {
    top: var(--header-height);
    right: 0;
    bottom: auto;
    left: 0;
    height: calc(100svh - var(--header-height));
    overflow-y: auto;
    gap: 0.25rem;
    padding: 1rem 1.25rem 2rem;
    background:
      radial-gradient(circle at 90% 90%, rgba(169, 190, 111, 0.22), transparent 32%),
      var(--cream);
  }

  .primary-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(58, 58, 58, 0.08);
    border-radius: 0;
    padding: 0.9rem 0.25rem;
    font-size: 1.05rem;
  }

  .primary-nav a::after {
    content: "→";
    color: var(--green);
    font-size: 1.1rem;
  }

  .primary-nav a[href="#turnos"] {
    justify-content: center;
    margin-top: 0.6rem;
    border: 0;
    border-radius: 999px;
    background: var(--green);
    color: var(--white);
    box-shadow: 0 12px 28px rgba(106, 143, 42, 0.23);
  }

  .primary-nav a[href="#turnos"]::after {
    margin-left: 0.55rem;
    color: var(--white);
  }
}

@media (min-width: 640px) {
  .intro-grid,
  .mini-card-grid,
  .form-row,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: 78svh;
  }

  h1 {
    font-size: 3.45rem;
  }

  h2 {
    font-size: 2.35rem;
  }
}

@media (min-width: 820px) {
  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    inset: auto;
    flex-direction: row;
    align-items: center;
    gap: 0.2rem;
    padding: 0;
    background: transparent;
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .primary-nav a {
    padding: 0.55rem 0.55rem;
    font-size: 0.88rem;
  }

  .primary-nav a::after {
    content: "";
    position: absolute;
    right: 0.55rem;
    bottom: 0.25rem;
    left: 0.55rem;
    height: 2px;
    border-radius: 99px;
    background: var(--green);
    transform: scaleX(0);
    transition: transform 160ms ease;
  }

  .primary-nav a:hover::after,
  .primary-nav a.is-active::after {
    transform: scaleX(1);
  }

  .nav-shell .nav-reserve {
    display: inline-flex;
  }

  .intro-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .three-columns {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .four-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-layout,
  .booking-layout,
  .faq-layout,
  .contact-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .steps::before {
    content: "";
    position: absolute;
    top: 2.55rem;
    right: 12%;
    left: 12%;
    height: 2px;
    background: linear-gradient(90deg, rgba(106, 143, 42, 0.12), rgba(106, 143, 42, 0.42), rgba(106, 143, 42, 0.12));
  }

  .appointment-form {
    padding: 1.8rem;
  }

  .floating-whatsapp {
    width: auto;
    border-radius: 999px;
    padding: 0 1rem;
    text-decoration: none;
  }

  .floating-whatsapp::before {
    content: "WhatsApp";
    margin-right: 0.55rem;
    font-size: 0.88rem;
    font-weight: 850;
  }

  .floating-whatsapp svg {
    width: 27px;
    height: 27px;
  }

  .footer-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

@media (min-width: 1080px) {
  .primary-nav a {
    padding: 0.58rem 0.7rem;
    font-size: 0.93rem;
  }

  .four-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  h1 {
    font-size: 4.15rem;
  }
}

@media (max-width: 600px) {
  .section-shell,
  .nav-shell {
    width: min(100% - 24px, 1120px);
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .section {
    padding: 3.75rem 0;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header-height) + 4.25rem);
    padding-bottom: 5.25rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .hero {
    background-position: 60% center;
  }

  .hero-copy {
    font-size: 0.97rem;
  }

  .hero-trust {
    display: grid;
    gap: 0.45rem;
  }

  .intro-strip {
    margin-top: -1rem;
  }

  .feature-card,
  .step,
  .testimonial-card,
  .store-card {
    padding: 1.2rem;
  }

  .booking-benefits {
    margin-bottom: 0.25rem;
  }

  .appointment-form {
    padding: 1.15rem;
  }

  .button {
    width: 100%;
  }

  .floating-whatsapp {
    right: 0.8rem;
    bottom: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
