/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --magenta:   #9d1c8c;
  --magenta-m: #b82ea8;
  --magenta-l: #d050c0;
  --magenta-xl:#f9eef8;
  --plum:      #2a0828;
  --plum-m:    #3e1040;
  --plum-l:    #5e1a5a;
  --black:     #0d050c;
  --white:     #faf9f6;
  --cream:     #f6eef6;
  --warm:      #ede0ed;
  --charcoal:  #1a081a;
  --text:      #2e0e2c;
  --text-m:    #7a4878;
  --border:    rgba(157,28,140,.12);
  --font-disp: 'Fraunces', serif;
  --font-body: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ===== BUTTONS ===== */
.btn-sage {
  display: inline-flex;
  align-items: center;
  background: var(--magenta);
  color: #fff;
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: .95rem 2.6rem;
  transition: background .22s;
}
.btn-sage:hover { background: var(--magenta-m); }

.btn-sage-sm {
  display: inline-flex;
  align-items: center;
  background: var(--magenta);
  color: #fff;
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: .75rem 2rem;
  transition: background .22s;
  margin-top: 1.6rem;
}
.btn-sage-sm:hover { background: var(--magenta-m); }

.btn-cream {
  display: inline-flex;
  align-items: center;
  background: var(--cream);
  color: var(--magenta);
  font-family: var(--font-body);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 1rem 3rem;
  transition: background .22s, color .22s;
}
.btn-cream:hover { background: var(--warm); }

/* ===== LABELS ===== */
.label {
  font-family: var(--font-body);
  font-size: .58rem;
  font-weight: 600;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--magenta);
  display: block;
  margin-bottom: .9rem;
}
.label--lav { color: var(--magenta); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .68s ease, transform .68s ease;
  transition-delay: var(--d, 0s);
}
.reveal-fade {
  opacity: 0;
  transition: opacity .65s ease;
  transition-delay: var(--d, 0s);
}
.in-view { opacity: 1 !important; transform: none !important; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(42,8,40,.97);
  box-shadow: 0 1px 0 rgba(157,28,140,.2);
  backdrop-filter: blur(14px);
}
.nav__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.4rem 3.5rem;
  max-width: 1600px;
  margin: 0 auto;
}
.nav__brand {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  margin-right: auto;
}
.nb-mj {
  font-family: var(--font-disp);
  font-style: italic;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--magenta-l);
  letter-spacing: .01em;
}
.nb-brow {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--white);
  opacity: .55;
}
.nav__links {
  display: flex;
  list-style: none;
  gap: 2.5rem;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: .64rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  opacity: .55;
  transition: opacity .2s, color .2s;
}
.nav__links a:hover { opacity: 1; color: var(--magenta-l); }
.nav__book {
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #fff;
  background: var(--magenta);
  padding: .6rem 1.7rem;
  transition: background .2s;
}
.nav__book:hover { background: var(--magenta-m); }
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  width: 22px; height: 1.5px;
  background: var(--text);
  display: block;
  transition: transform .28s, opacity .28s;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu ul { list-style: none; text-align: center; }
.mobile-menu li { margin: 1.2rem 0; }
.mm-link {
  font-family: var(--font-disp);
  font-style: italic;
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--text);
  transition: color .2s;
}
.mm-link:hover { color: var(--magenta); }
.mm-book {
  font-family: var(--font-body);
  font-style: normal;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--magenta) !important;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Studio background */
.hero__studio {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__studio img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__studio-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 50% 48%, rgba(42,8,40,.1) 0%, rgba(42,8,40,.5) 55%, rgba(42,8,40,.82) 100%),
    linear-gradient(to bottom, rgba(42,8,40,.5) 0%, rgba(42,8,40,.18) 45%, rgba(42,8,40,.65) 100%);
}

