/* ============================================================
   NOUVEAU SALON & SPA — pink editorial redesign
   Inspiration: emmar.se (editorial, airy, serif) +
                ever.co.id (soft premium, pink, rounded)
   ============================================================ */

:root {
  /* girly pink + gold palette, guided by the salon's blush velvet interior */
  --cream:      #fdf2ee;
  --blush:      #f8d9d2;   /* page background — clearly pink */
  --blush-deep: #f1c2b8;
  --petal:      #ecb1a5;
  --rose:       #db8c7f;   /* primary dusty rose */
  --rose-deep:  #bd6c61;
  --mauve:      #9b5d56;
  --plum:       #4e2b29;   /* dark text / dark blocks */
  --wine:       #341d1b;
  --gold:       #c2a14d;
  --gold-lt:    #e7cf93;
  --gold-dk:    #9c7c34;
  --ink:        #4a2d2a;   /* body text (warm) */
  --white:      #ffffff;

  --gold-grad: linear-gradient(135deg, #e7cf93 0%, #c2a14d 48%, #a8862f 100%);
  --rose-grad: linear-gradient(135deg, #efc7bf 0%, #d89b90 100%);

  --maxw: 1280px;
  --gut: clamp(1.25rem, 5vw, 5.5rem);
  --radius: 24px;
  --radius-sm: 16px;

  --serif: "Cormorant Garamond", Georgia, serif;
  --script: "Italianno", cursive;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--blush);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--rose); color: var(--white); }

/* ---------- type helpers ---------- */
.eyebrow {
  font-weight: 400; font-size: .72rem; letter-spacing: .34em; text-transform: uppercase;
  color: var(--rose-deep); display: inline-flex; align-items: center; gap: .7em; margin-bottom: 1.4rem;
}
.eyebrow--light { color: var(--petal); }
.eyebrow__dot { color: var(--gold); font-size: .6em; transform: translateY(-1px); }

.h2 {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.2rem, 5.2vw, 4rem); line-height: 1.04; letter-spacing: .004em; color: var(--plum);
}
.h2 em { font-style: italic; color: var(--rose-deep); }
.h2--light { color: var(--cream); }
.h2--light em { color: var(--petal); }
.lead { font-size: 1.1rem; color: var(--mauve); }

