/* ── Variables ─────────────────────────────────────────────── */
:root {
  --rose: #f4a7b9;
  --rose-dark: #d4789a;
  --rose-light: #fde8ef;
  --lilac: #c8b4e3;
  --lilac-light: #ede5f8;
  --peach: #f5c5a3;
  --peach-light: #fdf0e8;
  --sage: #a8c8a0;
  --sage-light: #e8f5e5;
  --cream: #fdfaf5;
  --warm-white: #fffcf8;
  --text: #2d2233;
  --text-mid: #6b5c7a;
  --text-light: #a8a0b0;
  --border: rgba(200, 180, 227, .25);
  --shadow: rgba(180, 140, 200, .12);
  --shadow-rose: rgba(212, 120, 154, .2);

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body: 'DM Sans', system-ui, sans-serif;

  --gutter: clamp(1.25rem, 5vw, 2rem);
  --max-w: 1140px;
  --r: 10px;
  --r-lg: 18px;
  --r-xl: 28px;
  --r-pill: 999px;

  --ease: cubic-bezier(.4, 0, .2, 1);
  --bounce: cubic-bezier(.34, 1.56, .64, 1);
  --t: .3s;
}

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

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

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

img {
  display: block;
  max-width: 100%
}

.eyebrow img {
  display: flex;
  justify-items: center;
}

.gral-icon {
  max-width: 1.2rem;
}

a {
  color: inherit;
  text-decoration: none
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

input,
select,
textarea {
  font-family: inherit
}

::selection {
  background: var(--rose-light);
  color: var(--rose-dark)
}

::-webkit-scrollbar {
  width: 5px
}

::-webkit-scrollbar-track {
  background: var(--cream)
}

::-webkit-scrollbar-thumb {
  background: var(--rose);
  border-radius: 3px
}

/* ── Layout ────────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter)
}

.section {
  padding: clamp(10rem, 8vw, 6.5rem) 0
}

/* ── Typography ─────────────────────────────────────────────── */
h1,
h2,
h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.15;
  color: var(--text)
}

h1 {
  font-size: clamp(2.2rem, 5.5vw, 3.75rem)
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem)
}

h3 {
  font-size: 1.25rem
}

p {
  color: var(--text-mid);
  line-height: 1.75
}

.eyebrow {
  display: inline-block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-bottom: .75rem
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem
}

.section-header h2 {
  margin-bottom: .75rem
}

.section-header p {
  font-size: 1rem;
  color: var(--text-mid)
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: var(--rose-dark);
  color: #fff;
  font-family: var(--ff-body);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .85rem 1.75rem;
  border-radius: var(--r-pill);
  box-shadow: 0 4px 18px var(--shadow-rose);
  transition: all var(--t) var(--ease);
  white-space: nowrap
}

.btn-primary:hover {
  background: #c06080;
  transform: translateY(-2px);
  box-shadow: 0 8px 26px var(--shadow-rose)
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  border: 1.5px solid var(--rose-dark);
  color: var(--rose-dark);
  background: transparent;
  font-family: var(--ff-body);
  font-size: .85rem;
  font-weight: 600;
  padding: .8rem 1.75rem;
  border-radius: var(--r-pill);
  transition: all var(--t) var(--ease);
  white-space: nowrap
}

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

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: rgba(255, 255, 255, .85);
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 500;
  border-bottom: 1.5px solid rgba(255, 255, 255, .4);
  padding-bottom: 2px;
  transition: all var(--t)
}

.btn-ghost-white:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, .8)
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--rose-dark);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: .55rem 1.25rem;
  border-radius: var(--r-pill);
  transition: all var(--t);
  white-space: nowrap
}

.btn-nav:hover {
  background: #c06080;
  transform: translateY(-1px)
}

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0;
  background: rgba(253, 250, 245, .96);
}

.nav-container {
  height: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  gap: 1.5rem
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .625rem;
  flex-shrink: 0
}

.nav-logo {
  font-size: 1.6rem;
  line-height: 1;
  animation: float 4s ease-in-out infinite
}

.nav-logo img {
  max-width: 3rem;
}

.nav-name {
  display: block;
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1
}

.nav-sub {
  display: block;
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose-dark);
  margin-top: 1px
}

.nav-links {
  display: flex;
  gap: 0;
  flex: 1;
  justify-content: center
}

