/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════════════════ */

:root,
[data-theme="light"] {
  --color-bg: #F8F6F2;
  --color-surface: #FFFFFF;
  --color-surface-alt: #F0EDE8;
  --color-primary: #1D5C47;
  --color-primary-hover: #164A38;
  --color-primary-light: rgba(29, 92, 71, 0.08);
  --color-primary-highlight: rgba(29, 92, 71, 0.06);
  --color-on-primary: #FFFFFF;
  --color-text: #2C2926;
  --color-text-secondary: #6B6560;
  --color-text-tertiary: #9C9690;
  --color-text-muted: #6B6560;
  --color-border: #E6E2DC;
  --color-danger: #C0392B;
  --color-danger-hover: #A93226;
  --color-success: #27AE60;
  --color-gold: #d19900;
  --color-overlay: rgba(44, 41, 38, 0.5);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 24px;
  --nav-bg: rgba(248, 246, 242, 0.85);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-16: 80px;
  --content-wide: 1200px;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-2xl: clamp(1.8rem, 3.5vw, 2.5rem);
  --transition-interactive: 0.15s ease;
}

[data-theme="dark"] {
  --color-bg: #171614;
  --color-surface: #222120;
  --color-surface-alt: #2A2928;
  --color-primary: #4f9e87;
  --color-primary-hover: #5fb89c;
  --color-primary-light: rgba(79, 158, 135, 0.12);
  --color-primary-highlight: rgba(79, 158, 135, 0.08);
  --color-on-primary: #FFFFFF;
  --color-text: #EDE9E3;
  --color-text-secondary: #A8A29E;
  --color-text-tertiary: #6B6560;
  --color-text-muted: #A8A29E;
  --color-border: #3A3836;
  --color-danger: #E74C3C;
  --color-danger-hover: #C0392B;
  --color-success: #2ECC71;
  --color-gold: #d19900;
  --color-overlay: rgba(0, 0, 0, 0.6);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.4);
  --nav-bg: rgba(23, 22, 20, 0.85);
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  transition: background-color 0.3s, color 0.3s;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
}

a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-hover); }
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 640px; }
.section { padding: 100px 0; }
.section__title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; color: var(--color-text); }
.section__subtitle { font-size: 1.1rem; color: var(--color-text-secondary); margin-bottom: 48px; max-width: 560px; }
.optional { font-weight: 300; color: var(--color-text-tertiary); }

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 32px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem;
  font-weight: 500; border: none; border-radius: var(--radius-sm); cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
}
.btn--primary { background: var(--color-primary); color: var(--color-on-primary); }
.btn--primary:hover { background: var(--color-primary-hover); transform: translateY(-1px); }
.btn--primary:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.btn--outline { background: transparent; color: var(--color-primary); border: 1.5px solid var(--color-primary); }
.btn--outline:hover { background: var(--color-primary-light); }
.btn--danger { background: var(--color-danger); color: #fff; }
.btn--danger:hover { background: var(--color-danger-hover); }
.btn--small { padding: 6px 14px; font-size: 0.8rem; background: var(--color-primary); color: var(--color-on-primary); border: none; border-radius: var(--radius-sm); cursor: pointer; }
.btn-large { padding: 18px 48px; font-size: 1.1rem; }

/* ═══════════════════════════════════════════════════════
   NAV
   ═══════════════════════════════════════════════════════ */

.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: background-color 0.3s, backdrop-filter 0.3s, border-color 0.3s; border-bottom: 1px solid transparent; }
.nav--scrolled { background: var(--nav-bg); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom-color: var(--color-border); padding: 12px 0; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; flex-shrink: 0; font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: 1.25rem; color: var(--color-text); }
.nav__logo:hover { color: var(--color-primary); }
.nav__links { display: flex; gap: 32px; }
.nav__link { font-size: 0.9rem; font-weight: 400; color: var(--color-text-secondary); transition: color 0.2s; letter-spacing: 0.01em; }
.nav__link:hover { color: var(--color-text); }
.nav__actions { display: flex; align-items: center; gap: 12px; }

