@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #0f1720;
  --bg-soft: #16212c;
  --surface: rgba(255, 248, 236, 0.96);
  --surface-strong: #fff8ec;
  --text: #18303a;
  --muted: #5f706c;
  --brand: #b85c38;
  --brand-2: #d79f5d;
  --accent: #2b6f62;
  --line: rgba(24, 48, 58, 0.12);
  --shadow: 0 22px 60px rgba(9, 17, 24, 0.16);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(215, 159, 93, 0.26), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(43, 111, 98, 0.18), transparent 24%),
    linear-gradient(180deg, #f7f1e7 0%, #f5efe4 32%, #f0e6d9 100%);
}

.home-page::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(24, 48, 58, 0.06) 0.5px, transparent 0.5px);
  background-size: 4px 4px;
  opacity: 0.2;
  z-index: 0;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(24, 48, 58, 0.08), transparent 40%),
    linear-gradient(315deg, rgba(184, 92, 56, 0.08), transparent 35%);
  pointer-events: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(245, 239, 228, 0.84), rgba(245, 239, 228, 0.62));
  border-bottom: 1px solid rgba(24, 48, 58, 0.06);
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.scrolled {
  background: linear-gradient(180deg, rgba(245, 239, 228, 0.94), rgba(245, 239, 228, 0.8));
  border-bottom-color: rgba(24, 48, 58, 0.14);
  box-shadow: 0 10px 30px rgba(14, 24, 34, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 84px;
  margin-top: 8px;
  margin-bottom: 8px;
  padding: 8px 12px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 249, 237, 0.9), rgba(252, 243, 226, 0.78));
  border: 1px solid rgba(24, 48, 58, 0.1);
  box-shadow:
    0 12px 24px rgba(14, 24, 34, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transition: min-height 220ms ease, box-shadow 220ms ease;
}