/* Logo floats directly on background — no box */
.hero__logo-panel {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 100%;
  padding: 0 1.5rem 5rem;
}
.hlp-inner {
  background: transparent;
  text-align: center;
  max-width: 460px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hlp-leaf { display: none; }

.hlp-logo-img {
  width: 100%;
  max-width: 240px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 1rem;
  border-radius: 50%;
  /* Soft magenta glow halo — blends into the purple background */
  box-shadow:
    0 0 0 8px rgba(157,28,140,.18),
    0 0 0 16px rgba(157,28,140,.09),
    0 0 55px rgba(157,28,140,.55),
    0 0 110px rgba(157,28,140,.22),
    0 10px 50px rgba(42,8,40,.7);
}
.hlp-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  margin: .4rem 0 1rem;
}
.hlr-line {
  flex: 1;
  max-width: 55px;
  height: 1px;
  background: rgba(208,80,192,.5);
}
.hlr-dot {
  font-size: .38rem;
  color: var(--magenta-l);
  opacity: .8;
}
.hlp-tagline {
  font-family: var(--font-disp);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(250,249,246,.8);
  margin-bottom: 1.8rem;
  text-shadow: 0 2px 16px rgba(42,8,40,.7);
}
.hlp-sub {
  font-family: var(--font-body);
  font-size: .58rem;
  font-weight: 400;
  letter-spacing: .12em;
  color: rgba(250,249,246,.45);
  margin-top: .9rem;
  text-shadow: 0 1px 8px rgba(42,8,40,.6);
}

/* Scroll cue */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 3;
}
.hero__scroll span {
  font-size: .52rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(249,244,237,.5);
}
.hs-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(249,244,237,.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: .4; transform: scaleY(.8); transform-origin: top; }
  50%      { opacity: 1;  transform: scaleY(1);  transform-origin: top; }
}

/* ===== TICKER ===== */
.ticker {
  background: linear-gradient(to right, var(--plum-m), var(--magenta), var(--plum-m));
  overflow: hidden;
  padding: .72rem 0;
}
.ticker__track {
  display: flex;
  gap: 2.4rem;
  white-space: nowrap;
  animation: tickerScroll 28s linear infinite;
  width: max-content;
}
.ticker__track span {
  font-family: var(--font-body);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(249,244,237,.85);
  flex-shrink: 0;
}
.t-sep { color: rgba(249,244,237,.3) !important; font-size: .5rem !important; }
@keyframes tickerScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SERVICES ===== */
.services-section {
  padding: 9rem 7vw;
  background: var(--cream);
}
.services__inner {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 6rem;
  align-items: start;
}
.services__header h2 {
  font-family: var(--font-disp);
  font-size: clamp(2.8rem, 4.5vw, 5rem);
  font-weight: 700;
  line-height: .88;
  color: var(--charcoal);
}
.services__header h2 em {
  font-style: italic;
  color: var(--magenta);
  font-weight: 300;
}
.sh-rule {
  width: 36px; height: 2px;
  background: var(--magenta);
  opacity: .5;
  margin: 1.4rem 0;
}
.services__header p {
  font-size: .78rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-m);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}
.svc-card {
  background: var(--cream);
  padding: 2.2rem 1.8rem;
  position: relative;
  transition: background .25s;
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 1.8rem; right: 1.8rem;
  height: 1px;
  background: var(--magenta-l);
  opacity: 0;
  transform: scaleX(0);
  transition: opacity .3s, transform .35s ease;
}
.svc-card:hover { background: var(--magenta-xl); }
.svc-card:hover::after { opacity: .4; transform: scaleX(1); }
.svc-num {
  font-family: var(--font-disp);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--magenta);
  opacity: .15;
  line-height: 1;
  margin-bottom: .5rem;
}
.svc-card h3 {
  font-family: var(--font-disp);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: .6rem;
  letter-spacing: .01em;
}
.svc-card p {
  font-size: .74rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-m);
}

