:root {
  --bg: #f5efe4;
  --bg-soft: #efe6d4;
  --bg-deep: #e9ddc6;
  --surface: #fbf6ec;
  --fg: #2c2a26;
  --fg-soft: #5b554c;
  --muted: #918a7e;
  --accent: #b88a5b;
  --accent-deep: #a07343;
  --accent-soft: #d4b890;
  --line: #d9ccb4;
  --line-soft: #e6dbc6;
  --radius: 4px;
  --max-w: 1240px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --serif: 'Cormorant Garamond', 'Times New Roman', serif;
  --script: 'Allura', cursive;
  --sans: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0;
}
p { margin: 0; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}
section { padding: clamp(4rem, 9vw, 7rem) 0; }
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 500;
}
.display {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.1;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.88rem;
  letter-spacing: 0.02em;
  font-weight: 500;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.4s var(--ease);
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
  box-shadow: 0 10px 25px -10px rgba(160, 115, 67, 0.5);
}
.btn-outline {
  border-color: var(--fg);
  color: var(--fg);
}
.btn-outline:hover {
  background: var(--fg);
  color: #fff;
}
.btn-ghost {
  color: var(--fg);
  padding: 0.85rem 0;
}
.btn-ghost:hover { color: var(--accent-deep); }
.arrow { transition: transform 0.4s var(--ease); display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* ===== Nav ===== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s var(--ease);
}
.nav.scrolled,
.nav.solid {
  background: rgba(245, 239, 228, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
/* Light text while transparent over hero */
.nav .brand,
.nav .brand-name,
.nav .nav-links,
.nav .nav-links a {
  color: #fff;
  transition: color 0.35s var(--ease);
}
.nav .brand-icon,
.nav .brand-sub,
.nav .nav-phone,
.nav .nav-cta { color: #fff; transition: color 0.35s var(--ease), border-color 0.35s var(--ease), background 0.35s var(--ease); }
.nav .nav-cta { border-color: rgba(255,255,255,0.6); }
.nav .nav-cta:hover { background: rgba(255,255,255,0.15); color: #fff; }
/* Dark text once scrolled OR on sub-pages (solid) */
.nav.scrolled .brand,
.nav.scrolled .brand-name,
.nav.scrolled .nav-links,
.nav.scrolled .nav-links a,
.nav.solid .brand,
.nav.solid .brand-name,
.nav.solid .nav-links,
.nav.solid .nav-links a { color: var(--fg); }
.nav.scrolled .brand-icon,
.nav.scrolled .brand-sub,
.nav.scrolled .nav-phone,
.nav.scrolled .nav-cta,
.nav.solid .brand-icon,
.nav.solid .brand-sub,
.nav.solid .nav-phone,
.nav.solid .nav-cta { color: var(--accent-deep); }
.nav.scrolled .nav-cta,
.nav.solid .nav-cta { border-color: var(--accent); }
.nav.scrolled .nav-cta:hover,
.nav.solid .nav-cta:hover { background: var(--accent); color: #fff; }
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.5rem;
  padding: 0.45rem 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  color: var(--fg);
}
.brand-logo {
  height: 52px;
  width: auto;
  display: block;
  transition: filter 0.35s var(--ease);
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5));
}
.nav.scrolled .brand-logo,
.nav.solid .brand-logo {
  filter: none;
}
.footer .brand-logo {
  height: 56px;
  filter: brightness(0) invert(1) opacity(0.85);
}
.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.95rem;
  color: var(--fg);
}
.nav-links a {
  position: relative;
  padding: 0.4rem 0;
  transition: color 0.3s var(--ease);
}
.nav-links a:hover { color: var(--accent-deep); }
.nav-links a.active { color: var(--accent-deep); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--accent);
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--accent-deep);
  font-weight: 500;
}
.nav-phone svg { width: 14px; height: 14px; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.2rem;
  border: 1px solid var(--accent);
  color: var(--accent-deep);
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.nav-cta:hover { background: var(--accent); color: #fff; }
.nav-cta svg { width: 14px; height: 14px; }
.menu-toggle { display: none; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  color: #fff;
  overflow: hidden;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 0;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media video,
.hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-poster {
  background-image: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=2200&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  animation: kenburns 24s ease-in-out infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.04); }
  to { transform: scale(1.16); }
}
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.4) 35%, rgba(0,0,0,0.55) 70%, rgba(0,0,0,0.8) 100%),
    radial-gradient(ellipse at center, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0) 70%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 9rem 1.5rem 7rem;
  max-width: 1100px;
}
.hero-eyebrow {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: "";
  width: 30px; height: 1px;
  background: rgba(255,255,255,0.5);
}
.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4.4rem);
  line-height: 1.1;
  color: #fff;
  font-weight: 500;
  max-width: 22ch;
  margin: 0 auto;
  text-wrap: balance;
}
.hero-sub {
  margin-top: 1.6rem;
  font-family: var(--sans);
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}
.hero-cta { margin-top: 2.2rem; }