.site-header.scrolled .header-inner {
  min-height: 74px;
  box-shadow:
    0 10px 20px rgba(14, 24, 34, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.site-header .brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-header .brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 12px 28px rgba(184, 92, 56, 0.28);
  position: relative;
}

.site-header .brand-mark::before,
.site-header .brand-mark::after {
  content: '';
  position: absolute;
  inset: auto;
  border-radius: 999px;
}

.site-header .brand-mark::before {
  width: 18px;
  height: 18px;
  left: 12px;
  top: 7px;
  border: 2px solid rgba(255, 248, 236, 0.72);
}

.site-header .brand-mark::after {
  width: 24px;
  height: 10px;
  left: 9px;
  bottom: 8px;
  background: rgba(255, 248, 236, 0.84);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.site-header .brand span {
  font-size: 0.92rem;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(24, 48, 58, 0.14);
  background: rgba(255, 248, 236, 0.88);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
  z-index: 45;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  position: relative;
  display: block;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), opacity 160ms ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle-label span::before {
  top: -6px;
}

.nav-toggle-label span::after {
  top: 6px;
}

body.mobile-nav-open .nav-toggle-label {
  background: rgba(255, 248, 236, 0.98);
  border-color: rgba(184, 92, 56, 0.34);
  transform: rotate(0.001deg);
}

body.mobile-nav-open .nav-toggle-label span {
  background: transparent;
}

body.mobile-nav-open .nav-toggle-label span::before {
  top: 0;
  transform: rotate(45deg);
}

body.mobile-nav-open .nav-toggle-label span::after {
  top: 0;
  transform: rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px;
  border-radius: 999px;
  border: 1px solid rgba(178, 112, 68, 0.2);
  background: rgba(255, 248, 234, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  position: relative;
  --active-x: 0px;
  --active-w: 0px;
}

.site-nav::before {
  content: '';
  position: absolute;
  left: var(--active-x);
  top: 6px;
  height: calc(100% - 12px);
  width: var(--active-w);
  border-radius: 999px;
  background: linear-gradient(135deg, #b85c38, #d68555 52%, #e3a16a);
  border: 1px solid rgba(255, 240, 220, 0.45);
  box-shadow:
    0 10px 18px rgba(184, 92, 56, 0.3),
    inset 0 1px 0 rgba(255, 245, 236, 0.4);
  opacity: 0;
  transition: left 360ms cubic-bezier(0.22, 1, 0.36, 1), width 360ms cubic-bezier(0.22, 1, 0.36, 1), opacity 220ms ease;
  z-index: 0;
}

.site-nav.has-indicator::before {
  opacity: 1;
}

.site-nav a {
  position: relative;
  color: rgba(24, 48, 58, 0.8);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
  z-index: 1;
}

.site-nav a::after {
  content: none;
}

.site-nav a:hover {
  color: #5d2f1d;
  background: rgba(255, 248, 234, 0.92);
  transform: translateY(-1px);
}

.site-nav a[aria-current='page'] {
  color: #fff8ec;
  background: transparent;
  border: 1px solid transparent;
  box-shadow: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), #d26a46);
  background-size: 140% 140%;
  background-position: 0% 50%;
  color: #fff8ec;
  font-weight: 700;
  box-shadow: 0 16px 28px rgba(184, 92, 56, 0.24);
  border: 1px solid rgba(255, 243, 224, 0.34);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms cubic-bezier(0.22, 1, 0.36, 1),
    background-position 300ms ease;
}

.header-cta:hover {
  transform: translateY(-2px) scale(1.01);
  background-position: 100% 50%;
  box-shadow:
    0 22px 34px rgba(184, 92, 56, 0.34),
    0 0 0 1px rgba(255, 244, 230, 0.16) inset;
}

.header-cta:active {
  transform: translateY(0) scale(0.985);
}

.header-cta:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255, 248, 236, 0.96),
    0 0 0 6px rgba(184, 92, 56, 0.38);
}

.header-cta::before {
  content: '';
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -120%;
  width: 38%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  z-index: 1;
  transition: left 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.header-cta:hover::before {
  left: 125%;
}

.header-cta::after {
  content: '→';
  margin-left: 8px;
  font-size: 0.95rem;
  transform: translateX(0);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.header-cta:hover::after {
  transform: translateX(3px);
}

.hero,
.section,
.site-footer {
  position: relative;
  z-index: 1;
}

.hero {
  padding: 40px 0 54px;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(3px);
  pointer-events: none;
}

.hero::before {
  width: 320px;
  height: 320px;
  right: -110px;
  top: 20px;
  background: radial-gradient(circle, rgba(215, 159, 93, 0.22), transparent 70%);
}

.hero::after {
  width: 280px;
  height: 280px;
  left: -120px;
  bottom: 10px;
  background: radial-gradient(circle, rgba(43, 111, 98, 0.2), transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-aside,
.card,
.section-card,
.content-panel,
.info-panel,
.quote,
.form-panel,
.gallery-tile,
.experience-tile {
  background: var(--surface);
  border: 1px solid rgba(24, 48, 58, 0.08);
  box-shadow: var(--shadow);
}

.hero-copy {
  border-radius: 36px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 680px;
  background:
    linear-gradient(180deg, rgba(255, 244, 226, 0.95), rgba(255, 239, 212, 0.9)),
    url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1600&q=80') center/cover;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(2px);
  border: 1px solid rgba(178, 112, 68, 0.22);
  box-shadow:
    0 26px 56px rgba(125, 76, 45, 0.18),
    inset 0 1px 0 rgba(255, 252, 244, 0.8);
}

.hero-copy::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 245, 228, 0.88) 0%, rgba(255, 244, 226, 0.5) 52%, rgba(255, 244, 226, 0.2) 100%);
}

.hero-copy::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 30px;
  border: 1px solid rgba(178, 112, 68, 0.14);
  pointer-events: none;
}

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

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(178, 112, 68, 0.22);
  background: rgba(255, 244, 226, 0.84);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
}

.hero-kicker::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  font-weight: 800;
  color: var(--brand);
}

.eyebrow::before {
  content: '';
  width: 38px;
  height: 1px;
  background: currentColor;
}