.nav-links a {
  font-size: .82rem;
  font-weight: 400;
  color: var(--text-mid);
  padding: 1.2rem 1rem 1.2rem 1rem;
  transition: color var(--t), background var(--t)
}

.nav-links a:hover {
  color: var(--rose-dark);
  background: var(--rose-light)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto
}

.hamburger span {
  display: block;
  width: 21px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--t), opacity var(--t);
  transform-origin: center
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg)
}

.hide-mobile {
  display: inline-flex
}

@media(max-width:860px) {
  .nav-links {
    display: none
  }

  .hide-mobile {
    display: none
  }

  .hamburger {
    display: flex
  }
}

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 800;
  background: rgba(253, 250, 245, .98);
  backdrop-filter: blur(20px);
  padding: 5rem var(--gutter) 2rem;
  flex-direction: column;
  gap: .25rem;
  animation: fadeIn .2s ease
}

.nav-drawer.open {
  display: flex
}

.nav-drawer a {
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text-mid);
  padding: .85rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--t)
}

.nav-drawer a:hover {
  color: var(--rose-dark)
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  animation: heroZoom 22s ease-in-out infinite alternate;
  filter: brightness(.8) saturate(1.1)
}

@keyframes heroZoom {
  from {
    transform: scale(1)
  }

  to {
    transform: scale(1.06)
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(45, 34, 51, .78) 0%, rgba(45, 34, 51, .5) 55%, rgba(45, 34, 51, .3) 100%)
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem var(--gutter) 3rem;
  max-width: calc(var(--max-w) + 4rem);
  margin: 0 auto;
  width: 100%
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: var(--r-pill);
  padding: .35rem 1rem;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .85);
  width: fit-content;
  margin-bottom: 1.5rem;
  animation: fadeUp .6s .1s ease both
}

.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .25);
  animation: fadeUp .6s .2s ease both
}

.hero-title em {
  font-style: italic;
  color: var(--peach)
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, .75);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2rem;
  font-weight: 300;
  animation: fadeUp .6s .3s ease both
}

.hero-actions {
  display: flex;
  gap: .875rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeUp .6s .4s ease both
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: .875rem;
  flex-wrap: wrap;
  animation: fadeUp .6s .5s ease both
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .78)
}

.trust-item i {
  color: var(--peach)
}

.trust-sep {
  color: rgba(255, 255, 255, .3)
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: var(--gutter);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255, 255, 255, .4);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  animation: fadeIn 2s 1s both
}

.scroll-line {
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, .3);
  position: relative;
  overflow: hidden
}

.scroll-line::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, .8);
  animation: scanH 2s ease-in-out infinite
}

@keyframes scanH {
  0% {
    transform: translateX(-100%)
  }

  100% {
    transform: translateX(200%)
  }
}

/* ── About ──────────────────────────────────────────────────── */
.about {
  background: var(--warm-white)
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center
}

.about-img-wrap {
  position: relative
}

.about-img-frame {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/5
}

.about-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease)
}

.about-img-frame:hover img {
  transform: scale(1.04)
}

.about-bubble {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  box-shadow: 0 8px 28px var(--shadow)
}

.bubble-emoji {
  font-size: 1.75rem
}

.about-bubble strong {
  display: block;
  font-size: 1.3rem;
  font-family: var(--ff-display);
  color: var(--rose-dark)
}

.about-bubble small {
  font-size: .7rem;
  color: var(--text-light)
}

.about-text h2 {
  margin-bottom: 1rem
}

.about-text p {
  margin-bottom: 1rem
}

.about-creds {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin: 1.75rem 0
}

.cred-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--rose-light);
  border-radius: var(--r-lg);
  padding: .75rem 1rem
}

.cred-item i {
  color: var(--rose-dark);
  flex-shrink: 0;
  font-size: .9rem
}

.cred-item span {
  font-size: .8rem;
  font-weight: 500;
  color: var(--text)
}

@media(max-width:768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }

  .about-img-frame {
    aspect-ratio: 3/4
  }

  .about-creds {
    grid-template-columns: 1fr
  }
}

/* ── Services ─────────────────────────────────────────────── */
.services {
  background: linear-gradient(180deg, var(--lilac-light) 0%, var(--cream) 100%)
}

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

