/* ═══════════════════════════════════════════
   MYRAKLE BABY — Hostinger Ready
   ═══════════════════════════════════════════ */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim: #8B6914;
  --black: #050505;
  --dark: #0D0D0D;
  --dark2: #141414;
  --white: #FAFAF7;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Geist', 'Geist Sans', system-ui, -apple-system, sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background-color: rgba(201, 168, 76, 0.3);
  color: var(--white);
}

/* ── CURSOR ── */
.cursor {
  position: fixed; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s ease;
}
.cursor-ring {
  position: fixed; width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.5); border-radius: 50%;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: all 0.15s ease;
}
@media (hover: none) {
  .cursor, .cursor-ring { display: none !important; }
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 28px 60px;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(to bottom, rgba(5,5,5,0.95), transparent);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}
nav.scrolled {
  background: rgba(5,5,5,0.97) !important;
  backdrop-filter: blur(12px);
}
.nav-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 1.6rem; font-weight: 400;
  letter-spacing: 0.2em; color: var(--gold);
  text-decoration: none;
}
.nav-links { display: flex; gap: 48px; list-style: none; }
.nav-links a {
  text-decoration: none; color: rgba(250,250,247,0.6);
  font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase;
  font-weight: 300; transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-size: 0.6rem !important; letter-spacing: 0.3em !important;
  color: var(--gold) !important; border: 1px solid var(--gold-dim);
  padding: 10px 24px; transition: all 0.3s ease !important;
}
.nav-cta:hover {
  background: var(--gold) !important; color: var(--black) !important;
}
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--gold); transition: all 0.3s ease;
}
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 99;
  background: rgba(5,5,5,0.98); flex-direction: column;
  align-items: center; justify-content: center; gap: 36px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Instrument Serif', serif;
  font-size: 2.4rem; font-weight: 400;
  color: var(--white); text-decoration: none; letter-spacing: 0.08em;
  transition: color 0.3s ease;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute; top: 28px; right: 28px;
  font-size: 1.4rem; color: var(--gold);
  background: none; border: none;
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh; min-height: 740px;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(0.72) contrast(1.08);
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}
.hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to top, rgba(5,5,5,0.92) 0%, rgba(5,5,5,0.45) 40%, rgba(5,5,5,0.1) 65%, transparent 100%),
    linear-gradient(to right, rgba(5,5,5,0.55) 0%, transparent 55%);
}
.hero-glow {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse 60% 40% at 20% 90%, rgba(201,168,76,0.12), transparent 70%);
}
.hero-grain {
  position: absolute; inset: 0; z-index: 3; opacity: 0.35;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-accent-bar {
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, var(--gold), transparent 70%);
  z-index: 3;
}
.hero-content {
  position: relative; z-index: 4;
  padding: 0 64px 80px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 60px;
}
.hero-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 0.58rem; letter-spacing: 0.45em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
  content: ''; width: 44px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.hero-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(5rem, 9vw, 9.5rem);
  font-weight: 400; line-height: 0.88;
  color: var(--white); letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.hero-title em {
  font-style: italic; color: var(--gold-light);
  display: block;
}
.hero-tagline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  font-style: italic; font-weight: 400;
  color: rgba(250,250,247,0.55);
  letter-spacing: 0.08em;
  margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.hero-right {
  display: flex; flex-direction: column;
  align-items: center; gap: 24px;
  padding-bottom: 8px;
}
.hero-scroll-cue {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
}
.hero-scroll-cue span {
  font-size: 0.48rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: rgba(250,250,247,0.3);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}
.hero-stat { text-align: center; }
.hero-stat-num {
  font-family: 'Instrument Serif', serif;
  font-size: 2.2rem; font-weight: 400; color: var(--gold); line-height: 1;
}
.hero-stat-lbl {
  font-size: 0.44rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: rgba(250,250,247,0.3);
  margin-top: 4px;
}
.hero-rule {
  width: 100%; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.3;
}

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold); color: var(--black);
  padding: 17px 44px;
  font-family: 'Geist', sans-serif;
  font-size: 0.6rem; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  text-decoration: none;
  position: relative; overflow: hidden;
  transition: all 0.35s ease;
  display: inline-block;
  border: none; cursor: pointer;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--gold-light);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary span { position: relative; z-index: 1; }

