/* ===== TOKENS ===== */
:root {
  --vanilla: #C49A2E;
  --vanilla-light: #E2BB5A;
  --cream: #F7F0E3;
  --cream-dark: #EDE4D3;
  --charcoal: #1C1A17;
  --warm-grey: #6B6159;
  --terracotta: #B84830;
  --stone: #D4CBC0;
  --dark-overlay: rgba(15, 10, 5, 0.55);
  --hero-overlay: rgba(12, 8, 4, 0.48);
  --white: #FDFAF4;
  --nav-h: 72px;
  --radius: 4px;
  --transition: 0.3s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
.serif { font-family: 'Cormorant Garamond', Georgia, serif; }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: var(--charcoal);
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--vanilla);
  margin-bottom: 0.75rem;
}

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad {
  padding: 6rem 0;
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.site-header.transparent {
  background: transparent;
}

.site-header.scrolled,
.site-header.menu-open {
  background: rgba(20, 15, 8, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  font-style: italic;
  color: var(--vanilla-light);
  letter-spacing: 0.02em;
  line-height: 1;
}
.nav-logo span {
  display: block;
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 0.15rem;
}

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

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--vanilla-light); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.lang-switcher {
  display: flex;
  gap: 0.35rem;
  align-items: center;
}
.lang-switcher a {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  padding: 0.25rem 0.4rem;
  border-radius: 3px;
  transition: color var(--transition);
}
.lang-switcher a:hover,
.lang-switcher a.active {
  color: var(--vanilla-light);
}
.lang-switcher .sep {
  color: rgba(255,255,255,0.2);
  font-size: 0.65rem;
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: rgba(255,255,255,0.85);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav-toggle span:nth-child(1) { width: 24px; }
.nav-toggle span:nth-child(2) { width: 18px; }
.nav-toggle span:nth-child(3) { width: 24px; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); width: 24px; }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 24px; }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(20, 15, 8, 0.97);
  backdrop-filter: blur(16px);
  z-index: 850;
  padding: 2rem 1.5rem 2.5rem;
  flex-direction: column;
  gap: 0;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--vanilla-light); }
.mobile-menu .mobile-lang {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  border-bottom: none;
  padding-bottom: 0;
}
.mobile-menu .mobile-lang a {
  font-size: 0.8rem;
  padding: 0.5rem 0;
  border-bottom: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/assets/img/hero.webp');
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 6, 2, 0.35) 0%,
    rgba(10, 6, 2, 0.25) 40%,
    rgba(10, 6, 2, 0.6) 85%,
    rgba(10, 6, 2, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 760px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--vanilla-light);
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600;
  font-style: italic;
  color: #FDFAF4;
  line-height: 1.05;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  margin-bottom: 2.5rem;
  letter-spacing: 0.04em;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--vanilla);
  color: var(--charcoal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.hero-cta:hover {
  background: var(--vanilla-light);
  transform: translateY(-2px);
}

.hero-rating {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  z-index: 2;
}
.hero-rating .stars {
  color: var(--vanilla-light);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.hero-rating .rating-text {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.06em;
}
.hero-rating .rating-num {
  color: var(--vanilla-light);
  font-weight: 700;
}

.scroll-hint {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 12px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
}
.scroll-hint::after {
  content: '';
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.5);
  border-radius: 2px;
  animation: scrollDot 1.8s ease infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ===== ABOUT ===== */
.about-section {
  background: var(--cream);
}

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

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.about-img-main {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.about-img-main img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-img-side img {
  width: 100%;
  height: 218px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-text h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  margin-bottom: 1.5rem;
}
.about-text h2 em {
  color: var(--vanilla);
  font-style: italic;
}
.about-text p {
  color: var(--warm-grey);
  margin-bottom: 1rem;
  font-size: 1rem;
}
.about-text p:last-of-type { margin-bottom: 0; }

/* ===== OFFER ===== */
.offer-section {
  background: var(--charcoal);
}
.offer-section .section-label { color: var(--vanilla-light); }
.offer-section h2 { color: var(--white); }

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3.5rem;
  border: 2px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden;
}

.offer-card {
  background: rgba(255,255,255,0.03);
  padding: 2.5rem 2rem;
  transition: background var(--transition);
}
.offer-card:hover { background: rgba(255,255,255,0.06); }

.offer-icon {
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
  line-height: 1;
}
.offer-card h3 {
  font-size: 1.35rem;
  color: var(--vanilla-light);
  margin-bottom: 0.75rem;
}
.offer-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
}

/* ===== GALLERY ===== */
.gallery-section {
  background: var(--cream-dark);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 3rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/4;
  cursor: pointer;
  position: relative;
}
.gallery-item:nth-child(3n+1) { aspect-ratio: 4/3; grid-column: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12,8,4,0);
  transition: background var(--transition);
}
.gallery-item:hover::after { background: rgba(12,8,4,0.15); }

/* ===== RATING STRIP ===== */
.rating-strip {
  background: var(--vanilla);
  padding: 1.75rem 0;
}
.rating-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.rating-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--charcoal);
}
.rating-big {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}
.rating-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.rating-stars-row {
  color: var(--charcoal);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.rating-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(28,26,23,0.25);
}

/* ===== FIND US / CONTACTS ===== */
.contacts-section {
  background: var(--cream);
}

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

.contacts-info h2 {
  font-size: clamp(2rem, 3vw, 2.5rem);
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}
.contact-item:last-child { margin-bottom: 0; }

.contact-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--vanilla);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal);
  font-size: 0.9rem;
}

.contact-body strong {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 0.25rem;
}
.contact-body span,
.contact-body a {
  font-size: 1rem;
  color: var(--charcoal);
}
.contact-body a:hover { color: var(--vanilla); }

.contacts-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--vanilla);
  color: var(--charcoal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.btn-primary:hover { background: var(--vanilla-light); transform: translateY(-1px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid var(--charcoal);
  color: var(--charcoal);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-1px);
}

.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(28,26,23,0.12);
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--charcoal);
  padding: 3rem 0 2rem;
  color: rgba(255,255,255,0.6);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  text-align: center;
}

.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  font-style: italic;
  color: var(--vanilla-light);
}

.footer-social {
  display: flex;
  gap: 1rem;
}
.footer-social a {
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.footer-social a:hover {
  border-color: var(--vanilla-light);
  color: var(--vanilla-light);
  background: rgba(196,154,46,0.1);
}

.footer-nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-nav a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-nav a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-bottom span,
.footer-bottom a {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}
.footer-bottom a { color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--vanilla-light); }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 3rem; }
  .contacts-grid { gap: 3rem; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-item:nth-child(3n+1) { grid-column: span 1; aspect-ratio: 3/4; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .section-pad { padding: 4rem 0; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .lang-switcher { display: none; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-images {
    grid-template-columns: 1fr 1fr;
  }
  .about-img-main { grid-column: 1 / 2; grid-row: 1 / 2; }
  .about-img-main img { height: 260px; }
  .about-img-side img { height: 123px; }

  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { padding: 2rem 1.5rem; }

  .contacts-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.35rem;
  }
  .gallery-item:nth-child(3n+1) { grid-column: span 1; aspect-ratio: 3/4; }

  .rating-inner { gap: 1.5rem; }
  .rating-divider { display: none; }

  .footer-bottom { flex-direction: column; gap: 0.75rem; }

  .hero-rating { display: none; }
  .scroll-hint { display: none; }
}

@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.5rem, 12vw, 4rem); }
  .hero-cta { font-size: 0.75rem; padding: 0.85rem 1.75rem; }
  .contacts-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