/* ===== GALLERY ===== */
.gallery-section {
  padding: 8rem 0;
  background: var(--warm);
}
.gallery__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 7vw;
}
.gallery__header {
  text-align: center;
  padding-bottom: 3.5rem;
  max-width: 480px;
  margin: 0 auto;
}
.gallery__header h2 {
  font-family: var(--font-disp);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: .9;
}
.gallery__header h2 em {
  font-style: italic;
  color: var(--magenta);
  font-weight: 300;
}
.gallery__header p {
  font-size: .74rem;
  font-weight: 300;
  letter-spacing: .06em;
  color: var(--text-m);
  margin-top: .7rem;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 4px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  background: var(--warm);
}
.gallery__item.gi--wide { grid-column: span 2; }
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform .6s ease;
}
.gallery__item:hover img { transform: scale(1.06); }
.gi-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(62,107,78,.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem 1.4rem;
  opacity: 0;
  transition: opacity .3s;
}
.gallery__item:hover .gi-overlay { opacity: 1; }
.gi-overlay span {
  font-family: var(--font-disp);
  font-style: italic;
  font-size: .85rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: .04em;
}

/* ===== ABOUT ===== */
.about-section {
  padding: 9rem 7vw;
  background: var(--cream);
}
.about__inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7rem;
  align-items: center;
}
.about__visual {
  position: relative;
}
.about__studio-wrap {
  height: 540px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(28,28,40,.14);
}
.about__studio-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .7s ease;
}
.about__studio-wrap:hover .about__studio-img { transform: scale(1.04); }
.about__stat-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 110px; height: 110px;
  background: var(--magenta);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .2rem;
  box-shadow: 0 8px 30px rgba(157,28,140,.4);
}
.asb-num {
  font-family: var(--font-disp);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.asb-label {
  font-family: var(--font-body);
  font-size: .44rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  text-align: center;
  padding: 0 .4rem;
}
.about__text h2 {
  font-family: var(--font-disp);
  font-size: clamp(2.6rem, 4vw, 4.5rem);
  font-weight: 700;
  line-height: .9;
  color: var(--charcoal);
  margin-bottom: 1.4rem;
}
.about__text h2 em {
  font-style: italic;
  color: var(--magenta);
  font-weight: 300;
}
.about__rule {
  width: 36px; height: 2px;
  background: var(--magenta);
  opacity: .5;
  margin-bottom: 1.8rem;
}
.about__lead {
  font-family: var(--font-disp);
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.2rem;
}
.about__text p {
  font-size: .78rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--text-m);
  margin-bottom: 1rem;
}
.about__pillars {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1.8rem 0 2rem;
}
.ap-item {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.ap-icon {
  font-size: .8rem;
  color: var(--magenta);
  opacity: .6;
}
.ap-label {
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text);
  opacity: .55;
}

/* ===== REVIEWS ===== */
.reviews-section {
  padding: 8rem 7vw;
  background: var(--magenta-xl);
}
.reviews__inner {
  max-width: 1380px;
  margin: 0 auto;
}
.reviews__header {
  text-align: center;
  margin-bottom: 4rem;
}
.reviews__header h2 {
  font-family: var(--font-disp);
  font-size: clamp(2.6rem, 4.5vw, 4.5rem);
  font-weight: 700;
  color: var(--charcoal);
  line-height: .92;
}
.reviews__header h2 em {
  font-style: italic;
  color: var(--magenta);
  font-weight: 300;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: #fff;
  padding: 2rem 1.8rem 1.8rem;
  box-shadow: 0 4px 20px rgba(139,106,172,.08);
  transition: transform .25s, box-shadow .25s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(139,106,172,.14);
}
.rc-stars {
  font-size: .85rem;
  color: var(--magenta);
  letter-spacing: .1em;
}
.rc-text {
  font-family: var(--font-disp);
  font-style: italic;
  font-size: .88rem;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text);
  flex: 1;
}
.rc-author {
  border-top: 1px solid var(--border);
  padding-top: .9rem;
  display: flex;
  flex-direction: column;
  gap: .2rem;
}
.rc-name {
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: .04em;
}
.rc-detail {
  font-family: var(--font-body);
  font-size: .6rem;
  font-weight: 400;
  color: var(--magenta);
  letter-spacing: .08em;
}

