@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&display=swap');

/* ═══════════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════════════ */
:root {
  --bg:         #FBF9F7;
  --bg-alt:     #F4EFEB;
  --bg-dark:    #2B2B2B;
  --text:       #2B2B2B;
  --text-2:     #5A524E;
  --muted:      #8A7F7A;
  --line:       #E8DDD7;
  --accent:     #B85C4A;
  --accent-dk:  #7A2E3C;
  --accent-lt:  rgba(184,92,74,.08);
  --white:      #FFFFFF;
  --r:          12px;
  --r-pill:     999px;
  --shadow-xs:  0 1px 4px rgba(43,43,43,.06);
  --shadow-sm:  0 2px 12px rgba(43,43,43,.08);
  --shadow-md:  0 6px 28px rgba(43,43,43,.10);
  --serif:      'Playfair Display', Georgia, serif;
  --sans:       -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --sp:         clamp(3.5rem, 7vw, 5.5rem);
  --sp-sm:      clamp(1.5rem, 3vw, 2.5rem);
}

/* ═══════════════════════════════════════════
   RESET
══════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
strong { font-weight: 600; }

/* ═══════════════════════════════════════════
   TYPOGRAPHY — editorial contrast
══════════════════════════════════════════════ */
h1 {
  font-family: var(--serif); font-weight: 900;
  font-size: clamp(2.5rem, 7vw, 4.2rem);
  line-height: 1.05; letter-spacing: -.01em;
}
h2 {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.1; letter-spacing: -.01em;
}
h3 { font-size: 1rem; font-weight: 600; line-height: 1.3; }

/* Section heading с декоративной линией */
.section-title {
  margin-bottom: .5rem;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--accent);
  margin-top: .65rem;
  border-radius: 2px;
  transition: width .4s ease;
}
.section-title.wide-line::after { width: 64px; }

.section-sub {
  color: var(--muted); font-size: .92rem;
  margin-bottom: 2.5rem; margin-top: .75rem;
  text-transform: uppercase; letter-spacing: .07em;
  font-size: .8rem;
}

/* ═══════════════════════════════════════════
   LAYOUT
══════════════════════════════════════════════ */
.container { width: min(100% - 2rem, 1140px); margin-inline: auto; }
.section    { padding: var(--sp) 0; }
.section--alt  { background: var(--bg-alt); }
.section--dark { background: var(--bg-dark); color: var(--white); }

