:root {
  --ink: #12313f;
  --muted: #5f7884;
  --paper: #f7fcfd;
  --shell: #e8f5f7;
  --sea: #008c9e;
  --sea-deep: #06465a;
  --sun: #f2c76b;
  --coral: #2aa7b8;
  --foam: #dff3f1;
  --line: rgba(23, 50, 59, 0.14);
  --shadow: 0 18px 45px rgba(14, 66, 73, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(255, 253, 247, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 210px;
}

.brand-mark {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: white;
  font-weight: 800;
  background: var(--sea);
  border-radius: 50%;
}

.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  padding: 10px 14px;
  color: var(--muted);
  border-radius: 999px;
  font-weight: 700;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--sea-deep);
  background: var(--foam);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  background: white;
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(320px, 0.78fr);
  min-height: min(660px, calc(100vh - 74px));
  background: var(--shell);
}

.hero-media {
  position: relative;
  min-height: min(660px, calc(100vh - 74px));
  overflow: hidden;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  opacity: 0;
  transition: opacity 600ms ease;
}

.carousel-slide.is-active {
  opacity: 1;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 42px;
  height: 42px;
  color: white;
  background: rgba(7, 88, 97, 0.78);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
}

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

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

.carousel-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: white;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4.5vw, 62px);
  background: linear-gradient(135deg, rgba(228, 245, 241, 0.98), rgba(255, 253, 247, 0.96));
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--coral);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.92;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-actions,
.review-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
}

.btn.primary {
  color: white;
  background: var(--sea);
  box-shadow: 0 10px 22px rgba(12, 124, 134, 0.22);
}

.btn.primary:hover {
  background: var(--sea-deep);
}

.btn.ghost {
  color: var(--sea-deep);
  border-color: var(--sea);
  background: rgba(255, 255, 255, 0.52);
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 82px);
}

.two-column,
.contact-section,
.accommodation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
}

.apartments-description {
  display: block;
}

.apartments-description > div {
  width: 100%;
  max-width: none;
}

.apartments-description p {
  width: 100%;
  max-width: none;
}


.reverse {
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
}

.reverse > div:first-child {
  order: 2;
}

.muted {
  background: var(--shell);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.info-panel,
.contact-card {
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.info-panel-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 8px;
}

.check-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--sea);
  font-weight: 900;
  content: "✓";
}

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

.card {
  min-height: 170px;
  padding: 24px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.card p {
  color: var(--muted);
}

.stay-links {
  display: grid;
  gap: 18px;
}

.stay-link {
  padding: 28px;
  color: white;
  background: linear-gradient(135deg, var(--sea), #2aa7a0);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.stay-link:nth-child(2) {
  background: linear-gradient(135deg, var(--coral), var(--sun));
}

.stay-link span,
.stay-link strong {
  display: block;
}

.stay-link span {
  margin-bottom: 8px;
  opacity: 0.88;
}

.stay-link strong {
  font-size: 1.45rem;
  line-height: 1.2;
}

.reviews-section {
  text-align: center;
}

.reviews {
  position: relative;
  max-width: 780px;
  min-height: 210px;
  margin: 0 auto;
}

.review {
  position: absolute;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 34px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.review.is-active {
  opacity: 1;
  pointer-events: auto;
}

.review p {
  font-size: 1.2rem;
}

.review-controls {
  justify-content: center;
}

.review-controls button {
  width: 42px;
  height: 42px;
  color: white;
  background: var(--sea);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.contact-section {
  background: linear-gradient(135deg, var(--foam), var(--paper));
}

.contact-card {
  display: inline-grid;
  gap: 4px;
  margin-top: 20px;
}

.contact-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-card a {
  color: var(--sea-deep);
  font-size: 1.45rem;
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 700;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(12, 124, 134, 0.16);
  border-color: var(--sea);
}

.privacy-consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.45;
}

.privacy-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--sea);
}

.privacy-consent a,
.site-footer a {
  color: inherit;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.subpage-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  padding: clamp(42px, 7vw, 78px) clamp(18px, 5vw, 82px);
  color: white;
  background: linear-gradient(135deg, var(--sea-deep), var(--sea));
}

.subpage-hero > div {
  max-width: 760px;
}

.subpage-hero p:not(.eyebrow) {
  max-width: 620px;
  font-size: 1.12rem;
}

.subpage-hero-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 1600 / 1067;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 42px rgba(3, 38, 50, 0.26);
}

.accommodation {
  display: block;
}

.accommodation-copy {
  max-width: 920px;
  margin: 0 auto;
}

.cottages-description {
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
  align-items: start;
}

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

.gallery img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(14, 66, 73, 0.12);
}

.gallery img.portrait-photo {
  aspect-ratio: 2 / 3;
}

.large-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.important-info {
  background: var(--paper);
}

.important-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.important-grid article {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 132px;
  padding: 22px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(14, 66, 73, 0.08);
}

.important-grid article.wide {
  grid-column: span 2;
}

.important-grid span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.important-grid strong {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.45;
}

.faq-section {
  background: white;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-list article {
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq-list h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}

.faq-list p {
  color: var(--muted);
}

.cta-band {
  display: grid;
  justify-items: center;
  text-align: center;
  background: var(--foam);
}

.cta-band p {
  max-width: 640px;
  color: var(--muted);
}

.legal-page {
  max-width: 980px;
  margin: 0 auto;
}

.legal-page h1 {
  margin-bottom: 34px;
}

.legal-page h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.legal-page p {
  color: var(--muted);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 26px clamp(18px, 5vw, 82px);
  color: white;
  background: var(--sea-deep);
}

.site-footer p {
  margin: 0;
}

@media (max-width: 920px) {
  .hero,
  .two-column,
  .reverse,
  .contact-section,
  .accommodation,
  .subpage-hero {
    grid-template-columns: 1fr;
  }

  .reverse > div:first-child {
    order: 0;
  }

  .hero {
    min-height: 0;
  }

  .hero-media {
    min-height: 430px;
  }

  .subpage-hero-photo {
    max-height: none;
  }

  .attraction-grid,
  .gallery,
  .large-gallery,
  .important-grid,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .important-grid article.wide {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 73px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 18px 18px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    border-radius: 8px;
  }

  .brand {
    min-width: 0;
  }

  .hero-media {
    min-height: 340px;
  }

  h1 {
    font-size: 3.35rem;
  }

  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .attraction-grid,
  .gallery,
  .large-gallery,
  .important-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .important-grid article.wide {
    grid-column: auto;
  }

  .review {
    padding: 24px;
  }

  .reviews {
    min-height: 260px;
  }

  .site-footer {
    display: block;
  }

  .site-footer p + p {
    margin-top: 8px;
  }
}