/* ===== Page Header (sub-pages) ===== */
.page-header {
  background: var(--bg-deep);
  padding: clamp(8rem, 14vw, 11rem) 0 clamp(3rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
}
.page-header .eyebrow { margin-bottom: 1.2rem; display: inline-block; }
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 500;
  color: var(--fg);
  margin: 0 auto;
  max-width: 22ch;
  line-height: 1.05;
  text-wrap: balance;
}
.page-header h1 em {
  font-style: italic;
  color: var(--accent-deep);
  font-weight: 500;
}
.page-header .lead {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-style: italic;
  color: var(--fg-soft);
  max-width: 48ch;
  margin: 1.5rem auto 0;
  line-height: 1.55;
}
.page-header .actions { margin-top: 2rem; display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* Page header with full-bleed background image */
.page-header.with-image {
  background-color: #2c2a26;
  background-size: cover;
  background-position: center;
  color: #fff;
  border-bottom: none;
  padding-top: clamp(10rem, 18vw, 14rem);
  padding-bottom: clamp(5rem, 9vw, 7rem);
  min-height: 60vh;
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
}
.page-header.with-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.55) 35%, rgba(0,0,0,0.65) 70%, rgba(0,0,0,0.85) 100%),
    radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 70%);
  z-index: 0;
}
.page-header.with-image .container {
  position: relative;
  z-index: 1;
}
.page-header.with-image h1 { color: #fff; }
.page-header.with-image h1 em { color: #e8c9a8; }
.page-header.with-image .lead { color: rgba(255,255,255,0.88); }
.page-header.with-image .eyebrow { color: rgba(255,255,255,0.88); }

/* ===== Generic sub-page content blocks ===== */
.content-section { background: var(--bg); }
.content-section.alt { background: var(--bg-soft); }
.content-section.surface { background: var(--surface); }
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.content-grid.reverse > :first-child { order: 2; }
.content-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 1rem 0;
  max-width: 18ch;
}
.content-text h2 em {
  font-style: italic;
  color: var(--accent-deep);
  font-weight: 500;
}
.content-text p {
  color: var(--fg-soft);
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 54ch;
}
.content-text ul {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}
.content-text li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--fg-soft);
  line-height: 1.55;
}
.content-text li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-soft);
}
.content-text li strong { color: var(--fg); font-weight: 600; }
.content-image img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 5 / 4;
  object-fit: cover;
}
.content-image.portrait img { aspect-ratio: 4 / 5; }
.content-actions { margin-top: 2rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* Feature grid for sub-pages (3-col by default, .four = 4-col) */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
.feature-grid.four { grid-template-columns: repeat(4, 1fr); gap: clamp(2rem, 3vw, 2.8rem) clamp(1.5rem, 2.5vw, 2rem); }
.feature-grid.two { grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
.feature-card {
  background: transparent;
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.feature-card .num { display: none; }
.feature-icon {
  width: 48px; height: 48px;
  color: var(--accent-deep);
  margin-bottom: 0.4rem;
}
.feature-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fg);
  line-height: 1.2;
}
.feature-card p {
  color: var(--fg-soft);
  font-size: 0.93rem;
  line-height: 1.65;
}
.feature-card .price {
  margin-top: 0.4rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--accent-deep);
  font-style: italic;
}

/* Variant with photo on top */
.feature-card.with-photo {
  background: #fff;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px -10px rgba(46, 31, 18, 0.1);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  gap: 0;
}
.feature-card.with-photo:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 44px -18px rgba(46, 31, 18, 0.22);
}
.feature-card.with-photo .photo {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.feature-card.with-photo .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
  display: block;
}
.feature-card.with-photo:hover .photo img { transform: scale(1.06); }
.feature-card.with-photo .photo .feature-icon { display: none; }
.feature-card.with-photo .body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.feature-card.with-photo h3 { margin: 0; }
.feature-card.with-photo p { margin: 0; }