.service-card {
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), box-shadow var(--t), border-color var(--t)
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px var(--shadow);
  border-color: rgba(200, 180, 227, .5)
}

.service-card--popular {
  border-color: var(--lilac);
  box-shadow: 0 4px 20px var(--shadow)
}

.service-card img {
  max-width: 3rem;
}

.service-badge {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, var(--rose), var(--lilac));
  color: #fff;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  padding: .28rem .7rem;
  border-radius: var(--r-pill)
}

.service-badge img {
  max-width: 1rem;
}

.service-icon {
  font-size: 2.25rem;
  line-height: 1
}

.service-card h3 {
  color: var(--text)
}

.service-price {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--rose-dark);
  font-weight: 400
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  flex: 1
}

.service-features li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .85rem;
  color: var(--text-mid)
}

.service-features i {
  color: var(--sage);
  flex-shrink: 0
}

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

/* Info boxes */
.info-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem
}

.info-box {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  transition: border-color var(--t)
}

.info-box:hover {
  border-color: var(--lilac)
}

.info-box i {
  color: var(--rose-dark);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1.1rem
}

.info-box strong {
  display: block;
  font-size: .9rem;
  color: var(--text);
  margin-bottom: .25rem
}

.info-box p {
  font-size: .82rem;
  color: var(--text-mid)
}

@media(max-width:600px) {
  .info-boxes {
    grid-template-columns: 1fr
  }
}

/* ── Calendar ─────────────────────────────────────────────── */
.calendar-section {
  background: var(--peach-light)
}

.calendar-wrap {
  display: grid;
  grid-template-columns: 20% 50% 30%;
  gap: 1.5rem;
  align-items: start;
}

@media(max-width:920px) {
  .calendar-wrap {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto
  }
}

/* Service selector */
.service-selector {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  min-width: 200px
}

.selector-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: .25rem
}

.service-opts {
  display: flex;
  flex-direction: column;
  gap: .5rem
}

@media(max-width:920px) {
  .service-opts {
    flex-direction: row;
    flex-wrap: wrap
  }

  .service-selector {
    min-width: unset
  }
}

.service-opt {
  cursor: pointer
}

.service-opt input {
  display: none
}

.opt-card {
  display: flex;
  align-items: center;
  gap: .6rem;
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: .75rem 1rem;
  transition: all var(--t);
  cursor: pointer;
  min-width: 170px
}

.opt-card:hover,
.opt-card--selected,
.service-opt input:checked+.opt-card {
  border-color: var(--rose-dark);
  background: var(--rose-light)
}

.opt-icon {
  font-size: 1.3rem;
  flex-shrink: 0
}

.opt-icon img {
  max-width: 2rem;
}

.opt-name {
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  flex: 1
}

.opt-price {
  font-size: .78rem;
  font-weight: 700;
  color: var(--rose-dark)
}

/* Calendar widget */
.cal-container {
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.5rem;
  box-shadow: 0 4px 20px var(--shadow)
}

.cal {
  width: 100%
}

.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem
}

.cal-nav {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--rose-light);
  color: var(--rose-dark);
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--t)
}

.cal-nav:hover {
  background: var(--rose-dark);
  color: #fff
}

.cal-month {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--text)
}

.cal-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  margin-bottom: 4px
}

.cal-days-header span {
  text-align: center;
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-light);
  padding: .3rem 0
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--r);
  font-size: .82rem;
  font-weight: 500;
  transition: all var(--t) var(--bounce)
}

.cal-day--available {
  color: var(--text);
  cursor: pointer;
  background: transparent
}

@media (hover: hover) {
  .cal-day--available:hover {
    background: var(--rose-light);
    color: var(--rose-dark);
  }
}

.cal-day--selected {
  background: var(--rose-dark) !important;
  color: #fff !important;
  /*box-shadow: 0 3px 10px var(--shadow-rose);*/
  /*transform: scale(1.08)*/
}

.cal-day--booked {
  background: #f0f0f0;
  color: var(--text-light);
  cursor: not-allowed;
  /*text-decoration: line-through*/
}

.cal-day--past {
  color: var(--text-light);
  cursor: not-allowed;
  opacity: .45
}

.cal-day--today {
  border: 1.5px solid var(--rose);
  color: var(--rose-dark);
  font-weight: 700
}