/* ═══════════════════════════════════════════
   КНОПКИ — pill shape, более элегантные
══════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .875rem 2rem; border-radius: var(--r-pill);
  font-weight: 600; font-size: .95rem;
  letter-spacing: .04em; text-transform: uppercase;
  min-height: 50px; transition: all .22s ease; white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); transition: background .22s;
}
.btn:hover::before { background: rgba(255,255,255,.1); }

.btn-primary {
  background: var(--accent); color: var(--white);
  box-shadow: 0 2px 8px rgba(184,92,74,.25);
}
.btn-primary:hover {
  background: var(--accent-dk);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(122,46,60,.35);
}
.btn-outline {
  background: transparent; color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--white); }

.btn-ghost {
  background: var(--accent-lt); color: var(--accent);
  border: none;
}
.btn-ghost:hover { background: var(--accent); color: var(--white); }

.btn-wa {
  background: #25D366; color: var(--white);
  box-shadow: 0 2px 8px rgba(37,211,102,.2);
}
.btn-wa:hover {
  background: #1DAA55;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.3);
}
.btn-tg {
  background: #229ED9; color: var(--white);
  box-shadow: 0 2px 8px rgba(34,158,217,.2);
}
.btn-tg:hover {
  background: #1A88C4;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(34,158,217,.3);
}

.btn svg, .icon-btn svg, .sticky-bar svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: currentColor;
  display: block;
}

/* ═══════════════════════════════════════════
   0. MOBILE STICKY BAR
══════════════════════════════════════════════ */
.sticky-bar {
  display: flex;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 300;
  height: 60px;
  background: var(--bg-dark);
  box-shadow: 0 -4px 24px rgba(0,0,0,.18);
}
.sticky-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: .4rem;
  color: var(--white); font-size: .85rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  transition: background .2s;
}
.sticky-bar a.s-wa { background: #25D366; }
.sticky-bar a.s-wa:hover { background: #1DAA55; }
.sticky-bar a.s-tg { background: #229ED9; }
.sticky-bar a.s-tg:hover { background: #1A88C4; }

/* ═══════════════════════════════════════════
   1. HEADER
══════════════════════════════════════════════ */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251,249,247,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: .9rem 0;
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 4px 24px rgba(43,43,43,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }

.logo {
  font-family: var(--serif); font-weight: 900;
  font-size: 1.15rem; letter-spacing: .06em;
  line-height: 1.1; white-space: nowrap; flex-shrink: 0;
}
.logo small {
  display: block; font-family: var(--sans);
  font-size: .65rem; font-weight: 400;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); font-style: normal;
  margin-top: .12rem; white-space: nowrap;
}

/* Nav Menu — hidden on mobile by default */
.nav-desktop { display: none; }

.header-icons { display: flex; gap: .4rem; }
.icon-btn {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%;
  font-size: .72rem; font-weight: 700; letter-spacing: .05em;
  color: var(--white);
  transition: transform .2s, box-shadow .2s;
}
.icon-btn:hover { transform: scale(1.1); box-shadow: var(--shadow-sm); }
.icon-btn--wa { background: #25D366; }
.icon-btn--tg { background: #229ED9; }

/* ═══════════════════════════════════════════
   2. HERO — editorial asymmetric
══════════════════════════════════════════════ */
.hero { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.hero-inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
.hero-text  { order: 2; }
.hero-img {
  order: 1; border-radius: var(--r); overflow: hidden;
  aspect-ratio: 16/11; max-width: 440px; margin-inline: auto; width: 100%;
  box-shadow: var(--shadow-md);
}
.hero-img img { width: 100%; height: 100%; object-fit: cover; }

.hero-eyebrow {
  display: flex; align-items: center; gap: .6rem;
  margin-bottom: 1.25rem;
}
.hero-eyebrow-line {
  width: 28px; height: 1.5px;
  background: var(--accent); flex-shrink: 0;
}
.hero-eyebrow span {
  font-size: .75rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--accent);
}

.hero h1 { margin-bottom: 1.25rem; }
.hero-h1-accent { display: block; color: var(--accent); }

.hero-meta {
  display: flex; flex-direction: column; gap: .3rem;
  margin-bottom: 2rem;
}
.hero-meta-row { font-size: .95rem; color: var(--text-2); }
.hero-meta-row strong { color: var(--text); }
.hero-meta-solo {
  font-size: .85rem; color: var(--muted);
  font-style: italic; padding-top: .15rem;
}

.hero-btns { display: flex; flex-direction: column; gap: .75rem; margin-bottom: .75rem; }
.hero-reply {
  font-size: .8rem; color: var(--muted);
  display: flex; align-items: center; gap: .4rem;
}
.hero-reply::before {
  content: '';
  display: inline-block; width: 6px; height: 6px;
  border-radius: 50%; background: #25D366; flex-shrink: 0;
}

/* ═══════════════════════════════════════════
   3. GALLERY
══════════════════════════════════════════════ */
.gallery-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.75rem;
}
.gallery-more {
  font-size: .82rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--accent);
  text-decoration: underline; text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}

.swipe-hint {
  display: inline-block; color: var(--accent); font-weight: 600;
  text-transform: none; font-size: .82rem; letter-spacing: 0;
}

/* Mobile swipe */
.gallery-swipe {
  display: flex; gap: 12px; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; margin: 0 -1rem; padding: 0 1rem 8px; cursor: grab;
}
.gallery-swipe::-webkit-scrollbar { display: none; }
.gallery-swipe:active { cursor: grabbing; }

.swipe-item {
  flex: 0 0 230px; scroll-snap-align: start;
  border-radius: var(--r); overflow: hidden;
  aspect-ratio: 3/4; position: relative;
  box-shadow: var(--shadow-xs);
  transition: box-shadow .3s, transform .3s;
}
.swipe-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.swipe-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.swipe-item:hover img { transform: scale(1.06); }

/* On mobile, captions are always visible without hover */
.swipe-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(43,43,43,.85));
  color: rgba(255,255,255,.95); font-size: .75rem;
  padding: 2.2rem .85rem .75rem;
  transform: none; opacity: 1; transition: all .25s;
  line-height: 1.35;
}

/* Desktop grid — hidden on mobile */
.gallery-grid { display: none; }

/* ═══════════════════════════════════════════
   4. ЦЕНЫ — elegant menu style
══════════════════════════════════════════════ */
.price-list { display: flex; flex-direction: column; }
.price-row {
  display: flex; align-items: baseline;
  padding: .9rem 0; border-bottom: 1px solid var(--line); gap: .75rem;
  transition: background .15s;
}
.price-row:first-child { border-top: 1px solid var(--line); }
.price-row:hover { background: none; }

.price-name {
  font-size: .95rem; flex: 1;
  color: var(--text); line-height: 1.4;
}
.price-dots {
  flex: 1; max-width: 72px; min-width: 16px;
  border-bottom: 1px dotted var(--line);
  margin: 0 .5rem; position: relative; top: -.2rem;
}
.price-val {
  font-family: var(--serif); font-weight: 700;
  font-size: .95rem; font-variant-numeric: tabular-nums;
  white-space: nowrap; color: var(--text);
}
.price-val.muted {
  font-family: var(--sans); font-weight: 400;
  font-size: .85rem; color: var(--muted); font-style: italic;
}
.price-note {
  margin-top: 1.75rem;
  padding: 1.1rem 1.4rem;
  background: var(--accent-lt);
  border-radius: var(--r);
  border-left: 3px solid var(--accent);
  font-size: .88rem; color: var(--text-2);
  font-style: italic; line-height: 1.6;
}

/* ═══════════════════════════════════════════
   5. КАК Я РАБОТАЮ (trust)
══════════════════════════════════════════════ */
.trust-list { display: flex; flex-direction: column; margin-top: 2rem; }
.trust-item {
  display: flex; align-items: flex-start; gap: 1.1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.trust-item:last-child { border-bottom: none; }

.trust-num {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--accent);
  color: var(--accent); background: transparent;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: .9rem;
  transition: background .2s, color .2s;
}
.trust-item:hover .trust-num { background: var(--accent); color: var(--white); }

.trust-body strong {
  display: block; font-size: .98rem; margin-bottom: .3rem;
  font-weight: 600; line-height: 1.35;
}
.trust-body span { font-size: .875rem; color: var(--muted); line-height: 1.6; }

/* ═══════════════════════════════════════════
   6. ОБО МНЕ
══════════════════════════════════════════════ */
.about-inner { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }

.about-photo {
  border-radius: var(--r); overflow: hidden;
  aspect-ratio: 1; max-width: 240px;
  box-shadow: var(--shadow-md);
  position: relative;
}
.about-photo::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: var(--r);
  box-shadow: inset 0 0 0 1px rgba(43,43,43,.06);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }

