/* ─── Nav ────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(245, 240, 230, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(220, 216, 203, 0.4);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: var(--container-max);
  margin: 0 auto;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav__logo { width: 40px; height: 40px; border-radius: 4px; object-fit: contain; }
.nav__name {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}
.nav__right { display: flex; align-items: center; gap: 12px; }
.nav__menu { display: none; gap: 28px; }
.nav__menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
  transition: color 0.2s var(--ease-out);
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--accent-terracotta);
  transition: width 0.25s var(--ease-out);
}
.nav__menu a:hover { color: var(--accent-terracotta); }
.nav__menu a:hover::after { width: 100%; }
.nav__hamburger {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: var(--text-dark);
  font-size: 22px;
}
@media (min-width: 900px) {
  .nav__inner { padding: 16px 80px; }
  .nav__menu { display: flex; }
  .nav__hamburger { display: none; }
  .nav__logo { width: 48px; height: 48px; }
}

/* ─── Mobile drawer ──────────────────────────────────── */
.drawer {
  position: fixed;
  inset: 0;
  background: var(--bg-navy);
  color: var(--text-light);
  padding: 24px;
  z-index: 60;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.drawer.is-open { transform: none; }
.drawer__close { align-self: flex-end; font-size: 28px; color: var(--text-light); padding: 8px; }
.drawer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}
.drawer__list a {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-light);
}
.drawer__lang {
  margin-top: auto;
  display: flex;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(245, 240, 230, 0.18);
}
.drawer__lang button {
  color: var(--text-light);
  font-size: 14px;
  padding: 4px 8px;
  opacity: 0.7;
  transition: opacity 0.2s var(--ease-out);
}
.drawer__lang button.is-active { opacity: 1; color: var(--accent-terracotta-light); font-weight: 600; }

/* ─── Hero ───────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  color: var(--text-white);
  padding: 0 24px 48px 20px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/hero.png");
  background-size: cover;
  background-position: center;
  will-change: transform;
  transform: scale(1.02);
}
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(14, 58, 105, 0) 0%, rgba(14, 58, 105, 0.7) 45%, rgba(14, 58, 105, 0.96) 80%, var(--bg-navy) 100%);
  opacity: 0.9;
}
.hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 8vw, 56px);
  line-height: 1.1;
  font-weight: 500;
  color: var(--text-white);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.32);
  max-width: 12ch;
}
.hero__desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-light);
  max-width: 50ch;
}
.hero__ctas { display: flex; flex-direction: column; gap: 12px; }

@media (min-width: 900px) {
  .hero {
    min-height: 700px;
    padding: 0 80px;
    align-items: center;
  }
  .hero__bg { background-position: center right; }
  .hero__overlay {
    background: linear-gradient(90deg, rgba(14, 58, 105, 0.96) 0%, rgba(14, 58, 105, 0.85) 33%, rgba(14, 58, 105, 0) 100%);
  }
  .hero__content { max-width: 620px; gap: 40px; }
  .hero__title { font-size: clamp(48px, 5.5vw, 64px); max-width: 14ch; }
  .hero__desc { font-size: 18px; max-width: 56ch; }
  .hero__ctas { flex-direction: row; gap: 16px; }
}

/* ─── Trust section ──────────────────────────────────── */
.trust-section { background: var(--bg-sand); padding: 48px 20px; }
.trust-grid { display: flex; flex-direction: column; gap: 24px; max-width: var(--container-max); margin: 0 auto; }
@media (min-width: 900px) {
  .trust-section { padding: 64px 80px; }
  .trust-grid { flex-direction: row; gap: 24px; }
  .trust-card { flex: 1; }
}

/* ─── How section ────────────────────────────────────── */
.how-section {
  background: var(--bg-cream);
  padding: 48px 20px;
}
.how-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.how-steps { display: flex; flex-direction: column; gap: 24px; }
.how-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
}
.how-img--mobile { background-image: url("../img/how-mobile.png"); aspect-ratio: 4 / 3; }
@media (min-width: 900px) {
  .how-section { padding: 100px 80px; }
  .how-inner { flex-direction: row; gap: 64px; align-items: stretch; }
  .how-inner > * { flex: 1; }
  .how-text { display: flex; flex-direction: column; gap: 48px; }
  .how-imgs { display: grid; grid-template-rows: 1fr 200px; gap: 24px; }
  .how-img-1 { background-image: url("../img/how-1.png"); border-radius: var(--radius-sm); background-size: cover; background-position: center; }
  .how-img-2 { background-image: url("../img/how-2.png"); border-radius: var(--radius-sm); background-size: cover; background-position: center; }
}

