/* ============================================================
   BART COWORKING — STYLES
   Nordic minimalist · No gradients · No shadows · 0.5px borders
   ============================================================ */

/* ---------- VARIABLES ---------- */
:root {
  --white:      #FAF8F4;
  --cream:      #F5F0E8;
  --linen:      #EDE8DE;
  --taupe:      #C4B9A8;
  --stone:      #8E7E6E;
  --carbon:     #2D2926;
  --terracota:  #9B6B4B;

  --border:     0.5px solid var(--taupe);
  --border-dark: 0.5px solid rgba(255,255,255,0.12);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --max-w: 1280px;
  --nav-h: 64px;
}

/* ---------- RESET ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--font-sans);
  background: var(--white);
  color: var(--carbon);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font-sans); }
svg { display: block; }

/* ---------- UTILITY ---------- */
.terracota { color: var(--terracota); }

/* Offset para nav fija al navegar por ancla */
#about,
#espacios,
#galeria,
#ubicacion {
  scroll-margin-top: var(--nav-h);
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 13px 28px;
  border: var(--border);
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn--dark {
  background: var(--carbon);
  color: var(--white);
  border-color: var(--carbon);
}
.btn--dark:hover {
  background: var(--terracota);
  border-color: var(--terracota);
}
.btn--outline {
  background: transparent;
  color: var(--carbon);
  border-color: var(--carbon);
}
.btn--outline:hover {
  background: var(--carbon);
  color: var(--white);
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: var(--border);
}
.nav__inner {
  padding: 0 48px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}
.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 1px;
  flex: 1;
  line-height: 1;
}
.nav__logo-main {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--carbon);
}
.nav__logo-sub {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 300;
  letter-spacing: 0.13em;
  color: var(--stone);
  text-transform: none;
}
.logo-a { color: var(--terracota); }
.nav__links {
  display: flex;
  gap: 36px;
  flex: 0 0 auto;
}
.nav__links a {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  transition: color 0.18s;
}
.nav__links a:hover { color: var(--carbon); }
.nav__right {
  display: flex;
  align-items: center;
  gap: 28px;
  flex: 1;
  justify-content: flex-end;
  margin-left: 0;
}
.lang-selector {
  display: flex;
  align-items: center;
  gap: 6px;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--stone);
  padding: 2px 2px;
  transition: color 0.18s;
  line-height: 1;
}
.lang-btn:hover { color: var(--carbon); }
.lang-btn.active {
  color: var(--carbon);
  border-bottom: 0.5px solid var(--carbon);
  padding-bottom: 1px;
}
.lang-sep {
  color: var(--taupe);
  font-size: 0.7rem;
  user-select: none;
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 0.5px;
  background: var(--carbon);
  transition: transform 0.2s, opacity 0.2s;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }
.nav__mobile {
  display: none;
  background: var(--white);
  border-top: var(--border);
  padding: 28px 48px 32px;
}
.nav__mobile.open { display: block; }
.nav__mobile ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 28px;
}
.nav__mobile ul a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--carbon);
}
.nav__mobile-bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: var(--border);
  padding-top: 24px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  padding: 0 48px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background-color: #F5F0E8;
  overflow: hidden;
}
.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 5.5vw, 5.8rem);
  font-weight: 300;
  line-height: 1.04;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--carbon);
}
.hero__title .terracota {
  font-style: italic;
  font-weight: 300;
}
.hero__logo-display {
  display: flex;
  flex-direction: column;
  gap: 6px;
  line-height: 1;
  margin-bottom: 16px;
}
.hero__logo-display-main {
  font-family: var(--font-serif);
  font-size: clamp(4.5rem, 9vw, 9.5rem);
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--carbon);
}
.hero__logo-display-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.85rem, 1.6vw, 1.35rem);
  font-weight: 300;
  letter-spacing: 0.18em;
  color: var(--stone);
}
.hero__subtitle {
  font-size: 1rem;
  color: var(--stone);
  max-width: 420px;
  margin-bottom: 24px;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero__right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__illustration {
  width: 100%;
  max-width: 500px;
  height: auto;
}
.hero__video-thumb {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: calc(70vh - var(--nav-h));
  max-height: 560px;
  min-height: 280px;
  cursor: pointer;
  overflow: hidden;
}
.hero__video-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}
.hero__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(45, 41, 38, 0.7);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  pointer-events: none;
}
.hero__video-thumb:hover .hero__play-btn {
  background: rgba(45, 41, 38, 0.9);
  transform: translate(-50%, -50%) scale(1.06);
}
.hero__lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.hero__lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.hero__lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  cursor: pointer;
}
.hero__lightbox-content {
  position: relative;
  z-index: 1;
  width: 90vw;
  max-width: 800px;
}
.hero__lightbox-content video {
  width: 100%;
  max-height: 500px;
  display: block;
  object-fit: contain;
}
.hero__lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  line-height: 1;
}

