:root {
  --paper: #f5f2eb;
  --text: #2f435a;
  --muted: #64748b;
  --teal: #2b8da2;
  --teal-dark: #216f80;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  background: var(--paper);
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  background: linear-gradient(to bottom, rgba(0, 26, 53, 0.55), rgba(0, 26, 53, 0));
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0;
}

.brand {
  margin: 0;
}

.brand a {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand img {
  display: block;
  height: clamp(102px, 13vw, 172px);
  width: auto;
}

.brand-name {
  color: #f0f9ff;
  font-weight: 800;
  font-size: clamp(1.25rem, 2.5vw, 2rem);
  letter-spacing: 0.05em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

.main-nav {
  display: flex;
  gap: 1.1rem;
  flex-wrap: wrap;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(12, 43, 69, 0.45);
  color: #ecf7ff;
  border-radius: 10px;
  padding: 0.42rem 0.7rem;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.main-nav a,
.lang-btn {
  color: #ecf7ff;
  text-decoration: none;
  font-size: 0.95rem;
  opacity: 0.95;
}

.lang-switch {
  display: flex;
  gap: 0.4rem;
}

.lang-btn {
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
}

.lang-btn.active {
  background: rgba(43, 141, 162, 0.9);
  border-color: rgba(43, 141, 162, 0.9);
}

.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: center;
  background-image: url("../images/hero/image.png");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.hero-small {
  min-height: 46vh;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 58, 99, 0.45), rgba(17, 58, 99, 0.2));
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 6rem 0 4rem;
}

.hero-kicker {
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.3rem);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.hero h2 {
  margin: 0;
  font-size: clamp(3rem, 10vw, 6rem);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-subtitle {
  margin: 0.8rem auto 0;
  max-width: 760px;
  font-size: clamp(1rem, 2.5vw, 1.45rem);
  color: #f0faff;
}

.poet-quote {
  margin: 0.9rem auto 0;
  max-width: 760px;
  font-size: clamp(0.98rem, 2.1vw, 1.2rem);
  color: #f5fcff;
  font-style: italic;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.28);
}

.hero-actions {
  margin-top: 1.7rem;
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  text-decoration: none;
  border-radius: 14px;
  padding: 0.75rem 1.25rem;
  font-weight: 700;
  transition: background-color 0.2s ease;
  border: none;
  background: transparent;
  cursor: pointer;
}

.btn-airbnb {
  box-shadow: 0 8px 20px rgba(26, 73, 92, 0.2);
}

.airbnb-logo {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: block;
}

.btn-primary {
  background: var(--teal);
  color: #f6fdff;
}

.btn-primary:hover {
  background: var(--teal-dark);
}

.btn-ghost {
  background: transparent;
  color: #f3fbff;
  border: 1px solid rgba(255, 255, 255, 0.75);
}

.btn-light {
  background: #ecf9ff;
  color: #215e6f;
}

.section {
  padding: 3.4rem 0;
}

.paper {
  background: linear-gradient(180deg, #f7f3ec, #f2ede4);
}

h3 {
  margin: 0 0 1rem;
  text-align: center;
  font-size: clamp(1.7rem, 4vw, 2.9rem);
  color: #304861;
}

.split {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 1.2rem;
  align-items: center;
}

.split p {
  color: #465f75;
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.framed {
  border: 8px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 10px 28px rgba(20, 40, 60, 0.18);
}

.carousel-track-wrapper {
  width: 100%;
  aspect-ratio: 16/10;
  background: #17344f;
}

.carousel-track,
.carousel-slide {
  height: 100%;
}

.carousel-slide {
  margin: 0;
  display: none;
}

.carousel-slide.active {
  display: block;
}

.carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  color: #35667d;
  cursor: pointer;
  font-size: 1.1rem;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: flex;
  gap: 0.45rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.65);
}

.dot.active {
  background: #3b8ca0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-card {
  position: relative;
  background: #fffdf7;
  border: 1px solid rgba(63, 96, 130, 0.16);
  border-radius: 20px;
  padding: 1.2rem 1rem;
  text-align: center;
  box-shadow: 0 12px 28px rgba(26, 73, 92, 0.08);
}

.feature-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  background: #2f8093;
  color: #f4feff;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.feature-card h4 {
  margin: 0.35rem 0;
}

.feature-card p {
  margin: 0;
  color: #567188;
}

.stay-stats {
  margin-top: 0.6rem;
}

.stat-label {
  margin: 0;
  color: #5a7288;
  font-weight: 600;
}

.stat-value {
  margin: 0.35rem 0 0;
  color: #2d5f77;
  font-size: 1.05rem;
  font-weight: 700;
}

.stay-cards {
  margin-top: 1rem;
}

.house-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.house-photo {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 4px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 8px 24px rgba(25, 42, 60, 0.15);
}

