:root {
  --cream: #FDF8F1;
  --cream-alt: #FBF0E4;
  --white: #FFFFFF;
  --blush: #F6D9CE;
  --blush-soft: #FBE8E0;
  --rose: #E0788A;
  --rose-dark: #C85D71;
  --rose-deep: #B04D62;
  --sage: #A7C0A0;
  --sage-dark: #7F9C77;
  --sage-soft: #E3ECDD;
  --charcoal: #362F2A;
  --muted: #7A7168;
  --border: rgba(54, 47, 42, 0.1);
  --radius: 26px;
  --max: 1160px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
[hidden] { display: none !important; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, .brand-name, .plan-badge, .step-num {
  font-family: 'Fredoka', 'Nunito', sans-serif;
}

img { max-width: 100%; display: block; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

a { color: inherit; text-decoration: none; }

/* Decorative blobs */
.blob {
  position: absolute;
  z-index: 0;
  border-radius: 60% 40% 55% 45% / 50% 55% 45% 50%;
  filter: blur(2px);
  pointer-events: none;
}
.blob-hero-1 { width: 420px; height: 420px; background: var(--blush); top: -80px; right: -100px; opacity: 0.7; }
.blob-hero-2 { width: 260px; height: 260px; background: var(--sage-soft); bottom: -60px; left: -80px; opacity: 0.8; border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%; }
.blob-about { width: 110%; height: 110%; background: var(--sage-soft); top: -5%; left: -8%; z-index: 0; border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%; }
.blob-insta { width: 480px; height: 480px; background: var(--blush-soft); top: -120px; right: -140px; opacity: 0.8; }

/* Top utility bar */
.topbar {
  background: var(--rose-deep);
  color: #fff;
  font-size: 0.82rem;
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 9px 16px;
  flex-wrap: wrap;
  text-align: center;
}
.topbar a { opacity: 0.92; }
.topbar a:hover { opacity: 1; text-decoration: underline; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 248, 241, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 10px 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.brand-logo { height: 52px; width: auto; }
.brand-name {
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  color: var(--rose-deep);
}
.main-nav {
  display: flex;
  gap: 19px;
}
.main-nav a {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--charcoal);
  transition: color 0.2s;
  white-space: nowrap;
}
.main-nav a:hover { color: var(--rose-dark); }

.nav-cta { white-space: nowrap; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--muted);
}
.lang-switch.mobile-only { display: none; }
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
  font-family: inherit;
}
.lang-btn.active { color: var(--rose-deep); background: var(--blush-soft); }
.lang-btn:hover { color: var(--rose-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  display: block;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 10px 24px rgba(224, 120, 138, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--rose-dark); box-shadow: 0 14px 28px rgba(224, 120, 138, 0.45); }
.btn-ghost {
  background: var(--white);
  border-color: var(--border);
  color: var(--charcoal);
}
.btn-ghost:hover { border-color: var(--rose); color: var(--rose-dark); }
.btn-outline {
  background: transparent;
  border-color: var(--rose);
  color: var(--rose-dark);
  display: block;
  text-align: center;
  margin-top: 22px;
}
.btn-outline:hover { background: var(--rose); color: #fff; }

/* Hero */
.hero {
  position: relative;
  padding: 64px 0 70px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  z-index: 1;
}
.eyebrow {
  color: var(--rose-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 800;
  font-size: 0.8rem;
  margin: 0 0 12px;
}
.eyebrow.center, h2.center, .section-sub.center { text-align: center; }
h1 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.14;
  margin: 0 0 18px;
  color: var(--charcoal);
  font-weight: 600;
}
.hero-sub {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 52ch;
  margin: 0 0 30px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 32px;
  box-shadow: 0 6px 16px rgba(54, 47, 42, 0.06);
  transition: transform 0.15s ease, border-color 0.15s ease;
}
.hero-rating:hover { transform: translateY(-2px); border-color: var(--rose); }
.stars { color: #E8A93A; letter-spacing: 1px; }
.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.trust-item { display: flex; flex-direction: column; }
.trust-item strong { font-size: 1.05rem; color: var(--rose-deep); }
.trust-item span { font-size: 0.82rem; color: var(--muted); }

.hero-media { position: relative; z-index: 1; }
.hero-img-wrap {
  border-radius: 44px;
  overflow: hidden;
  border: 6px solid var(--white);
  box-shadow: 0 30px 60px rgba(54, 47, 42, 0.16);
}
.hero-img-main {
  width: 100%;
  height: auto;
  aspect-ratio: 4/4.2;
  object-fit: cover;
}
.hero-img-float-wrap {
  position: absolute;
  bottom: -34px;
  left: -46px;
  width: 52%;
  border-radius: 20px;
  overflow: hidden;
  border: 5px solid var(--white);
  box-shadow: 0 20px 40px rgba(54, 47, 42, 0.18);
}
.hero-img-float { width: 100%; height: auto; aspect-ratio: 4/3; object-fit: cover; }

/* Strip */
.strip { background: var(--sage-soft); padding: 18px 0; }
.strip-inner {
  display: flex;
  justify-content: center;
  gap: 36px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: var(--charcoal);
  font-weight: 700;
}

/* Sections */
.section { padding: 92px 0; position: relative; }
.section.alt { background: var(--cream-alt); }
h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin: 0 0 14px; color: var(--charcoal); font-weight: 600; }
.section-sub {
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto 48px;
}
.section-sub-left { color: var(--muted); max-width: 52ch; margin: 0 0 28px; }
.section > .container > h2.center { max-width: 46ch; margin-left: auto; margin-right: auto; }

/* Plans */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  align-items: start;
}
.plan-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 38px;
  position: relative;
  box-shadow: 0 16px 40px rgba(54, 47, 42, 0.06);
}
.plan-card.featured {
  border-color: var(--rose);
  background: linear-gradient(165deg, var(--blush-soft), var(--white) 55%);
}
.plan-badge {
  position: absolute;
  top: -14px;
  right: 28px;
  background: var(--rose);
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 6px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.plan-card h3 { font-size: 1.55rem; margin: 0 0 8px; color: var(--rose-deep); }
.plan-desc { color: var(--muted); margin: 0 0 22px; min-height: 44px; }
.plan-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 11px;
}
.plan-list li {
  padding-left: 28px;
  position: relative;
  font-size: 0.95rem;
}
.plan-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--sage-dark);
  font-weight: 700;
}
.plan-prices {
  border-top: 1px dashed var(--border);
  padding-top: 18px;
  display: grid;
  gap: 10px;
}
.price-row { display: flex; justify-content: space-between; font-size: 0.95rem; }
.price-row strong { color: var(--rose-deep); }
.price-row.muted span, .price-row.muted strong { color: var(--muted); font-weight: 600; }
.plans-note {
  text-align: center;
  color: var(--muted);
  margin-top: 36px;
  font-size: 0.95rem;
}

