:root {
  /* Brand palette tuned from image1.jpg (deep teal + warm gold) */
  --bg: #163c41;
  --bg-elev: #1b4a50;
  --paper: #f4f0e8;
  --paper-2: #efe9df;
  --ink: #0e1214;
  --muted: rgba(15, 20, 23, 0.7);
  --muted-on-dark: rgba(244, 240, 232, 0.76);
  --line: rgba(15, 20, 23, 0.12);
  --line-on-dark: rgba(244, 240, 232, 0.12);
  --accent: #c7a76a;
  --accent-2: #a88a52;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
  --shadow-soft: 0 12px 35px rgba(0, 0, 0, 0.18);
  --radius: 18px;
  --radius-sm: 12px;
  --max: 1120px;
  --serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

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

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: radial-gradient(1200px 600px at 20% -10%, rgba(199, 167, 106, 0.18), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(143, 123, 74, 0.14), transparent 60%),
    linear-gradient(180deg, var(--paper), var(--paper-2));
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
}

/* Subtle grain + vignette for a more premium look */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.08;
  background-image: url("assets/grain.svg");
  background-repeat: repeat;
  mix-blend-mode: multiply;
}

body::after {
  content: "";
  position: fixed;
  inset: -20vh -10vw;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(900px 520px at 18% 8%, rgba(22, 60, 65, 0.16), transparent 62%),
    radial-gradient(800px 520px at 86% 18%, rgba(199, 167, 106, 0.14), transparent 62%),
    radial-gradient(900px 620px at 40% 92%, rgba(22, 60, 65, 0.1), transparent 60%),
    radial-gradient(1200px 900px at 50% 50%, rgba(0, 0, 0, 0.12), transparent 62%);
}

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

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

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

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

.skip-link {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 9999;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--paper);
  transform: translateY(-140%);
  transition: transform 160ms ease;
}
.skip-link:focus {
  transform: translateY(0);
}

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

.kicker {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(15, 20, 23, 0.72);
}

.h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 550;
  letter-spacing: -0.02em;
  font-size: clamp(28px, 3.1vw, 42px);
  line-height: 1.06;
}

.h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-weight: 550;
  letter-spacing: -0.01em;
  font-size: 20px;
}

.section {
  padding: 74px 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(20, 27, 31, 0.04), rgba(20, 27, 31, 0.02));
  border-top: 1px solid rgba(15, 20, 23, 0.06);
  border-bottom: 1px solid rgba(15, 20, 23, 0.06);
}

.section-head {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: end;
  margin-bottom: 26px;
}

.section-desc {
  margin: 0;
  color: rgba(15, 20, 23, 0.76);
  line-height: 1.6;
  font-size: 15px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(244, 240, 232, 0.72);
  border-bottom: 1px solid rgba(15, 20, 23, 0.06);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: radial-gradient(14px 14px at 35% 30%, rgba(255, 255, 255, 0.22), transparent 60%),
    linear-gradient(145deg, rgba(27, 74, 80, 1), rgba(22, 60, 65, 1));
  box-shadow: 0 12px 24px rgba(15, 20, 23, 0.12);
  position: relative;
  border: 1px solid rgba(199, 167, 106, 0.42);
}
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 10px;
  border: 1px solid rgba(199, 167, 106, 0.26);
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-sub {
  font-size: 12px;
  color: rgba(15, 20, 23, 0.66);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-nav a {
  font-size: 13px;
  padding: 8px 10px;
  border-radius: 12px;
  color: rgba(15, 20, 23, 0.78);
  transition: background 160ms ease, color 160ms ease;
}
.site-nav a:hover {
  background: rgba(15, 20, 23, 0.06);
  color: rgba(15, 20, 23, 0.92);
}

.nav-cta {
  background: rgba(22, 60, 65, 0.95);
  color: var(--paper) !important;
  box-shadow: 0 12px 30px rgba(15, 20, 23, 0.18);
}
.nav-cta:hover {
  background: rgba(22, 60, 65, 1);
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(15, 20, 23, 0.12);
  background: rgba(244, 240, 232, 0.75);
  border-radius: 12px;
  padding: 10px 11px;
  box-shadow: 0 14px 30px rgba(15, 20, 23, 0.08);
}
.nav-toggle-bars {
  width: 20px;
  height: 12px;
  display: block;
  position: relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(15, 20, 23, 0.82);
  border-radius: 2px;
}
.nav-toggle-bars::before {
  top: 0;
}
.nav-toggle-bars::after {
  bottom: 0;
  box-shadow: 0 -5px 0 rgba(15, 20, 23, 0.82);
}

/* Hero */
.hero {
  position: relative;
  padding: 34px 0 46px;
  min-height: 76vh;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  border-bottom: 1px solid rgba(15, 20, 23, 0.08);
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: contrast(1.06) saturate(1.05);
}
.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(22, 60, 65, 0.74) 0%, rgba(15, 20, 23, 0.44) 52%, rgba(15, 20, 23, 0.14) 100%),
    radial-gradient(900px 520px at 14% 28%, rgba(0, 0, 0, 0.55), transparent 60%),
    radial-gradient(520px 360px at 34% 18%, rgba(199, 167, 106, 0.12), transparent 65%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: start;
  padding-top: 56px;
}