.hero-copy h1,
.page-hero h1 {
  margin: 16px 0 18px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(3.5rem, 7vw, 6.7rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  max-width: 10ch;
  text-shadow: 0 10px 22px rgba(24, 48, 58, 0.16);
}

.hero-copy p,
.section-copy p,
.page-hero p,
.card p,
.content-panel p,
.info-panel p,
.quote p,
.form-panel p,
.experience-tile p,
.gallery-tile p {
  color: var(--muted);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 24px;
}

.quick-book {
  margin-top: 14px;
  border-radius: 20px;
  border: 1px solid rgba(178, 112, 68, 0.2);
  background: linear-gradient(145deg, rgba(255, 251, 243, 0.82), rgba(255, 242, 218, 0.78));
  padding: 10px;
}

.booking-note {
  margin: 10px 0 0;
  font-size: 0.86rem;
  color: rgba(24, 48, 58, 0.74);
}

.compact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: end;
}

.compact-grid label {
  margin: 0;
}

.compact-grid input,
.compact-grid select {
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 12px;
}

.compact-grid .btn {
  min-height: 46px;
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms cubic-bezier(0.22, 1, 0.36, 1),
    background-position 300ms ease,
    border-color 220ms ease;
}

.btn:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 18px 32px rgba(24, 48, 58, 0.2);
}

.btn:active {
  transform: translateY(0) scale(0.985);
}

.btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 3px rgba(255, 248, 236, 0.95),
    0 0 0 6px rgba(43, 111, 98, 0.45);
}

.btn::before {
  content: '';
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -120%;
  width: 38%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-18deg);
  z-index: 1;
  transition: left 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:hover::before {
  left: 125%;
}

.btn > * {
  position: relative;
  z-index: 2;
}

.btn-primary {
  background:
    linear-gradient(135deg, #bb5d38, #d8784f 42%, #e59f66 100%);
  background-size: 140% 140%;
  background-position: 0% 50%;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow:
    0 14px 24px rgba(184, 92, 56, 0.26),
    inset 0 1px 0 rgba(255, 245, 236, 0.52);
}

.btn-primary:hover {
  background-position: 100% 50%;
  box-shadow:
    0 22px 36px rgba(184, 92, 56, 0.34),
    0 0 0 1px rgba(255, 245, 236, 0.2) inset;
}

.btn-secondary {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(238, 246, 250, 0.76));
  color: var(--text);
  border-color: rgba(35, 87, 106, 0.22);
  box-shadow:
    0 10px 18px rgba(24, 48, 58, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.btn-secondary:hover {
  border-color: rgba(35, 87, 106, 0.34);
  box-shadow:
    0 16px 28px rgba(24, 48, 58, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: auto;
}

.meta-chip,
.stat,
.feature,
.info-item,
.place-card,
.amenity,
.pill,
.schedule,
.contact-card {
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(24, 48, 58, 0.08);
}

.meta-chip {
  padding: 18px;
  transition: transform 220ms ease, background 220ms ease;
}

.meta-chip:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.9);
}

.meta-chip strong,
.stat strong,
.feature strong,
.amenity strong,
.place-card strong,
.schedule strong,
.contact-card strong {
  display: block;
  font-size: 1.05rem;
}

.meta-chip span,
.stat span,
.feature span,
.amenity span,
.place-card span,
.schedule span,
.contact-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-aside {
  border-radius: 36px;
  padding: 22px;
  display: grid;
  align-content: center;
  gap: 14px;
  background:
    linear-gradient(160deg, rgba(228, 238, 244, 0.96), rgba(210, 226, 236, 0.92));
  border: 1px solid rgba(39, 94, 122, 0.24);
  box-shadow:
    0 26px 56px rgba(20, 57, 79, 0.18),
    inset 0 1px 0 rgba(244, 250, 255, 0.9);
  position: relative;
  overflow: hidden;
}

.hero-aside::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  right: -84px;
  top: -88px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(57, 140, 178, 0.24), transparent 68%);
  pointer-events: none;
}

.hero-aside::after {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  left: -70px;
  bottom: -80px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(30, 110, 132, 0.2), transparent 70%);
  pointer-events: none;
}

.hero-scenic {
  min-height: 255px;
  border-radius: 28px;
  background:
    linear-gradient(150deg, rgba(15, 23, 32, 0.2), transparent 48%),
    url('https://images.unsplash.com/photo-1501117716987-c8e2a15a7f54?auto=format&fit=crop&w=1200&q=80') center/cover;
  box-shadow:
    0 20px 42px rgba(9, 17, 24, 0.22),
    inset 0 0 0 1px rgba(230, 244, 252, 0.36);
  position: relative;
}