.about-text { display: flex; flex-direction: column; gap: 1.1rem; }

.about-quote {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: 1.05rem; line-height: 1.75; color: var(--text);
  border-left: 2px solid var(--accent); padding-left: 1.4rem;
}
.about-desc { font-size: .9rem; color: var(--muted); line-height: 1.7; }

/* ═══════════════════════════════════════════
   7. МЕСТОПОЛОЖЕНИЕ
══════════════════════════════════════════════ */
.map-wrap {
  border-radius: var(--r); overflow: hidden; height: 260px;
  box-shadow: var(--shadow-sm); position: relative;
  z-index: 1; isolation: isolate;
}
.map-wrap iframe { width: 100%; height: calc(100% + 50px); margin-bottom: -50px; border: none; display: block; }
.map-wrap .leaflet-pane,
.map-wrap .leaflet-top,
.map-wrap .leaflet-bottom { z-index: 1 !important; }
.leaflet-control-attribution { display: none !important; }

.location-info { display: flex; flex-direction: column; gap: 1rem; }
.loc-address { font-size: 1rem; line-height: 1.7; }
.loc-address strong { font-size: 1.05rem; }

.loc-how-list { display: flex; flex-direction: column; gap: .6rem; }
.loc-how-item { display: flex; gap: .6rem; font-size: .9rem; line-height: 1.5; }
.loc-how-item strong { color: var(--text); flex-shrink: 0; }
.loc-how-item span   { color: var(--muted); }

