:root {
  --bg: #f5f1e8;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #fffdf8;
  --surface-dark: #123427;
  --surface-dark-soft: #1f4d3b;
  --text: #14261f;
  --muted: #53645c;
  --line: rgba(20, 38, 31, 0.12);
  --accent: #c46b2f;
  --accent-dark: #9b4e1c;
  --shadow: 0 24px 70px rgba(16, 30, 24, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: min(1120px, calc(100% - 2rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(196, 107, 47, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(17, 66, 50, 0.14), transparent 24%),
    var(--bg);
  line-height: 1.6;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(245, 241, 232, 0.78);
  border-bottom: 1px solid rgba(20, 38, 31, 0.08);
  box-shadow: 0 10px 30px rgba(20, 38, 31, 0.05);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 84px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--surface-dark), var(--surface-dark-soft));
  color: #fff;
  font-weight: 700;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem;
  border: 1px solid rgba(20, 38, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 26px rgba(20, 38, 31, 0.05);
}

.site-nav a {
  color: var(--muted);
  font-weight: 600;
  padding: 0.72rem 0.95rem;
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(18, 52, 39, 0.07);
}

.site-nav a.is-active,
.site-nav a[aria-current="true"] {
  background: var(--surface-dark);
  color: #fff !important;
  box-shadow: 0 10px 22px rgba(18, 52, 39, 0.18);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 8px 24px rgba(20, 38, 31, 0.08);
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
}

.hero,
.section {
  padding: 5.5rem 0;
}

.hero {
  padding-top: 4.5rem;
}

.hero-grid,
.section-grid,
.pricing-layout,
.contact-layout,
.footer-layout {
  display: grid;
  gap: 2rem;
}

.hero-grid,
.section-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

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

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.05;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  max-width: 14ch;
}

h3 {
  font-size: 1.25rem;
}

.lead,
.section p,
.pricing-card p,
.faq-list p,
.contact-card {
  color: var(--muted);
}

.hero-actions,
.pricing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.5rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease;
}

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

.button-primary {
  background: var(--accent);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-dark);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.hero-points,
.check-list,
.room-card ul,
.info-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points {
  display: grid;
  gap: 0.7rem;
}

.hero-points li,
.check-list li,
.room-card li,
.info-panel li {
  position: relative;
  padding-left: 1.4rem;
}

.hero-points li::before,
.check-list li::before,
.room-card li::before,
.info-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.highlight-card,
.feature-card,
.room-card,
.pricing-card,
.info-panel,
.contact-card {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.highlight-card {
  overflow: hidden;
}

.highlight-card img {
  aspect-ratio: 4 / 4.5;
  width: 100%;
  object-fit: cover;
}

.highlight-card__body,
.room-card__body,
.pricing-card,
.info-panel,
.contact-card {
  padding: 1.5rem;
}

.highlight-title {
  margin: 0 0 0.4rem;
  font-weight: 700;
  color: var(--text);
}

.trust-bar {
  padding: 0 0 1.5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.trust-grid div {
  padding: 1.2rem 1rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(20, 38, 31, 0.07);
}

.trust-grid strong,
.trust-grid span {
  display: block;
}

.trust-grid span {
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-stack,
.faq-list {
  display: grid;
  gap: 1rem;
}

.feature-card {
  padding: 1.4rem;
}

.section-accent {
  background: linear-gradient(180deg, rgba(196, 107, 47, 0.08), rgba(255, 255, 255, 0));
}

.section-dark {
  background: linear-gradient(135deg, var(--surface-dark), var(--surface-dark-soft));
  color: #fff;
}

.section-dark .eyebrow,
.section-dark p {
  color: rgba(255, 255, 255, 0.8);
}

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

.section-heading h2 {
  max-width: none;
}

.room-grid,
.gallery-grid {
  display: grid;
  gap: 1.25rem;
}

.room-grid {
  grid-template-columns: repeat(3, 1fr);
}

.room-card {
  overflow: hidden;
}

.room-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.room-card ul,
.info-panel ul {
  display: grid;
  gap: 0.65rem;
}

.gallery-grid {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
}

.gallery-section + .gallery-section {
  margin-top: 3rem;
}

.gallery-section__header {
  margin-bottom: 1.25rem;
}

.gallery-section__header h3 {
  margin-bottom: 0.35rem;
}

.gallery-section__header p {
  margin: 0;
  color: var(--muted);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.gallery-item::after {
  content: "";
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(18, 52, 39, 0.78);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='6.5'/%3E%3Cpath d='m20 20-4.2-4.2'/%3E%3Cpath d='M11 8.4v5.2'/%3E%3Cpath d='M8.4 11h5.2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 18px 18px;
  box-shadow: 0 10px 24px rgba(18, 52, 39, 0.24);
}

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

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
}

.pricing-layout,
.contact-layout,
.footer-layout {
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pricing-row:first-child {
  padding-top: 0;
}

.pricing-note {
  margin-top: 1rem;
}

.text-link {
  display: inline-block;
  margin-top: 1.25rem;
  color: var(--accent-dark);
  font-weight: 700;
}

.faq-list details {
  padding: 1.2rem 1.3rem;
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 38, 31, 0.08);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin: 0.9rem 0 0;
}

.contact-card {
  display: grid;
  gap: 1rem;
}

.contact-line {
  display: grid;
  gap: 0.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.contact-line:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

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

.contact-line strong {
  font-size: 1.1rem;
}

.site-footer {
  padding: 2rem 0 3rem;
}

.site-footer a {
  display: block;
  color: var(--muted);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: rgba(10, 16, 14, 0.88);
  touch-action: pan-y;
}

.lightbox[hidden] {
  display: none;
}

.lightbox-figure {
  margin: 0;
  text-align: center;
  position: relative;
}

.lightbox-image {
  max-width: min(1100px, 100%);
  max-height: 78vh;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.lightbox-caption {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.84);
}

.lightbox-counter {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: rgba(10, 16, 14, 0.6);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 980px) {
  .hero-grid,
  .section-grid,
  .pricing-layout,
  .contact-layout,
  .footer-layout,
  .room-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-item--large {
    grid-column: span 2;
  }

  h1,
  h2 {
    max-width: none;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 253, 248, 0.98);
    box-shadow: var(--shadow);
    gap: 0.45rem;
  }

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

  .site-nav a {
    padding: 0.9rem 1rem;
    border-radius: 16px;
  }

  .site-nav a.is-active,
  .site-nav a[aria-current="true"] {
    box-shadow: none;
  }

  .nav-toggle {
    display: inline-flex;
  }
}

@media (max-width: 720px) {
  .hero,
  .section {
    padding: 4rem 0;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery-item--large {
    grid-column: auto;
    grid-row: auto;
  }

  .pricing-row {
    flex-direction: column;
  }

  .button,
  .site-nav a {
    width: 100%;
  }

  .hero-actions,
  .pricing-actions {
    flex-direction: column;
  }

  .lightbox {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .lightbox-nav {
    display: none;
  }
}
