:root {
  --color-primary: #a45b38;
  --color-primary-dark: #6f3d23;
  --color-text: #2f2f2f;
  --color-muted: #a0a0a0;
  --color-background: #faf7f4;
  --color-accent: #f4ece5;
  --shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.08);
  --header-height: 80px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Source Sans 3', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--color-text);
  background-color: var(--color-background);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

a {
  color: inherit;
}

.container {
  width: min(1200px, 90vw);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section.accent {
  background: var(--color-accent);
}

.section.two-column .container,
.section.contact .container {
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 244, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang-switch {
  position: relative;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  cursor: pointer;
  font-weight: 600;
  color: var(--color-primary-dark);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}

.lang-toggle svg {
  width: 18px;
  height: 18px;
}

.lang-toggle .chevron-icon {
  width: 16px;
  height: 16px;
  color: var(--color-muted);
}

.lang-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  list-style: none;
  margin: 0;
  padding: 0.25rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  min-width: 170px;
  display: none;
  z-index: 1000;
}

.lang-menu.open {
  display: block;
}

.lang-menu li {
  border-radius: 10px;
}

.lang-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  text-decoration: none;
  color: var(--color-text);
  border-radius: 10px;
}

.lang-menu a:hover,
.lang-menu li.active a {
  background: var(--color-accent);
  color: var(--color-primary-dark);
}

.lang-short {
  font-weight: 700;
  letter-spacing: 0.05em;
  min-width: 2.4rem;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: var(--color-primary-dark);
  text-decoration: none;
}

.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1rem;
  align-items: center;
}

.main-nav a {
  text-decoration: none;
  padding: 0.25rem 0.4rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link-icon {
  display: none;
  width: 24px;
  height: 24px;
  justify-content: center;
  align-items: center;
}

.nav-link-icon svg {
  width: 18px;
  height: 18px;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  padding: 0;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.nav-toggle span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-toggle span svg {
  width: 24px;
  height: 24px;
}

.nav-toggle .icon-open {
  display: none;
}

.nav-toggle.is-open .icon-open {
  display: inline-flex;
}

.nav-toggle.is-open .icon-closed {
  display: none;
}

.cta-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button {
  background: var(--color-primary);
  color: #fff;
  border: none;
  box-shadow: 0 10px 25px rgba(164, 91, 56, 0.35);
}

.cta-button:hover,
.cta-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(164, 91, 56, 0.35);
}

.ghost-button {
  border: 1px solid var(--color-primary);
  color: var(--color-primary);
  background: transparent;
}

.hero .ghost-button {
  border-color: #fff;
  color: #fff;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-bottom: 0.5rem;
}

h1,
h2,
h3 {
  font-family: 'Playfair Display', serif;
  margin-top: 0;
  color: var(--color-primary-dark);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(16, 12, 10, 0.7), rgba(16, 12, 10, 0.3)), url('../../gallery_assets/balconcino_01.jpg') center/cover;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 8rem 0 6rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: #fff;
}

.hero .lead {
  font-size: 1.2rem;
  max-width: 620px;
}

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

.hero-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
  font-weight: 600;
}

.section figure {
  margin: 0;
}

figure figcaption {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-top: 0.75rem;
}

.feature-list,
.contact-list,
.steps {
  padding-left: 1.25rem;
}

.feature-list li,
.contact-list li,
.steps li {
  margin-bottom: 0.4rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

.card h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.card p {
  margin: 0;
}

.card-grid.reviews .card {
  background: #fffdf9;
}

.card-grid.reviews .quote {
  font-style: italic;
}

.card-grid.reviews .author {
  margin-top: 1rem;
  font-weight: 600;
  color: var(--color-primary);
}

.card-grid.reviews + .cta-button {
  margin-top: 2rem;
  display: inline-flex;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-grid figure {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.gallery-thumb {
  display: block;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  position: relative;
  background-size: cover;
  background-position: center;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.gallery-thumb-more {
  color: #fff;
  text-decoration: none;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  justify-content: center;
  align-items: center;
  display: flex;
}

.gallery-thumb-more::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.gallery-count {
  position: relative;
  z-index: 1;
}

.gallery-hidden {
  display: none;
}

.map-wrapper iframe {
  width: 100%;
  min-height: 320px;
  border: none;
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
}

.booking-form {
  background: #fff;
  border-radius: 18px;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.booking-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  color: var(--color-primary-dark);
  gap: 0.3rem;
}

.booking-form input {
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.7rem 1rem;
  font-size: 1rem;
}

.booking-form button {
  grid-column: 1 / -1;
  justify-self: start;
  border: none;
  cursor: pointer;
}

.form-note {
  grid-column: 1 / -1;
  font-size: 0.85rem;
  color: var(--color-muted);
}

.contact-list {
  list-style: none;
  padding: 0;
}

.contact-list li {
  margin-bottom: 0.6rem;
}

.contact-list a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.site-footer {
  background: #1b1b1b;
  color: #f7f0e9;
  padding: 2rem 0;
}

.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}

.site-footer a {
  color: #f7f0e9;
  text-decoration: none;
}

.section {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.nav-close {
  display: none;
}

@media (max-width: 1059px) {
  .header-actions .cta-button {
    display: none;
  }
}

@media (max-width: 950px) {
  .header-inner {
    justify-content: center;
    position: relative;
    padding: 0 4rem;
  }

  .logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
  }

  .header-actions {
    position: absolute;
    right: 1rem;
    order: 3;
  }

  .nav-toggle {
    display: inline-flex;
    position: absolute;
    left: 1rem;
  }

  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: rgba(255, 255, 255, 0.92);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
    flex: initial;
    justify-content: flex-start;
    pointer-events: none;
  }

  .nav-close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-close svg {
    width: 24px;
    height: 24px;
  }

  .main-nav.open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.25rem;
    margin-top: 2rem;
  }

  .main-nav ul a {
    font-size: 1.2rem;
    width: 100%;
  }

  .nav-link-icon {
    display: inline-flex;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 600px) {
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .booking-form {
    padding: 1.5rem;
  }
}

@media (max-width: 545px) {
  .header-actions {
    gap: 0.5rem;
  }

  .header-actions .cta-button {
    display: none;
  }

  .lang-toggle {
    padding: 0.5rem 0.75rem;
  }
}