.cal-legend {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: .875rem
}

.legend-item {
  display: flex;
  align-items: center;
  gap: .35rem;
  font-size: .7rem;
  color: var(--text-mid)
}

.legend-dot {
  width: 10px;
  height: 10px;
  border-radius: 3px
}

.legend-dot--available {
  background: var(--cream);
  border: 1.5px solid var(--border)
}

.legend-dot--selected {
  background: var(--rose-dark)
}

.legend-dot--booked {
  background: #e8e8e8
}

.legend-dot--past {
  background: var(--text-light);
  opacity: .4
}

/* Estimate panel */
.estimate-panel {
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  min-width: 210px;
  text-align: center;
  box-shadow: 0 4px 20px var(--shadow)
}

.estimate-icon {
  justify-items: center;
  font-size: 2.5rem;
  margin-bottom: .875rem;
  animation: float 4s ease-in-out infinite
}

.estimate-icon img {
  max-width: 5rem;
}

.estimate-title {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: .375rem
}

.estimate-hint {
  font-size: .82rem;
  color: var(--text-light)
}

.estimate-detail {
  text-align: left
}

.estimate-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
  font-size: .85rem;
  padding: .4rem 0
}

.estimate-row span {
  color: var(--text-mid)
}

.estimate-row strong {
  color: var(--text);
  font-weight: 600
}

.estimate-divider {
  height: 1px;
  background: var(--border);
  margin: .5rem 0
}

.estimate-row--total span {
  font-weight: 700;
  color: var(--text);
  font-size: .9rem
}

.estimate-row--total strong {
  font-size: 1.2rem;
  font-family: var(--ff-display);
  color: var(--rose-dark)
}

/* ── Why Section ─────────────────────────────────────────── */
.why-section {
  background: linear-gradient(180deg, var(--sage-light) 0%, var(--cream) 100%)
}

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

.why-card {
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  transition: transform var(--t), box-shadow var(--t)
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px var(--shadow)
}

.why-icon {
  font-size: 2rem;
  margin-bottom: .875rem
}

.why-icon img {
  width: 3rem;
}

.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: .5rem
}

.why-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem
}

.why-cta p {
  font-size: 1rem;
  color: var(--text-mid)
}

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

  .section {
    padding: 5rem 0 3rem;
  }
}

@media(max-width:480px) {
  .why-grid {
    grid-template-columns: 1fr
  }
}

/* ── Reviews ────────────────────────────────────────────── */
.reviews-section {
  background: var(--lilac-light)
}

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

.review-card {
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform var(--t), box-shadow var(--t)
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px var(--shadow)
}

.review-stars {
  color: #f9a825;
  font-size: 1rem;
  letter-spacing: .15em
}

.review-text {
  font-size: .88rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  font-style: italic
}

.review-author {
  display: flex;
  align-items: center;
  gap: .75rem
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--lilac));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--ff-display);
  font-size: 1rem;
  flex-shrink: 0
}

.review-author strong {
  display: block;
  font-size: .88rem;
  color: var(--text)
}

.review-author small {
  font-size: .72rem;
  color: var(--text-light)
}

.reviews-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  text-align: center
}

.summary-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem
}

.stat-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: var(--rose-dark)
}

.stat-label {
  font-size: .78rem;
  color: var(--text-mid)
}

.stat-stars {
  color: #f9a825;
  font-size: .9rem;
  letter-spacing: .15em
}

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

  .reviews-summary {
    grid-template-columns: 1fr
  }
}



/* NEW REVIEW */

/* ── Carousel Reviews ───────────────────────── */

.reviews-carousel {
  overflow: hidden;
  width: 100%;
  padding-bottom: 3rem;
}

.reviews-track {
  display: flex;
  width: max-content;
  will-change: transform;
  min-width: 320px;
  animation: scrollReviews 40s linear infinite;
}

.review-card {
  min-width: 320px;
  max-width: 320px;
  flex-shrink: 0;

  padding: 1.75rem;
  margin-right: 1.5rem;

  border-radius: var(--r-xl);

  background: #fffcf8;
  /* 👈 fondo blanco real */
  border: 1px solid var(--border);

  box-shadow: 0 8px 24px var(--shadow);
  /* opcional pero queda MUCHO mejor */
}

