:root {
  --bg: #f2efe9;
  --surface: #fbf9f6;
  --text: #1b2326;
  --muted: #5f6669;
  --brand: #ad1c42;
  --accent: #1f2a2e;
  --border: rgba(31, 42, 46, 0.12);
  --radius: 18px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  --container: min(1120px, 92vw);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 90% 12%, rgba(173, 28, 66, 0.11), transparent 35%),
    radial-gradient(circle at 12% 90%, rgba(31, 42, 46, 0.09), transparent 30%),
    var(--bg);
  line-height: 1.55;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  background: rgba(10, 15, 18, 0.58);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.08em;
  font-size: clamp(1.2rem, 2.2vw, 1.9rem);
  text-decoration: none;
  color: #fff;
}

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

.main-nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  transition: background 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  color: #fff;
  border-radius: 10px;
  padding: 0.35rem 0.6rem;
}

.hero {
  position: relative;
  min-height: 95vh;
  display: grid;
  align-items: end;
  padding: 120px 0 64px;
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(10, 14, 17, 0.72), rgba(10, 14, 17, 0.37));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  color: #fff;
}

.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.72rem;
  margin: 0 0 0.7rem;
  color: rgba(255, 255, 255, 0.8);
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.7rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 1.07;
}

h1 {
  font-size: clamp(2.4rem, 5.8vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 4.3vw, 3.4rem);
}

h3 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
}

h4 {
  font-size: clamp(1.2rem, 2.3vw, 1.8rem);
}

.hero-subtitle,
.lead {
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  color: inherit;
  opacity: 0.95;
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  border-radius: 999px;
  padding: 0.84rem 1.4rem;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--brand);
  box-shadow: 0 10px 26px rgba(173, 28, 66, 0.33);
}

.btn-outline {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.07);
}

.section {
  padding: 84px 0;
}

.section-kicker {
  margin: 0 0 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  color: var(--brand);
}

.section-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 1.3rem;
  align-items: start;
}

.highlights {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.highlights li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.room-card {
  margin-top: 1.3rem;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.2rem;
}

.cottage-showcase {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 1rem;
  align-items: start;
}

.cottage-showcase .room-card {
  margin-top: 0;
  height: 100%;
}

#cottage-gallery {
  min-width: 0;
}

.room-capacity {
  margin: 0.15rem 0 0.8rem;
  color: var(--brand);
  font-weight: 700;
}

.room-details {
  margin: 0;
  color: var(--muted);
}

.cottage-slider {
  margin-top: 0;
}

.cottage-slider__viewport {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  touch-action: pan-y;
}

.cottage-slider__track {
  display: flex;
  transition: transform 0.7s ease;
  will-change: transform;
}

.cottage-slider__slide {
  margin: 0;
  flex: 0 0 100%;
  aspect-ratio: 15 / 9;
  overflow: hidden;
}

.cottage-slider__slide img,
.amenities-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
}

.cottage-slider__slide,
.amenities-images figure {
  margin: 0;
  overflow: hidden;
}

.amenities-images figure {
  aspect-ratio: 4 / 3;
  border: 1px solid var(--border);
}

.cottage-slider__dots {
  margin-top: 0.7rem;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.cottage-slider__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  background: rgba(31, 42, 46, 0.28);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.cottage-slider__dot.is-active {
  width: 26px;
  background: var(--brand);
}

.amenities-layout {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.amenities-list {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.amenities-list li {
  margin-bottom: 0.52rem;
}

.amenities-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.7rem;
}

.table-wrap {
  margin-top: 1rem;
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
  background: #fff;
}

.price-table th,
.price-table td {
  padding: 0.85rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid rgba(31, 42, 46, 0.09);
  font-size: 0.93rem;
}

.price-table th {
  background: var(--brand);
  color: #fff;
  position: sticky;
  top: 0;
}

.price-table tbody tr:nth-child(even) td {
  background: rgba(243, 240, 235, 0.55);
}

.disclaimers {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.transfer {
  color: #fefaf5;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(135deg, var(--brand), #6f102a);
}

.transfer .section-kicker {
  color: rgba(255, 255, 255, 0.75);
}

.transfer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.transfer-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 1rem;
  backdrop-filter: blur(3px);
}

.transfer-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  align-items: start;
}

.booking-form {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.field {
  margin-bottom: 0.7rem;
}

.field label {
  display: block;
  font-size: 0.86rem;
  margin-bottom: 0.26rem;
  color: var(--muted);
}

.field input,
.field textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(31, 42, 46, 0.24);
  padding: 0.68rem 0.75rem;
  font: inherit;
  background: #fff;
}

.field input:focus,
.field textarea:focus {
  outline: 2px solid rgba(173, 28, 66, 0.24);
  border-color: var(--brand);
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.privacy {
  font-size: 0.86rem;
  color: var(--muted);
}

.form-status {
  min-height: 1.5rem;
  margin: 0.7rem 0 0;
  color: var(--brand);
  font-size: 0.9rem;
}

.hp-field {
  display: none;
}

.contacts-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.1rem;
}

.address {
  white-space: pre-line;
  color: var(--muted);
}

.contacts-list {
  margin: 1rem 0 0;
  list-style: none;
  padding: 0;
}

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

.contacts-list span {
  color: var(--muted);
}

.contacts-list a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dashed rgba(31, 42, 46, 0.3);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 360px;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

.site-footer {
  padding: 42px 0 52px;
  background: #11181a;
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
}

.footer-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  margin: 0 0 0.35rem;
}

.site-footer a {
  color: #fff;
}

.noscript {
  background: #ffdede;
  color: #6b0a15;
  text-align: center;
  padding: 0.65rem;
}

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    right: 4vw;
    top: 62px;
    background: rgba(9, 13, 16, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 0.55rem;
    display: none;
  }

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

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-grid,
  .cottage-showcase,
  .amenities-layout,
  .booking-grid,
  .contacts-grid,
  .transfer-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 620px) {
  .hero {
    min-height: 88vh;
  }

  .section {
    padding: 66px 0;
  }

  .two-cols,
  .amenities-images {
    grid-template-columns: 1fr;
  }

}