.transport-card {
  border-color: var(--sage-dark);
  background: linear-gradient(165deg, var(--sage-soft), var(--white) 55%);
  display: flex;
  flex-direction: column;
}
.transport-badge { background: var(--sage-dark); }
.transport-card h3 { color: var(--sage-dark); }
.transport-note { color: var(--muted); font-size: 0.85rem; margin: 0 0 24px; }
.transport-card .btn { margin-top: auto; }
.transport-card .btn-outline { border-color: var(--sage-dark); color: var(--sage-dark); }
.transport-card .btn-outline:hover { background: var(--sage-dark); color: #fff; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 52px;
}
.step { padding: 0 4px; }
.step-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blush);
  -webkit-text-stroke: 1.5px var(--rose);
  margin-bottom: 12px;
}
.step h3 { margin: 0 0 10px; font-size: 1.12rem; color: var(--charcoal); }
.step p { color: var(--muted); margin: 0; font-size: 0.93rem; }

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; padding: 20px; }
.about-media img {
  position: relative;
  z-index: 1;
  border-radius: 44px;
  border: 6px solid var(--white);
  box-shadow: 0 30px 60px rgba(54, 47, 42, 0.14);
  width: 100%;
  height: auto;
  aspect-ratio: 4/4.4;
  object-fit: cover;
}
.about-copy p { color: var(--muted); }
.about-copy h2 { color: var(--charcoal); }
.signature {
  color: var(--rose-deep) !important;
  font-weight: 700;
  margin-top: 24px;
}