.hero-scenic::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(231, 245, 254, 0.12), transparent 40%);
}

.metric-cloud {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.metric-pill {
  border-radius: 14px;
  border: 1px solid rgba(36, 95, 124, 0.2);
  background: rgba(237, 247, 252, 0.78);
  backdrop-filter: blur(8px);
  padding: 12px 14px;
  box-shadow: 0 10px 24px rgba(22, 65, 90, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
  position: relative;
  z-index: 1;
}

.metric-pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(9, 17, 24, 0.16);
}

.metric-pill strong {
  display: block;
  font-size: 1.15rem;
  line-height: 1;
  margin-bottom: 5px;
  color: var(--text);
}

.metric-pill span {
  color: var(--muted);
  line-height: 1.35;
  font-size: 0.8rem;
}

.section {
  padding: 20px 0 72px;
}

.section-tight {
  padding-top: 0;
  padding-bottom: 52px;
}

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

.trust-item {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(24, 48, 58, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.trust-item strong {
  display: block;
  margin-bottom: 6px;
}

.trust-item span {
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.92rem;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 24px;
}

.section-heading h2,
.section-copy h2,
.content-panel h2,
.info-panel h2,
.quote h2,
.form-panel h2 {
  margin: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.02em;
}

.section-heading p {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

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

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

.card,
.section-card,
.content-panel,
.info-panel,
.quote,
.form-panel,
.gallery-tile,
.experience-tile {
  border-radius: var(--radius-xl);
}

.card,
.section-card,
.experience-tile,
.gallery-tile {
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.card:hover,
.section-card:hover,
.experience-tile:hover,
.gallery-tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 28px 44px rgba(9, 17, 24, 0.2);
}

.card .media,
.section-card .media,
.experience-tile .media,
.gallery-tile .media {
  aspect-ratio: 1.08 / 0.8;
  background-size: cover;
  background-position: center;
}

.card .body,
.section-card .body,
.experience-tile .body,
.gallery-tile .body,
.content-panel,
.info-panel,
.quote,
.form-panel {
  padding: 24px;
}

.room-card {
  position: relative;
}

.room-price {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(24, 48, 58, 0.1);
  background: rgba(184, 92, 56, 0.1);
  color: #8d3f22;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.room-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  color: #1b5347;
}

.room-link::after {
  content: '→';
  margin-left: 8px;
  transition: transform 180ms ease;
}

.room-link:hover::after {
  transform: translateX(3px);
}

.price-pill {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  border: 1px solid rgba(24, 48, 58, 0.1);
  background: rgba(184, 92, 56, 0.1);
  color: #8d3f22;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.card h3,
.section-card h3,
.experience-tile h3,
.gallery-tile h3,
.content-panel h3,
.info-panel h3,
.contact-card h3,
.feature h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
}

.card ul,
.content-list,
.amenity-list,
.places-list,
.bullet-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.card li,
.content-list li,
.amenity-list li,
.places-list li,
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.card li::before,
.content-list li::before,
.amenity-list li::before,
.places-list li::before,
.bullet-list li::before {
  content: '•';
  color: var(--brand);
  flex: none;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
}

.content-panel {
  min-height: 100%;
}

.section-card {
  background:
    linear-gradient(180deg, rgba(255, 248, 236, 0.95), rgba(255, 248, 236, 0.88)),
    url('https://images.unsplash.com/photo-1517394834181-95ed1592f1c7?auto=format&fit=crop&w=1400&q=80') center/cover;
  position: relative;
}

.section-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 248, 236, 0.1), rgba(255, 248, 236, 0.72));
}

.section-card .body {
  position: relative;
  z-index: 1;
}

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

.feature {
  padding: 22px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.feature:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 92, 56, 0.22);
}

.feature .icon,
.pill .icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(184, 92, 56, 0.14), rgba(215, 159, 93, 0.18));
  color: var(--brand);
  font-size: 1.1rem;
}

.page-hero {
  padding: 54px 0 22px;
}