/* ============================================================
   STRIP
   ============================================================ */
.strip {
  background: var(--carbon);
  padding: 18px 0;
}
.hero .strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.strip__inner {
  padding: 0 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 14px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--taupe);
}
.strip__dot {
  color: var(--terracota);
  font-size: 0.8rem;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
}
.about__block {
  display: flex;
  align-items: center;
  padding: 80px 72px;
}
.about__block--cream { background: var(--cream); }
.about__block--linen { background: var(--linen); padding-bottom: 36px; }
.about__content { max-width: 460px; }
.about__title {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 22px;
  color: var(--carbon);
}
.about__text {
  font-size: 0.9375rem;
  color: var(--stone);
  line-height: 1.78;
  margin-bottom: 20px;
}
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 32px;
  border-top: var(--border);
  padding-top: 10px;
}
.stat__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--terracota);
  line-height: 1;
  margin-bottom: 5px;
}
.stat__label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
}
.about__pet {
  font-size: 0.95rem;
  color: var(--terracota);
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
}
.about__multilingual {
  font-size: 0.84rem;
  color: var(--stone);
  font-style: italic;
  border-top: var(--border);
  padding-top: 22px;
  margin-top: 12px;
  line-height: 1.65;
}

/* ============================================================
   SPACES
   ============================================================ */
.spaces {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 0;
  background: #FAF8F4;
}
.spaces__inner {
  padding: 0 48px;
}
.spaces__header {
  margin-bottom: 52px;
}
.spaces__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--carbon);
}
.spaces__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.space-card {
  background: var(--white);
  border: var(--border);
  padding: 44px 36px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}
.space-card--featured {
  border-color: var(--terracota);
  border-width: 1px;
}
.space-card__badge {
  position: absolute;
  top: 0;
  right: 24px;
  background: var(--terracota);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  padding: 5px 14px;
}
.space-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
}
.space-card__name {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--carbon);
}
.space-card__price {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--terracota);
  letter-spacing: -0.01em;
}
.space-card__price-list {
  list-style: none;
  padding: 0;
  margin: -4px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.space-card__price-list li {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--carbon);
  opacity: 0.65;
}
.space-card__desc {
  font-size: 0.875rem;
  color: var(--carbon);
  opacity: 0.7;
  line-height: 1.68;
}
.space-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0;
  background: #EDE8DE;
}
.gallery__inner {
  padding: 0 48px;
}
.gallery__header {
  margin-bottom: 44px;
}
.gallery__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--carbon);
}
.gallery__carousel {
  position: relative;
}
.gallery__viewport {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  height: 500px;
  margin: 0 auto;
  background: transparent;
}
.gallery__track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.42s ease;
  will-change: transform;
}
.gallery__slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F5F0E8;
}
.gallery__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(250, 248, 244, 0.72);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  min-width: 40px;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.9;
  transition: opacity 0.18s, background 0.18s;
  z-index: 10;
}
.gallery__arrow:hover { opacity: 1; }
.gallery__arrow--prev { left: 4px; }
.gallery__arrow--next { right: 4px; }
.gallery__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
}
.gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #C4B9A8;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.gallery__dot--active {
  background: #9B6B4B;
  transform: scale(1.3);
}

/* ============================================================
   PET FRIENDLY
   ============================================================ */
