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

:root {
  --color-bg: #FDFAF5;
  --color-bg-alt: #F5EFE6;
  --color-beige: #E8DDD0;
  --color-sand: #d0a18e;
  --color-sand-dark: #b8836d;
  --color-text: #4A2E1A;
  --color-text-light: #7A5C42;
  --color-white: #FFFFFF;
  --color-border: #E0D5C8;
  --font-main: 'Arimo', 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.3s ease;
  --radius: 2px;
  --max-width: 1100px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-gutter: stable;
}

html {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  overflow-x: hidden;
  max-width: 100%;
}

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

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

ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 8vw, 5rem); }
h2 { font-size: clamp(1.8rem, 5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.6rem); }

.section-title {
  font-family: var(--font-main);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.section-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-light);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 500;
}

.section-divider {
  width: 40px;
  height: 1px;
  background: var(--color-sand);
  margin: 1.5rem auto 3rem;
}

.section-divider.left {
  margin-left: 0;
}

/* ===== LAYOUT ===== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: max(1.5rem, env(safe-area-inset-left, 0px));
  padding-right: max(1.5rem, env(safe-area-inset-right, 0px));
}

section {
  padding: 6rem 0;
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-switcher {
  display: flex;
  gap: 0.3rem;
  align-items: center;
}

.lang-btn {
  background: none;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--color-text-light);
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  transition: color var(--transition), border-color var(--transition);
}

.lang-btn:hover {
  color: var(--color-sand);
  border-color: var(--color-sand);
}

.lang-btn.active {
  color: var(--color-sand);
  border-color: var(--color-sand);
}

.mobile-lang {
  flex-direction: row;
}

.mobile-lang .lang-btn {
  font-size: 0.9rem;
  padding: 0.5rem 0.8rem;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: calc(1.2rem + env(safe-area-inset-top, 0px)) calc(1.5rem + env(safe-area-inset-right, 0px)) 1.2rem calc(1.5rem + env(safe-area-inset-left, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(253, 250, 245, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
}

.nav-logo {
  font-family: var(--font-main);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--color-text);
}

.nav-logo span,
.footer-brand .nav-logo span {
  color: var(--color-text);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-light);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--color-sand);
}

.nav-book-btn {
  background: var(--color-sand);
  color: var(--color-white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  font-size: 0.75rem !important;
  letter-spacing: 0.15em !important;
  transition: background var(--transition) !important;
}

.nav-book-btn:hover {
  background: var(--color-sand-dark) !important;
  color: var(--color-white) !important;
}

body.menu-open .nav {
  z-index: 400;
  background: rgba(253, 250, 245, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  position: relative;
  z-index: 401;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--color-text);
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  padding-top: calc(5rem + env(safe-area-inset-top, 0px));
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: var(--color-bg-alt);
  z-index: 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-content {
  padding: 2rem 0;
  margin-left: -2rem;
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-sand);
  margin-bottom: 1.5rem;
  text-align: center;
}

.hero-eyebrow::before {
  display: none;
}

.hero-name {
  font-family: var(--font-main);
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.0;
  color: var(--color-text);
  margin-bottom: 1rem;
  overflow: hidden;
}

.hero-name .first-name {
  display: block;
  font-weight: 400;
  opacity: 0;
  transform: translateX(-80px);
  animation: slideInLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
}

.hero-name .last-name {
  display: block;
  font-weight: 700;
  color: var(--color-sand);
  opacity: 0;
  transform: translateX(-120px);
  animation: slideInLeft 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}

@keyframes slideInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-light);
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.hero-location {
  font-size: 0.85rem;
  color: var(--color-text-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 2.5rem;
}

.hero-location svg {
  color: var(--color-sand);
  flex-shrink: 0;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-sand);
  color: var(--color-white);
  padding: 0.9rem 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  border: none;
  cursor: pointer;
  font-family: var(--font-main);
}

.btn-primary:hover {
  background: var(--color-sand-dark);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--color-text);
  padding: 0.9rem 2rem;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition), color var(--transition);
  cursor: pointer;
  font-family: var(--font-main);
}

.btn-secondary:hover {
  border-color: var(--color-sand);
  color: var(--color-sand);
}

.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-photo-frame::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid var(--color-sand);
  opacity: 0.4;
  z-index: 0;
  border-radius: var(--radius);
}

.hero-photo {
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
  filter: brightness(1.02) contrast(0.98);
}

.hero-social {
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  z-index: 2;
}

.hero-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: color var(--transition);
}

.hero-social a:hover {
  color: var(--color-sand);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-light);
  animation: bounce 2s infinite;
}

.hero-scroll svg {
  color: var(--color-sand);
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ===== ABOUT ===== */
.about {
  background: var(--color-bg);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

/* ===== ABOUT SLIDESHOW ===== */

.about-slideshow {
  position: relative;
  width: 100%;
  height: 500px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-alt);
}