.page-hero .intro {
  max-width: 70ch;
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.8;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.rooms-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.rooms-quick-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.rooms-fact {
  border-radius: 14px;
  border: 1px solid rgba(24, 48, 58, 0.12);
  background: rgba(255, 255, 255, 0.74);
  padding: 12px 14px;
}

.rooms-fact strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.rooms-fact span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.contact-quick-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.fact-item {
  border-radius: 14px;
  border: 1px solid rgba(24, 48, 58, 0.12);
  background: rgba(255, 255, 255, 0.74);
  padding: 12px 14px;
}

.fact-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.fact-item span {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.page-hero-panel {
  margin-top: 26px;
  padding: 26px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(24, 48, 58, 0.95), rgba(43, 111, 98, 0.82));
  color: #fff7ea;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  box-shadow: var(--shadow);
}

.page-hero-panel .pill {
  padding: 18px;
  background: rgba(255, 248, 236, 0.08);
  border-color: rgba(255, 248, 236, 0.12);
}

.page-hero-panel .pill span {
  color: rgba(255, 247, 238, 0.78);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(24, 48, 58, 0.08);
}

.timeline-item strong {
  color: var(--brand);
}

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

.gallery-tile:nth-child(1) { grid-column: span 7; }
.gallery-tile:nth-child(2) { grid-column: span 5; }
.gallery-tile:nth-child(3) { grid-column: span 4; }
.gallery-tile:nth-child(4) { grid-column: span 4; }
.gallery-tile:nth-child(5) { grid-column: span 4; }
.gallery-tile:nth-child(6) { grid-column: span 12; }

.gallery-tile .media {
  aspect-ratio: 1.3 / 0.9;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
}

.contact-card,
.info-item,
.schedule {
  padding: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.form-panel form {
  display: grid;
  gap: 14px;
}

.response-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(43, 111, 98, 0.24);
  background: rgba(43, 111, 98, 0.1);
  color: #1e5348;
  font-size: 0.84rem;
  font-weight: 700;
}

.response-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #2b6f62;
}

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

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 15px;
  border-radius: 16px;
  border: 1px solid rgba(24, 48, 58, 0.14);
  background: rgba(255, 255, 255, 0.88);
  color: var(--text);
}

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

.map-frame {
  border: 0;
  width: 100%;
  min-height: 320px;
  border-radius: 24px;
}

.contact-info-panel {
  background: linear-gradient(165deg, rgba(255, 250, 241, 0.94), rgba(237, 246, 251, 0.9));
}

.contact-schedule {
  margin-top: 14px;
}

.contact-map-wrap {
  margin-top: 14px;
}

.quote {
  display: grid;
  gap: 14px;
  background: linear-gradient(135deg, rgba(24, 48, 58, 0.96), rgba(15, 23, 32, 0.96));
  color: #fff7ea;
}

.quote p,
.quote span {
  color: rgba(255, 247, 238, 0.82);
}

.site-footer {
  padding: 28px 0 46px;
}

.footer-card {
  border-radius: 32px;
  padding: 30px;
  background:
    radial-gradient(circle at 15% 0%, rgba(215, 159, 93, 0.2), transparent 34%),
    radial-gradient(circle at 85% 100%, rgba(43, 111, 98, 0.2), transparent 32%),
    linear-gradient(135deg, rgba(24, 48, 58, 0.98), rgba(14, 24, 34, 0.98));
  color: #fff6e8;
  display: grid;
  gap: 24px;
  border: 1px solid rgba(255, 246, 234, 0.14);
  box-shadow:
    0 24px 44px rgba(8, 14, 20, 0.35),
    inset 0 1px 0 rgba(255, 246, 234, 0.2);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 24px;
  align-items: start;
}

.footer-brand {
  border-radius: 24px;
  padding: 18px;
  border: 1px solid rgba(255, 246, 234, 0.14);
  background: rgba(255, 246, 234, 0.05);
}

.footer-brand .brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.footer-brand .brand span {
  font-size: 0.92rem;
}

.footer-brand .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--brand), var(--brand-2));
  box-shadow: 0 10px 22px rgba(184, 92, 56, 0.24);
  position: relative;
}

.footer-brand .brand-mark::before,
.footer-brand .brand-mark::after {
  content: '';
  position: absolute;
  border-radius: 999px;
}