/* Section heading helper for centered sections */
.section-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-top: 1rem;
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}
.section-head h2 em { font-style: italic; color: var(--accent-deep); font-weight: 500; }
.section-head p {
  color: var(--fg-soft);
  max-width: 48ch;
  margin: 1.2rem auto 0;
}

/* Sticky bottom badge */
.sticky-badge {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  z-index: 40;
  background: rgba(20, 18, 14, 0.92);
  color: #fff;
  padding: 0.75rem 1.4rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 30px -10px rgba(0,0,0,0.4);
  transition: transform 0.4s var(--ease), background 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}
.sticky-badge::before {
  content: "★";
  color: var(--accent-soft);
  font-size: 0.85rem;
}
.sticky-badge:hover { background: var(--accent-deep); transform: translateX(-50%) translateY(-3px); }

/* ===== About / Intro ===== */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.intro-text h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 17ch;
  margin-top: 1.2rem;
}
.intro-text p {
  margin-top: 1.4rem;
  color: var(--fg-soft);
  font-size: 1rem;
  max-width: 52ch;
  line-height: 1.7;
}
.intro-actions {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.intro-photos {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 0.9rem;
  aspect-ratio: 5 / 5;
}
.intro-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.ip-1 { grid-row: span 2; }

/* ===== "Vše zajistíme" — 6 services ===== */
.services { background: var(--bg-soft); }
.services-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.services-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-top: 1rem;
}
.services-head .services-divider { margin: 1.5rem auto 0; }
.services-head .services-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--fg-soft);
  line-height: 1.55;
  max-width: 36ch;
}
.services-divider {
  width: 90px;
  height: 1px;
  background: var(--accent);
  margin: 1.5rem 0 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
}
.service-item {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.service-icon {
  width: 48px; height: 48px;
  color: var(--accent-deep);
  margin-bottom: 0.4rem;
}
.service-item h3 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--fg);
}
.service-item p {
  color: var(--fg-soft);
  font-size: 0.93rem;
  line-height: 1.65;
}

/* ===== Pillar cards ===== */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3rem) clamp(2rem, 4vw, 3rem);
}
.pillar {
  display: flex;
  flex-direction: column;
}
.pillar-img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.pillar-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.pillar:hover .pillar-img img { transform: scale(1.05); }
.pillar-body {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}
.check-badge {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--accent);
  color: #fff;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.check-badge svg { width: 22px; height: 22px; }
.pillar h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  margin-bottom: 0.7rem;
}
.pillar p {
  color: var(--fg-soft);
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}
.more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--accent-deep);
  font-weight: 500;
  margin-top: 0.4rem;
}
.more-link:hover { color: var(--fg); }

/* ===== Gallery ===== */
.gallery { background: var(--bg-soft); }
.gallery-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.gallery-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-top: 1rem;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 110px;
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item { cursor: zoom-in; }

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(20, 18, 14, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  padding: 1.5rem;
}
.lightbox.open {
  display: flex;
  opacity: 1;
}
.lightbox-img {
  max-width: 92vw;
  max-height: 86vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  transition: opacity 0.25s var(--ease);
}
.lightbox-img.swapping { opacity: 0; }
.lb-btn {
  position: absolute;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
  z-index: 1;
}
.lb-btn:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.5); }
.lb-btn svg { width: 20px; height: 20px; }
.lb-close { top: 1.5rem; right: 1.5rem; }
.lb-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 600px) {
  .lb-prev { left: 0.8rem; }
  .lb-next { right: 0.8rem; }
  .lb-close { top: 0.8rem; right: 0.8rem; }
}
.g1 { grid-column: span 8; grid-row: span 5; }
.g2 { grid-column: span 4; grid-row: span 5; }
.g3 { grid-column: span 3; grid-row: span 3; }
.g4 { grid-column: span 3; grid-row: span 3; }
.g5 { grid-column: span 3; grid-row: span 3; }
.g6 { grid-column: span 3; grid-row: span 3; }
/* 8-photo bento for sub-page galleries */
.sg1 { grid-column: span 5; grid-row: span 4; }
.sg2 { grid-column: span 7; grid-row: span 2; }
.sg3 { grid-column: span 4; grid-row: span 2; }
.sg4 { grid-column: span 3; grid-row: span 2; }
.sg5 { grid-column: span 3; grid-row: span 3; }
.sg6 { grid-column: span 3; grid-row: span 3; }
.sg7 { grid-column: span 3; grid-row: span 3; }
.sg8 { grid-column: span 3; grid-row: span 3; }