/* ===== BOOKING CTA ===== */
.booking-section {
  padding: 10rem 2rem;
  text-align: center;
  background: linear-gradient(135deg, var(--plum) 0%, var(--plum-m) 50%, var(--plum-l) 100%);
  position: relative;
  overflow: hidden;
}
.booking-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(157,28,140,.35) 0%, transparent 55%),
    radial-gradient(ellipse at 70% 60%, rgba(94,26,90,.4) 0%, transparent 45%);
  pointer-events: none;
}
.booking__inner {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}
.booking__pre {
  font-family: var(--font-body);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(249,244,237,.6);
  margin-bottom: .8rem;
}
.booking__title {
  font-family: var(--font-disp);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 700;
  line-height: .88;
  color: #fff;
  margin-bottom: 1.2rem;
}
.booking__title em {
  font-style: italic;
  font-weight: 300;
  opacity: .9;
}
.booking__rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.booking__rule span:not(.br-dot) {
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: rgba(249,244,237,.25);
}
.br-dot { font-size: .4rem; color: rgba(249,244,237,.4); }
.booking__sub {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(249,244,237,.65);
  margin-bottom: 2.8rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--plum);
  padding: 5rem 7vw 0;
}
.footer__inner {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(249,244,237,.08);
}
.footer__logo {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  margin-bottom: 1.2rem;
}
.fl-mj {
  font-family: var(--font-disp);
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--magenta-l);
}
.fl-brow {
  font-family: var(--font-body);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(249,244,237,.28);
}
.footer__brand p {
  font-size: .74rem;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(249,244,237,.3);
  max-width: 300px;
}
.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-body);
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(249,244,237,.22);
  margin-bottom: 1.4rem;
}
.footer__links ul { list-style: none; }
.footer__links li { margin-bottom: .85rem; }
.footer__links a,
.footer__contact a {
  font-size: .74rem;
  font-weight: 300;
  color: rgba(249,244,237,.38);
  transition: color .2s;
}
.footer__links a:hover,
.footer__contact a:hover { color: var(--magenta-l); }
.footer__book-link {
  display: block;
  font-family: var(--font-disp) !important;
  font-style: italic !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  color: var(--magenta-l) !important;
  margin-bottom: .8rem;
}
.footer__note {
  font-size: .62rem !important;
  color: rgba(249,244,237,.25) !important;
  letter-spacing: .06em;
}
.footer__bottom {
  max-width: 1380px;
  margin: 0 auto;
  padding: 1.8rem 0;
}
.footer__bottom p {
  font-size: .6rem;
  font-weight: 300;
  letter-spacing: .1em;
  color: rgba(249,244,237,.15);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .services__inner { grid-template-columns: 200px 1fr; gap: 3.5rem; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .about__inner { gap: 4rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav__links { display: none; }
  .nav__book { display: none; }
  .nav__hamburger { display: flex; }
  .nav__inner { padding: 1.2rem 1.5rem; }
  .hlp-inner { padding: 2.5rem 2rem; }
  .services-section { padding: 6rem 1.8rem; }
  .services__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .gallery__inner { padding: 0 1.2rem; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery__item.gi--wide { grid-column: span 1; }
  .about-section { padding: 5.5rem 1.8rem; }
  .about__inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .about__studio-wrap { height: 340px; }
  .about__stat-badge { right: 1rem; }
  .reviews-section { padding: 6rem 1.8rem; }
  .reviews__grid { grid-template-columns: 1fr 1fr; }
  .booking-section { padding: 7rem 1.8rem; }
  .footer__inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer { padding: 4rem 1.8rem 0; }
}
@media (max-width: 480px) {
  .services__grid { grid-template-columns: 1fr; }
  .reviews__grid { grid-template-columns: 1fr; }
  .gallery__grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .hl-mj { font-size: 3.2rem; }
  .hl-brow { font-size: 2rem; }
}