.house-photo img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.section-blue {
  background: linear-gradient(180deg, #2f8da3, #2b7a92);
  color: #f2fbff;
}

.section-blue h3 {
  color: #f7feff;
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.scenic-card {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 6px;
  overflow: hidden;
  color: #304961;
  border: 4px solid rgba(255, 255, 255, 0.8);
}

.scenic-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.scenic-content {
  padding: 0.85rem;
}

.scenic-content h4 {
  margin: 0;
}

.scenic-content p {
  margin: 0.35rem 0 0;
}

.card {
  background: #fffef9;
  border-radius: 20px;
  border: 1px solid rgba(55, 80, 105, 0.15);
  padding: 1rem;
  box-shadow: 0 12px 28px rgba(26, 73, 92, 0.08);
}

.card h4 {
  margin-top: 0;
}

.card ul {
  margin: 0;
  padding-left: 1.1rem;
}

.contact-band p {
  margin-bottom: 0;
}

.contact-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.contact-actions {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer {
  background: #20455d;
  color: #c8deeb;
  text-align: center;
  padding: 1rem 0;
}

.site-footer .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}

.site-footer p {
  margin: 0;
}

.footer-legal-wrap {
  justify-content: space-between;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #d8ecf8;
  text-decoration: none;
  font-size: 0.92rem;
}

.cookie-settings-btn {
  border: 1px solid rgba(216, 236, 248, 0.75);
  background: transparent;
  color: #d8ecf8;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.85rem;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 60;
  width: min(920px, 94%);
  background: rgba(16, 41, 66, 0.96);
  color: #eff8ff;
  border: 1px solid rgba(212, 234, 247, 0.28);
  border-radius: 14px;
  padding: 0.9rem;
  box-shadow: 0 10px 28px rgba(12, 27, 43, 0.35);
  display: grid;
  gap: 0.75rem;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.92rem;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.cookie-banner .btn {
  width: auto;
}

.cookie-decline {
  color: #eff8ff;
  border-color: rgba(239, 248, 255, 0.7);
}

.hidden-guide-link {
  color: rgba(200, 222, 235, 0.22);
  text-decoration: none;
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.hidden-guide-link:hover,
.hidden-guide-link:focus-visible {
  color: rgba(200, 222, 235, 0.62);
}

.guide-page .hero-subtitle {
  max-width: 860px;
}

.guide-actions {
  margin-top: 1.2rem;
  gap: 0.7rem;
}

.guide-kpis {
  margin-top: 0;
}

.guide-sections {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.guide-card h3 {
  text-align: left;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 0.65rem;
}

@media (max-width: 980px) {
  .nav-wrap {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 0.8rem 0;
  }

  .brand img {
    height: clamp(64px, 14vw, 82px);
  }

  .brand-name {
    font-size: clamp(1rem, 3.8vw, 1.35rem);
  }

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

  .main-nav,
  .lang-switch {
    display: none;
    width: 100%;
  }

  .site-header.nav-open .main-nav,
  .site-header.nav-open .lang-switch {
    display: flex;
  }

  .site-header.nav-open .main-nav {
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.25rem;
  }

  .site-header.nav-open {
    background: linear-gradient(to bottom, rgba(0, 26, 53, 0.96), rgba(0, 26, 53, 0.76));
  }

  .site-header.nav-open .main-nav a {
    display: block;
    width: 100%;
    padding: 0.45rem 0.15rem;
  }

  .site-header.nav-open .lang-switch {
    margin-top: 0.3rem;
  }

  .main-nav a,
  .lang-btn {
    font-size: 0.92rem;
  }

  .split,
  .feature-grid,
  .house-gallery,
  .grid-two,
  .contact-grid {
    grid-template-columns: 1fr;
    display: grid;
  }

  .contact-actions {
    justify-content: flex-start;
  }

  .hero {
    min-height: 72vh;
    background-position: center 38%;
    background-size: 130% auto;
  }

  .hero-small {
    min-height: 38vh;
  }

  .guide-sections {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 7.2rem 0 3.3rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(1140px, 94%);
  }

  .hero-content {
    padding-top: 8rem;
  }

  h3 {
    margin-bottom: 0.75rem;
  }

  .section {
    padding: 2.5rem 0;
  }

  .card,
  .feature-card {
    padding: 0.9rem;
  }

  .house-photo img,
  .scenic-card img {
    height: 230px;
  }

  .hero h2 {
    font-size: clamp(2.35rem, 13vw, 3.1rem);
  }

  .hero-kicker {
    font-size: clamp(1.4rem, 8vw, 2.15rem);
  }

  .poet-quote {
    font-size: 0.95rem;
  }

  .carousel-btn {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }

  .site-footer .container {
    flex-direction: column;
    gap: 0.25rem;
  }

  .footer-legal-wrap {
    align-items: center;
  }

  .cookie-banner {
    width: min(920px, 96%);
    bottom: 10px;
    padding: 0.75rem;
  }

  .cookie-banner .btn {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .hero-content {
    padding-top: 8.6rem;
  }

  .hero {
    min-height: 68vh;
  }

  .btn {
    padding: 0.7rem 0.95rem;
    font-size: 0.95rem;
  }

  .main-nav a,
  .lang-btn {
    font-size: 0.88rem;
  }

  .airbnb-logo {
    width: 16px;
    height: 16px;
  }
}