.btn-outline {
  border: 1px solid rgba(201,168,76,0.45);
  color: rgba(250,250,247,0.7);
  padding: 16px 40px;
  font-family: 'Geist', sans-serif;
  font-size: 0.6rem; font-weight: 300;
  letter-spacing: 0.28em; text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s ease;
  display: inline-block;
  background: transparent; cursor: pointer;
}
.btn-outline:hover {
  border-color: var(--gold); color: var(--gold);
}

/* ── MARQUEE ── */
.marquee-wrapper {
  background: var(--gold); padding: 14px 0;
  overflow: hidden; white-space: nowrap;
}
.marquee-track {
  display: inline-block;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: 0.55rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--black);
  font-weight: 500; padding: 0 32px;
}
.marquee-track span::before {
  content: '✦'; margin-right: 32px; opacity: 0.5;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── SECTION BASES ── */
section { padding: 120px 64px; }
.section-label {
  font-family: 'Geist Mono', monospace;
  font-size: 0.55rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.section-label::before {
  content: ''; width: 30px; height: 1px; background: var(--gold);
}
.section-title {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(2.6rem, 5vw, 4.5rem);
  font-weight: 400; line-height: 1.1;
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic; color: var(--gold-light);
}
.gold-divider {
  width: 56px; height: 1px;
  background: var(--gold); margin: 32px 0;
}

/* ── ABOUT ── */
.about {
  background: var(--dark);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-images {
  position: relative; height: 600px;
}
.about-img-main {
  position: absolute; width: 72%; height: 100%;
  object-fit: cover; object-position: center top;
}
.about-img-accent {
  position: absolute; right: 0; bottom: 40px;
  width: 48%; height: 58%;
  object-fit: cover; object-position: center top;
  border: 4px solid var(--dark);
}
.about-gold-line {
  position: absolute; bottom: 0; left: 0;
  width: 55%; height: 3px;
  background: linear-gradient(to right, var(--gold), transparent);
}
.about-text p {
  font-size: 0.78rem; line-height: 2.3;
  color: rgba(250,250,247,0.55);
  margin-bottom: 18px; letter-spacing: 0.03em;
}
.about-quote {
  font-family: 'Instrument Serif', serif;
  font-size: 1.55rem; font-style: italic;
  color: var(--gold-light);
  margin: 36px 0; padding-left: 24px;
  border-left: 2px solid var(--gold-dim); line-height: 1.65;
}
.about-stats {
  display: flex; gap: 48px;
  margin-top: 44px; padding-top: 44px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.stat-num {
  font-family: 'Instrument Serif', serif;
  font-size: 2.8rem; font-weight: 400;
  color: var(--gold); line-height: 1;
}
.stat-label {
  font-size: 0.52rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(250,250,247,0.35);
  margin-top: 6px;
}

/* ── SERVICES ── */
.services { background: var(--black); }
.services-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; margin-bottom: 72px;
}
.services-desc {
  max-width: 300px; font-size: 0.68rem;
  line-height: 2; color: rgba(250,250,247,0.38);
  letter-spacing: 0.04em;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.service-card {
  background: var(--dark2); padding: 52px 40px;
  position: relative; overflow: hidden;
  transition: background 0.4s ease;
  cursor: default;
}
.service-card::before {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(to right, var(--gold), var(--gold-dim));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s ease;
}
.service-card:hover { background: #1b1b1b; }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: 'Instrument Serif', serif;
  font-size: 4.5rem; font-weight: 400;
  color: rgba(201,168,76,0.07);
  position: absolute; top: 16px; right: 24px;
  line-height: 1; transition: color 0.4s ease;
}
.service-card:hover .service-num { color: rgba(201,168,76,0.14); }
.service-icon { font-size: 1.5rem; margin-bottom: 22px; display: block; }
.service-name {
  font-family: 'Instrument Serif', serif;
  font-size: 1.55rem; font-weight: 400;
  margin-bottom: 14px; color: var(--white);
}
.service-desc {
  font-size: 0.68rem; line-height: 2;
  color: rgba(250,250,247,0.42); letter-spacing: 0.03em;
}

/* ── LOCATIONS ── */
.locations { background: var(--dark); text-align: center; }
.locations-header .section-label { justify-content: center; }
.locations-header .section-label::before { display: none; }
.locations-sub {
  font-size: 0.68rem; color: rgba(250,250,247,0.35);
  letter-spacing: 0.1em; margin-bottom: 68px;
}
.locations-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px; max-width: 1100px; margin: 0 auto;
}
.location-item {
  padding: 30px 18px;
  border: 1px solid rgba(201,168,76,0.08);
  position: relative; overflow: hidden;
  transition: border-color 0.3s ease;
}
.location-item:hover { border-color: rgba(201,168,76,0.3); }
.location-city {
  font-family: 'Instrument Serif', serif;
  font-size: 1.18rem; font-weight: 400; color: var(--white); margin-bottom: 4px;
}
.location-country {
  font-size: 0.48rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold-dim);
}
.location-dot {
  width: 4px; height: 4px; background: var(--gold);
  border-radius: 50%; margin: 10px auto 0;
  opacity: 0.4; transition: opacity 0.3s ease;
}
.location-item:hover .location-dot { opacity: 1; }
.locations-more {
  font-size: 0.58rem; color: rgba(250,250,247,0.22);
  letter-spacing: 0.18em; margin-top: 40px;
}

/* ── GALLERY ── */
.gallery { background: var(--black); padding: 120px 0; }
.gallery-header { padding: 0 64px; margin-bottom: 52px; }
.gallery-scroll {
  display: flex; gap: 3px;
  overflow-x: auto; padding: 0 64px;
  scrollbar-width: none;
}
.gallery-scroll::-webkit-scrollbar { display: none; }
.gallery-item {
  flex-shrink: 0; height: 520px;
  overflow: hidden; position: relative;
  transition: all 0.4s ease;
}
.gallery-item:nth-child(1) { width: 310px; }
.gallery-item:nth-child(2) { width: 230px; }
.gallery-item:nth-child(3) { width: 290px; }
.gallery-item:nth-child(4) { width: 250px; }
.gallery-item:nth-child(5) { width: 330px; }
.gallery-item:nth-child(6) { width: 210px; }
.gallery-item:nth-child(7) { width: 270px; }
.gallery-item:nth-child(8) { width: 300px; }
.gallery-item:nth-child(9) { width: 240px; }

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  filter: grayscale(18%) contrast(1.05);
  transition: all 0.6s ease;
}
.gallery-item:hover img {
  filter: grayscale(0%) contrast(1.1);
  transform: scale(1.06);
}
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(5,5,5,0.45), transparent 60%);
  pointer-events: none;
}

