:root {
  --bg: #f6f1ea;
  --bg-soft: #fbf8f4;
  --surface: #ffffff;
  --ink: #0f2430;
  --muted: #5f6f78;
  --line: rgba(15, 36, 48, 0.1);
  --brand: #0d3045;
  --brand-2: #154760;
  --warm: #b85c2f;
  --warm-soft: #f7e5da;
  --success: #e8f5ee;
  --shadow: 0 14px 40px rgba(13, 48, 69, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: linear-gradient(180deg, #f4eee8 0%, #f8f4ef 100%);
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, select { font: inherit; }

.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.card {
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.top-alert {
  background: var(--brand);
  color: #f8fbfd;
  font-size: 0.95rem;
}
.top-alert__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}
.top-alert__copy {
  display: flex;
  align-items: center;
  gap: 10px;
}
.top-alert__copy p { margin: 0; }
.dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #f7c25b;
  box-shadow: 0 0 0 6px rgba(247,194,91,0.18);
  flex: 0 0 auto;
}
.top-alert__link {
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 244, 239, 0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand__icon {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  font-size: 1.2rem;
  box-shadow: 0 12px 22px rgba(13,48,69,0.2);
}
.brand strong, .brand small { display: block; }
.brand strong { font-size: 1rem; }
.brand small { color: var(--muted); font-size: 0.82rem; }

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.nav a {
  color: var(--muted);
  font-weight: 600;
}
.nav a:hover { color: var(--brand); }

.header-tools {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.lang-switcher {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.85);
  color: var(--brand);
  font-weight: 700;
}
.parking-pill, .sub-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 14px;
  background: var(--success);
  color: #135338;
  font-size: 0.88rem;
  font-weight: 700;
}
.sub-pill {
  background: var(--warm-soft);
  color: var(--warm);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  font-weight: 700;
  border: 0;
  box-shadow: 0 14px 28px rgba(13, 48, 69, 0.2);
}
.btn:hover { transform: translateY(-1px); }
.btn--small { padding: 10px 14px; font-size: 0.92rem; }
.btn--ghost {
  background: transparent;
  color: var(--brand);
  border: 1px solid rgba(13, 48, 69, 0.18);
  box-shadow: none;
}
.btn--ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: none;
}
.btn--full { width: 100%; }
.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.top-space { margin-top: 18px; }

.hero {
  position: relative;
  padding: 44px 0 34px;
  overflow: clip;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(184, 92, 47, 0.11), transparent 28%),
    radial-gradient(circle at 92% 18%, rgba(21, 71, 96, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(255,255,255,0.35), rgba(255,255,255,0));
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: 28px;
  align-items: start;
}
.eyebrow {
  display: inline-block;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(13,48,69,0.08);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.eyebrow--light {
  background: rgba(255,255,255,0.14);
  color: #fff;
}
.hero h1 {
  margin: 16px 0 14px;
  font-size: clamp(2.2rem, 4vw, 4.35rem);
  line-height: 0.98;
  max-width: 12ch;
}
.hero__lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 58ch;
}
.hero__meta {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}
.meta-pill {
  background: rgba(255,255,255,0.8);
  border: 1px solid rgba(13,48,69,0.08);
  border-radius: 18px;
  padding: 14px;
  box-shadow: 0 10px 26px rgba(13,48,69,0.08);
}
.meta-pill span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.meta-pill strong {
  font-size: 1rem;
}
.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.offer-card {
  margin-top: 22px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}
.offer-card h2 {
  margin: 10px 0 8px;
  font-size: 1.26rem;
}
.offer-card p { margin: 0; color: var(--muted); }
.offer-card__meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.phone-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 14px;
  background: rgba(13,48,69,0.08);
  color: var(--brand);
  font-size: 1.12rem;
  font-weight: 800;
  min-width: 176px;
}