.pet {
  background: #F5F0E8;
  padding: 88px 48px;
  border-top: var(--border);
  border-bottom: var(--border);
}
.pet__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 56px;
}
.pet__icon {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
}
.pet__text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  font-weight: 400;
  color: var(--carbon);
  margin-bottom: 14px;
}
.pet__text p {
  font-size: 0.9375rem;
  color: var(--stone);
  max-width: 560px;
  line-height: 1.78;
}

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 64px 48px;
  background: var(--carbon);
}
.testimonial__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.testimonial__quote-mark {
  font-family: var(--font-serif);
  font-size: 7rem;
  line-height: 0.6;
  color: var(--terracota);
  margin-bottom: 32px;
  display: block;
}
.testimonial__text {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-style: italic;
  font-weight: 300;
  color: var(--white);
  line-height: 1.52;
  margin-bottom: 36px;
}
.testimonial__author {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
}
.testimonial__amenities-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 2rem;
}
.testimonial__amenities-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 2.4;
}
.testimonial__notice {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  color: var(--taupe);
}

/* ============================================================
   LOCATION
   ============================================================ */
.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: calc(100vh - var(--nav-h));
}
.location__info {
  padding: 72px 72px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
  border-right: var(--border);
}
.location__info h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  color: var(--carbon);
  margin-bottom: 4px;
}
.location__detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--stone);
  line-height: 1.6;
}
.location__detail svg {
  flex-shrink: 0;
  margin-top: 1px;
}
.location__contact-link {
  color: var(--stone);
  transition: color 0.18s;
}
.location__contact-link:hover { color: var(--terracota); }
.location__map {
  overflow: hidden;
}
.location__map iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--carbon);
  padding: 72px 48px 0;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: var(--border-dark);
}
.footer__logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
  margin-bottom: 16px;
}
.footer__logo-main {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--white);
}
.footer__logo-sub {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 300;
  letter-spacing: 0.13em;
  color: var(--stone);
}
.footer__tagline {
  font-size: 0.84rem;
  color: var(--stone);
  line-height: 1.65;
  max-width: 300px;
}
.footer__col h4 {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 20px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__col ul a {
  font-size: 0.875rem;
  color: var(--stone);
  transition: color 0.18s;
}
.footer__col ul a:hover { color: var(--white); }
.footer__col p {
  font-size: 0.875rem;
  color: var(--stone);
  line-height: 1.68;
}
.footer__address {
  margin-top: 14px;
  font-size: 0.84rem !important;
  opacity: 0.7;
}
.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 22px 0;
  font-size: 0.68rem;
  color: var(--stone);
  letter-spacing: 0.06em;
  opacity: 0.7;
}

/* ============================================================
   RESERVE VIEW
   ============================================================ */
.reserve-view {
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  z-index: 150;
  background: var(--white);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}
.reserve-view.active {
  visibility: visible;
  opacity: 1;
}
.reserve-view__inner {
  max-width: 620px;
  margin: 0 auto;
  padding: 52px 48px 88px;
}
.reserve-view__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 0;
  margin-bottom: 56px;
  transition: color 0.18s;
}
.reserve-view__back:hover { color: var(--carbon); }
.reserve-view__header { margin-bottom: 48px; }
.reserve-view__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 300;
  color: var(--carbon);
  margin-bottom: 14px;
  line-height: 1.1;
}
.reserve-view__subtitle {
  font-size: 0.9375rem;
  color: var(--stone);
  line-height: 1.72;
}
.reserve-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.reserve-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.reserve-form__field {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.reserve-form__field label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--stone);
}
.reserve-form__optional {
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--taupe);
}
.reserve-form__field input,
.reserve-form__field textarea,
.reserve-form__field select {
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--carbon);
  background: var(--white);
  border: var(--border);
  padding: 13px 16px;
  outline: none;
  transition: border-color 0.18s;
  width: 100%;
  -webkit-appearance: none;
  border-radius: 0;
  appearance: none;
}
.reserve-form__field input:focus,
.reserve-form__field textarea:focus,
.reserve-form__field select:focus { border-color: var(--carbon); }
.reserve-form__field select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238E7E6E' stroke-width='0.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.reserve-form__availability {
  font-size: 0.72rem;
  color: var(--stone);
  letter-spacing: 0.05em;
  margin-top: -4px;
}
.reserve-form__field input::placeholder,
.reserve-form__field textarea::placeholder { color: var(--taupe); }
.reserve-form__field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.reserve-form__field input[type="date"] {
  background: var(--cream);
  color: var(--carbon);
  color-scheme: light;
}
.reserve-form__field input[type="date"]:focus {
  border-color: var(--terracota);
}
.reserve-form__field input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0.5;
  cursor: pointer;
  filter: sepia(0.6) hue-rotate(320deg) saturate(1.5);
}
::-webkit-datetime-edit { color: var(--carbon); }
::-webkit-datetime-edit-text { color: var(--stone); padding: 0 2px; }
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-year-field { color: var(--carbon); }
::-webkit-datetime-edit-month-field:focus,
::-webkit-datetime-edit-day-field:focus,
::-webkit-datetime-edit-year-field:focus {
  background: var(--terracota);
  color: var(--white);
  border-radius: 0;
  outline: none;
}
.reserve-form__error {
  font-size: 0.84rem;
  color: var(--terracota);
  border: 0.5px solid var(--terracota);
  padding: 12px 16px;
}
.reserve-form__submit { margin-top: 8px; }
.reserve-view__success {
  text-align: center;
  padding: 48px 0 24px;
}
.reserve-success__icon {
  width: 52px;
  height: 52px;
  border: 0.5px solid var(--terracota);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--terracota);
  line-height: 1;
}
.reserve-view__success h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: var(--carbon);
  margin-bottom: 16px;
}
.reserve-view__success p {
  font-size: 0.9375rem;
  color: var(--stone);
  line-height: 1.72;
  max-width: 380px;
  margin: 0 auto 36px;
}