.loc-note { font-size: .85rem; color: var(--accent); font-weight: 600; }

/* ═══════════════════════════════════════════
   8. ОТЗЫВЫ / СТАТИСТИКА
══════════════════════════════════════════════ */
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: .75rem; margin-bottom: 3rem;
}
.stat-card {
  text-align: center; padding: 1.5rem .75rem;
  border-radius: var(--r);
  background: var(--white);
  border: 1px solid var(--line);
  transition: box-shadow .25s, transform .25s;
}
.stat-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }

.stat-num {
  display: block; font-family: var(--serif); font-weight: 900;
  font-size: clamp(2rem, 5vw, 2.8rem); color: var(--accent); line-height: 1;
  letter-spacing: -.02em; margin-bottom: .4rem;
}
.stat-lbl { display: block; font-size: .75rem; color: var(--muted); letter-spacing: .04em; }

.reviews-grid { display: grid; gap: 1rem; }
.review-card {
  border-radius: var(--r); padding: 1.4rem;
  background: var(--white); border: 1px solid var(--line);
  transition: box-shadow .25s;
}
.review-card:hover { box-shadow: var(--shadow-sm); }

.review-head { display: flex; align-items: center; gap: .8rem; margin-bottom: .9rem; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-weight: 700; font-size: 1.05rem;
  flex-shrink: 0;
}
.review-meta { flex: 1; }
.review-name { font-weight: 600; font-size: .95rem; }
.review-date { font-size: .78rem; color: var(--muted); }
.review-stars { color: #C8974A; font-size: .85rem; letter-spacing: 2px; }
.review-body {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: .92rem; color: var(--text); line-height: 1.7;
}
.review-src { font-size: .72rem; color: var(--muted); margin-top: .6rem; letter-spacing: .04em; }

/* ═══════════════════════════════════════════
   9. FAQ — refined accordion
══════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: .4rem; margin-top: 2rem; }
.faq-item {
  border-radius: var(--r); overflow: hidden;
  background: var(--white); border: 1px solid var(--line);
  transition: box-shadow .25s;
}
.faq-item.open { box-shadow: var(--shadow-sm); border-color: var(--accent); }

.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem 1.35rem; gap: 1rem; text-align: left;
  font-size: .97rem; font-weight: 600; color: var(--text);
}
.faq-btn:hover { color: var(--accent); }
.faq-item.open .faq-btn { color: var(--accent); }

.faq-ico {
  flex-shrink: 0; width: 30px; height: 30px; border-radius: 50%;
  border: 1.5px solid currentColor; position: relative;
  transition: transform .3s, background .25s, border-color .25s, color .25s;
  color: var(--muted);
}
.faq-ico::before, .faq-ico::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  background: currentColor; transition: transform .3s;
  border-radius: 1px;
}
.faq-ico::before {
  width: 12px; height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq-ico::after {
  width: 1.5px; height: 12px;
  transform: translate(-50%, -50%);
}
.faq-item.open .faq-ico {
  transform: rotate(45deg);
  background: var(--accent); border-color: var(--accent); color: var(--white);
}

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .38s ease, padding .3s ease;
  padding: 0 1.35rem;
}
.faq-item.open .faq-answer { max-height: 600px; padding: 0 1.35rem 1.35rem; }
.faq-answer p {
  color: var(--text-2); font-size: .93rem; line-height: 1.75;
  border-top: 1px solid var(--line); padding-top: .85rem;
}

/* ═══════════════════════════════════════════
   10. ЗАПИСЬ
══════════════════════════════════════════════ */
.booking { text-align: center; }
.booking h2 { margin-bottom: .5rem; }
.booking h2::after { margin-inline: auto; }

.booking-sub {
  color: var(--muted); font-size: .9rem;
  margin-bottom: 2.25rem; margin-top: .75rem;
}
.booking-btns {
  display: flex; flex-direction: column; gap: .9rem;
  max-width: 400px; margin: 0 auto 1.75rem;
}
.booking-btns .btn { font-size: 1rem; padding: 1rem 2.25rem; }

.booking-divider {
  width: 40px; height: 1px; background: var(--line);
  margin: .25rem auto;
}
.booking-phone-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
  color: var(--text); letter-spacing: .04em;
  transition: color .2s;
}
.booking-phone-link:hover { color: var(--accent); }
.booking-note { font-size: .82rem; color: var(--muted); margin-top: .75rem; }

