:root {
  --bg: #111111;
  --panel: #f4f0eb;
  --panel-strong: #ffffff;
  --primary: #000000;
  --primary-dark: #1d1d1b;
  --accent: #b88a67;
  --text: #f8f6f3;
  --text-dark: #1a1a18;
  --muted: #c7c1b8;
  --muted-dark: #544b45;
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(26, 26, 24, 0.12);
  --shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: none;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
}

body::before {
  background: url("images/unnamed.png") center / cover no-repeat;
  filter: blur(4px);
  transform: scale(1.04);
  z-index: -2;
}

body::after {
  background: rgba(12, 12, 12, 0.62);
  z-index: -1;
}

a {
  text-decoration: none;
}

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

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

.site-header {
  padding: 1.2rem 0 0.3rem;
}

.site-title {
  margin: 0;
  text-align: center;
  color: var(--text);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

main {
  text-align: center;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 3rem;
  padding: 3.25rem 0 2.5rem;
}

.eyebrow {
  margin: 0 0 0.6rem;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.08;
  color: var(--text);
}

.hero-copy p {
  margin-top: 1rem;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.about-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 0.75rem;
  border-radius: 16px;
  overflow: hidden;

}

.about-photos img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center;
  background: transparent;
  border-radius: 18px;
  clip-path: inset(0 round 18px);
  transform: scale(0.95);
  box-shadow: none;
}

.about-photos img:last-child {
  object-position: center 35%;
}

.about-photos img:first-child {
  object-position: center 45%;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1.6rem;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.primary-btn {
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow);
  border: 1px solid var(--primary);
}

.secondary-btn {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.primary-btn:hover,
.secondary-btn:hover,
.primary-btn:focus-visible,
.secondary-btn:focus-visible {
  transform: translateY(-1px);
}

.hero-panel {
  position: relative;
}

.hero-panel img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.panel-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(244, 240, 235, 0.97);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  padding: 0.9rem 1rem;
  box-shadow: var(--shadow);
}

.panel-card span {
  display: block;
  color: var(--muted-dark);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.panel-card strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--primary-dark);
  font-size: 1.05rem;
}

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

.features article,
.review-box,
.booking-card {
  background: rgba(244, 240, 235, 0.96);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.features article {
  padding: 1.5rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.9rem;
}

.feature-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.features h2 {
  margin: 0;
  color: var(--primary-dark);
  font-size: 1.22rem;
}

.features p {
  margin: 0;
  color: var(--muted-dark);
}

.gallery {
  padding: 1rem 0 4rem;
}

.section-heading {
  margin-bottom: 1.5rem;
}

.section-heading h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 2.7rem);
}

.gallery-carousel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem;
}

.carousel-viewport {
  overflow: hidden;
}

.carousel-track {
  display: flex;
  gap: 1rem;
  transition: transform 0.35s ease;
}

.gallery-card {
  flex: 0 0 calc((100% - 2rem) / 3);
  max-width: calc((100% - 2rem) / 3);
}

.gallery-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: block;
}

.carousel-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.carousel-btn:hover,
.carousel-btn:focus-visible {
  background: rgba(109, 138, 99, 0.22);
  transform: translateY(-1px);
}

.booking {
  padding-bottom: 4rem;
}

.booking-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
}

.booking-card h2 {
  margin: 0.2rem 0 0;
  color: var(--primary-dark);
}

.owner {
  padding: 0 0 4.5rem;
}

.owner-card {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(244, 240, 235, 0.96);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.6rem 1.8rem;
  text-align: center;
}

.owner-card h2 {
  margin: 0;
  color: var(--primary-dark);
}

.owner-card p {
  margin: 0.75rem 0 0;
  color: var(--muted-dark);
}

.connect {
  padding: 0 0 2rem;
}

.connect-card {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(244, 240, 235, 0.96);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 1.6rem 1.8rem;
  text-align: center;
}

.connect-card h2 {
  margin: 0;
  color: var(--primary-dark);
}

.phone-line {
  margin: 0.9rem 0 0;
  color: var(--muted-dark);
  font-weight: 600;
}

.phone-line a {
  color: var(--primary-dark);
}

.email-line {
  margin: 0.7rem 0 0;
  color: var(--muted-dark);
  font-weight: 600;
}


.social-links {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 110px;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(29, 29, 27, 0.15);
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.55);
  font-weight: 600;
}

.social-links a:hover,
.social-links a:focus-visible {
  background: rgba(184, 138, 103, 0.16);
}

.site-footer {
  padding: 1.25rem 0 2rem;
  text-align: center;
  color: var(--muted);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: 2.5rem;
  }

  .hero-panel img {
    height: 460px;
  }

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

  .feature-card img {
    height: 220px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(1120px, calc(100% - 24px));
  }

  .about-photos {
    grid-template-columns: 1fr;
  }

  .about-photos img {
    height: 280px;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .hero-panel img {
    height: 360px;
  }

  .features {
    grid-template-columns: 1fr;
  }

  .feature-card img {
    height: 260px;
  }

  .owner {
    padding-bottom: 3.5rem;
  }

  .owner-card {
    padding: 1.35rem 1.2rem;
  }

  .connect-card {
    padding: 1.35rem 1.2rem;
  }

  .gallery-carousel {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }

  .gallery-card {
    flex-basis: 100%;
    max-width: 100%;
  }

  .email-line {
    font-size: 0.9rem;
  }
}