.hero-copy {
  color: var(--paper);
  max-width: 620px;
}

.hero-copy .kicker {
  color: rgba(244, 240, 232, 0.82);
}

.hero-title {
  font-family: var(--serif);
  font-weight: 560;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.03;
  font-size: clamp(38px, 5.2vw, 64px);
}

.hero-subtitle {
  margin: 0 0 18px;
  color: rgba(244, 240, 232, 0.86);
  line-height: 1.7;
  font-size: 15px;
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 14px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
  user-select: none;
}
.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: linear-gradient(145deg, rgba(199, 167, 106, 1), rgba(143, 123, 74, 1));
  color: rgba(15, 20, 23, 0.92);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 60px rgba(15, 20, 23, 0.38), 0 0 0 1px rgba(199, 167, 106, 0.12) inset;
}
.btn-primary:hover {
  background: linear-gradient(145deg, rgba(214, 184, 120, 1), rgba(156, 137, 87, 1));
}

.btn-ghost {
  background: rgba(244, 240, 232, 0.12);
  color: rgba(244, 240, 232, 0.92);
  border-color: rgba(244, 240, 232, 0.18);
}
.btn-ghost:hover {
  background: rgba(244, 240, 232, 0.2);
  border-color: rgba(244, 240, 232, 0.22);
}

.btn-full {
  width: 100%;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 999px;
  background: rgba(244, 240, 232, 0.1);
  border: 1px solid rgba(244, 240, 232, 0.14);
  color: rgba(244, 240, 232, 0.88);
  font-size: 12px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(199, 167, 106, 0.18);
}

.hero-card {
  border-radius: var(--radius);
  background: rgba(244, 240, 232, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card-top {
  padding: 16px 16px 12px;
  border-bottom: 1px solid rgba(15, 20, 23, 0.08);
  background: radial-gradient(480px 240px at 10% 0%, rgba(199, 167, 106, 0.14), transparent 60%);
}
.hero-card-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.hero-card-sub {
  margin: 6px 0 0;
  color: rgba(15, 20, 23, 0.72);
  font-size: 13px;
  line-height: 1.5;
}

.quick-form {
  padding: 12px 16px 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.field {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}
.field span {
  font-size: 12px;
  color: rgba(15, 20, 23, 0.7);
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 10px 11px;
  border-radius: 14px;
  border: 1px solid rgba(15, 20, 23, 0.14);
  background: rgba(255, 255, 255, 0.7);
  color: rgba(15, 20, 23, 0.92);
  outline: none;
  transition: border-color 140ms ease, box-shadow 140ms ease;
}
.field textarea {
  resize: vertical;
  min-height: 88px;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(143, 123, 74, 0.55);
  box-shadow: 0 0 0 4px rgba(199, 167, 106, 0.16);
}

.form-note {
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(15, 20, 23, 0.64);
  line-height: 1.45;
}

.hero-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}
.stat {
  border-radius: var(--radius);
  padding: 14px 14px;
  border: 1px solid rgba(244, 240, 232, 0.14);
  background: rgba(15, 20, 23, 0.42);
  color: rgba(244, 240, 232, 0.9);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
}
.stat-num {
  font-family: var(--serif);
  font-weight: 650;
  letter-spacing: -0.01em;
  font-size: 22px;
}
.stat-label {
  font-size: 12px;
  color: rgba(244, 240, 232, 0.74);
  margin-top: 4px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.cards--single .card {
  grid-column: 3 / span 8;
}
.card {
  grid-column: span 4;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15, 20, 23, 0.08);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease;
}
.card:hover {
  transform: translateY(-2px);
}
.card-media {
  height: 190px;
  background: rgba(15, 20, 23, 0.06);
  position: relative;
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-body {
  padding: 14px 14px 16px;
}
.card-title {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.card-text {
  margin: 0;
  color: rgba(15, 20, 23, 0.76);
  font-size: 13px;
  line-height: 1.55;
}
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.pill {
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(15, 20, 23, 0.12);
  background: rgba(244, 240, 232, 0.6);
  color: rgba(15, 20, 23, 0.8);
}

/* Amenities */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.amenity {
  grid-column: span 4;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 20, 23, 0.08);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft);
  padding: 14px;
}
.amenity-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: radial-gradient(18px 18px at 30% 25%, rgba(255, 255, 255, 0.7), transparent 55%),
    linear-gradient(145deg, rgba(199, 167, 106, 0.92), rgba(143, 123, 74, 0.86));
  border: 1px solid rgba(15, 20, 23, 0.12);
  box-shadow: 0 16px 30px rgba(15, 20, 23, 0.14);
}
.amenity-title {
  margin: 12px 0 6px;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.amenity-text {
  margin: 0;
  color: rgba(15, 20, 23, 0.74);
  font-size: 13px;
  line-height: 1.55;
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15, 20, 23, 0.08);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft);
  position: relative;
  min-height: 190px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item:nth-child(1) {
  grid-column: span 7;
  min-height: 320px;
}
.gallery-item:nth-child(2) {
  grid-column: span 5;
  min-height: 320px;
}
.gallery-item:nth-child(3),
.gallery-item:nth-child(4),
.gallery-item:nth-child(5),
.gallery-item:nth-child(6) {
  grid-column: span 3;
}

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: stretch;
}
.location-card {
  border-radius: var(--radius);
  border: 1px solid rgba(15, 20, 23, 0.08);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px;
  display: grid;
  gap: 10px;
}
.checklist li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: rgba(15, 20, 23, 0.78);
  font-size: 13px;
  line-height: 1.55;
}
.checklist li::before {
  content: "";
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border-radius: 6px;
  background: radial-gradient(8px 8px at 30% 30%, rgba(255, 255, 255, 0.78), transparent 55%),
    linear-gradient(145deg, rgba(199, 167, 106, 0.92), rgba(143, 123, 74, 0.88));
  box-shadow: 0 10px 22px rgba(15, 20, 23, 0.12);
  border: 1px solid rgba(15, 20, 23, 0.12);
}
.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(15, 20, 23, 0.08);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft);
  min-height: 360px;
  position: relative;
}
.map-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  gap: 10px;
}
.map-placeholder img {
  width: 220px;
  opacity: 0.92;
}
.map-text {
  margin: 0;
  color: rgba(15, 20, 23, 0.74);
  font-size: 13px;
}
.map-embed {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0;
  transition: opacity 180ms ease;
}
.map-embed.is-on {
  opacity: 1;
}