/* ═══════════════════════════════════════════
   11. FOOTER
══════════════════════════════════════════════ */
.footer {
  position: relative; z-index: 10;
  background: var(--bg-dark); color: rgba(255,255,255,.55); padding: 3rem 0 2rem;
}
.footer-inner { display: grid; gap: 2rem; }
.footer-logo {
  font-family: var(--serif); font-weight: 900;
  font-size: 1.15rem; color: var(--white);
  letter-spacing: .06em; margin-bottom: .6rem;
}
.footer-text { font-size: .875rem; line-height: 1.7; }
.footer-col-title { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); display: block; margin-bottom: .6rem; }
.footer-links { display: flex; flex-direction: column; gap: .4rem; font-size: .875rem; }
.footer-links a { transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  font-size: .78rem; text-align: center;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.5rem; margin-top: .5rem;
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════════════════════ */
.anim-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1), transform .7s cubic-bezier(.4,0,.2,1);
}
.anim-up.visible { opacity: 1; transform: none; }

.stagger .anim-up:nth-child(1)  { transition-delay: .04s; }
.stagger .anim-up:nth-child(2)  { transition-delay: .09s; }
.stagger .anim-up:nth-child(3)  { transition-delay: .14s; }
.stagger .anim-up:nth-child(4)  { transition-delay: .19s; }
.stagger .anim-up:nth-child(5)  { transition-delay: .24s; }
.stagger .anim-up:nth-child(6)  { transition-delay: .29s; }
.stagger .anim-up:nth-child(7)  { transition-delay: .34s; }
.stagger .anim-up:nth-child(8)  { transition-delay: .39s; }
.stagger .anim-up:nth-child(9)  { transition-delay: .44s; }
.stagger .anim-up:nth-child(10) { transition-delay: .49s; }
.stagger .anim-up:nth-child(11) { transition-delay: .54s; }
.stagger .anim-up:nth-child(12) { transition-delay: .59s; }

