:root {
  --bg: #f6efe4;
  --paper: rgba(255, 251, 245, 0.82);
  --paper-strong: #fffaf2;
  --ink: #1f2a1f;
  --muted: #5c665b;
  --accent: #bb5a2a;
  --accent-dark: #8f3f1a;
  --accent-soft: #e7b897;
  --olive: #667a45;
  --line: rgba(31, 42, 31, 0.12);
  --shadow: 0 20px 60px rgba(82, 55, 26, 0.14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(187, 90, 42, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(102, 122, 69, 0.18), transparent 22%),
    linear-gradient(180deg, #f9f4ec 0%, var(--bg) 56%, #efe2cf 100%);
  min-height: 100vh;
}

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

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

.site-shell {
  width: min(var(--content-width), calc(100% - 2rem));
  margin: 0 auto;
}

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255, 250, 242, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand-mark {
  font-size: 0.8rem;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: var(--accent);
}

.brand-name {
  font-size: 1.45rem;
  font-weight: 700;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.55rem;
}

.nav a {
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  font-size: 0.95rem;
  transition: 0.25s ease;
}

.nav a:hover,
.nav a.active {
  background: var(--ink);
  color: #fffaf2;
}

main {
  padding: 1.5rem 0 3rem;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 250, 242, 0.9), rgba(238, 219, 194, 0.86));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--shadow);
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -6% -22% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(187, 90, 42, 0.18) 0%, rgba(187, 90, 42, 0) 70%);
}

.hero-grid,
.page-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
  padding: 3rem;
}

.page-hero-grid {
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-visuals,
.experience-stack {
  display: grid;
  gap: 1rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.8rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(102, 122, 69, 0.12);
  color: var(--olive);
  text-transform: uppercase;
  letter-spacing: 0.16rem;
  font-size: 0.75rem;
}

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

h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  max-width: 10ch;
}

.hero p,
.page-hero p,
.section-intro {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions,
.inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.8rem 1.25rem;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: #fffaf2;
  font: inherit;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.button:hover,
button:hover {
  transform: translateY(-1px);
  background: var(--accent-dark);
}

.button.secondary:hover {
  background: rgba(31, 42, 31, 0.06);
}

.showcase-card,
.info-card,
.stat-card,
.booking-card,
.panel,
.highlight-card {
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.showcase-card {
  align-self: end;
  padding: 1.5rem;
}

.showcase-card-image,
.visual-tile,
.immersive-panel {
  overflow: hidden;
}

.showcase-card-image {
  padding: 0;
}

.showcase-card-image img,
.visual-tile img,
.immersive-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase-card-image img {
  min-height: 220px;
}

.showcase-card-copy {
  padding: 1.35rem 1.5rem 1.5rem;
}

.showcase-card h2 {
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
}

.showcase-list,
.feature-list,
.contact-list,
.mini-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.showcase-list li,
.feature-list li,
.contact-list li,
.mini-list li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}

.showcase-list li:last-child,
.feature-list li:last-child,
.contact-list li:last-child,
.mini-list li:last-child {
  border-bottom: none;
}

.section {
  padding: 1.3rem 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.cards-3,
.cards-2,
.stats-grid,
.offers-grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.info-card,
.stat-card,
.highlight-card,
.booking-card,
.panel {
  padding: 1.35rem;
}

.visual-tile,
.color-note {
  background: linear-gradient(160deg, rgba(255, 247, 236, 0.92), rgba(236, 220, 255, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.visual-tile {
  position: relative;
  min-height: 250px;
}

.visual-caption {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1.1rem;
  border-radius: 18px;
  background: rgba(17, 27, 46, 0.58);
  color: #fffaf2;
  backdrop-filter: blur(10px);
}

.visual-caption strong {
  font-size: 1.1rem;
}

.immersive-panel {
  position: relative;
  padding-top: 220px;
  background: linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(240, 227, 212, 0.9));
}

.immersive-art {
  position: absolute;
  inset: 0 0 auto;
  height: 190px;
}

.color-note {
  padding: 1.15rem 1.25rem;
}

.color-note p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.info-card h3,
.booking-card h3,
.highlight-card h3,
.panel h3 {
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

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

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

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  background: rgba(102, 122, 69, 0.11);
  color: var(--olive);
  font-size: 0.85rem;
}

.stat-card strong {
  display: block;
  font-size: 2rem;
  color: var(--accent-dark);
}

.split-layout,
.booking-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

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

.field,
.field-full {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(31, 42, 31, 0.13);
  border-radius: var(--radius-sm);
  background: #fffdf8;
  font: inherit;
  color: var(--ink);
}

textarea {
  resize: vertical;
  min-height: 140px;
}

.note {
  margin-top: 0.9rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.banner-strip {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.25rem 1.35rem;
  background: linear-gradient(135deg, rgba(102, 122, 69, 0.14), rgba(255, 250, 242, 0.88));
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

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

.footer-panel {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: rgba(31, 42, 31, 0.94);
  color: #f8f1e5;
  border-radius: 24px;
}

.footer-panel p {
  margin: 0.2rem 0 0;
  color: rgba(248, 241, 229, 0.75);
}

.city-ribbon {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.city-ribbon span {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(31, 42, 31, 0.06);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero,
.page-hero,
.section,
.footer-panel {
  animation: rise 0.75s ease both;
}

@media (max-width: 980px) {
  .hero-grid,
  .page-hero-grid,
  .split-layout,
  .booking-layout,
  .cards-2,
  .cards-3,
  .stats-grid,
  .offers-grid,
  .form-grid,
  .banner-strip {
    grid-template-columns: 1fr;
  }

  .topbar,
  .footer-panel,
  .section-head {
    border-radius: 24px;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 1rem, var(--content-width));
  }

  .topbar {
    padding: 1rem;
    border-radius: 28px;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero-grid,
  .page-hero-grid {
    padding: 2rem 1.25rem;
  }

  .immersive-panel {
    padding-top: 180px;
  }

  .immersive-art {
    height: 150px;
  }

  h1 {
    font-size: 2.8rem;
  }

  .footer-panel {
    flex-direction: column;
  }
}