.footer-brand .brand-mark::before {
  width: 16px;
  height: 16px;
  left: 12px;
  top: 7px;
  border: 2px solid rgba(255, 248, 236, 0.74);
}

.footer-brand .brand-mark::after {
  width: 22px;
  height: 9px;
  left: 9px;
  bottom: 8px;
  background: rgba(255, 248, 236, 0.86);
  clip-path: polygon(0 100%, 50% 0, 100% 100%);
}

.footer-title {
  margin: 14px 0 10px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
}

.footer-text {
  margin: 0;
  color: rgba(255, 246, 234, 0.82);
  line-height: 1.7;
  max-width: 48ch;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.footer-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff6e8;
  border: 1px solid rgba(255, 246, 234, 0.28);
  background: rgba(255, 246, 234, 0.09);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer-chip:hover {
  transform: translateY(-1px);
  background: rgba(255, 246, 234, 0.18);
  border-color: rgba(255, 246, 234, 0.42);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.footer-section {
  border-radius: 18px;
  padding: 16px;
  border: 1px solid rgba(255, 246, 234, 0.12);
  background: rgba(255, 246, 234, 0.04);
}

.footer-heading {
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff6e8;
}

.footer-card a,
.footer-card p,
.footer-card li {
  color: rgba(255, 246, 234, 0.82);
}

.footer-card ul {
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.footer-section li,
.footer-section a {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.small {
  font-size: 0.92rem;
  color: rgba(255, 246, 234, 0.74);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 246, 234, 0.18);
  padding-top: 14px;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 246, 234, 0.24);
  background: rgba(255, 246, 234, 0.06);
  font-size: 0.82rem;
  transition: background 180ms ease, transform 180ms ease;
}

.footer-social a:hover {
  transform: translateY(-1px);
  background: rgba(255, 246, 234, 0.14);
}

.footer-note {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 246, 234, 0.76);
}

.faq-grid {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 18px;
  border: 1px solid rgba(24, 48, 58, 0.12);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  padding: 16px 18px;
  transition: transform 220ms ease;
}

.faq-item[open] {
  transform: translateY(-2px);
}

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

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.mobile-sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  min-height: 52px;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #d26a46);
  box-shadow: 0 18px 30px rgba(184, 92, 56, 0.34);
  z-index: 60;
}

.hero-copy,
.hero-aside,
.metric-pill,
.trust-item,
.feature,
.card,
.quote,
.faq-item {
  animation: fadeRise 700ms ease both;
}

.hero-aside { animation-delay: 80ms; }
.metric-pill:nth-child(1) { animation-delay: 40ms; }
.metric-pill:nth-child(2) { animation-delay: 70ms; }
.metric-pill:nth-child(3) { animation-delay: 100ms; }
.metric-pill:nth-child(4) { animation-delay: 130ms; }
.metric-pill:nth-child(5) { animation-delay: 160ms; }
.metric-pill:nth-child(6) { animation-delay: 190ms; }
.trust-item:nth-child(1) { animation-delay: 40ms; }
.trust-item:nth-child(2) { animation-delay: 80ms; }
.trust-item:nth-child(3) { animation-delay: 120ms; }

@keyframes fadeRise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-banner {
  border-radius: 24px;
  padding: 18px 20px;
  background: rgba(24, 48, 58, 0.06);
  border: 1px solid rgba(24, 48, 58, 0.08);
}

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

.stat {
  padding: 18px;
}