.theme-toggle { display: flex; align-items: center; justify-content: center; width: 40px; height: 40px; border: none; border-radius: 50%; background: var(--color-surface-alt); color: var(--color-text-secondary); cursor: pointer; transition: background 0.2s, color 0.2s; }
.theme-toggle:hover { background: var(--color-border); color: var(--color-text); }
[data-theme="light"] .icon-moon { display: none; }
[data-theme="dark"]  .icon-sun  { display: none; }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; border: none; background: transparent; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--color-text); border-radius: 2px; transition: all 0.3s; }
.hamburger[aria-expanded="true"] span:nth-child(1),
.hamburger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger[aria-expanded="true"] span:nth-child(2),
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3),
.hamburger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

body.nav-open { overflow: hidden; }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */

.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding-top: 80px; padding-bottom: 48px; }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: stretch; min-height: 0; min-width: 0; }
.hero__text { display: flex; flex-direction: column; align-items: flex-start; text-align: left; min-width: 0; }
.hero__title { font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 12px; }
.hero__subtitle { font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 400; color: var(--color-primary); margin-bottom: 24px; letter-spacing: 0.02em; }
.hero__tagline { font-size: 1.1rem; font-weight: 300; color: var(--color-text-secondary); margin-bottom: 40px; max-width: 480px; line-height: 1.8; }
.hero__photo { border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-lg); min-width: 0; }
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-logo {
  width: 200px;
  height: auto;
  display: block;
  margin-bottom: var(--space-6);
  border-radius: var(--radius-md);
}

/* Desktop: one tall row; right column image fills it; left column content vertically centered */
@media (min-width: 901px) {
  .hero__inner {
    min-height: calc(100svh - 80px - 3rem);
    grid-template-rows: 1fr;
  }
  .hero__text { justify-content: center; }
  .hero__photo { position: relative; min-height: 100%; height: 100%; align-self: stretch; }
  .hero__photo img { position: absolute; inset: 0; width: 100%; height: 100%; }
}

/* ═══════════════════════════════════════════════════════
   CTA PRICE NOTE
   ═══════════════════════════════════════════════════════ */

.cta-price-note { font-size: var(--text-sm); color: var(--color-text-muted); text-align: center; margin-top: var(--space-2); letter-spacing: 0.03em; }
.hero .cta-price-note { text-align: left; }

/* ═══════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════ */

.about__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about__text p { margin-bottom: 16px; color: var(--color-text-secondary); font-weight: 300; }
.about__photo { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 5/6; }
.bio-preview { position: relative; overflow: hidden; }
.bio-fade { position: absolute; bottom: 0; left: 0; right: 0; height: 60px; background: linear-gradient(transparent, var(--color-bg)); pointer-events: none; }
.bio-full { margin-top: 16px; }
.btn-read-more { margin-top: 16px; color: var(--color-primary); font-weight: 500; text-decoration: underline; background: none; border: none; cursor: pointer; padding: 0; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; }

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */

.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-question { width: 100%; text-align: left; padding: var(--space-5) 0; font-size: var(--text-lg); font-weight: 500; display: flex; justify-content: space-between; align-items: center; background: none; border: none; cursor: pointer; color: var(--color-text); font-family: 'DM Sans', sans-serif; line-height: 1.5; gap: 16px; }
.faq-question:hover { color: var(--color-primary); }
.faq-answer { padding: 0 0 var(--space-5) 0; color: var(--color-text-muted); }
.faq-answer p { line-height: 1.7; }
.faq-answer ul { margin: 8px 0 12px 20px; list-style: disc; }
.faq-answer ul li { line-height: 1.7; color: var(--color-text-muted); margin-bottom: 2px; }
.faq-icon { font-size: 1.5rem; transition: transform 0.2s; flex-shrink: 0; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

/* ═══════════════════════════════════════════════════════
   CTA BLOCK / INSTAGRAM / CLOSING PHRASE
   ═══════════════════════════════════════════════════════ */

.cta-block { text-align: center; padding: 48px 24px; }
.instagram-link { text-align: center; padding: 24px; }
.instagram-link a { font-size: 1rem; font-weight: 500; color: var(--color-primary); }
.instagram-link a:hover { color: var(--color-primary-hover); }
.closing-phrase { text-align: center; padding: 64px 24px; }
.closing-phrase p { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 400; font-style: italic; color: var(--color-text-secondary); max-width: 640px; margin: 0 auto; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   CTA PHOTO SECTION
   ═══════════════════════════════════════════════════════ */

.cta-photo-section { padding: var(--space-16) 0; }
.cta-photo-inner { max-width: var(--content-wide); margin-inline: auto; padding-inline: var(--space-8); display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-16); align-items: center; }
.cta-photo-left { display: flex; flex-direction: column; align-items: flex-start; gap: var(--space-6); }
.cta-photo-left h2 { font-size: var(--text-2xl); line-height: 1.15; }
.cta-photo-left p { font-size: var(--text-base); color: var(--color-text-muted); max-width: 42ch; }
.cta-natural-photo { width: 100%; height: auto; max-width: 480px; border-radius: var(--radius-xl); box-shadow: var(--shadow-lg); display: block; }

/* ═══════════════════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════════════════ */

.reviews-carousel { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 32px; }
.review-card { background: var(--color-surface); border-radius: var(--radius-lg); padding: var(--space-8); box-shadow: var(--shadow-sm); border: 1px solid var(--color-border); }
.review-stars { color: var(--color-gold); margin-bottom: var(--space-3); font-size: 1.2rem; }
.review-text { font-style: italic; margin-bottom: var(--space-4); color: var(--color-text-secondary); font-weight: 300; line-height: 1.7; }
.review-author { font-weight: 600; color: var(--color-text); }
.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-bottom: 48px; }
.carousel-prev, .carousel-next { width: 40px; height: 40px; border: 1px solid var(--color-border); border-radius: 50%; background: var(--color-surface); color: var(--color-text); font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.carousel-prev:hover, .carousel-next:hover { border-color: var(--color-primary); color: var(--color-primary); }
.carousel-dots { display: flex; gap: 8px; }
.carousel-dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: var(--color-border); cursor: pointer; transition: background 0.2s; }
.carousel-dot.active { background: var(--color-primary); }

.leave-review { margin-top: 48px; max-width: 560px; }
.leave-review h3 { font-size: 1.5rem; margin-bottom: 8px; }
.leave-review > p { color: var(--color-text-secondary); margin-bottom: 24px; }
.star-rating { display: flex; gap: 4px; margin-bottom: 20px; }
.star-btn { font-size: 1.6rem; background: none; border: none; color: var(--color-border); cursor: pointer; transition: color 0.15s; padding: 2px; }
.star-btn.active { color: var(--color-gold); }
.star-btn:hover { color: var(--color-gold); }
#reviewStatus { margin-top: 16px; font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════════
   DURATION TOGGLE
   ═══════════════════════════════════════════════════════ */

.duration-toggle { display: flex; gap: var(--space-3); margin-bottom: var(--space-6); }
.duration-btn { flex: 1; padding: var(--space-4); border: 2px solid var(--color-border); border-radius: var(--radius-md); background: var(--color-surface); font-family: 'DM Sans', sans-serif; font-size: var(--text-base); font-weight: 500; cursor: pointer; transition: all var(--transition-interactive); color: var(--color-text); }
.duration-btn.active { border-color: var(--color-primary); background: var(--color-primary-highlight); color: var(--color-primary); }
.duration-btn:hover:not(.active) { border-color: var(--color-primary); }

/* ═══════════════════════════════════════════════════════
   CUSTOM CALENDAR
   ═══════════════════════════════════════════════════════ */