/* ===== Reservation Modal ===== */
.rez-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(20, 18, 14, 0.65);
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 2rem 1rem;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.3s var(--ease);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.rez-modal.open {
  display: flex;
  opacity: 1;
}
.rez-modal-content {
  background: var(--surface);
  border-radius: 6px;
  max-width: 1200px;
  width: 100%;
  padding: clamp(1.8rem, 3.5vw, 3rem);
  position: relative;
  margin: auto 0;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.4);
  transform: translateY(-20px);
  transition: transform 0.4s var(--ease);
}
.rez-modal.open .rez-modal-content { transform: none; }
.rez-modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease);
  z-index: 2;
}
.rez-modal-close:hover { background: var(--accent-deep); }
.rez-modal-close svg { width: 20px; height: 20px; }
.rez-modal-title {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  color: var(--fg);
  margin: 0 3rem 1.5rem 0;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
body.no-scroll { overflow: hidden; }

/* ===== Reservation ===== */
.reservation { background: var(--surface); }
.reservation-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.reservation-head h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-top: 0.6rem;
}
.res-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 800px;
  margin: 2.5rem auto 2.5rem;
}
.res-tab {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.8rem 1rem 0.8rem 0.6rem;
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-align: left;
}
.res-tab.active {
  background: var(--fg);
  color: #fff;
  border-color: var(--fg);
}
.res-tab img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.res-tab .label {
  flex: 1;
  font-weight: 500;
  font-size: 0.95rem;
}
.res-radio {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.res-tab.active .res-radio { border-color: var(--accent-soft); background: var(--accent); }
.res-tab.active .res-radio::after {
  content: "✓";
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
}
.res-body {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(2rem, 5vw, 4rem);
  max-width: 1300px;
  margin: 0 auto;
}
.res-form-head {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.res-form .field { margin-bottom: 1.4rem; }
.res-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--fg-soft);
  margin-bottom: 0.3rem;
}
.res-form input {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 0.55rem 0;
  background: transparent;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--fg);
  outline: none;
  transition: border-color 0.3s var(--ease);
}
.res-form input:focus { border-bottom-color: var(--accent); }
.res-calendar {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--line-soft);
}
.res-calendars {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.6rem;
  align-items: center;
}
.res-calendars .cal-months-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.cal-nav {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--fg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
  font-family: var(--sans);
}
.cal-nav:hover:not(:disabled) {
  background: var(--surface);
  border-color: var(--accent);
}
.cal-nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.cal-month h4 {
  text-align: center;
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 1rem;
}
.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  font-size: 0.98rem;
  text-align: center;
}
.cal-grid .dow {
  font-weight: 500;
  color: var(--muted);
  padding: 0.4rem 0;
  font-size: 0.78rem;
  text-transform: uppercase;
}
.cal-grid .d {
  padding: 0.65rem 0;
  color: var(--fg);
  border-radius: 4px;
  cursor: pointer;
}
.cal-grid .d:hover { background: var(--bg-soft); }
.cal-grid .d.muted { color: var(--line); cursor: default; }
.cal-grid .d.muted:hover { background: transparent; }
.cal-grid .d.taken { color: #c97676; text-decoration: line-through; }
.cal-grid .d.weekend { color: var(--accent-deep); }
.cal-grid .d.selected { background: var(--accent); color: #fff; }
.res-selected {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--muted);
}
.res-submit-wrap {
  text-align: center;
  margin-top: 3rem;
}
.res-message {
  display: none;
  max-width: 42rem;
  margin: 1.5rem auto 0;
  padding: 1rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.5;
  text-align: center;
}
.res-message.success {
  display: block;
  background: rgba(184, 138, 91, 0.15);
  border: 1px solid var(--accent);
  color: var(--fg);
}
.res-message.error {
  display: block;
  background: rgba(201, 118, 118, 0.12);
  border: 1px solid #c97676;
  color: #7a3a3a;
}

/* ===== Contact ===== */
.contact { background: var(--bg-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.contact-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-top: 1rem;
  max-width: 14ch;
}
.contact-left p {
  margin-top: 1rem;
  color: var(--fg-soft);
}
.contact-info {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent-deep);
  font-size: 0.95rem;
}
.contact-info-item svg { width: 16px; height: 16px; flex-shrink: 0; }
.contact-info-item a:hover { color: var(--fg); }
.contact-address {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
  color: var(--fg-soft);
  line-height: 1.7;
}
.contact-address strong { color: var(--fg); font-weight: 500; }

/* Centered contact block (no form, just info + CTA) */
.contact-block {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.contact-block h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-top: 1rem;
  max-width: none;
}
.contact-block > p {
  color: var(--fg-soft);
  margin-top: 1rem;
  max-width: 44ch;
  margin-left: auto;
  margin-right: auto;
}
.contact-block .contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: center;
  margin-top: 2rem;
}
.contact-block .contact-address {
  border-top: 1px solid var(--line);
  padding-top: 1.6rem;
  margin-top: 2rem;
  border-bottom: none;
}
.contact-cta {
  margin-top: 2rem;
  display: inline-flex;
}
.contact-card {
  background: var(--accent-soft);
  background: linear-gradient(135deg, var(--accent-soft) 0%, #c7a37d 100%);
  border-radius: var(--radius);
  padding: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--fg);
}
.contact-card h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  text-align: center;
}
.contact-card .intro {
  text-align: center;
  color: var(--fg-soft);
  margin-top: 0.8rem;
  margin-bottom: 1.8rem;
  font-size: 0.95rem;
}
.contact-card form { display: grid; gap: 1.2rem; }
.contact-card .row { display: grid; gap: 1.2rem; grid-template-columns: 1fr 1fr; }
.contact-card label {
  display: block;
  font-size: 0.75rem;
  color: var(--fg);
  margin-bottom: 0.3rem;
  letter-spacing: 0.04em;
}
.contact-card input,
.contact-card textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(44,42,38,0.35);
  padding: 0.5rem 0;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--fg);
  outline: none;
  transition: border-color 0.3s var(--ease);
}
.contact-card input:focus,
.contact-card textarea:focus { border-color: var(--fg); }
.contact-card textarea { resize: vertical; min-height: 90px; }
.contact-card .gdpr {
  font-size: 0.78rem;
  text-align: center;
  color: var(--fg-soft);
  margin-top: 0.5rem;
}
.contact-card .form-actions {
  text-align: center;
  margin-top: 0.5rem;
}
.contact-card .btn-primary {
  background: var(--accent-deep);
}
.contact-card .btn-primary:hover { background: var(--fg); }
.form-success {
  grid-column: 1 / -1;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--fg);
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius);
  font-family: var(--serif);
  font-style: italic;
  text-align: center;
  display: none;
}
.form-success.show { display: block; }