/* ── EDITORIAL QUOTE ── */
.editorial {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.editorial-bg {
  position: absolute; inset: 0;
  background-image: url('images/gallery-7.jpg');
  background-size: cover;
  background-position: center 20%;
  transform: scale(1.1);
}
.editorial-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(5,5,5,0.5) 0%, rgba(5,5,5,0.75) 50%, rgba(5,5,5,0.9) 100%);
}
.editorial-glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 50% 50% at 50% 40%, rgba(201,168,76,0.08), transparent 70%);
}
.editorial-content {
  position: relative; z-index: 2;
  text-align: center; padding: 100px 32px;
  display: flex; flex-direction: column;
  align-items: center;
}
.editorial-line {
  width: 40px; height: 1px;
  background: var(--gold); opacity: 0.6;
  margin-bottom: 32px;
}
.editorial-line-bottom {
  margin-top: 32px; margin-bottom: 24px;
  opacity: 0.4;
}
.editorial-eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 0.55rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
}
.editorial blockquote {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.2;
  max-width: 700px;
}
.editorial-attr {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,250,247,0.4);
}

/* ── BOOKING ── */
.booking {
  background: var(--dark);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: start;
}
.booking-info p {
  font-size: 0.76rem; line-height: 2.3;
  color: rgba(250,250,247,0.52);
  margin-bottom: 44px; letter-spacing: 0.03em;
}
.booking-details { display: flex; flex-direction: column; gap: 18px; }
.detail-row {
  display: flex; align-items: flex-start; gap: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.detail-icon { font-size: 1rem; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.detail-label {
  font-size: 0.5rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold-dim); margin-bottom: 3px;
}
.detail-value {
  font-family: 'Instrument Serif', serif;
  font-size: 0.95rem; color: var(--white);
}
.booking-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label {
  font-size: 0.48rem; letter-spacing: 0.32em;
  text-transform: uppercase; color: rgba(250,250,247,0.35);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.15);
  color: var(--white);
  padding: 13px 16px;
  font-family: 'Geist', sans-serif;
  font-size: 0.7rem; font-weight: 300;
  letter-spacing: 0.04em;
  outline: none; transition: border-color 0.3s ease, background 0.3s ease;
  -webkit-appearance: none; appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dim);
  background: rgba(201,168,76,0.03);
}
.form-group select option { background: var(--dark); }
.form-group textarea { resize: none; height: 115px; line-height: 1.9; }
.form-group.full { grid-column: 1 / -1; }