.custom-calendar { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: var(--space-4); }
.cal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: var(--space-4); }
.cal-month-label { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: 1.2rem; }
.cal-nav { background: none; border: none; cursor: pointer; font-size: 1.4rem; color: var(--color-text-muted); padding: var(--space-2); border-radius: var(--radius-sm); line-height: 1; }
.cal-nav:hover { color: var(--color-primary); }
.cal-nav:disabled { opacity: 0.3; cursor: not-allowed; color: var(--color-text-muted); }
.cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-size: var(--text-xs); color: var(--color-text-muted); margin-bottom: var(--space-2); text-transform: uppercase; letter-spacing: 0.05em; }
.cal-weekdays span:nth-child(4), .cal-weekdays span:nth-child(6) { color: var(--color-primary); font-weight: 600; }
.cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: var(--space-1); }
.cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-sm); font-size: var(--text-sm); cursor: not-allowed; opacity: 0.3; user-select: none; border: none; background: none; color: var(--color-text); font-family: 'DM Sans', sans-serif; }
.cal-day.available { cursor: pointer; opacity: 1; font-weight: 500; transition: background var(--transition-interactive); }
.cal-day.available:hover { background: var(--color-primary-highlight); color: var(--color-primary); }
.cal-day.selected { background: var(--color-primary) !important; color: white !important; font-weight: 600; opacity: 1; }
.cal-day.today { box-shadow: 0 0 0 2px var(--color-primary); opacity: 1; }
.cal-day.empty { opacity: 0; pointer-events: none; }

/* ═══════════════════════════════════════════════════════
   BOOKING
   ═══════════════════════════════════════════════════════ */

.booking__layout { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.timeslots { margin-top: 24px; }
.timeslots__label { font-size: 0.85rem; font-weight: 500; color: var(--color-text-secondary); margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.timeslots__grid { display: flex; flex-wrap: wrap; gap: 8px; }
.timeslot { padding: 8px 18px; font-family: 'DM Sans', sans-serif; font-size: 0.9rem; border: 1.5px solid var(--color-border); border-radius: var(--radius-sm); background: var(--color-surface); color: var(--color-text); cursor: pointer; transition: all 0.15s; }
.timeslot:hover:not(:disabled):not(.timeslot--selected):not(.disabled-duration) { border-color: var(--color-primary); background: var(--color-primary-light); }
.timeslot--selected { background: var(--color-primary); border-color: var(--color-primary); color: var(--color-on-primary); }
.timeslot:disabled { color: var(--color-text-tertiary); text-decoration: line-through; opacity: 0.5; cursor: not-allowed; }
.timeslot.disabled-duration { opacity: 0.35; cursor: not-allowed; pointer-events: none; }
.timeslots__empty { font-size: 0.9rem; color: var(--color-text-tertiary); font-style: italic; }
.timeslots__unavailable { font-size: 0.9rem; color: var(--color-danger); font-weight: 500; margin-top: 8px; }
.timeslots__duration-warn { font-size: 0.9rem; color: var(--color-danger); font-weight: 500; margin-top: 8px; }

.booking__form { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 32px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--color-text-secondary); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 12px 16px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; color: var(--color-text); background: var(--color-bg); border: 1.5px solid var(--color-border); border-radius: var(--radius-sm); transition: border-color 0.2s, box-shadow 0.2s; outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--color-primary); box-shadow: 0 0 0 3px var(--color-primary-light); }
.form-group textarea { resize: vertical; }
.booking__selected { background: var(--color-primary-light); border-radius: var(--radius-sm); padding: 12px 16px; margin-bottom: 20px; font-size: 0.9rem; color: var(--color-primary); font-weight: 500; text-align: center; }
.booking__submit { width: 100%; }
.booking__status { margin-top: 16px; text-align: center; font-size: 0.9rem; }

/* ═══════════════════════════════════════════════════════
   CANCEL (phone-based)
   ═══════════════════════════════════════════════════════ */

.cancel-section { background: var(--color-surface-alt); }
.cancel-lookup-form { margin-top: 24px; }
.cancel-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: var(--space-6); margin-top: var(--space-4); }
.cancel-card p { margin-bottom: var(--space-2); font-size: 0.95rem; color: var(--color-text-secondary); }
.cancel-card .btn--danger { margin-top: var(--space-3); }
#cancelResults { margin-top: var(--space-6); }
.cancel-empty { color: var(--color-text-tertiary); font-style: italic; margin-top: var(--space-4); }

/* ═══════════════════════════════════════════════════════
   CONTACTS
   ═══════════════════════════════════════════════════════ */