/* ===== Testimonials & Carousel ===== */
.testimonials { background: var(--bg); }
.testimonials-head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.testimonials-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-top: 1rem;
  max-width: 22ch;
  margin-left: auto;
  margin-right: auto;
}
.carousel {
  position: relative;
  --visible: 3.3;
  --gap: 0.4rem;
}
.carousel-viewport {
  overflow: hidden;
  padding: 0.5rem 0;
}
.carousel-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - (var(--visible) - 1) * var(--gap)) / var(--visible));
  gap: var(--gap);
  align-items: start;
  transition: transform 0.55s var(--ease);
  will-change: transform;
}
.carousel .quote {
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;
}
.carousel-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1.5px solid var(--accent);
  color: var(--accent-deep);
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease), opacity 0.3s var(--ease);
}
.carousel-btn:hover {
  background: var(--accent);
  color: #fff;
}
.carousel-btn:disabled {
  opacity: 0.25;
  cursor: default;
}
.carousel-btn:disabled:hover {
  background: transparent;
  color: var(--accent-deep);
}
.carousel-btn svg { width: 18px; height: 18px; }
.carousel-dots {
  display: flex;
  gap: 0.5rem;
  margin: 0 0.5rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--line);
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.carousel-dot.active {
  background: var(--accent-deep);
  transform: scale(1.4);
}
.quote {
  background: var(--surface);
  padding: 0.6rem 1.6rem 0.8rem;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  position: relative;
}
.quote::before {
  content: "“";
  position: absolute;
  top: -0.4rem;
  left: 0.9rem;
  font-family: var(--serif);
  font-size: 4.2rem;
  color: var(--accent-soft);
  line-height: 1;
}
.quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.12rem;
  color: var(--fg);
  line-height: 1.35;
  margin: 0.3rem 0 0.7rem;
  position: relative;
}
.quote-stars { margin-top: 0.3rem; margin-bottom: 0.2rem; }
.quote-author {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--fg);
}
.quote-role {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.2rem;
}
.quote-stars {
  color: var(--accent-deep);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.6rem;
}

