/* Palette and type match the reservations tracker (Lora headings, Helvetica
   body, warm terracotta accent) and the Lumiaava design drafts in
   /lumiaava.com, so this site, the tracker, and the /ap view read as one
   family. */

:root {
  --color-bg: oklch(1 0 0);
  --color-bg-muted: oklch(0.96 0 0);
  --color-bg-warm: oklch(0.94 0.02 90);
  --color-text: oklch(0.22 0.02 80);
  --color-text-muted: oklch(0.45 0.02 80);
  --color-border: oklch(0.85 0.02 80);
  --color-border-strong: oklch(0.75 0.02 80);
  --color-accent: oklch(0.55 0.14 40);
  --color-accent-contrast: oklch(0.98 0.01 80);
  --color-footer-bg: oklch(0.22 0.02 80);

  --font-heading: "Lora", Georgia, serif;
  --font-display: "Cinzel", Georgia, serif;
  --font-body: Helvetica, Arial, sans-serif;

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 6px;
  --max-width: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
}

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

/* Nav */

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 24px;
  background: oklch(1 0 0 / 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  overflow-x: auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-brand svg { flex: none; }

.nav-brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 1.5px;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  font-size: 14px;
  white-space: nowrap;
}

.nav-links a { text-decoration: none; }
.nav-links a:hover { color: var(--color-accent); }

.nav-cta {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
  white-space: nowrap;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-accent-contrast);
  background: var(--color-accent);
  padding: 10px 18px;
  border: none;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
}

.btn:hover { opacity: 0.92; }

.btn-outline {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  background: none;
  border: 1px solid var(--color-border-strong);
  padding: 9px 17px;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.btn-outline:hover { border-color: var(--color-accent); color: var(--color-accent); }

/* Hero */

.hero {
  position: relative;
  min-height: 560px;
  height: 82vh;
  max-height: 760px;
  display: flex;
  align-items: flex-end;
  background: oklch(0.4 0.03 70);
  overflow: hidden;
}

.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.15 0.02 80 / 0.88) 0%, oklch(0.15 0.02 80 / 0.6) 45%, oklch(0.15 0.02 80 / 0.15) 100%);
}

.hero-mark {
  position: absolute;
  top: 28px;
  left: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  color: oklch(0.98 0.01 80);
  z-index: 2;
  filter: drop-shadow(0 1px 3px oklch(0.1 0.02 80 / 0.6));
  text-shadow: 0 1px 3px oklch(0.1 0.02 80 / 0.6);
}

.hero-mark-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 3px;
  margin-top: 4px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 32px 64px;
  max-width: 900px;
  color: oklch(0.98 0.01 80);
  text-shadow: 0 1px 3px oklch(0.1 0.02 80 / 0.55), 0 8px 24px oklch(0.1 0.02 80 / 0.4);
}

.hero-kicker {
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 14px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5.5vw, 58px);
  line-height: 1.08;
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.55;
  max-width: 580px;
  opacity: 0.95;
  margin-bottom: 26px;
}

/* Sections */

section { padding: 80px 24px; }

.section-inner { max-width: var(--max-width); margin: 0 auto; }

.section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 8px;
}

.section-sub {
  font-size: 15px;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  max-width: 640px;
}

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

.intro {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 24px;
  text-align: center;
}

.intro-title {
  font-family: var(--font-heading);
  font-size: 30px;
  margin-bottom: 18px;
}

.intro-body { font-size: 17px; line-height: 1.7; color: var(--color-text-muted); }

/* Gallery */

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

.gallery-grid figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
  background: var(--color-bg-muted);
}

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

@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Amenities */

.section-muted { background: var(--color-bg-muted); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.amenity {
  padding: 20px 0;
  border-top: 1px solid var(--color-border-strong);
}

.amenity-title { font-weight: 600; font-size: 16px; margin-bottom: 6px; }
.amenity-desc { font-size: 14px; color: var(--color-text-muted); line-height: 1.5; }

/* Location */

.location-layout {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}

.location-image {
  flex: 1 1 340px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  position: relative;
}

.location-image img { width: 100%; height: 100%; object-fit: cover; }

.location-list { flex: 1 1 340px; }

.location-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 15px;
}

.location-row .dist { color: var(--color-text-muted); white-space: nowrap; }

/* Good to know */

.notes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.note-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}

.note-card-title { font-weight: 600; font-size: 15px; margin-bottom: 8px; }
.note-card-body { font-size: 14px; color: var(--color-text-muted); line-height: 1.55; }

/* Booking */

.booking-panel {
  background: var(--color-bg-muted);
  border-radius: var(--radius-lg);
  padding: 36px;
}

.price-teaser {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
}

.price-teaser .amount {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 600;
}

.calendarWidget {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.booking-alt {
  margin-top: 22px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.booking-alt a {
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

/* Footer */

.site-footer {
  background: var(--color-footer-bg);
  color: oklch(0.9 0.015 80);
  padding: 56px 24px 36px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 20px;
  margin-bottom: 10px;
}

.footer-loc { font-size: 14px; opacity: 0.75; }

.footer-contact { font-size: 14px; opacity: 0.85; }
.footer-contact div { margin-bottom: 6px; }

.footer-book {
  align-self: center;
  font-size: 14px;
  border-bottom: 1px solid oklch(0.6 0.02 80);
  text-decoration: none;
}

.placeholder {
  color: var(--color-accent);
  font-style: italic;
}