.contacts__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; }
.contact-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 28px 24px; transition: box-shadow 0.2s; }
.contact-card:hover { box-shadow: var(--shadow-md); }
.contact-card svg { color: var(--color-primary); margin-bottom: 16px; }
.contact-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.contact-card p, .contact-card a { font-size: 0.92rem; color: var(--color-text-secondary); font-weight: 300; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */

.footer { border-top: 1px solid var(--color-border); padding: 40px 0; text-align: center; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.footer__info { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; margin-bottom: 8px; }
.footer__info p { font-size: 0.9rem; color: var(--color-text-secondary); }
.footer__info a { color: var(--color-primary); font-weight: 400; }
.footer__copy { font-size: 0.85rem; color: var(--color-text-tertiary); }

/* ═══════════════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════════════ */

.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(80px); background: var(--color-text); color: var(--color-bg); padding: 14px 28px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 500; box-shadow: var(--shadow-lg); z-index: 2000; opacity: 0; transition: all 0.3s ease; pointer-events: none; }
.toast--visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast--error { background: var(--color-danger); color: #fff; }

/* ═══════════════════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════════════════ */

.modal-overlay { position: fixed; inset: 0; background: var(--color-overlay); align-items: center; justify-content: center; z-index: 3000; padding: 24px; display: none; opacity: 0; pointer-events: none; transition: opacity 0.2s; }
.modal-overlay:not([hidden]) { display: flex; opacity: 1; pointer-events: auto; }
.modal { background: var(--color-surface); border-radius: var(--radius-lg); padding: 40px; max-width: 480px; width: 100%; position: relative; box-shadow: var(--shadow-lg); text-align: center; }
.modal__close { position: absolute; top: 16px; right: 16px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border: none; background: var(--color-surface-alt); border-radius: 50%; font-size: 1.3rem; color: var(--color-text-secondary); cursor: pointer; transition: background 0.2s; }
.modal__close:hover { background: var(--color-border); }
.modal__icon { margin-bottom: 16px; }
.modal__title { font-size: 1.6rem; margin-bottom: 8px; }
.modal__text { color: var(--color-text-secondary); margin-bottom: 16px; }
.modal__hint { font-size: 0.85rem; color: var(--color-text-tertiary); margin-bottom: 24px; }
.modal__done { width: 100%; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; grid-template-rows: auto; gap: 40px; min-height: 0; }
  .hero__text { align-items: center; text-align: center; }
  .hero__photo { order: -1; min-height: 0; height: auto; align-self: stretch; }
  .hero__photo img { position: static; display: block; width: 100%; height: auto; max-height: 70vh; object-fit: cover; }
  .hero .cta-price-note { text-align: center; }
  .hero-logo { margin-left: auto; margin-right: auto; }
  .about__inner { grid-template-columns: 1fr; gap: 40px; }
  .booking__layout { grid-template-columns: 1fr; gap: 32px; }
  .reviews-carousel { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-logo { width: 160px; margin-left: auto; margin-right: auto; }
  .cta-photo-inner { grid-template-columns: 1fr; gap: var(--space-8); padding-inline: var(--space-4); }
  .cta-photo-right { order: -1; }
  .cta-natural-photo { max-width: 100%; border-radius: var(--radius-lg); }
  .cta-photo-left { align-items: center; text-align: center; }
  .cta-photo-left p { max-width: 100%; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .nav__links { position: fixed; top: 0; right: 0; width: 280px; height: 100vh; flex-direction: column; background: var(--color-surface); padding: 80px 32px 32px; gap: 24px; transform: translateX(100%); transition: transform 0.3s ease; box-shadow: var(--shadow-lg); z-index: 999; }
  .nav__links--open { transform: translateX(0); }
  .nav__links .nav__link { font-size: 1.1rem; }
  .hamburger { display: flex; }
  .contacts__grid { grid-template-columns: 1fr; }
  .booking__form { padding: 24px 20px; }
  .modal { padding: 28px 24px; }
  .reviews-carousel { grid-template-columns: 1fr; }
  .duration-toggle { flex-direction: column; }
}