.hero__side {
  display: grid;
  gap: 14px;
}
.hero-slider {
  padding: 16px;
}
.slider {
  position: relative;
  min-height: 420px;
  border-radius: 20px;
  overflow: hidden;
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.slide.active {
  opacity: 1;
  pointer-events: auto;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide__caption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(10, 22, 29, 0.62);
  color: #fff;
  backdrop-filter: blur(12px);
}
.slide__tag, .service-tag {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.service-tag {
  background: rgba(13,48,69,0.08);
  color: var(--brand);
}
.service-tag--warm {
  background: var(--warm-soft);
  color: var(--warm);
}
.slide__caption strong {
  display: block;
  margin-top: 10px;
  font-size: 1.18rem;
}
.slide__caption p {
  margin: 6px 0 0;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.82);
}
.slider-thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.thumb {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
}
.thumb img {
  width: 100%;
  height: 84px;
  object-fit: cover;
}
.thumb.active { border-color: var(--warm); }

.quick-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.quick-card {
  padding: 16px;
}
.quick-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}
.quick-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}
.highlight-card {
  background: linear-gradient(135deg, rgba(184,92,47,0.12), rgba(255,255,255,0.95));
}

.section {
  padding: 26px 0 30px;
}
.section--compact {
  padding-top: 22px;
  padding-bottom: 26px;
}
.alt-bg {
  background: linear-gradient(180deg, rgba(255,255,255,0.55), rgba(255,255,255,0.18));
  border-top: 1px solid rgba(13,48,69,0.06);
  border-bottom: 1px solid rgba(13,48,69,0.06);
}
.section-heading {
  margin-bottom: 18px;
  text-align: center;
}
.section-heading.left {
  text-align: left;
}
.section-heading h2 {
  margin: 10px 0 10px;
  font-size: clamp(1.8rem, 2.6vw, 2.7rem);
  line-height: 1.05;
}
.section-heading p {
  margin: 0;
  color: var(--muted);
  max-width: 64ch;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.94fr);
  gap: 22px;
  align-items: start;
}
.split-grid--balanced {
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
}
.timeline {
  display: grid;
  gap: 12px;
}
.timeline__item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(13,48,69,0.08);
  box-shadow: 0 10px 24px rgba(13,48,69,0.07);
}
.timeline__num {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  color: #fff;
  font-weight: 800;
}
.timeline__item h3 {
  margin: 0 0 6px;
  font-size: 1.02rem;
}
.timeline__item p {
  margin: 0;
  color: var(--muted);
}
.info-box {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(13,48,69,0.08);
}
.info-box.warning {
  background: linear-gradient(135deg, rgba(184,92,47,0.14), rgba(255,255,255,0.9));
}
.info-box h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}
.info-box p {
  margin: 0;
  color: var(--muted);
}

.route-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.info-mini-card {
  padding: 16px;
}
.info-mini-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}
.info-mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}
.route-practical-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}
.practical-box {
  padding: 14px;
  border-radius: 16px;
  background: rgba(13,48,69,0.04);
}
.practical-box p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
.practical-box--highlight {
  background: linear-gradient(135deg, rgba(184,92,47,0.12), rgba(255,255,255,0.95));
}

.map-panel {
  overflow: hidden;
}
.compact-map {
  border-radius: 22px 22px 0 0;
  overflow: hidden;
  min-height: 290px;
}
.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 290px;
  border: 0;
}
.map-panel__body {
  padding: 20px 22px 22px;
}
.map-panel__body h3 {
  margin: 0 0 16px;
  font-size: 1.25rem;
}
.map-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.map-info-grid > div {
  padding: 14px;
  background: rgba(13,48,69,0.04);
  border-radius: 16px;
}
.label {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.compact-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}
.parking-box {
  min-width: 250px;
  padding: 18px;
  text-align: left;
  background: linear-gradient(135deg, rgba(232,245,238,0.95), rgba(255,255,255,0.9));
}
.parking-box strong {
  display: block;
  margin-bottom: 4px;
  color: #135338;
}
.parking-box span {
  color: #2f5f49;
}