/* Testimonials */
.quotes {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 14px;
}
.quote {
  grid-column: span 4;
  border-radius: var(--radius);
  border: 1px solid rgba(15, 20, 23, 0.08);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft);
  padding: 16px;
}
.quote-text {
  margin: 0;
  color: rgba(15, 20, 23, 0.84);
  line-height: 1.65;
  font-size: 14px;
}
.quote-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-top: 12px;
  color: rgba(15, 20, 23, 0.62);
  font-size: 12px;
}
.quote-name {
  font-weight: 700;
  color: rgba(15, 20, 23, 0.72);
}

/* FAQ */
.faq {
  display: grid;
  gap: 10px;
}
.faq details {
  border-radius: var(--radius);
  border: 1px solid rgba(15, 20, 23, 0.08);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft);
  padding: 14px 14px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: rgba(15, 20, 23, 0.86);
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  float: right;
  color: rgba(15, 20, 23, 0.6);
}
.faq details[open] summary::after {
  content: "–";
}
.faq p {
  margin: 10px 0 0;
  color: rgba(15, 20, 23, 0.74);
  line-height: 1.65;
  font-size: 13px;
}

/* Booking */
.booking {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: start;
}
.contact-cards {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.contact-card {
  border-radius: var(--radius);
  border: 1px solid rgba(15, 20, 23, 0.08);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft);
  padding: 14px;
  transition: transform 160ms ease, background 160ms ease;
}
.contact-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.62);
}
.contact-label {
  font-size: 12px;
  color: rgba(15, 20, 23, 0.62);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.contact-value {
  margin-top: 6px;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
}
.booking-form-wrap {
  border-radius: var(--radius);
  border: 1px solid rgba(15, 20, 23, 0.08);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
  padding: 16px;
}

.divider {
  height: 1px;
  background: rgba(15, 20, 23, 0.1);
  margin: 12px 0;
}

.platforms {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 10px;
}

.platform {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 18px;
  border: 1px solid rgba(15, 20, 23, 0.12);
  background: rgba(244, 240, 232, 0.72);
  box-shadow: 0 16px 34px rgba(15, 20, 23, 0.1);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.platform:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.66);
  border-color: rgba(15, 20, 23, 0.16);
}
.platform-left {
  display: grid;
  gap: 4px;
}
.platform-name {
  font-family: var(--serif);
  font-weight: 650;
  letter-spacing: -0.01em;
}
.platform-sub {
  font-size: 12px;
  color: rgba(15, 20, 23, 0.66);
}
.platform-right {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: 0.01em;
  font-size: 12px;
  color: rgba(15, 20, 23, 0.86);
}
.platform-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(145deg, rgba(199, 167, 106, 1), rgba(143, 123, 74, 1));
  box-shadow: 0 0 0 4px rgba(199, 167, 106, 0.18);
}