.section { max-width: var(--maxw); margin-inline: auto; padding: clamp(4.5rem, 11vw, 9.5rem) var(--gut); }
.section-head { max-width: 44rem; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head__lede { margin-top: 1.2rem; font-size: 1.1rem; color: var(--mauve); }

/* ---------- buttons (ever-style pills) ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-weight: 400; font-size: .76rem; letter-spacing: .2em; text-transform: uppercase;
  padding: 1.05em 2.2em; border-radius: 999px; cursor: pointer; border: 1px solid transparent;
  transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease), box-shadow .4s var(--ease);
}
.btn--gold { background: var(--gold-grad); color: var(--wine); box-shadow: 0 12px 30px -12px rgba(168,134,47,.55); }
.btn--gold:hover { transform: translateY(-3px); box-shadow: 0 18px 40px -12px rgba(168,134,47,.7); }
.btn--rose { background: var(--rose); color: var(--white); box-shadow: 0 12px 30px -14px rgba(181,115,106,.6); }
.btn--rose:hover { transform: translateY(-3px); background: var(--rose-deep); }
.btn--ghost { border-color: var(--rose); color: var(--rose-deep); }
.btn--ghost:hover { background: var(--rose); color: var(--white); transform: translateY(-3px); }
.btn--light { background: var(--cream); color: var(--plum); }
.btn--light:hover { transform: translateY(-3px); box-shadow: 0 16px 36px -16px rgba(0,0,0,.3); }
.btn--ghost-light { border-color: rgba(252,246,242,.5); color: var(--cream); }
.btn--ghost-light:hover { background: rgba(252,246,242,.12); transform: translateY(-3px); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .6em; margin-top: 1.8rem;
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--rose-deep);
  border-bottom: 1px solid var(--gold); padding-bottom: .35em; transition: gap .35s var(--ease), color .35s var(--ease);
}
.link-arrow:hover { gap: 1.1em; color: var(--plum); }

/* ---------- brand mark ---------- */
.gem { width: 100%; height: auto; color: var(--gold); }
.brand { display: inline-flex; align-items: center; gap: .8rem; }
.brand__badge {
  width: 50px; height: 50px; border-radius: 50%; object-fit: cover; flex: none;
  box-shadow: 0 4px 14px -6px rgba(78,46,44,.5); border: 1px solid rgba(194,161,77,.45);
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__script { font-family: var(--script); font-size: 2.1rem; color: var(--plum); line-height: .68; }
.brand__sub { font-size: .56rem; letter-spacing: .4em; text-transform: uppercase; color: var(--rose-deep); margin-top: .15em; }

/* ---------- loader ---------- */
.loader { position: fixed; inset: 0; z-index: 1000; background: var(--blush); display: grid; place-items: center;
  transition: opacity .8s var(--ease), visibility .8s var(--ease); }
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__mark { text-align: center; animation: floatUp 1s var(--ease); }
.loader__mark img { width: 92px; height: 92px; border-radius: 50%; margin: 0 auto .6rem; box-shadow: 0 10px 30px -12px rgba(78,46,44,.4); }
.loader__word { display: block; font-family: var(--script); font-size: 2.6rem; color: var(--rose-deep); }
@keyframes floatUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ---------- top bar ---------- */
.topbar {
  background: var(--plum); color: var(--cream); text-align: center;
  font-size: .68rem; letter-spacing: .26em; text-transform: uppercase; padding: .6rem 1rem;
}
.topbar i { color: var(--gold-lt); font-style: normal; margin: 0 .6em; }

/* ============================================================ NAV */
.nav { position: sticky; top: 0; z-index: 100; transition: background .5s var(--ease), box-shadow .5s var(--ease), padding .5s var(--ease); padding: .7rem 0; }
.nav__inner { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gut); display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.nav__links { display: flex; gap: 2.1rem; }
.nav__links a { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--plum); position: relative; padding: .3em 0; transition: color .4s var(--ease); }
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--gold); transition: width .4s var(--ease); }
.nav__links a:hover { color: var(--rose-deep); }
.nav__links a:hover::after { width: 100%; }
.nav__cta { padding: .85em 1.7em; }
.nav.is-scrolled { background: rgba(250,234,228,.88); backdrop-filter: blur(14px); box-shadow: 0 1px 0 rgba(181,115,106,.18); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span { width: 26px; height: 1.5px; background: var(--plum); transition: transform .4s var(--ease), opacity .3s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu { position: fixed; inset: 0; z-index: 90; background: var(--blush); display: grid; place-items: center; opacity: 0; visibility: hidden; transition: opacity .5s var(--ease), visibility .5s var(--ease); }
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 1.6rem; }
.mobile-menu a { font-family: var(--serif); font-size: 2rem; color: var(--plum); }
.mobile-menu a.btn { font-family: var(--sans); font-size: .8rem; margin-top: 1rem; }

/* ============================================================ HERO */
.hero { max-width: var(--maxw); margin-inline: auto; padding: clamp(2rem,5vw,4rem) var(--gut) clamp(3.5rem,7vw,6rem); }
.hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero__eyebrow { margin-bottom: 1.6rem; }
.hero__title { font-family: var(--serif); font-weight: 500; line-height: .98; margin-bottom: 1.6rem; }
.hero__script { display: block; font-family: var(--script); font-weight: 400; font-size: clamp(4.5rem, 13vw, 9rem); line-height: 1.04;
  padding-top: .08em; overflow: visible;
  background: linear-gradient(120deg, #e7cf93, #c2a14d 55%, #a8862f); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero__serif { display: block; font-size: clamp(2rem, 6vw, 3.6rem); font-style: italic; color: var(--plum); margin-top: -.05em; }
.hero__lede { max-width: 30rem; font-size: 1.1rem; color: var(--mauve); margin-bottom: 2.4rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__tags { display: flex; flex-wrap: wrap; gap: .6rem 1.4rem; margin-top: 2.4rem; }
.hero__tags span { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--rose-deep); display: inline-flex; align-items: center; gap: .6em; }
.hero__tags span::before { content: "◆"; color: var(--gold); font-size: .6em; }

.hero__media { position: relative; }
.hero__media img { width: 100%; height: clamp(420px, 64vh, 680px); object-fit: cover; border-radius: 200px 200px var(--radius) var(--radius); box-shadow: 0 50px 90px -50px rgba(78,46,44,.55); }
.hero__ring { position: absolute; inset: -14px; border: 1px solid rgba(194,161,77,.45); border-radius: 210px 210px 34px 34px; pointer-events: none; }
.hero__chip {
  position: absolute; left: -18px; bottom: 38px; background: var(--white); border-radius: 999px;
  padding: .8rem 1.4rem; display: flex; align-items: center; gap: .7rem; box-shadow: 0 20px 40px -18px rgba(78,46,44,.4);
}
.hero__chip img { width: 38px; height: 38px; border-radius: 50%; }
.hero__chip span { font-family: var(--serif); font-style: italic; font-size: 1.1rem; color: var(--plum); }

/* ============================================================ MARQUEE */
.marquee { background: var(--plum); color: var(--cream); padding: 1.1rem 0; overflow: hidden; }
.marquee__track { display: inline-flex; align-items: center; gap: 2.2rem; white-space: nowrap; animation: marquee 28s linear infinite; font-family: var(--serif); font-style: italic; font-size: 1.6rem; }
.marquee__track i { color: var(--gold-lt); font-style: normal; font-size: .7rem; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================ BIENVENIDA */
.welcome { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.welcome__media { position: relative; }
.welcome__media img { width: 100%; height: clamp(440px, 62vh, 660px); object-fit: cover; border-radius: var(--radius); box-shadow: 0 44px 80px -46px rgba(78,46,44,.5); }
.welcome__media::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(252,246,242,.55); border-radius: calc(var(--radius) - 8px); pointer-events: none; }
.welcome__tag { position: absolute; bottom: -18px; left: -10px; background: var(--gold-grad); color: var(--wine); font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; padding: .9em 1.4em; border-radius: 999px; box-shadow: 0 14px 30px -14px rgba(168,134,47,.6); }
.welcome__text p { color: var(--mauve); margin-bottom: 1.1rem; font-size: 1.06rem; }
.welcome__text strong { color: var(--plum); font-weight: 400; }
.welcome__text em { font-family: var(--serif); font-style: italic; font-size: 1.1em; color: var(--rose-deep); }
.welcome__stats { display: flex; gap: 2.5rem; margin-top: 2rem; }
.welcome__stats .n { font-family: var(--serif); font-size: 2.2rem; color: var(--plum); line-height: 1; }
.welcome__stats .l { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--rose-deep); margin-top: .4rem; }

/* ============================================================ SERVICIOS */
.services { background: linear-gradient(180deg, var(--cream), var(--blush)); }
.services__inner { max-width: var(--maxw); margin-inline: auto; padding: clamp(4.5rem,11vw,9.5rem) var(--gut); }
.services__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.service-card { background: var(--white); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 30px 60px -45px rgba(78,46,44,.45); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 44px 70px -42px rgba(78,46,44,.5); }
.service-card__media { position: relative; aspect-ratio: 4/5; overflow: hidden; background: var(--rose-grad); }
.service-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.service-card:hover .service-card__media img { transform: scale(1.07); }
.service-card__badge { position: absolute; top: 14px; left: 14px; width: 42px; height: 42px; color: var(--white);
  background: rgba(78,46,44,.42); backdrop-filter: blur(4px); border: 1px solid rgba(231,207,147,.5); border-radius: 50%; display: grid; place-items: center; padding: 10px; }
.service-card__badge svg { width: 100%; height: 100%; }
.service-card__media--brand { display: grid; place-items: center; background: linear-gradient(160deg, var(--rose) 0%, var(--mauve) 100%); }
.service-card__brandicon { width: 60px; height: 60px; color: var(--cream); }
.service-card__body { padding: 1.7rem 1.6rem 2rem; display: flex; flex-direction: column; flex: 1; }
.service-card__title { font-family: var(--serif); font-weight: 600; font-size: 1.6rem; color: var(--plum); margin-bottom: .4rem; }
.service-card__desc { font-size: .92rem; color: var(--mauve); margin-bottom: 1.2rem; }
.service-card__list { margin-top: auto; }
.service-card__list li { font-size: .85rem; color: var(--ink); padding: .5em 0; border-top: 1px solid rgba(181,115,106,.16); display: flex; align-items: center; gap: .7em; }
.service-card__list li::before { content: "◆"; color: var(--gold); font-size: .55em; }
.services__note { text-align: center; margin-top: 3rem; color: var(--mauve); font-size: 1.05rem; }
.services__note a { color: var(--rose-deep); border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* ============================================================ EXPERIENCIA */
.experience { background: var(--blush); }
.experience__inner { max-width: var(--maxw); margin-inline: auto; padding: clamp(4rem,10vw,8rem) var(--gut); }
.experience__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value { background: var(--white); border-radius: var(--radius-sm); padding: 2rem 1.6rem; box-shadow: 0 24px 50px -42px rgba(78,46,44,.4); }
.value__num { font-family: var(--serif); font-style: italic; font-size: 1.5rem; color: var(--gold-dk); display: block; margin-bottom: .8rem; }
.value h3 { font-family: var(--serif); font-weight: 500; font-size: 1.4rem; color: var(--plum); margin-bottom: .4rem; }
.value p { font-size: .9rem; color: var(--mauve); }

/* ============================================================ GALLERY */
.gallery__grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 230px; grid-auto-flow: dense; gap: 1.1rem; }
.gallery__item { position: relative; overflow: hidden; border-radius: var(--radius-sm); background: var(--blush-deep); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.gallery__item:hover img { transform: scale(1.07); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__item--quote { background: var(--rose-grad); color: var(--wine); display: grid; place-items: center; text-align: center; padding: 1.6rem; }
.gallery__item--quote blockquote { font-family: var(--serif); font-style: italic; font-size: 1.6rem; line-height: 1.2; }
.gallery__mark { display: block; font-size: 3rem; line-height: .4; opacity: .5; }
.gallery__item--quote cite { display: block; font-style: normal; font-family: var(--sans); font-size: .64rem; letter-spacing: .2em; text-transform: uppercase; margin-top: 1rem; }
.gallery__cta { text-align: center; margin-top: 2.5rem; color: var(--mauve); }
.gallery__cta a { color: var(--rose-deep); margin-left: .4em; border-bottom: 1px solid var(--gold); padding-bottom: 2px; }

/* ============================================================ CTA BAND */
.ctaband { padding: 0 var(--gut) clamp(4rem,8vw,7rem); max-width: var(--maxw); margin-inline: auto; }
.ctaband__inner {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: radial-gradient(120% 140% at 85% 10%, rgba(216,155,144,.45), transparent 55%), linear-gradient(150deg, #5a3633, var(--plum));
  color: var(--cream); text-align: center; padding: clamp(3rem,7vw,5.5rem) clamp(1.5rem,5vw,4rem);
}
.ctaband__inner .gem { width: 56px; margin: 0 auto 1.4rem; color: var(--gold-lt); }
.ctaband h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem,5vw,3.4rem); line-height: 1.06; margin-bottom: 1rem; }
.ctaband p { color: rgba(252,246,242,.8); max-width: 34rem; margin: 0 auto 2rem; }
.ctaband__actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============================================================ RESERVA / FORM */
.booking { padding: 0 var(--gut) clamp(4rem,8vw,7rem); max-width: var(--maxw); margin-inline: auto; }
.booking__inner {
  position: relative; overflow: hidden; border-radius: var(--radius);
  background: radial-gradient(120% 130% at 88% 8%, rgba(219,140,127,.5), transparent 55%), linear-gradient(150deg, #6a403b, var(--plum));
  color: var(--cream); display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(2rem,5vw,4rem);
  padding: clamp(2.5rem,6vw,4.5rem);
}
.booking__intro .gem { width: 52px; color: var(--gold-lt); margin-bottom: 1.2rem; }
.booking__intro .h2 { margin-bottom: 1rem; }
.booking__lede { color: rgba(252,246,242,.82); margin-bottom: 1.6rem; max-width: 30rem; }
.booking__perks { display: grid; gap: .6rem; }
.booking__perks li { font-size: .9rem; color: rgba(252,246,242,.9); display: flex; align-items: center; gap: .7em; }
.booking__perks li::before { content: "◆"; color: var(--gold-lt); font-size: .6em; }

.booking__form { background: var(--white); border-radius: var(--radius-sm); padding: clamp(1.6rem,3vw,2.2rem); display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.1rem; align-self: start; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--rose-deep); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: .95rem; color: var(--ink); background: var(--cream);
  border: 1px solid rgba(181,115,106,.25); border-radius: 12px; padding: .8em 1em; width: 100%;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #b89a93; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px rgba(219,140,127,.18); }
.field textarea { resize: vertical; }
.booking__submit { width: 100%; }
.booking__hint { font-size: .82rem; color: var(--mauve); margin-top: .8rem; text-align: center; min-height: 1.2em; }

/* ============================================================ CONTACTO */
.contact__inner { max-width: var(--maxw); margin-inline: auto; padding: clamp(4rem,10vw,8rem) var(--gut); display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2.5rem,6vw,5rem); align-items: center; }
.contact__lede { color: var(--mauve); font-size: 1.06rem; margin-bottom: 2.2rem; max-width: 34rem; }
.contact__list { display: grid; gap: 1.5rem; margin-bottom: 2.4rem; }
.contact__list li { font-size: 1rem; color: var(--ink); line-height: 1.6; }
.contact__label { display: block; font-size: .66rem; letter-spacing: .24em; text-transform: uppercase; color: var(--rose-deep); margin-bottom: .45rem; }
.contact__list a { color: var(--rose-deep); border-bottom: 1px solid rgba(181,115,106,.4); }
.contact__actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.contact__map { border-radius: var(--radius); overflow: hidden; min-height: 430px; box-shadow: 0 44px 80px -48px rgba(78,46,44,.5); border: 1px solid rgba(194,161,77,.3); }
.contact__map iframe { width: 100%; height: 100%; min-height: 430px; border: 0; filter: saturate(1.05); }

/* ============================================================ FOOTER */
.footer { background: var(--wine); color: var(--cream); padding: clamp(3.5rem,8vw,5rem) var(--gut) 0; }
.footer__inner { max-width: var(--maxw); margin-inline: auto; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(231,207,147,.2); }
.footer .brand__script { color: var(--cream); }
.footer .brand__sub { color: var(--petal); }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.8rem; }
.footer__links a { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(252,246,242,.72); transition: color .4s var(--ease); }
.footer__links a:hover { color: var(--gold-lt); }
.footer__tag { font-family: var(--script); font-size: 2.2rem; color: var(--gold-lt); }
.footer__bar { max-width: var(--maxw); margin-inline: auto; padding: 1.8rem 0; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: .74rem; letter-spacing: .06em; color: rgba(252,246,242,.5); }
.footer__bar a:hover { color: var(--gold-lt); }

/* ============================================================ REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================================ RESPONSIVE */
@media (max-width: 1040px) {
  .services__grid, .experience__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
  .hero__media img { height: clamp(380px, 56vh, 520px); }
  .welcome { grid-template-columns: 1fr; }
  .welcome__media { order: -1; }
  .contact__inner { grid-template-columns: 1fr; }
  .booking__inner { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 560px) {
  .services__grid, .experience__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .gallery__item--tall { grid-row: span 1; }
  .gallery__item--wide { grid-column: span 1; }
  .welcome__stats { gap: 1.6rem; }
  .brand__badge { width: 44px; height: 44px; }
  .brand__script { font-size: 1.85rem; }
  .booking__form { grid-template-columns: 1fr; }
}