/* Animación infinita */
@keyframes scrollReviews {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.reviews-track:hover {
  animation-play-state: paused;
}

/* ── Contact ────────────────────────────────────────────── */
.contact-section {
  background: var(--peach-light)
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  align-items: start
}

.contact-info h3 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  margin-bottom: 1.5rem
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem
}

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

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rose-dark);
  color: #fff;
  font-family: var(--ff-display);
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding-bottom: 0.2rem;
}

.step strong {
  display: block;
  font-size: .9rem;
  color: var(--text);
  margin-bottom: .2rem
}

.step p {
  font-size: .82rem;
  color: var(--text-mid);
  line-height: 1.5
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: .625rem
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-size: .875rem;
  color: var(--text-mid);
  transition: color var(--t)
}

.contact-link:hover {
  color: var(--rose-dark)
}

.contact-link i {
  width: 16px;
  color: var(--rose-dark);
  flex-shrink: 0
}

/* Form */
.contact-form {
  background: var(--warm-white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  box-shadow: 0 4px 20px var(--shadow)
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 1rem
}

.form-field label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-mid)
}

.form-field input,
.form-field select,
.form-field textarea {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: .75rem 1rem;
  font-size: .9rem;
  color: var(--text);
  outline: none;
  transition: border-color var(--t), box-shadow var(--t);
  width: 100%;
  appearance: none
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(212, 120, 154, .12)
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-light)
}

.form-field textarea {
  resize: vertical;
  min-height: 96px
}

.contact-form .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: .9rem;
  padding: .95rem 2rem;
  margin-top: .5rem
}

.form-success {
  display: none;
  align-items: center;
  gap: 1rem;
  background: var(--sage-light);
  border: 1.5px solid var(--sage);
  border-radius: var(--r-lg);
  padding: 1.25rem;
  margin-top: 1rem
}

.form-success.show {
  display: flex
}

.form-success i {
  color: var(--sage);
  font-size: 1.4rem;
  flex-shrink: 0
}

.form-success strong {
  display: block;
  font-size: .9rem;
  color: var(--text);
  margin-bottom: .2rem
}

.form-success p {
  font-size: .82rem;
  color: var(--text-mid)
}

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

  .form-row {
    grid-template-columns: 1fr
  }
}

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: #0f172a;
  color: #e5e7eb;
  padding: 4rem 0 2rem;
}

.footer-top {
  display: grid;
  gap: 2.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.logo-emoji {
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  max-width: 3rem;
}

.footer-description {
  color: #94a3b8;
  font-size: 0.95rem;
  max-width: 280px;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #e5e7eb;
  transition: 0.3s;
}

.footer-social a:hover {
  background: #22c55e;
  color: #0f172a;
}

.footer-col h4,
.footer-cta h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-col a {
  display: block;
  margin-bottom: 0.5rem;
  color: #94a3b8;
  text-decoration: none;
  transition: 0.2s;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-col p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.footer-col i {
  margin-right: 0.5rem;
}

.footer-cta p {
  color: #94a3b8;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.footer-divider {
  height: 1px;
  background: #1e293b;
  margin: 2.5rem 0 1.5rem;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: #64748b;
}

.signature {
  display: inline-flex;
  align-items: center;
}

.signature img {
  max-width: 1rem;
  margin-left: 0.5rem;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

/* Desktop */
@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
  }

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

/* ── WhatsApp FAB ────────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 800;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  box-shadow: 0 4px 18px rgba(37, 211, 102, .45);
  transition: transform var(--t), box-shadow var(--t)
}

.wa-fab:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 26px rgba(37, 211, 102, .55)
}

.wa-tooltip {
  display: flex;
  align-items: center;
  position: absolute;
  right: 64px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--text);
  color: #fff;
  font-size: .7rem;
  font-weight: 600;
  padding: .35rem .75rem;
  border-radius: var(--r);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t)
}

.wa-tooltip img {
  max-width: 1rem;
}

.wa-fab:hover .wa-tooltip {
  opacity: 1
}

/* ── Scroll reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .65s ease, transform .65s ease
}

.reveal-delay {
  transition-delay: .12s
}

.reveal-delay-2 {
  transition-delay: .24s
}

.reveal.visible {
  opacity: 1;
  transform: none
}

/* ── Keyframes ───────────────────────────────────────────── */
@keyframes fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-10px)
  }
}