/* ═══════════════════════════════════════════
   BREAKPOINT 480px
══════════════════════════════════════════════ */
@media (min-width: 480px) {
  .hero-btns { flex-direction: row; }
  .stat-num  { font-size: 2.4rem; }
  .booking-btns { flex-direction: row; justify-content: center; max-width: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════
   BREAKPOINT 768px — DESKTOP ENHANCEMENTS
══════════════════════════════════════════════ */
@media (min-width: 768px) {
  body { padding-bottom: 0; }
  .sticky-bar { display: none; }
  .swipe-hint { display: none; }

  /* Header Desktop Navigation */
  .nav-desktop {
    display: flex; gap: 1.75rem; align-items: center;
  }
  .nav-desktop a {
    font-size: .88rem; font-weight: 600; color: var(--text-2);
    letter-spacing: .03em; position: relative; padding: .25rem 0;
    transition: color .2s;
  }
  .nav-desktop a::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 1.5px; background: var(--accent);
    transform: scaleX(0); transition: transform .25s ease;
  }
  .nav-desktop a:hover { color: var(--accent); }
  .nav-desktop a:hover::after { transform: scaleX(1); }

  /* Hero: 60/40 text-focused ratio with compact hero-img */
  .hero-inner { grid-template-columns: 60fr 40fr; align-items: center; gap: 3.5rem; }
  .hero-text  { order: 1; }
  .hero-img   { order: 2; aspect-ratio: 4/5; max-width: 380px; }
  .hero-btns  { flex-direction: row; max-width: none; }

  /* Gallery: switch to grid */
  .gallery-swipe { display: none; }
  .gallery-grid  {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 12px;
  }
  .grid-item {
    border-radius: var(--r); overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-xs);
    transition: box-shadow .3s, transform .3s;
  }
  .grid-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
  .grid-item.wide  { grid-column: span 2; }
  .grid-item img   { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
  .grid-item:hover img { transform: scale(1.05); }
  .grid-caption {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(43,43,43,.72));
    color: rgba(255,255,255,.9); font-size: .72rem;
    padding: 2rem .9rem .7rem;
    opacity: 0; transform: translateY(4px); transition: all .25s;
  }
  .grid-item:hover .grid-caption { opacity: 1; transform: none; }

  /* Prices: 2-column menu layout on desktop */
  .price-list {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0 3.5rem;
  }
  .price-row:first-child { border-top: none; }

  /* Trust list: 2-column card grid on desktop */
  .trust-list {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
  }
  .trust-item {
    background: var(--white); border-radius: var(--r);
    padding: 1.5rem; border: 1px solid var(--line);
    box-shadow: var(--shadow-xs); transition: transform .25s, box-shadow .25s;
    border-bottom: 1px solid var(--line);
  }
  .trust-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }

  /* About */
  .about-inner { grid-template-columns: auto 1fr; gap: 3.5rem; }
  .about-photo { max-width: 280px; }

  /* Location */
  .location-inner { grid-template-columns: 1fr 1fr; align-items: start; gap: 3.5rem; }
  .map-wrap { height: 340px; }

  /* Reviews */
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid .review-card:last-child { grid-column: span 2; }

  /* Footer */
  .footer-inner { grid-template-columns: 1.6fr 1fr 1fr; }

  /* Booking */
  .booking-btns { flex-direction: row; justify-content: center; max-width: none; }
}

/* ═══════════════════════════════════════════
   BREAKPOINT 1024px
══════════════════════════════════════════════ */
@media (min-width: 1024px) {
  .hero-btns    { flex-direction: row; }
  .gallery-grid { grid-auto-rows: 300px; }
  .stats-row    { gap: 1.5rem; }
  .stat-card    { padding: 2rem 1.5rem; }
  .reviews-grid .review-card:last-child { grid-column: span 1; }
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ═══════════════════════════════════════════
   IMAGE PLACEHOLDERS
══════════════════════════════════════════════ */
.hero-img img, .about-photo img {
  min-height: 100%; min-width: 100%;
  background: linear-gradient(135deg, #C9A594 0%, #A87464 100%);
}
.swipe-item:nth-child(odd)  img { background: linear-gradient(135deg, #D4B8A8, #B88472); }
.swipe-item:nth-child(even) img { background: linear-gradient(135deg, #C9A594, #7A2E3C); }
.grid-item:nth-child(1) img { background: linear-gradient(150deg, #C9A594, #A87464); }
.grid-item:nth-child(2) img { background: linear-gradient(150deg, #BF9482, #7A2E3C); }
.grid-item:nth-child(3) img { background: linear-gradient(150deg, #D4B8A8, #B85C4A); }
.grid-item:nth-child(4) img { background: linear-gradient(150deg, #A87464, #7A2E3C); }
.grid-item:nth-child(5) img { background: linear-gradient(150deg, #D8C4B8, #C9A594); }
.grid-item:nth-child(6) img { background: linear-gradient(150deg, #B85C4A, #7A2E3C); }
.grid-item:nth-child(7) img { background: linear-gradient(150deg, #C4B0A4, #A87464); }
.grid-item:nth-child(8) img { background: linear-gradient(150deg, #BF9482, #B85C4A); }