/* Platform-specific accents (subtle, classy) */
.platform--airbnb .platform-dot {
  background: linear-gradient(145deg, rgba(22, 60, 65, 1), rgba(199, 167, 106, 1));
}
.platform--booking .platform-dot {
  background: linear-gradient(145deg, rgba(199, 167, 106, 1), rgba(22, 60, 65, 1));
}
.platform--agoda .platform-dot {
  background: linear-gradient(145deg, rgba(22, 60, 65, 1), rgba(168, 138, 82, 1));
}

.platforms-lg {
  margin-top: 14px;
}

.booking-panel {
  border-radius: var(--radius);
  background: radial-gradient(520px 260px at 10% 0%, rgba(199, 167, 106, 0.14), transparent 60%),
    rgba(244, 240, 232, 0.7);
  border: 1px solid rgba(15, 20, 23, 0.1);
  padding: 16px;
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mini {
  border-radius: 16px;
  border: 1px solid rgba(15, 20, 23, 0.1);
  background: rgba(255, 255, 255, 0.6);
  padding: 10px 12px;
}
.mini-label {
  font-size: 12px;
  color: rgba(15, 20, 23, 0.62);
}
.mini-value {
  margin-top: 6px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: rgba(15, 20, 23, 0.86);
}

/* Footer */
.site-footer {
  padding: 46px 0 30px;
  border-top: 1px solid rgba(15, 20, 23, 0.08);
  background: linear-gradient(180deg, rgba(20, 27, 31, 0.05), rgba(20, 27, 31, 0.02));
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 14px;
  align-items: start;
}
.brand-footer {
  font-family: var(--serif);
  font-weight: 650;
  letter-spacing: -0.01em;
  font-size: 16px;
}
.footer-muted {
  color: rgba(15, 20, 23, 0.66);
  font-size: 13px;
  line-height: 1.6;
}
.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
}
.footer-links a,
.footer-contact a {
  font-size: 13px;
  color: rgba(15, 20, 23, 0.74);
}
.footer-links a:hover,
.footer-contact a:hover {
  color: rgba(15, 20, 23, 0.92);
}
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.footer-social a {
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15, 20, 23, 0.12);
  background: rgba(244, 240, 232, 0.52);
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(15, 20, 23, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

/* Sticky CTA (mobile) */
.sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 60;
  display: none;
  gap: 10px;
}
.sticky-btn {
  flex: 1;
  text-align: center;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(15, 20, 23, 0.92);
  color: var(--paper);
  border: 1px solid rgba(244, 240, 232, 0.14);
  box-shadow: var(--shadow);
  font-weight: 700;
  font-size: 14px;
}
.sticky-btn-ghost {
  background: rgba(244, 240, 232, 0.88);
  color: rgba(15, 20, 23, 0.92);
  border: 1px solid rgba(15, 20, 23, 0.12);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.14);
}

/* Responsive */
@media (max-width: 980px) {
  .section-head {
    grid-template-columns: 1fr;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    padding-top: 42px;
  }
  .hero-card {
    max-width: 520px;
  }
  .cards .card {
    grid-column: span 6;
  }
  .cards--single .card {
    grid-column: span 12;
  }
  .amenities-grid .amenity {
    grid-column: span 6;
  }
  .quotes .quote {
    grid-column: span 6;
  }
  .location-grid,
  .booking {
    grid-template-columns: 1fr;
  }
  .map-frame {
    min-height: 320px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }
  .site-nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .site-nav.is-open {
    display: grid;
    position: absolute;
    top: 64px;
    right: 14px;
    left: 14px;
    background: rgba(244, 240, 232, 0.94);
    border: 1px solid rgba(15, 20, 23, 0.1);
    border-radius: 18px;
    padding: 10px;
    box-shadow: var(--shadow-soft);
    gap: 8px;
  }
  .site-nav.is-open a {
    padding: 12px 12px;
    font-size: 14px;
  }
  .hero {
    padding-bottom: 32px;
  }
  .hero-strip {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .cards .card,
  .amenities-grid .amenity,
  .quotes .quote {
    grid-column: span 12;
  }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(2),
  .gallery-item:nth-child(3),
  .gallery-item:nth-child(4),
  .gallery-item:nth-child(5),
  .gallery-item:nth-child(6) {
    grid-column: span 12;
  }
  .sticky-cta {
    display: flex;
  }
  .mini-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

