/* ── RESET & BASE ────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

:root {
  --sand: #FAF7F2;
  --cream: #F2EDE4;
  --bark: #3D2B1F;
  --bark-mid: #5C3D2E;
  --bark-light: #7A5C4A;
  --moss: #4A6741;
  --moss-light: #6B8E62;
  --gold: #C8A96E;
  --gold-light: #E8D5AA;
  --white: #FFFFFF;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
  --radius: 1.25rem;
  --shadow: 0 8px 40px rgba(61,43,31,0.12);
  --shadow-hover: 0 20px 60px rgba(61,43,31,0.2);
}

body {
  font-family: var(--font-body);
  background: var(--sand);
  color: var(--bark);
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.animate-in { opacity: 0; animation: fadeUp 0.8s ease forwards; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
h2 em { font-style: italic; color: var(--moss); }
h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; }

.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.8rem;
}
.section-sub {
  color: var(--bark-light);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 580px;
  margin-top: 1rem;
}
.section-head { margin-bottom: 3rem; }
.section-head.centered { text-align: center; }
.section-head.centered .section-sub { margin: 1rem auto 0; }

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background: var(--bark);
  color: var(--white);
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--moss); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,103,65,0.3); }

.btn-ghost {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  padding: 0.85rem 2.2rem;
  border-radius: 100px;
  font-weight: 400;
  font-size: 0.9rem;
  border: 1.5px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
  transition: all 0.25s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.25); }

.btn-outline-white {
  display: inline-block;
  background: transparent;
  color: var(--white);
  padding: 0.75rem 2rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.9rem;
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ── NAV ─────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  transition: all 0.35s;
}
#navbar.scrolled {
  background: rgba(250,247,242,0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(61,43,31,0.08);
  padding: 0.8rem 4rem;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  transition: color 0.35s;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.35s;
  border-radius: 4px;
}
#navbar.scrolled .logo-img {
  filter: none;
}
.logo-foot-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  border-radius: 3px;
}
.logo-text span { color: var(--gold); }
#navbar.scrolled .logo { color: var(--bark); }
#navbar.scrolled .logo-text span { color: var(--moss); }

nav ul { display: flex; gap: 2.5rem; list-style: none; }
nav ul a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}
#navbar.scrolled ul a { color: var(--bark-light); }
nav ul a:hover, #navbar.scrolled ul a:hover { color: var(--moss); }
.nav-cta {
  background: var(--white) !important;
  color: var(--bark) !important;
  padding: 0.45rem 1.4rem !important;
  border-radius: 100px;
  transition: all 0.2s !important;
}
#navbar.scrolled .nav-cta { background: var(--bark) !important; color: var(--white) !important; }
.nav-cta:hover { opacity: 0.85; }
.burger { display: none; background: none; border: none; font-size: 1.5rem; color: var(--white); cursor: pointer; }
#navbar.scrolled .burger { color: var(--bark); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  z-index: 199;
  background: var(--sand);
  padding: 1rem 2rem;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: 1rem; font-weight: 500; color: var(--bark); padding: 0.5rem 0; border-bottom: 1px solid var(--cream); }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(30,18,10,0.72) 0%, rgba(30,18,10,0.35) 60%, rgba(30,18,10,0.1) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 5rem 6rem;
  max-width: 700px;
  color: var(--white);
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 1.8rem;
}
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); display: inline-block; }
h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
h1 em { font-style: italic; color: var(--gold); }
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.88;
  max-width: 460px;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  display: inline-flex;
}
.h-stat { text-align: center; }
.h-stat strong { display: block; font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; }
.h-stat span { font-size: 0.72rem; opacity: 0.75; }
.h-divider { width: 1px; height: 32px; background: rgba(255,255,255,0.25); }
.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── TRUST BAR ───────────────────────────────────────────── */
.trust-bar {
  background: var(--bark);
  color: rgba(255,255,255,0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.6rem 1.5rem;
  padding: 1rem 3rem;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.trust-sep { opacity: 0.3; }

/* ── SERVICES ────────────────────────────────────────────── */
.section-services { padding: 7rem 0; background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.svc-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.svc-photo { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.svc-photo img { transition: transform 0.5s; }
.svc-card:hover .svc-photo img { transform: scale(1.05); }
.svc-badge {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--moss);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}
.svc-badge.gold { background: var(--gold); color: var(--bark); }
.svc-body { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.svc-icon { font-size: 1.6rem; margin-bottom: 0.8rem; }
.svc-body h3 { margin-bottom: 0.6rem; color: var(--bark); }
.svc-body p { font-size: 0.88rem; line-height: 1.68; color: var(--bark-light); flex: 1; }
.svc-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 1.5rem; }
.svc-price { font-size: 0.85rem; color: var(--bark-light); }
.svc-price strong { color: var(--moss); font-weight: 600; }
.svc-cta { font-size: 0.82rem; font-weight: 600; color: var(--moss); letter-spacing: 0.02em; }
.svc-cta:hover { text-decoration: underline; }

.svc-card.featured { background: var(--bark); }
.svc-card.featured .svc-body h3 { color: var(--white); }
.svc-card.featured .svc-body p { color: rgba(255,255,255,0.65); }
.svc-card.featured .svc-price { color: rgba(255,255,255,0.6); }
.svc-card.featured .svc-price strong { color: var(--gold); }
.svc-card.featured .svc-cta { color: var(--gold); }

/* ── ABOUT ───────────────────────────────────────────────── */
.section-about { padding: 7rem 0; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-photos { position: relative; }
.about-photo-main {
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}
.about-photo-sec {
  position: absolute;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 1.2rem;
  overflow: hidden;
  bottom: -2rem;
  right: -2rem;
  border: 5px solid var(--sand);
  box-shadow: var(--shadow);
}
.about-badge-float {
  position: absolute;
  top: 2rem;
  right: -1.5rem;
  background: var(--moss);
  color: var(--white);
  border-radius: 1rem;
  padding: 1.2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.badge-num { display: block; font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; }
.badge-txt { font-size: 0.72rem; opacity: 0.85; }
.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { color: var(--bark-light); font-size: 0.95rem; line-height: 1.75; margin-bottom: 1rem; }

.check-list { list-style: none; margin: 1.5rem 0 2.5rem; display: flex; flex-direction: column; gap: 0.7rem; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--bark-light);
}
.check-list li::before {
  content: '✓';
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--moss);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ── GALLERY ─────────────────────────────────────────────── */
.section-gallery { padding: 7rem 0; background: var(--cream); }
.section-gallery .section-head { padding: 0 2rem; margin-bottom: 2.5rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 260px;
  grid-template-rows: 200px 200px;
  gap: 0.75rem;
  padding: 0 2rem;
}
.g-item { border-radius: var(--radius); overflow: hidden; }
.g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.g-item:hover img { transform: scale(1.06); }
.g-item.tall { grid-row: span 2; }
.g-item.wide { grid-column: span 2; }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.section-testi { padding: 7rem 0; background: var(--white); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 2rem;
  border: 1px solid transparent;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.testi-card.featured-testi {
  background: var(--bark);
  border-color: transparent;
}
.testi-stars { font-size: 1rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 1rem; }
blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--bark);
  margin-bottom: 1.5rem;
}
.testi-card.featured-testi blockquote { color: rgba(255,255,255,0.9); }
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.88rem; color: var(--bark); }
.testi-card.featured-testi .testi-author strong { color: var(--white); }
.testi-author span { font-size: 0.75rem; color: var(--bark-light); }
.testi-card.featured-testi .testi-author span { color: rgba(255,255,255,0.55); }

/* ── RESERVATION ─────────────────────────────────────────── */
.section-reservation { position: relative; padding: 7rem 0; min-height: 80vh; }
.reservation-bg { position: absolute; inset: 0; }
.reservation-bg img { object-position: center 20%; }
.res-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(30,18,10,0.88) 0%, rgba(30,18,10,0.6) 100%);
}
.res-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}
.res-info .section-label.light { color: var(--gold); }
.res-info h2.light { color: var(--white); }
.res-info h2.light em { color: var(--gold); }
.light-muted { color: rgba(255,255,255,0.7); font-size: 0.95rem; line-height: 1.7; margin: 1rem 0 1.5rem; }
.res-legend { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.leg-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.leg-dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.leg-dot.free { background: var(--moss-light); }
.leg-dot.booked { background: var(--gold); }
.leg-dot.off { background: rgba(255,255,255,0.2); }
.res-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.res-contact a { font-size: 0.9rem; color: rgba(255,255,255,0.8); transition: color 0.2s; }
.res-contact a:hover { color: var(--gold); }

/* CALENDAR */
.cal-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.2rem; }
.cal-header h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400; color: var(--bark); }
.cal-arrow {
  background: var(--sand);
  border: none;
  width: 32px; height: 32px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  color: var(--bark);
  transition: all 0.2s;
}
.cal-arrow:hover { background: var(--moss); color: var(--white); }
.cal-days-names {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-bottom: 0.5rem;
}
.cal-days-names span { font-size: 0.7rem; font-weight: 600; color: var(--bark-light); letter-spacing: 0.04em; padding: 0.3rem 0; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-cell {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  border-radius: 0.5rem;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.15s;
  position: relative;
  font-weight: 400;
  color: var(--bark);
}
.cal-cell.empty { cursor: default; }
.cal-cell.available:hover { background: var(--moss-light); color: var(--white); }
.cal-cell.unavailable { color: rgba(61,43,31,0.25); cursor: not-allowed; }
.cal-cell.booked {
  background: var(--gold-light);
  color: var(--bark-light);
  cursor: not-allowed;
  font-size: 0.75rem;
}
.cal-cell.selected { background: var(--moss) !important; color: var(--white) !important; font-weight: 600; }
.cal-cell.today { border: 1.5px solid var(--moss); font-weight: 600; }

/* FORM */
.res-form {
  background: rgba(255,255,255,0.97);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.date-banner {
  background: #EAF3DE;
  border: 1px solid var(--moss-light);
  border-radius: 0.6rem;
  padding: 0.7rem 1rem;
  font-size: 0.85rem;
  color: var(--moss);
  margin-bottom: 1.2rem;
}
.date-banner.hidden { display: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-bottom: 0.8rem; }
.field { display: flex; flex-direction: column; }
.field.full { grid-column: 1 / -1; }
label { font-size: 0.73rem; font-weight: 600; color: var(--bark-light); letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 0.3rem; }
input, select, textarea {
  background: var(--sand);
  border: 1.5px solid transparent;
  border-radius: 0.6rem;
  padding: 0.65rem 0.9rem;
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--bark);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
input:focus, select:focus, textarea:focus { border-color: var(--moss); background: var(--white); }
textarea { resize: vertical; min-height: 75px; }
.btn-submit {
  width: 100%;
  background: var(--moss);
  color: var(--white);
  padding: 0.95rem;
  border-radius: 100px;
  border: none;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 0.8rem;
  letter-spacing: 0.02em;
}
.btn-submit:hover { background: var(--bark); }
.btn-submit:disabled { opacity: 0.6; cursor: wait; }

.success-panel {
  background: var(--moss);
  color: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  text-align: center;
}
.success-panel.hidden { display: none; }
.success-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.success-panel h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; margin-bottom: 0.5rem; }
.success-panel p { font-size: 0.9rem; opacity: 0.85; line-height: 1.6; margin-bottom: 1.5rem; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer { background: var(--bark); color: rgba(255,255,255,0.65); padding-top: 4rem; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.3fr; gap: 3rem; padding-bottom: 3rem; }
.logo-foot {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.logo-foot-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}
.foot-brand p { font-size: 0.85rem; line-height: 1.65; max-width: 260px; }
.socials { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.socials a { font-size: 1.2rem; }
.foot-col h5 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 1rem; }
.foot-col a { display: block; font-size: 0.83rem; margin-bottom: 0.5rem; transition: color 0.2s; }
.foot-col a:hover { color: var(--gold); }
.foot-copy { border-top: 1px solid rgba(255,255,255,0.08); text-align: center; padding: 1.2rem; font-size: 0.75rem; color: rgba(255,255,255,0.35); }

/* ── LIGHTBOX ────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }
.lb-wrap {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lb-wrap img {
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.75rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.lb-caption {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  margin-top: 1rem;
  text-align: center;
  font-family: var(--font-body);
}
.lb-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255,255,255,0.15);
  border: none;
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2001;
}
.lb-close:hover { background: rgba(255,255,255,0.3); }
.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.8rem;
  cursor: pointer;
  transition: background 0.2s;
  z-index: 2001;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); }
.g-item { cursor: pointer; }

/* ── COOKIE BANNER ───────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bark);
  color: rgba(255,255,255,0.9);
  z-index: 1500;
  padding: 1.2rem 2rem;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.2);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 260px; }
.cookie-text strong { display: block; font-size: 0.95rem; color: white; margin-bottom: 0.3rem; }
.cookie-text p { font-size: 0.8rem; opacity: 0.75; line-height: 1.5; margin: 0; }
.cookie-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; align-items: center; flex-shrink: 0; }
.cookie-btn-accept {
  background: var(--moss);
  color: white;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-btn-accept:hover { background: var(--moss-light); }
.cookie-btn-refuse {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}
.cookie-btn-refuse:hover { border-color: white; color: white; }
.cookie-btn-settings {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: none;
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0.3rem;
}
.cookie-btn-settings:hover { color: white; }

/* ── COOKIE MODAL ────────────────────────────────────────── */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.cookie-modal-overlay.active { display: flex; }
.cookie-modal {
  background: white;
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.cookie-modal h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--bark);
  margin-bottom: 0.5rem;
}
.cookie-modal-intro { font-size: 0.85rem; color: var(--bark-light); margin-bottom: 1.5rem; }
.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--cream);
}
.cookie-option-info strong { display: block; font-size: 0.9rem; color: var(--bark); margin-bottom: 0.2rem; }
.cookie-option-info span { font-size: 0.78rem; color: var(--bark-light); line-height: 1.4; }
.forced-on {
  background: var(--moss-light);
  color: white;
  width: 44px;
  height: 24px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; flex-shrink: 0; }
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
  position: absolute;
  inset: 0;
  background: #ccc;
  border-radius: 100px;
  cursor: pointer;
  transition: background 0.3s;
}
.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform 0.3s;
}
.toggle-switch input:checked + .toggle-slider { background: var(--moss); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }
.cookie-modal-actions {
  display: flex;
  gap: 0.7rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cream);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .g-item.wide { grid-column: span 2; }
}
@media (max-width: 900px) {
  #navbar { padding: 1rem 1.5rem; }
  nav ul { display: none; }
  .burger { display: block; }
  .hero-content { padding: 7rem 1.5rem 4rem; }
  h1 { font-size: clamp(2.8rem, 8vw, 4rem); }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .services-grid, .testi-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; }
  .about-photos { max-width: 400px; margin: 0 auto; }
  .about-photo-sec, .about-badge-float { display: none; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .g-item.tall, .g-item.wide { grid-column: auto; grid-row: auto; }
  .res-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  section.section-services,
  section.section-about,
  section.section-gallery,
  section.section-testi,
  section.section-reservation { padding: 4.5rem 0; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