@media (max-width: 1080px) {
  .hero-grid,
  .split,
  .contact-layout,
  .footer-grid,
  .grid-3,
  .feature-grid,
  .page-hero-panel,
  .grid-2,
  .contact-grid,
  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

  .grid-3,
  .grid-2,
  .contact-grid,
  .footer-grid,
  .stat-grid {
    gap: 16px;
  }

  .footer-grid > :first-child {
    grid-column: 1 / -1;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .contact-quick-facts {
    grid-template-columns: 1fr 1fr;
  }

  .rooms-quick-strip {
    grid-template-columns: 1fr 1fr;
  }

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

  .trust-strip {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .header-inner {
    min-height: 74px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding: 6px 8px;
  }

  .nav-toggle-label {
    display: inline-flex;
    border-radius: 12px;
    border-color: rgba(24, 48, 58, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
  }

  .site-nav {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    left: auto;
    width: min(86vw, 360px);
    height: 100dvh;
    display: grid;
    align-content: start;
    gap: 10px;
    padding: 88px 18px 24px;
    border-radius: 0;
    background: linear-gradient(165deg, rgba(255, 250, 241, 0.99), rgba(249, 238, 217, 0.98));
    border-left: 1px solid rgba(24, 48, 58, 0.12);
    border-top: 0;
    border-bottom: 0;
    border-right: 0;
    box-shadow:
      -20px 0 42px rgba(14, 24, 34, 0.22),
      inset 0 1px 0 rgba(255, 255, 255, 0.76);
    transform: translateX(108%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-nav::before {
    display: none;
  }

  .site-nav a {
    padding: 13px 14px;
    border-radius: 14px;
    border: 1px solid rgba(24, 48, 58, 0.1);
    background: rgba(255, 250, 241, 0.74);
    opacity: 0;
    transform: translateY(6px);
    transition: opacity 220ms ease, transform 220ms ease, background 180ms ease, color 180ms ease;
  }

  .site-nav a:hover {
    background: rgba(255, 243, 221, 0.96);
  }

  .nav-toggle:checked ~ .site-nav {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-toggle:checked ~ .site-nav a {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-toggle:checked ~ .site-nav a:nth-child(1) { transition-delay: 40ms; }
  .nav-toggle:checked ~ .site-nav a:nth-child(2) { transition-delay: 80ms; }
  .nav-toggle:checked ~ .site-nav a:nth-child(3) { transition-delay: 120ms; }
  .nav-toggle:checked ~ .site-nav a:nth-child(4) { transition-delay: 160ms; }
  .nav-toggle:checked ~ .site-nav a:nth-child(5) { transition-delay: 200ms; }
  .nav-toggle:checked ~ .site-nav a:nth-child(6) { transition-delay: 240ms; }

  .site-nav a:hover {
    transform: none;
  }

  .site-nav a[aria-current='page'] {
    box-shadow: 0 8px 14px rgba(184, 92, 56, 0.26);
    border-color: rgba(184, 92, 56, 0.38);
    background: linear-gradient(135deg, #b85c38, #d68555 52%, #e3a16a);
  }

  .site-nav a:last-child {
    margin-top: 8px;
    text-align: center;
    border-radius: 999px;
    border-color: rgba(184, 92, 56, 0.4);
    background: linear-gradient(135deg, rgba(184, 92, 56, 0.14), rgba(215, 159, 93, 0.2));
    font-weight: 700;
  }

  .header-cta {
    display: none;
  }

  .mobile-sticky-cta {
    display: inline-flex;
  }

  .hero,
  .section,
  .page-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-grid,
  .split,
  .contact-layout,
  .footer-grid,
  .grid-3,
  .feature-grid,
  .page-hero-panel,
  .contact-grid,
  .field-grid,
  .timeline-item,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: start;
  }

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

  .contact-hero-actions,
  .contact-quick-facts,
  .rooms-quick-strip {
    grid-template-columns: 1fr;
  }

  .contact-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .rooms-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-copy {
    min-height: auto;
    padding: 28px;
  }

  .hero-copy h1,
  .page-hero h1 {
    max-width: none;
  }

  .hero-meta,
  .metric-cloud {
    grid-template-columns: 1fr;
  }

  .section-heading {
    flex-direction: column;
    align-items: start;
  }

  .gallery-tile:nth-child(n) {
    grid-column: auto;
  }
}

body.mobile-nav-open {
  overflow: hidden;
}

body.mobile-nav-open::after {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(13, 22, 30, 0.42);
  backdrop-filter: blur(3px);
  z-index: 15;
}

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

  .hero-copy,
  .hero-aside,
  .card .body,
  .section-card .body,
  .experience-tile .body,
  .gallery-tile .body,
  .content-panel,
  .info-panel,
  .quote,
  .form-panel,
  .footer-card {
    padding: 20px;
  }

  .footer-brand,
  .footer-section {
    padding: 14px;
  }

  .hero-copy h1,
  .page-hero h1 {
    font-size: clamp(2.9rem, 14vw, 4.4rem);
  }

  .timeline-item {
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
}