.about-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.7s ease;
}

/* Active slide — shown by JS */
.about-slide.is-active {
  opacity: 1;
}

/* Slide backgrounds — alternating light/dark */
.about-slide--1 { background: linear-gradient(145deg, #FDFAF5 0%, #F0E8DC 100%); }
.about-slide--2 { background: linear-gradient(145deg, #3D2010 0%, #4A2E1A 100%); }
.about-slide--3 { background: linear-gradient(145deg, #E8DDD0 0%, #d4c4b0 100%); }
.about-slide--4 { background: linear-gradient(145deg, #4A2E1A 0%, #6B4226 100%); }
.about-slide--5 { background: linear-gradient(145deg, #F5EFE6 0%, #EBE0D4 100%); }
.about-slide--6 { background: linear-gradient(145deg, #c49880 0%, #b8836d 100%); }
.about-slide--7 { background: linear-gradient(145deg, #3D2010 0%, #5C3820 100%); }

/* Large background number */
.about-slide-bg-num {
  position: absolute;
  bottom: -0.15em;
  right: 0.05em;
  font-size: clamp(7rem, 18vw, 11rem);
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.about-slide--1 .about-slide-bg-num,
.about-slide--3 .about-slide-bg-num,
.about-slide--5 .about-slide-bg-num { color: rgba(74, 46, 26, 0.06); }
.about-slide--2 .about-slide-bg-num,
.about-slide--4 .about-slide-bg-num,
.about-slide--7 .about-slide-bg-num { color: rgba(255, 255, 255, 0.06); }
.about-slide--6 .about-slide-bg-num  { color: rgba(255, 255, 255, 0.1); }

/* Content */
.about-slide-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.5rem 2.2rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

.about-slide-tag {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-slide-name {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.2rem;
}

.about-slide-line {
  display: block;
  width: 36px;
  height: 1px;
  margin-bottom: 1rem;
}

.about-slide-desc {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: lowercase;
}

/* Light slides — dark text */
.about-slide--1 .about-slide-tag,
.about-slide--3 .about-slide-tag,
.about-slide--5 .about-slide-tag  { color: var(--color-sand); }
.about-slide--1 .about-slide-name,
.about-slide--3 .about-slide-name,
.about-slide--5 .about-slide-name  { color: var(--color-text); }
.about-slide--1 .about-slide-line,
.about-slide--3 .about-slide-line,
.about-slide--5 .about-slide-line  { background: var(--color-sand); }
.about-slide--1 .about-slide-desc,
.about-slide--3 .about-slide-desc,
.about-slide--5 .about-slide-desc  { color: var(--color-text-light); }

/* Dark slides — light text */
.about-slide--2 .about-slide-tag,
.about-slide--4 .about-slide-tag,
.about-slide--6 .about-slide-tag,
.about-slide--7 .about-slide-tag  { color: var(--color-sand); }
.about-slide--2 .about-slide-name,
.about-slide--4 .about-slide-name,
.about-slide--6 .about-slide-name,
.about-slide--7 .about-slide-name  { color: rgba(255,255,255,0.92); }
.about-slide--2 .about-slide-line,
.about-slide--4 .about-slide-line,
.about-slide--6 .about-slide-line,
.about-slide--7 .about-slide-line  { background: var(--color-sand); opacity: 0.7; }
.about-slide--2 .about-slide-desc,
.about-slide--4 .about-slide-desc,
.about-slide--6 .about-slide-desc,
.about-slide--7 .about-slide-desc  { color: rgba(255,255,255,0.55); }

/* Dots */
.about-slide-dots {
  position: absolute;
  bottom: 1.4rem;
  left: 2.2rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  z-index: 2;
}

.about-slide-dots .dot {
  display: block;
  width: 6px;
  height: 2px;
  border-radius: 1px;
  transform-origin: left center;
  opacity: 0.35;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.about-slide-dots .dot.is-active {
  opacity: 1;
  transform: scaleX(3.5);
}

.dot--1 { background: var(--color-sand); }
.dot--2 { background: rgba(255,255,255,0.5); }
.dot--3 { background: var(--color-sand); }
.dot--4 { background: rgba(255,255,255,0.5); }
.dot--5 { background: var(--color-sand); }
.dot--6 { background: rgba(255,255,255,0.5); }
.dot--7 { background: rgba(255,255,255,0.5); }

.about-content {
  padding: 1rem 0;
}

.about-text {
  color: var(--color-text-light);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-highlight {
  background: var(--color-bg-alt);
  border-left: 3px solid var(--color-sand);
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  font-style: italic;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.about-feature-icon {
  width: 32px;
  height: 32px;
  background: var(--color-bg-alt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-sand);
  font-size: 0.9rem;
}

.about-feature-text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.5;
}

/* ===== PORTFOLIO ===== */
.portfolio {
  background: var(--color-bg-alt);
}

.portfolio-header {
  text-align: center;
  margin-bottom: 3rem;
}

.portfolio-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.portfolio-slider-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.portfolio-slider-viewport:active {
  cursor: grabbing;
}

.portfolio-grid {
  display: flex;
  gap: 1rem;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.portfolio-item {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-width: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(92, 61, 46, 0.4);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-overlay-icon {
  color: white;
  font-size: 1.5rem;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.9);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox img {
  max-width: min(90vw, 900px);
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
  transition: opacity 0.2s ease;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: calc(1.2rem + env(safe-area-inset-top, 0px));
  right: calc(1.2rem + env(safe-area-inset-right, 0px));
  color: rgba(255,255,255,0.8);
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background var(--transition);
  z-index: 2;
}

.lightbox-close:hover { background: rgba(255,255,255,0.2); }

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
  z-index: 2;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev { left: 1.2rem; }
.lightbox-next { right: 1.2rem; }

.lightbox-counter {
  position: absolute;
  bottom: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 600px) {
  .lightbox-nav {
    top: auto;
    bottom: 2.5rem;
    transform: none;
    width: 44px;
    height: 44px;
  }
  .lightbox-prev { left: 1.5rem; }
  .lightbox-next { right: 1.5rem; }
}

/* ===== PRICES ===== */
.prices {
  background: var(--color-bg);
}

.prices-header {
  text-align: center;
}

/* ===== PRICES SLIDER ===== */
.prices-slider-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.prices-slider-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
}

.prices-slider-viewport:active {
  cursor: grabbing;
}

.prices-slider-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.prices-slide {
  flex: 0 0 calc((100% - 2rem) / 3);
  min-width: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  cursor: pointer;
}

.prices-slide img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  background: var(--color-bg-alt);
  transition: transform 0.5s ease;
}

.prices-slide:hover img {
  transform: scale(1.05);
}

.prices-slide-overlay {
  position: absolute;
  inset: 0;
  background: rgba(92, 61, 46, 0.35);
  opacity: 0;
  transition: opacity var(--transition);
}

.prices-slide:hover .prices-slide-overlay {
  opacity: 1;
}

.prices-arrow {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-bg);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), color var(--transition), background var(--transition), opacity var(--transition);
}

.prices-arrow:hover {
  border-color: var(--color-sand);
  color: var(--color-sand);
  background: var(--color-bg-alt);
}

.prices-arrow:disabled,
.prices-arrow[disabled] {
  opacity: 0.25;
  cursor: not-allowed;
  pointer-events: none;
}

.prices-empty {
  text-align: center;
  color: var(--color-text-light);
  padding: 3rem 0;
  font-size: 0.95rem;
  width: 100%;
}

.prices-note {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

.prices-page-info {
  font-size: 0.85rem;
  color: var(--color-text-light);
  min-width: 50px;
  text-align: center;
}

/* ===== CARE ===== */
.care {
  background: var(--color-bg-alt);
}

.care-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 5rem;
  align-items: center;
}

.care-content .section-divider {
  margin-left: 0;
}

.care-text {
  color: var(--color-text-light);
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.care-list {
  margin: 2rem 0;
}

.care-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.95rem;
  color: var(--color-text);
}

.care-list li:last-child {
  border-bottom: none;
}

.care-list-icon {
  color: var(--color-sand);
  flex-shrink: 0;
  margin-top: 2px;
}

.care-visual {
  flex: 1;
}

/* care-visual itself: no transform — slideshow handles entrance */
.care-visual.fade-from-right {
  transform: none !important;
}

/* ===== CARE SLIDESHOW ===== */
/* 5 slides × 5s each = 25s cycle */
@keyframes care-slide-in {
  0%        { opacity: 0; }
  4%        { opacity: 1; }
  16%       { opacity: 1; }
  20%, 100% { opacity: 0; }
}

@keyframes care-dot-active {
  0%        { transform: scaleX(1);   opacity: 0.35; }
  4%        { transform: scaleX(3.5); opacity: 1; }
  16%       { transform: scaleX(3.5); opacity: 1; }
  20%, 100% { transform: scaleX(1);   opacity: 0.35; }
}

.care-slideshow {
  position: relative;
  width: 100%;
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  transform: none !important;
}

.care-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: care-slide-in 25s infinite;
  background: linear-gradient(145deg, #FDFAF5 0%, #F5EFE6 100%);
}

.care-slide--1 { animation-delay: 0s; }
.care-slide--2 { animation-delay: 5s; }
.care-slide--3 { animation-delay: 10s; }
.care-slide--4 { animation-delay: 15s; }
.care-slide--5 { animation-delay: 20s; }

/* Large faded number */
.care-slide-bg-num {
  position: absolute;
  bottom: -0.1em;
  right: 0.05em;
  font-size: clamp(6rem, 15vw, 9rem);
  font-weight: 800;
  line-height: 1;
  color: rgba(74, 46, 26, 0.05);
  pointer-events: none;
  user-select: none;
}

/* Slide body */
.care-slide-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 2.2rem 2rem;
  width: 100%;
  position: relative;
  z-index: 1;
}

/* Icon */
.care-slide-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius);
  background: var(--color-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-sand-dark);
  margin-bottom: 1.2rem;
}

/* Tag */
.care-slide-tag {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-sand);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

/* Title */
.care-slide-title {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin: 0 0 1rem;
}

/* Divider line */
.care-slide-line {
  display: block;
  width: 32px;
  height: 1px;
  background: var(--color-sand);
  opacity: 0.6;
  margin-bottom: 0.9rem;
}

/* Description */
.care-slide-desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  line-height: 1.7;
  max-width: 30ch;
}

/* Dots */
.care-slide-dots {
  position: absolute;
  bottom: 1.2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  z-index: 2;
}

.care-dot {
  display: block;
  width: 6px;
  height: 2px;
  border-radius: 1px;
  background: var(--color-sand);
  transform-origin: left center;
  animation: care-dot-active 25s infinite;
  opacity: 0.35;
}

.care-dot--1 { animation-delay: 0s; }
.care-dot--2 { animation-delay: 5s; }
.care-dot--3 { animation-delay: 10s; }
.care-dot--4 { animation-delay: 15s; }
.care-dot--5 { animation-delay: 20s; }

.care-card-photo {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 0.8rem;
}

/* ===== PORTFOLIO VIDEO ===== */
.portfolio-item-video {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  cursor: default;
  background: #000;
}

.portfolio-item-video iframe,
.portfolio-item-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: none;
  display: block;
}

.portfolio-video-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: rgba(0,0,0,0.55);
  color: white;
  font-size: 0.75rem;
  padding: 0.2rem 0.5rem;
  border-radius: 2px;
  pointer-events: none;
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--color-bg);
}

.reviews-header {
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--color-bg-alt);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  position: relative;
}

.review-quote {
  font-size: 3rem;
  font-family: var(--font-main);
  font-weight: 700;
  color: var(--color-sand);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
}

.review-stars {
  color: var(--color-sand);
  font-size: 0.8rem;
  letter-spacing: 2px;
}

/* ===== HOW TO FIND ===== */
.location {
  background: var(--color-bg-alt);
}

.location-header {
  text-align: center;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.location-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.location-item-icon {
  width: 44px;
  height: 44px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-sand);
}

.location-item-content h4 {
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 0.3rem;
}

.location-item-content p {
  font-size: 0.95rem;
  color: var(--color-text);
  line-height: 1.6;
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.location-map iframe {
  width: 100%;
  height: 350px;
  border: none;
  display: block;
}

.location-photo-hint {
  margin-top: 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.location-photo-hint img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.location-photo-caption {
  background: var(--color-bg);
  padding: 0.8rem 1rem;
  font-size: 0.8rem;
  color: var(--color-text-light);
  text-align: center;
}

/* ===== BOOKING CTA ===== */
.booking-cta {
  background: var(--color-text);
  padding: 5rem 0;
  text-align: center;
}

.booking-cta .section-subtitle {
  color: var(--color-sand);
}

.booking-cta .section-title {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.booking-cta p {
  color: rgba(255,255,255,0.6);
  margin-bottom: 2.5rem;
  font-size: 1rem;
}

.booking-cta .section-divider {
  background: var(--color-sand);
  opacity: 0.5;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-tg {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #229ED9;
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity var(--transition);
}

.btn-cta-tg:hover { opacity: 0.85; }

.btn-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity var(--transition);
}

.btn-cta-wa:hover { opacity: 0.85; }

.btn-cta-ig {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: opacity var(--transition);
}

.btn-cta-ig:hover { opacity: 0.85; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: calc(2rem + env(safe-area-inset-bottom, 0px));
  right: calc(2rem + env(safe-area-inset-right, 0px));
  width: 58px;
  height: 58px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-bg);
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand .nav-logo {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--color-text-light);
  line-height: 1.7;
  max-width: 260px;
}

.footer-col h4 {
  font-family: var(--font-main);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--color-text);
  transition: color var(--transition);
}

.footer-col ul li a:hover {
  color: var(--color-sand);
}

.footer-social {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  transition: border-color var(--transition), color var(--transition);
}

.footer-social a:hover {
  border-color: var(--color-sand);
  color: var(--color-sand);
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.footer-bottom a {
  color: var(--color-sand);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--color-bg);
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu-body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  padding: calc(4.5rem + env(safe-area-inset-top, 0px)) max(1.25rem, env(safe-area-inset-left, 0px)) max(1.25rem, env(safe-area-inset-bottom, 0px)) max(1.25rem, env(safe-area-inset-right, 0px));
}

.mobile-menu-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
  flex: 0 0 auto;
}

.mobile-menu .mobile-link {
  font-family: var(--font-main);
  font-size: clamp(1.05rem, 4.2vw, 1.35rem);
  font-weight: 600;
  color: var(--color-text);
  transition: color var(--transition), background var(--transition), border-color var(--transition);
  text-align: center;
  line-height: 1.3;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  box-sizing: border-box;
  flex-shrink: 0;
}

.mobile-menu .mobile-link:hover,
.mobile-menu .mobile-link:focus-visible {
  color: var(--color-sand);
  background: var(--color-bg-alt);
}

.mobile-menu .mobile-link--cta {
  color: var(--color-sand-dark);
  background: rgba(208, 161, 142, 0.16);
  border-color: rgba(208, 161, 142, 0.42);
  font-weight: 700;
}

.mobile-menu-footer {
  flex-shrink: 0;
  margin-top: 1.5rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--color-border);
}

.mobile-menu-footer .mobile-lang {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}

.mobile-menu-footer .mobile-lang .lang-btn {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 0.85rem;
  min-height: 44px;
  min-width: 3.5rem;
}

/* ===== ANIMATIONS ===== */
.fade-in,
.fade-from-left,
.fade-from-right {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.fade-in {
  transform: translateY(30px);
}

.fade-from-left {
  transform: translateX(-70px);
}

.fade-from-right {
  transform: translateX(70px);
}

.fade-in.visible,
.fade-from-left.visible,
.fade-from-right.visible {
  opacity: 1;
  transform: translate(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-from-left,
  .fade-from-right {
    transition: opacity 0.3s ease;
    transform: none;
  }
  .about-slide,
  .about-slide-dots .dot {
    transition: none;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner {
    gap: 2rem;
  }
  
  .hero-social {
    right: 0;
  }
  
  .about-inner,
  .care-inner {
    gap: 3rem;
  }
  
  .portfolio-item {
    flex: 0 0 calc((100% - 1rem) / 2);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }

  .nav-logo {
    font-size: clamp(1.05rem, 3.8vw, 1.25rem);
    line-height: 1.15;
  }

  .nav-links {
    display: none;
  }
  
  .nav-burger {
    display: flex;
    flex-shrink: 0;
  }

  .lang-switcher:not(.mobile-lang) {
    display: none;
  }
  
  .hero::before {
    display: none;
  }
  
  .hero-content {
    margin-left: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-photo-wrap {
    order: -1;
    max-width: 100%;
  }

  .hero-photo-frame {
    max-width: min(420px, 100%);
    margin: 0 auto;
  }
  
  .hero-photo {
    height: clamp(280px, 58vw, 420px);
    max-height: 70vh;
  }
  
  .hero-photo-frame::before {
    display: none;
  }
  
  .hero-eyebrow {
    text-align: center;
  }
  
  .hero-location {
    justify-content: center;
  }
  
  .hero-actions {
    justify-content: center;
    width: 100%;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    flex: 1 1 calc(50% - 0.5rem);
    min-height: 48px;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-social {
    position: static;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    transform: none;
    margin-top: 1.5rem;
    gap: 0.75rem;
  }

  .hero-social a {
    min-width: 44px;
    min-height: 44px;
  }
  
  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-image-wrap {
    max-width: min(480px, 100%);
    margin: 0 auto;
    order: 2; /* slideshow below text on mobile */
  }

  .about-content {
    order: 1;
  }

  .about-slideshow {
    height: clamp(260px, 80vw, 400px);
    display: block !important;
    visibility: visible !important;
    opacity: 1;
  }

  .about-slide-name {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

  .about-features {
    grid-template-columns: 1fr;
  }
  
  .portfolio-grid {
    gap: 0.65rem;
  }

  .portfolio-item {
    flex: 0 0 calc((100% - 0.65rem) / 2);
  }

  /* Без :hover на таче — подсказка, что карточку можно открыть */
  .portfolio-item:not(.portfolio-item-video) .portfolio-overlay {
    opacity: 1;
    background: linear-gradient(180deg, transparent 40%, rgba(92, 61, 46, 0.55) 100%);
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0.65rem;
  }

  .portfolio-item:not(.portfolio-item-video) .portfolio-overlay-icon {
    font-size: 1.2rem;
  }

  @media (hover: hover) {
    .portfolio-item:not(.portfolio-item-video) .portfolio-overlay {
      opacity: 0;
      background: rgba(92, 61, 46, 0.4);
      align-items: center;
      justify-content: center;
      padding: 0;
    }

    .portfolio-item:not(.portfolio-item-video):hover .portfolio-overlay {
      opacity: 1;
    }
  }
  
  .prices-slide {
    flex: 0 0 100%;
  }

  .prices-arrow {
    width: 38px;
    height: 38px;
  }

  .care-inner {
    grid-template-columns: 1fr;
  }

  .care-content .btn-primary {
    display: flex;
    width: 100%;
    max-width: 22rem;
    justify-content: center;
    box-sizing: border-box;
  }
  
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .location-map iframe {
    height: min(55vw, 280px);
    min-height: 220px;
  }

  .location-photo-hint img {
    height: clamp(160px, 42vw, 200px);
  }
  
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand p {
    max-width: none;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding-bottom: max(0.5rem, env(safe-area-inset-bottom, 0px));
  }
  
  .section-divider {
    margin-left: auto;
    margin-right: auto;
  }

  .whatsapp-float {
    bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
    right: calc(1.25rem + env(safe-area-inset-right, 0px));
    width: 52px;
    height: 52px;
  }
}

@media (max-height: 520px) {
  .hero-scroll {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: calc(4.5rem + env(safe-area-inset-top, 0px));
    padding-bottom: 2rem;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 15px;
  }

  section {
    padding: 3.25rem 0;
  }
  
  .hero-photo {
    height: clamp(240px, 72vw, 340px);
  }

  .hero-actions {
    flex-direction: column;
    max-width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    flex: none;
    width: 100%;
  }
  
  .portfolio-item {
    flex: 0 0 100%;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    padding: 0 0.25rem;
  }

  .btn-cta-tg,
  .btn-cta-wa,
  .btn-cta-ig {
    width: 100%;
    max-width: 22rem;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
    box-sizing: border-box;
    min-height: 48px;
  }

  .booking-cta {
    padding: 3.5rem 0;
    padding-bottom: calc(3.5rem + env(safe-area-inset-bottom, 0px));
  }

  .review-card {
    padding: 1.5rem;
  }

  .review-footer {
    flex-wrap: wrap;
    gap: 0.35rem;
  }
}