/* ===== FAQ ===== */
.faq { background: var(--bg); }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.faq-head h2 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  margin-top: 1rem;
}
.faq-head p {
  color: var(--fg-soft);
  margin-top: 1.2rem;
  max-width: 32ch;
}
.faq-list {
  list-style: none;
  margin: 0; padding: 0;
  border-top: 1px solid var(--line);
}
.faq-list details {
  border-bottom: 1px solid var(--line);
  padding: 1.3rem 0;
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 1.6vw, 1.35rem);
  line-height: 1.3;
  color: var(--fg);
  transition: color 0.3s var(--ease);
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-family: var(--sans);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent-deep);
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
  line-height: 1;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list summary:hover { color: var(--accent-deep); }
.faq-list .answer {
  margin-top: 1rem;
  color: var(--fg-soft);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 58ch;
}

/* ===== Footer ===== */
.footer {
  background: #1f1d19;
  color: rgba(245,239,228,0.7);
  padding: 4rem 0 1.5rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(245,239,228,0.1);
}
.footer-brand .brand { color: var(--bg); align-items: flex-start; text-align: left; }
.footer-brand .brand-name { color: var(--bg); }
.footer-brand p { margin-top: 1rem; max-width: 32ch; line-height: 1.6; }
.footer-col h4 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 1.2rem;
  font-weight: 500;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a:hover { color: var(--bg); }
.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(245,239,228,0.4);
}
.socials { display: flex; gap: 0.8rem; }
.socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(245,239,228,0.25);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.socials a:hover { background: var(--accent); border-color: var(--accent); color: var(--bg); }
.socials svg { width: 14px; height: 14px; }

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease);
}
.reveal.in-view { opacity: 1; transform: none; }

:focus-visible {
  outline: 2px solid var(--accent-deep);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .nav-inner { grid-template-columns: auto auto; gap: 1rem; }
  .nav-links { display: none; }
  .nav-phone span { display: none; }
  .nav-right { gap: 0.6rem; }
  .menu-toggle {
    display: inline-flex;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    align-items: center;
    justify-content: center;
    color: var(--fg);
  }
  .nav-links.open {
    display: flex;
    position: fixed;
    inset: 75px 1rem auto 1rem;
    background: var(--surface);
    flex-direction: column;
    padding: 1.5rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    gap: 1rem;
    box-shadow: 0 12px 30px -10px rgba(0,0,0,0.15);
    align-items: stretch;
  }
  .intro-grid, .services-head, .pillars-grid, .res-body, .contact-grid, .faq-grid, .content-grid, .feature-grid {
    grid-template-columns: 1fr;
  }
  .feature-grid.four { grid-template-columns: repeat(2, 1fr); }
  .feature-grid.two { grid-template-columns: 1fr; }
  .content-grid.reverse > :first-child { order: 0; }
  .feature-grid { gap: 1.5rem; }
  .carousel { --visible: 2; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
  .res-calendars { grid-template-columns: auto 1fr auto; }
  .res-calendars .cal-months-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 90px;
  }
  .g1, .g6 { grid-column: span 6; grid-row: span 3; }
  .g2, .g3, .g4, .g5 { grid-column: span 3; grid-row: span 3; }
  .sg1, .sg2 { grid-column: span 6; grid-row: span 3; }
  .sg3, .sg4, .sg5, .sg6, .sg7, .sg8 { grid-column: span 3; grid-row: span 2; }
}
@media (max-width: 600px) {
  .hero h1 { font-size: 2.2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .contact-card .row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .sticky-badge { font-size: 0.65rem; padding: 0.6rem 1.1rem; }
  .res-tabs { grid-template-columns: 1fr; }
  .carousel { --visible: 1; }
  .feature-grid.four { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-poster { animation: none; transform: scale(1.05); }
  .reveal { opacity: 1; transform: none; }
}