.villa-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 18px;
  align-items: start;
}
.villa-layout--balanced {
  margin-bottom: 18px;
}
.restaurant-card {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
}
.restaurant-card--compact .restaurant-card__copy p {
  max-width: 56ch;
}
.service-stack {
  display: grid;
  gap: 18px;
}
.service-card--small .service-copy h3 {
  font-size: 1.12rem;
}
.restaurant-card__media img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}
.restaurant-card__copy,
.service-copy,
.dishes-card__head {
  padding: 20px 22px;
}
.restaurant-card__copy h3,
.service-copy h3,
.dishes-card__head h3 {
  margin: 10px 0 8px;
  font-size: 1.26rem;
}
.restaurant-card__copy p,
.service-copy p {
  margin: 0;
  color: var(--muted);
}
.mini-list {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--ink);
}
.mini-list li + li { margin-top: 6px; }
.service-card {
  overflow: hidden;
}
.service-card--compact .service-media img,
.service-gallery img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.service-gallery--two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.dishes-card {
  overflow: hidden;
}
.dishes-card__head {
  padding-bottom: 0;
}
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 18px 22px 22px;
}
.dishes-grid--row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.dishes-card--slim {
  overflow: hidden;
}
.dishes-card__head--compact p {
  margin: 0;
  color: var(--muted);
}
.dish-tile--small img {
  height: 138px;
}
.dish-tile--small figcaption {
  padding: 9px 10px 11px;
  font-size: 0.88rem;
}
.dish-tile {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(13,48,69,0.04);
}
.dish-tile img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}
.dish-tile figcaption {
  padding: 10px 12px 12px;
  font-size: 0.92rem;
  font-weight: 600;
}

.narrow { max-width: 880px; }
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-list details {
  border-radius: 16px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(13,48,69,0.08);
  box-shadow: 0 10px 22px rgba(13,48,69,0.06);
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 18px;
  font-weight: 700;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: var(--muted);
}

.cta-band {
  padding: 12px 0 28px;
}
.cta-band__inner {
  padding: 28px 30px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(13,48,69,0.96), rgba(21,71,96,0.96));
  color: #fff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  box-shadow: 0 20px 42px rgba(13,48,69,0.2);
}
.cta-band h2 {
  margin: 10px 0 8px;
  font-size: clamp(1.8rem, 2.6vw, 2.5rem);
  line-height: 1.04;
}
.cta-band p {
  margin: 0;
  color: rgba(255,255,255,0.78);
}

.site-footer {
  padding: 10px 0 26px;
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
  gap: 18px;
  padding: 18px 0 12px;
  border-top: 1px solid var(--line);
}
.footer-note, .footer-grid p {
  color: var(--muted);
  margin: 12px 0 0;
}
.footer-grid h3 {
  margin: 0 0 10px;
  font-size: 1rem;
}
.footer-bottom {
  padding-top: 8px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 1180px) {
  .hero__grid,
  .split-grid,
  .villa-layout,
  .restaurant-card,
  .cta-band__inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .compact-heading-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .quick-cards,
  .hero__meta,
  .route-info-grid,
  .route-practical-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-card {
    grid-template-columns: 1fr;
  }

  .offer-card__meta {
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .top-alert__inner,
  .nav-wrap,
  .map-info-grid,
  .service-gallery--two,
  .quick-cards,
  .hero__meta,
  .route-info-grid,
  .route-practical-grid {
    grid-template-columns: 1fr;
  }

  .dishes-grid--row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .top-alert__inner,
  .nav-wrap {
    display: grid;
  }

  .nav { gap: 14px; }

  .header-tools { justify-content: flex-start; }

  .hero { padding-top: 28px; }
  .hero h1 { max-width: none; }
  .slider { min-height: 340px; }
  .thumb img { height: 72px; }

  .restaurant-card__media img,
  .service-card--compact .service-media img,
  .service-gallery img,
  .dish-tile img {
    height: 220px;
  }

  .dish-tile--small img {
    height: 150px;
  }

  .cta-band__inner { padding: 24px; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .hero__actions,
  .button-row,
  .header-tools,
  .nav {
    display: grid;
    width: 100%;
  }

  .dishes-grid--row {
    grid-template-columns: 1fr;
  }
  .btn,
  .btn--small,
  .lang-switcher,
  .phone-pill { width: 100%; }
  .hero-slider { padding: 12px; }
  .slide__caption { left: 12px; right: 12px; bottom: 12px; }
  .section-heading h2,
  .cta-band h2 { font-size: 1.75rem; }
  .meta-pill, .timeline__item, .quick-card, .map-panel__body, .restaurant-card__copy, .service-copy, .dishes-card__head, .dishes-grid {
    padding-left: 16px;
    padding-right: 16px;
  }
}
