@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Playfair+Display:wght@400;600&display=swap');

:root {
  --color-bg: #f8f6f3;
  --color-surface: #ffffff;
  --color-text: #2f2a24;
  --color-muted: #6d665e;
  --color-accent: #7a5c3d; /* earthy brown */
  --color-accent-2: #577a5e; /* moss green */
  --color-border: #e7e2da;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --radius: 12px;
  --maxw: 1200px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
  flex-direction: column;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent-2); text-decoration: none; }
a:hover { text-decoration: underline; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* Header / Nav */
header.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.9);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--color-border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
}
.brand { display: flex; align-items: baseline; gap: 8px; }
.brand-title { font-family: 'Playfair Display', serif; font-weight: 600; letter-spacing: 0.2px; }
.brand small { color: var(--color-muted); font-size: 12px; }

.nav-links { display: flex; gap: 18px; align-items: center; }
.nav-links a { padding: 8px 10px; border-radius: 8px; }
.nav-links a.active, .nav-links a:hover {
  background: var(--color-bg);
  text-decoration: none;
}
/* Align header CTA with links */
.nav-links .cta { margin-top: 0; padding: 8px 12px; line-height: 1; }

.lang-switch { display: inline-flex; gap: 6px; align-items: center; }
.lang-switch button {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text);
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
}
.lang-switch button.active {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.menu-toggle { display: none; border: none; background: transparent; font-size: 24px; }

/* Hero */
.hero {
  position: relative;
  min-height: 60vh;
  display: grid; place-items: center;
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.62), rgba(0,0,0,0.48));
  z-index: 1;
}
.hero img.bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(105%);
}
.hero .content { position: relative; z-index: 2; padding: 30px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 6vw, 56px); margin: 0 0 10px; text-shadow: 0 2px 12px rgba(0,0,0,0.55), 0 1px 2px rgba(0,0,0,0.4); }
.hero p { font-size: clamp(16px, 2.5vw, 22px); opacity: 0.98; text-shadow: 0 2px 10px rgba(0,0,0,0.5); }

.cta {
  display: inline-block; margin-top: 18px;
  background: var(--color-accent-2);
  color: #fff; padding: 12px 18px; border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.cta:hover { background: #4a6a52; text-decoration: none; }

/* Sections */
main { flex: 1 0 auto; }
section { padding: 60px 0; }
section.alt { background: var(--color-surface); }

.section-title { font-family: 'Playfair Display', serif; font-size: clamp(22px, 3.5vw, 34px); margin: 0 0 14px; }
.muted { color: var(--color-muted); }

/* Cards grid */
.grid { display: grid; gap: 22px; }
.grid.cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid.cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 900px) { .grid.cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid.cols-3, .grid.cols-2 { grid-template-columns: 1fr; } }

.card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.card .body { padding: 16px; }
.card .body h3 { margin-top: 0; }
.card h3 { margin: 0 0 10px; }
.chip { display: inline-block; background: var(--color-bg); border: 1px solid var(--color-border); padding: 4px 8px; border-radius: 999px; font-size: 12px; color: var(--color-muted); }

/* Pricing table */
.pricing { width: 100%; border-collapse: collapse; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); overflow: hidden; }
.pricing th, .pricing td { padding: 14px; border-bottom: 1px solid var(--color-border); text-align: left; }
.pricing thead { background: #faf8f5; }
.pricing tfoot td { font-size: 14px; color: var(--color-muted); }

/* Gallery */
.gallery-grid { columns: 3 280px; column-gap: 16px; }
.gallery-grid .item { break-inside: avoid; margin-bottom: 16px; border-radius: 12px; overflow: hidden; box-shadow: var(--shadow-sm); cursor: zoom-in; }

.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.85); display: none; align-items: center; justify-content: center; z-index: 100; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 88vh; border-radius: 12px; box-shadow: var(--shadow-md); }
.lightbox .close { position: absolute; top: 20px; right: 20px; color: #fff; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); padding: 8px 10px; border-radius: 10px; cursor: pointer; }

/* Forms */
form { display: grid; gap: 12px; }
.field { display: grid; gap: 6px; }
label { font-weight: 600; }
input, textarea, select {
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 10px; background: #fff; font: inherit;
}
textarea { min-height: 120px; resize: vertical; }
.btn { display: inline-block; background: var(--color-accent); color: #fff; padding: 12px 16px; border-radius: 10px; border: none; cursor: pointer; }
.btn:hover { background: #6a4f34; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: center; }
.contact-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 24px; }
@media (max-width: 700px) { .contact-list { grid-template-columns: 1fr; } }

/* Footer */
footer.site-footer { border-top: 1px solid var(--color-border); background: #fff; margin-top: auto; padding-bottom: calc(env(safe-area-inset-bottom, 0px)); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px; padding: 30px 0; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr; } }
.copyright { color: var(--color-muted); font-size: 14px; }

/* Floating reserve button */
.reserve-fab { position: fixed; right: 20px; bottom: 20px; z-index: 60; background: var(--color-accent-2); color: #fff; padding: 12px 16px; border-radius: 999px; box-shadow: var(--shadow-md); }
.reserve-fab:hover { background: #4a6a52; text-decoration: none; }

/* Utilities */
.space-sm { height: 12px; }
.space-md { height: 20px; }
.space-lg { height: 40px; }

/* Mobile nav */
@media (max-width: 800px) {
  .menu-toggle { display: block; }
  .nav-links { display: none; position: absolute; left: 0; right: 0; top: 56px; background: #fff; border-bottom: 1px solid var(--color-border); padding: 10px 20px; flex-direction: column; align-items: flex-start; gap: 8px; }
  .nav-links.open { display: flex; }
}