/* Gallery filters */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 36px 0 8px;
}
.filter-btn {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 9px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.filter-btn:hover { border-color: var(--rose); color: var(--rose-dark); }
.filter-btn.active { background: var(--rose); border-color: var(--rose); color: #fff; }

/* Masonry gallery — CSS columns preserve each photo's natural aspect ratio */
.masonry {
  margin-top: 32px;
  column-count: 4;
  column-gap: 18px;
}
.g-item {
  margin: 0 0 18px;
  break-inside: avoid;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: zoom-in;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.g-item:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(54,47,42,0.12); }
.g-item img {
  width: 100%;
  height: auto;
  display: block;
}
.g-item[hidden] { display: none; }
.beforeafter-item { position: relative; }
.beforeafter-item::after {
  content: "Before → After";
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(54,47,42,0.75);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 11px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(24, 20, 18, 0.92);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-close { top: 20px; right: 20px; width: 44px; height: 44px; font-size: 1.6rem; line-height: 1; }
.lightbox-prev, .lightbox-next { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 2rem; }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* Instagram */
.instagram { background: var(--sage-soft); overflow: hidden; }
.instagram-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  z-index: 1;
}
.instagram-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.instagram-photos img:nth-child(2) { margin-top: 28px; }
.instagram-photos img:nth-child(3) { margin-top: -14px; }
.instagram-photos img {
  border-radius: 20px;
  aspect-ratio: 3/4;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: 0 14px 30px rgba(54, 47, 42, 0.12);
}
.insta-handle { font-weight: 700; color: var(--rose-deep); font-size: 1.1rem; margin: 0 0 22px; }

/* Contact */
.contact { position: relative; }
.contact-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}
.contact-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 34px;
}
.contact-list div { display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px dashed var(--border); padding-bottom: 10px; max-width: 460px; }
.contact-list dt { color: var(--muted); font-weight: 600; }
.contact-list dd { margin: 0; font-weight: 700; }
.contact-list a:hover { color: var(--rose-dark); }
.contact-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.contact-badge {
  background: linear-gradient(160deg, var(--blush-soft), var(--white));
  border-radius: var(--radius);
  padding: 42px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(54, 47, 42, 0.1);
}
.contact-badge img { width: 88px; margin: 0 auto 18px; }
.contact-badge .rating { font-size: 1.5rem; font-weight: 700; color: var(--charcoal); margin: 0 0 4px; }
.contact-badge .rating .stars { font-size: 1.2rem; margin-left: 4px; }
.contact-badge .rating-sub { font-size: 0.88rem; color: var(--muted); font-weight: 600; margin: 0 0 14px; }
.link-google { display: inline-block; font-weight: 700; color: var(--rose-deep); margin-bottom: 20px; }
.link-google:hover { text-decoration: underline; }
.contact-badge .tag { font-weight: 700; margin: 0; color: var(--charcoal); }

/* Footer */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 56px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 0.92rem; color: var(--muted); }
.footer-col a { color: var(--muted); }
.footer-col a:hover { color: var(--rose-dark); }
.footer-heading { font-weight: 700; color: var(--charcoal); margin: 0 0 4px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--charcoal); font-size: 1.05rem; }
.footer-brand img { height: 38px; }
.footer-brand-col p { margin: 0; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
}

/* WhatsApp FAB */
.whatsapp-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  z-index: 60;
  transition: transform 0.2s;
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* FAQ */
.faq-list { max-width: 760px; margin: 40px auto 0; }
.faq-cat {
  color: var(--rose-deep);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin: 36px 0 14px;
}
.faq-cat:first-child { margin-top: 0; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 10px;
  overflow: hidden;
}
.faq-item summary {
  padding: 16px 20px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--rose);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--rose-dark); }
.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 0.95rem;
}
.faq-item:focus-within { outline: 2px solid var(--rose); outline-offset: 2px; }