/* ============================================================
   RESPONSIVE — TABLET (≤1100px)
   ============================================================ */
@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    padding: calc(var(--nav-h) + 32px) 48px 48px;
    gap: 32px;
  }
  .hero__right { order: -1; }
  .hero__illustration, .hero__video-thumb { max-width: 380px; margin: 0 auto; }
  .hero__video-thumb { height: 360px; max-height: none; }
  .hero__subtitle { max-width: 100%; }

  .about { grid-template-columns: 1fr; }
  .about__block { padding: 64px 48px; display: flex; align-items: center; }
  .about__content { max-width: 100%; }

  .spaces__grid { grid-template-columns: 1fr 1fr; }
  .spaces__grid .space-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
    width: 100%;
  }

  .location { grid-template-columns: 1fr; height: auto; }
  .location__info { border-right: none; border-bottom: var(--border); padding: 64px 48px; }
  .location__map { height: 450px; }

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 58px; }

  .nav__inner { padding: 0 24px; }
  .nav__links  { display: none; }
  .nav__right  { display: none; }
  .nav__hamburger { display: flex; }
  .nav__mobile { padding: 24px 24px 28px; }

  .strip__inner { padding: 0 24px; gap: 6px 10px; }

  /* Hero */
  .hero { grid-template-columns: 1fr; height: auto; min-height: calc(100vh - var(--nav-h)); padding: 32px 24px 0; gap: 24px; }
  .hero__right { order: -1; }
  .hero__video-thumb { height: 220px; max-width: 100%; }
  .hero__logo-display-main { font-size: clamp(3rem, 12vw, 5rem); }

  /* About */
  .about { grid-template-columns: 1fr; min-height: auto; }
  .about__block { padding: 52px 24px; display: flex; align-items: flex-start; }
  .about__stats { grid-template-columns: 1fr 1fr; }

  /* Spaces */
  .spaces { min-height: auto; padding: 64px 0; }
  .spaces__inner { padding: 0 24px; }
  .spaces__grid { grid-template-columns: 1fr; gap: 16px; }
  .spaces__grid .space-card:last-child { grid-column: auto; max-width: 100%; }

  /* Gallery */
  .gallery { min-height: auto; padding: 52px 0; }
  .gallery__inner { padding: 0 24px; }
  .gallery__viewport { height: 260px; }

  /* Pet */
  .pet { padding: 52px 24px; }
  .pet__inner { flex-direction: column; gap: 20px; text-align: center; }

  /* Testimonial */
  .testimonial { min-height: auto; padding: 52px 24px; }

  /* Location */
  .location { grid-template-columns: 1fr; height: auto; }
  .location__info { padding: 52px 24px; border-right: none; border-bottom: var(--border); }
  .location__map { height: 320px; }

  /* Footer */
  .footer { padding: 52px 24px 0; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }

  /* Reserve form */
  .reserve-view__inner { padding: 36px 24px 64px; }
  .reserve-form__row { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤400px)
   ============================================================ */
@media (max-width: 400px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .strip__inner { flex-direction: column; gap: 8px; }
  .strip__dot { display: none; }
}