.form-submit {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 17px 48px;
  font-family: 'Geist', sans-serif;
  font-size: 0.58rem; font-weight: 400;
  letter-spacing: 0.35em; text-transform: uppercase;
  cursor: pointer; align-self: flex-start;
  margin-top: 8px;
  position: relative; overflow: hidden;
  transition: color 0.4s ease;
}
.form-submit:hover { color: var(--black); }
.form-submit .btn-slide {
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 0;
}
.form-submit:hover .btn-slide { transform: translateY(0); }
.form-submit .btn-text { position: relative; z-index: 1; }

/* Form States */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px;
  text-align: center;
}
.success-icon {
  font-size: 3rem;
  color: var(--gold);
}
.form-success h3 {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 1.8rem;
  color: var(--gold-light);
}
.form-success p {
  font-size: 0.78rem;
  line-height: 2;
  color: rgba(250,250,247,0.55);
  max-width: 400px;
}
.form-error {
  color: #e74c3c;
  font-size: 0.7rem;
  margin-top: 8px;
}

/* ── FOOTER ── */
footer {
  background: var(--black); padding: 80px 64px 40px;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.footer-top {
  display: flex; justify-content: space-between;
  align-items: flex-start; margin-bottom: 56px;
}
.footer-brand {
  font-family: 'Instrument Serif', serif;
  font-size: 2.4rem; font-weight: 400;
  color: var(--gold); letter-spacing: 0.1em;
}
.footer-tagline {
  font-family: 'Instrument Serif', serif;
  font-style: italic; font-size: 0.88rem;
  color: rgba(250,250,247,0.28); margin-top: 6px;
}
.footer-links { display: flex; gap: 56px; }
.footer-col h4 {
  font-size: 0.48rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a {
  font-size: 0.63rem; color: rgba(250,250,247,0.38);
  text-decoration: none; letter-spacing: 0.05em;
  transition: color 0.3s ease;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 30px;
  border-top: 1px solid rgba(201,168,76,0.08);
}
.footer-copy {
  font-size: 0.52rem; color: rgba(250,250,247,0.22); letter-spacing: 0.1em;
}
.footer-disclaimer {
  font-size: 0.48rem; color: rgba(250,250,247,0.18);
  letter-spacing: 0.04em; max-width: 400px; text-align: right;
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav { padding: 22px 28px; }
  .nav-links { gap: 28px; }
  section { padding: 80px 28px; }
  .hero-content { padding: 0 28px 60px; }
  .about { grid-template-columns: 1fr; gap: 48px; }
  .about-images { height: 400px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .booking { grid-template-columns: 1fr; gap: 56px; }
  .locations-grid { grid-template-columns: repeat(3,1fr); }
  .footer-top { flex-direction: column; gap: 36px; }
  .footer-links { gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-header, .gallery-scroll { padding: 0 28px; }
  footer { padding: 64px 28px 36px; }
  .gallery-item { height: 400px; }
}

@media (max-width: 640px) {
  nav { padding: 18px 20px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-title { font-size: clamp(3.5rem, 14vw, 5.5rem); }
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2,1fr); }
  .services-header { flex-direction: column; gap: 20px; }
  .gallery-item { height: 320px; }
  .gallery-item:nth-child(n) { width: 260px; }
  .footer-links { flex-direction: column; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .footer-disclaimer { text-align: center; }
  .editorial blockquote { font-size: clamp(1.6rem, 6vw, 2.5rem); }
  .about-stats { gap: 24px; }
  .stat-num { font-size: 2rem; }
}