/* Booking */
.booking-form {
  max-width: 640px;
  margin: 40px auto 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: 0 16px 40px rgba(54, 47, 42, 0.06);
}
.booking-progress { margin-bottom: 28px; }
.booking-step-label { font-size: 0.85rem; font-weight: 700; color: var(--muted); }
.booking-progress-bar {
  margin-top: 10px;
  height: 6px;
  border-radius: 999px;
  background: var(--cream-alt);
  overflow: hidden;
}
.booking-progress-fill {
  height: 100%;
  width: 20%;
  background: var(--rose);
  border-radius: 999px;
  transition: width 0.3s ease;
}
.booking-panel { display: none; border: none; padding: 0; margin: 0; }
.booking-panel.active { display: block; }
.booking-panel legend {
  font-family: 'Fredoka', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: 0;
  margin-bottom: 20px;
}
.service-options { display: grid; gap: 12px; }
.service-option {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 700;
  transition: border-color 0.15s, background 0.15s;
}
.service-option:has(input:checked) { border-color: var(--rose); background: var(--blush-soft); }
.service-option input { width: 18px; height: 18px; accent-color: var(--rose); }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field-wide { grid-column: 1 / -1; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.85rem; font-weight: 700; color: var(--charcoal); }
.form-field input, .form-field select, .form-field textarea {
  font-family: inherit;
  font-size: 0.95rem;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--cream);
  color: var(--charcoal);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--rose);
  background: var(--white);
}
.form-field input:invalid.touched, .form-field select:invalid.touched { border-color: var(--rose-deep); }
.field-error {
  font-size: 0.78rem;
  color: var(--rose-deep);
  font-weight: 700;
  display: none;
}
.field-error.show { display: block; }
.booking-review { display: grid; gap: 14px; margin: 0 0 20px; }
.booking-review div { display: flex; justify-content: space-between; gap: 16px; border-bottom: 1px dashed var(--border); padding-bottom: 10px; }
.booking-review dt { color: var(--muted); font-weight: 600; }
.booking-review dd { margin: 0; font-weight: 700; text-align: right; }
.booking-disclaimer { color: var(--muted); font-size: 0.85rem; text-align: center; }
.booking-actions { display: flex; justify-content: space-between; gap: 14px; margin-top: 28px; }
.booking-actions .btn { flex: 1; text-align: center; }
#btn-back { flex: 0 0 auto; }

/* Mobile sticky CTA bar */
.mobile-cta-bar { display: none; }

.desktop-only { display: flex; }
.mobile-only { display: none; }

/* Responsive */
@media (max-width: 1280px) {
  .main-nav { gap: 14px; }
  .main-nav a { font-size: 0.86rem; }
}

@media (max-width: 1100px) {
  .header-inner { gap: 10px; }
  .main-nav { gap: 11px; }
  .main-nav a { font-size: 0.82rem; }
  .nav-cta { padding: 13px 18px; font-size: 0.88rem; }
}

@media (max-width: 980px) {
  .hero-inner, .about-inner, .contact-inner, .instagram-inner { grid-template-columns: 1fr; }
  .about-media { order: -1; max-width: 420px; margin: 0 auto; }
  .instagram-photos { order: -1; max-width: 420px; margin: 0 auto; }
  .plans { grid-template-columns: 1fr; }
  .plans > .plan-card { max-width: 480px; margin: 0 auto; width: 100%; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .masonry { column-count: 3; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .main-nav { display: flex; position: fixed; top: 68px; left: 0; right: 0; background: var(--cream); border-bottom: 1px solid var(--border); flex-direction: column; padding: 20px 24px; gap: 18px; transform: translateY(-150%); opacity: 0; transition: 0.25s; box-shadow: 0 16px 30px rgba(54,47,42,0.08); z-index: 40; }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .main-nav a { font-size: 1rem; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .desktop-only.lang-switch { display: none; }
  .lang-switch.mobile-only { display: flex; padding-top: 8px; border-top: 1px solid var(--border); margin-top: 6px; }
  .header-inner { padding: 10px 20px; }
}

@media (max-width: 720px) {
  .topbar { display: none; }
  .brand-name { display: none; }
  .section { padding: 56px 0; }
  .hero { padding: 40px 0 56px; }
  .hero-img-float-wrap { width: 48%; left: -20px; bottom: -24px; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .masonry { column-count: 2; column-gap: 12px; }
  .g-item { margin-bottom: 12px; }
  .gallery-filters { gap: 8px; }
  .filter-btn { padding: 8px 14px; font-size: 0.8rem; }
  .instagram-photos { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .contact-list div { flex-direction: column; gap: 4px; }
  .footer-inner { grid-template-columns: 1fr; text-align: left; }
  .blob-hero-1, .blob-hero-2, .blob-insta { display: none; }
  .booking-form { padding: 24px 18px; }
  .booking-actions { flex-wrap: wrap; }
  .lightbox { padding: 16px; }
  .lightbox-prev, .lightbox-next { width: 44px; height: 44px; font-size: 1.6rem; }

  body { padding-bottom: 68px; }
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 55;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 24px rgba(54,47,42,0.1);
  }
  .mobile-cta-book {
    flex: 1;
    text-align: center;
    padding: 16px;
    background: var(--rose);
    color: #fff;
    font-weight: 700;
    font-size: 0.95rem;
  }
  .mobile-cta-whatsapp {
    width: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: #fff;
  }
  .whatsapp-fab { display: none; }
}