/* ─── Trad (story) section ───────────────────────────── */
.trad-section { background: var(--bg-navy); color: var(--text-light); overflow: hidden; }
.trad-img {
  width: 100%;
  height: 280px;
  background-image: url("../img/trad-mobile.png");
  background-size: cover;
  background-position: center;
}
.trad-content {
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.trad-body { font-size: 16px; line-height: 1.75; color: var(--text-light); white-space: pre-line; }
@media (min-width: 900px) {
  .trad-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 686px;
  }
  .trad-img {
    height: 100%;
    background-image: url("../img/trad-desktop.png");
  }
  .trad-content { padding: 80px; justify-content: center; gap: 32px; }
}

/* ─── Book inline (landing mini form) ────────────────── */
.book-section { background: var(--bg-cream); padding: 48px 20px; }
.book-inner {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: stretch;
}
.book-form {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.book-form__row { display: flex; gap: 12px; }
.book-form__row > * { flex: 1; }
.book-note {
  font-size: 12px;
  line-height: 1.5;
  color: var(--text-secondary);
}
@media (min-width: 900px) {
  .book-section { padding: 100px 80px; }
  .book-inner {
    max-width: var(--container-max);
    flex-direction: row;
    gap: 64px;
    align-items: stretch;
  }
  .book-inner > * { flex: 1; }
  .book-img {
    background-image: url("../img/reservation-side.png");
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-sm);
    min-height: 500px;
  }
  .book-form { padding: 32px 28px; }
}

/* ─── Gallery ────────────────────────────────────────── */
.gallery-section { background: var(--bg-sand); padding: 48px 20px; }
.gallery-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.gallery-grid__tile {
  aspect-ratio: 1;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
  transition: transform 0.6s var(--ease-out);
  cursor: zoom-in;
}
.gallery-grid__tile:hover { transform: scale(1.03); }
.gallery-big {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-sm);
}
@media (min-width: 900px) {
  .gallery-section { padding: 100px 80px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .gallery-grid--row2 { grid-template-columns: 1fr 1fr; }
  .gallery-grid__tile { aspect-ratio: 4 / 3; }
}

/* ─── Review section ────────────────────────────────── */
.review-section { background: var(--bg-cream); padding: 48px 20px; }
.review-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.review-grid { display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 900px) {
  .review-section { padding: 100px 80px; }
  .review-grid { flex-direction: row; gap: 24px; }
  .review-grid .review-card { flex: 1; }
}

/* ─── Final CTA ──────────────────────────────────────── */
.final-cta {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
  color: var(--text-white);
}
.final-cta__bg {
  position: absolute;
  inset: 0;
  background-image: url("../img/final-cta-mobile.png");
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.final-cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 45, 74, 0) 0%, rgba(20, 45, 74, 0.5) 25%, rgba(20, 45, 74, 0.78) 50%, rgba(20, 45, 74, 0.95) 75%, var(--bg-navy-deep) 100%);
}
.final-cta__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  max-width: 700px;
}
.final-cta__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-white);
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.32);
}
.final-cta__desc { font-size: 16px; line-height: 1.5; color: var(--text-light); }
@media (min-width: 900px) {
  .final-cta { min-height: 540px; padding: 100px 80px; }
  .final-cta__bg { background-image: url("../img/final-cta-desktop.png"); }
  .final-cta__content { gap: 40px; }
}

/* ─── Footer ─────────────────────────────────────────── */
.site-footer {
  background: var(--bg-navy-deep);
  color: var(--text-light);
  padding: 40px 24px 32px;
}
.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}
.footer__brand img { width: 56px; height: 56px; border-radius: 4px; object-fit: contain; }
.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
}
.footer__brand-addr { font-size: 14px; line-height: 1.5; color: var(--text-light); }
.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer__contact-item { display: flex; align-items: center; gap: 8px; font-size: 14px; color: var(--text-light); }
.footer__contact-item .icon { color: var(--text-muted); font-size: 16px; }
.footer__divider { width: 100%; height: 1px; background: var(--accent-blue); opacity: 0.45; }
.footer__lang { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.footer__lang button { font-size: 13px; color: var(--text-light); opacity: 0.7; transition: opacity 0.2s var(--ease-out); padding: 4px 6px; }
.footer__lang button.is-active { opacity: 1; color: var(--text-white); font-weight: 600; }
.footer__copy { font-size: 12px; color: var(--text-muted); text-align: center; }

@media (min-width: 900px) {
  .site-footer { padding: 48px 80px 32px; }
  .footer-inner > .footer__top { display: flex; justify-content: space-between; align-items: center; gap: 48px; }
  .footer__brand { flex-direction: row; text-align: left; }
  .footer__contact { flex-direction: row; gap: 32px; }
  .footer__bottom { display: flex; justify-content: space-between; align-items: center; }
}
