:root {
  --cream: #f5f0e6;
  --cream-light: #faf6ee;
  --cream-dark: #ebe3d1;
  --gold: #C8A96E;
  --gold-dark: #a88a54;
  --gold-light: #e0c896;
  --green: #192820;
  --green-soft: #3a4a40;
  --green-deep: #0f1813;
  --white: #ffffff;
  --red-soft: #a85858;
  --shadow-sm: 0 4px 20px rgba(25, 40, 32, 0.06);
  --shadow-md: 0 10px 40px rgba(25, 40, 32, 0.10);
  --shadow-lg: 0 20px 60px rgba(25, 40, 32, 0.18);
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--green);
  line-height: 1.7;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.display { font-family: 'Cormorant Garamond', serif; font-weight: 400; letter-spacing: -0.01em; }
.italic { font-style: italic; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============ NAVIGATION ============ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 26px 60px;
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.4s;
}
nav.scrolled {
  background: rgba(245, 240, 230, 0.96);
  backdrop-filter: blur(20px);
  padding: 18px 60px;
  box-shadow: var(--shadow-sm);
}
nav.scrolled .nav-logo,
nav.scrolled .nav-links a:not(.nav-cta) { color: var(--green); }
nav.scrolled .nav-cta {
  background: var(--green);
  border-color: var(--green);
  color: var(--cream) !important;
  box-shadow: 0 4px 16px rgba(25, 40, 32, 0.2);
}
nav.scrolled .nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green) !important;
  box-shadow: 0 6px 20px rgba(200, 169, 110, 0.35);
}
nav.scrolled .nav-mobile-toggle { color: var(--green); border-color: var(--green); }

/* Navigation on solid background pages (non-hero pages) */
nav.solid {
  background: rgba(245, 240, 230, 0.96);
  backdrop-filter: blur(20px);
}
nav.solid .nav-logo, nav.solid .nav-links a:not(.nav-cta) { color: var(--green); }
nav.solid .nav-cta {
  background: var(--green);
  border-color: var(--green);
  color: var(--cream) !important;
  box-shadow: 0 4px 16px rgba(25, 40, 32, 0.2);
}
nav.solid .nav-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green) !important;
  box-shadow: 0 6px 20px rgba(200, 169, 110, 0.35);
}
nav.solid .nav-mobile-toggle { color: var(--green); border-color: var(--green); }

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  color: var(--cream);
  transition: color 0.4s;
  letter-spacing: 0.01em;
  font-weight: 400;
}
.nav-logo .italic { color: var(--gold); }

.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a:not(.nav-cta) {
  color: var(--cream);
  font-size: 13px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.3s;
  opacity: 0.92;
  position: relative;
}
.nav-links a:not(.nav-cta):hover {
  opacity: 1;
  color: var(--gold-light);
}
/* Underline hover effect */
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:not(.nav-cta):hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--green) !important;
  padding: 14px 32px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s;
  opacity: 1 !important;
  box-shadow: 0 4px 16px rgba(200, 169, 110, 0.3);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--green) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.4);
}

.nav-mobile-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--cream);
  color: var(--cream);
  padding: 8px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
}

@media (max-width: 1100px) and (min-width: 901px) {
  nav { padding: 20px 32px; }
  nav.scrolled { padding: 14px 32px; }
  .nav-logo { font-size: 22px; }
  .nav-links { gap: 28px; }
  .nav-links a:not(.nav-cta) { font-size: 11px; letter-spacing: 2.5px; }
  .nav-cta { padding: 12px 24px; font-size: 11px; }
}

@media (max-width: 900px) {
  nav { padding: 16px 20px; }
  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
}

/* MOBILE NAV */
.mobile-nav {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--green);
  color: var(--cream);
  z-index: 200;
  padding: 80px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--cream);
  padding: 12px 0;
  border-bottom: 1px solid rgba(200, 169, 110, 0.15);
}
.mobile-nav .mobile-cta {
  margin-top: 20px;
  background: var(--gold);
  color: var(--green) !important;
  text-align: center;
  padding: 18px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  border: none;
  border-bottom: none !important;
  box-shadow: 0 4px 20px rgba(200, 169, 110, 0.3);
}
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 20px;
  background: transparent;
  border: 1px solid var(--cream);
  color: var(--cream);
  padding: 8px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
}

/* ============ HERO (homepage + some subpages) ============ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--cream);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center 40%, rgba(25,40,32,0.15) 0%, rgba(25,40,32,0.5) 70%, rgba(25,40,32,0.8) 100%),
    linear-gradient(180deg,
      rgba(25,40,32,0.55) 0%,
      rgba(25,40,32,0.5) 30%,
      rgba(25,40,32,0.65) 55%,
      rgba(25,40,32,0.95) 100%),
    linear-gradient(90deg, rgba(25,40,32,0.5) 0%, rgba(25,40,32,0.1) 50%, rgba(25,40,32,0.3) 100%),
    url('https://ik.imagekit.io/aimxhu5tu/the-bayuh-oases/renders/TYPE%201/09.jpg?tr=w-2400,q-85') center/cover;
  z-index: -1;
  animation: heroReveal 2s ease-out;
}
@keyframes heroReveal {
  from { opacity: 0; transform: scale(1.08); }
  to { opacity: 1; transform: scale(1); }
}

.hero-side {
  position: absolute; top: 50%; left: 40px;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left center;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  opacity: 0.7;
}
.hero-side-r {
  position: absolute; top: 50%; right: 40px;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: right center;
  font-size: 10px; letter-spacing: 4px; text-transform: uppercase;
  opacity: 0.7;
}

.hero-content {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  padding: 0 80px 100px;
  animation: fadeInUp 1.4s 0.5s both;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-label {
  font-size: 12px; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
  display: flex; align-items: center; gap: 14px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.6);
  font-weight: 500;
}
.hero-label::before {
  content: ''; width: 40px; height: 1px; background: var(--gold);
}

.hero-title {
  font-size: clamp(48px, 8.5vw, 104px);
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 900px;
  text-shadow:
    0 4px 48px rgba(0, 0, 0, 0.8),
    0 2px 20px rgba(0, 0, 0, 0.6),
    0 1px 3px rgba(0, 0, 0, 0.5);
}
.hero-title .italic { color: var(--gold-light); }

.hero-sub {
  font-size: 18px;
  max-width: 540px;
  opacity: 1;
  margin-bottom: 40px;
  color: var(--cream);
  text-shadow:
    0 2px 20px rgba(0, 0, 0, 0.9),
    0 1px 6px rgba(0, 0, 0, 0.7),
    0 1px 2px rgba(0, 0, 0, 0.5);
  font-weight: 400;
}

.hero-meta {
  display: inline-flex; gap: 0;
  margin-bottom: 40px;
  flex-wrap: wrap;
  background: rgba(25, 40, 32, 0.55);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid rgba(200, 169, 110, 0.4);
  box-shadow:
    0 12px 48px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  padding: 2px;
}
.hero-meta-item {
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-light);
  padding: 18px 32px;
  text-align: center;
  border-right: 1px solid rgba(200, 169, 110, 0.2);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  font-weight: 500;
}
.hero-meta-item:last-child { border-right: none; }
.hero-meta-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--cream);
  margin-top: 8px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 50px; left: 50%;
  transform: translateX(-50%);
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  opacity: 0.7;
  animation: scrollBounce 2s infinite;
  color: var(--cream);
}
.hero-scroll::after {
  content: '';
  display: block;
  width: 1px; height: 40px;
  background: var(--gold);
  margin: 12px auto 0;
}
@keyframes scrollBounce {
  0%,100% { transform: translateX(-50%) translateY(0); opacity: 0.7; }
  50% { transform: translateX(-50%) translateY(8px); opacity: 0.4; }
}

@media (max-width: 768px) {
  .hero-content { padding: 0 24px 60px; }
  .hero-side, .hero-side-r { display: none; }
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 17px 40px;
  font-family: 'Jost', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 400;
  transition: all 0.4s;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}
.btn-gold {
  background: rgba(200, 169, 110, 0.95);
  color: var(--green);
  border-color: rgba(200, 169, 110, 0.7);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-weight: 500;
  padding: 18px 44px;
}
.btn-gold:hover {
  background: rgba(245, 240, 230, 0.98);
  border-color: rgba(245, 240, 230, 0.8);
  transform: translateY(-3px);
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}
.btn-ghost {
  background: rgba(25, 40, 32, 0.4);
  color: var(--cream);
  border-color: rgba(245, 240, 230, 0.7);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  box-shadow:
    0 12px 40px rgba(0, 0, 0, 0.4),
    0 2px 8px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  font-weight: 500;
  padding: 18px 44px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}
.btn-ghost:hover {
  background: rgba(245, 240, 230, 0.98);
  color: var(--green);
  border-color: rgba(245, 240, 230, 0.8);
  transform: translateY(-3px);
  text-shadow: none;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}
.btn-dark {
  background: var(--green); color: var(--cream); border-color: var(--green);
}
.btn-dark:hover { background: var(--green-deep); }
.btn-outline-dark {
  background: transparent; color: var(--green); border-color: var(--green);
}
.btn-outline-dark:hover { background: var(--green); color: var(--cream); }

/* ============ BOOKING BAR ============ */
.booking-bar {
  background: var(--white);
  padding: 24px 40px;
  box-shadow: var(--shadow-md);
  margin-top: -40px;
  position: relative;
  z-index: 20;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  border-top: 2px solid var(--gold);
}
.booking-bar-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 20px;
  align-items: end;
}
.booking-field { display: flex; flex-direction: column; gap: 6px; }
.booking-field label {
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold-dark); font-weight: 500;
}
.booking-field input, .booking-field select {
  border: none;
  border-bottom: 1px solid var(--cream-dark);
  padding: 8px 0;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  color: var(--green);
  background: transparent;
  outline: none;
}
.booking-field input:focus, .booking-field select:focus {
  border-bottom-color: var(--gold);
}
.booking-btn {
  background: rgba(25, 40, 32, 0.92);
  color: var(--cream);
  border: 1px solid rgba(25, 40, 32, 0.4);
  padding: 16px 32px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(25, 40, 32, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.booking-btn:hover {
  background: rgba(200, 169, 110, 0.95);
  color: var(--green);
  border-color: rgba(200, 169, 110, 0.6);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 169, 110, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .booking-bar { margin-top: 0; padding: 20px; }
  .booking-bar-inner { grid-template-columns: 1fr 1fr; }
  .booking-btn { grid-column: 1 / -1; padding: 14px; }
}

/* ============ SECTION BASICS ============ */
section { padding: 140px 40px; position: relative; }

.section-label {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-label::before {
  content: ''; width: 30px; height: 1px; background: var(--gold);
}
.section-title {
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.section-title .italic { color: var(--gold-dark); }
.section-intro {
  font-size: 17px;
  color: var(--green-soft);
  max-width: 640px;
}

.lead {
  font-size: 19px;
  line-height: 1.7;
  color: var(--green-soft);
  margin-bottom: 20px;
}

/* ============ NARRATIVE / TWO-COLUMN SECTION ============ */
.section-narrative {
  background: var(--cream);
  padding: 160px 40px;
}
.narrative-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.narrative-grid p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--green-soft);
  margin-bottom: 20px;
}
.narrative-img {
  height: 640px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.narrative-img::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid var(--gold);
  opacity: 0.5;
  pointer-events: none;
}
.signature {
  margin-top: 40px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-style: italic;
  color: var(--gold-dark);
}
@media (max-width: 900px) {
  .narrative-grid { grid-template-columns: 1fr; gap: 60px; }
  .narrative-img { height: 420px; order: -1; }
}

/* ============ FEATURE TILES (3-up) ============ */
.feature-tiles {
  background: var(--cream-light);
  padding: 140px 40px;
}
.tiles-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 80px;
}
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}
.tile {
  background: var(--white);
  display: block;
  transition: transform 0.5s, box-shadow 0.5s;
  overflow: hidden;
}
.tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.tile-img {
  height: 340px;
  background-size: cover;
  background-position: center;
  transition: transform 1s;
}
.tile:hover .tile-img { transform: scale(1.05); }
.tile-content {
  padding: 40px 36px 44px;
  position: relative;
}
.tile-content::before {
  content: '';
  position: absolute;
  top: 0; left: 36px;
  width: 30px; height: 2px;
  background: var(--gold);
}
.tile-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--gold-dark);
  margin-top: 20px;
  margin-bottom: 12px;
}
.tile-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  line-height: 1.1;
  margin-bottom: 16px;
}
.tile-title .italic { color: var(--gold-dark); }
.tile-text {
  font-size: 14px;
  color: var(--green-soft);
  line-height: 1.8;
  margin-bottom: 24px;
}
.tile-cta {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s, color 0.3s;
}
.tile:hover .tile-cta { gap: 14px; color: var(--green); }

@media (max-width: 900px) {
  .tiles-grid { grid-template-columns: 1fr; gap: 20px; }
  .tile-img { height: 260px; }
}

/* ============ WHY DIRECT ============ */
.why-direct {
  background: var(--cream);
  padding: 160px 40px;
}
.why-direct-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 80px;
}
.direct-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.direct-benefit {
  text-align: center;
  padding: 50px 24px;
  background: var(--white);
  position: relative;
}
.direct-benefit::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 2px;
  background: var(--gold);
}
.direct-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  line-height: 1;
  color: var(--gold-dark);
  margin-bottom: 16px;
  font-weight: 300;
}
.direct-number .sym {
  font-size: 32px;
  color: var(--gold);
}
.direct-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  margin-bottom: 10px;
  color: var(--green);
}
.direct-text {
  font-size: 13px;
  color: var(--green-soft);
  line-height: 1.7;
}
@media (max-width: 900px) { .direct-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .direct-grid { grid-template-columns: 1fr; } }
.direct-grid.direct-grid-3 { grid-template-columns: repeat(3, 1fr); max-width: 1000px; }
@media (max-width: 900px) { .direct-grid.direct-grid-3 { grid-template-columns: 1fr; } }

/* ============ TESTIMONIAL ============ */
.testimonial {
  background: var(--cream-light);
  padding: 140px 40px;
  text-align: center;
}
.t-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 6px;
  margin-bottom: 32px;
}
.t-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.5;
  font-style: italic;
  max-width: 860px;
  margin: 0 auto 32px;
  color: var(--green);
}
.t-author {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.t-source {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-soft);
  opacity: 0.6;
}

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--green-deep);
  color: var(--cream);
  padding: 140px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://ik.imagekit.io/aimxhu5tu/the-bayuh-oases/renders/TYPE%201/23.jpg?tr=w-2000,q-70') center/cover;
  opacity: 0.25;
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band .section-title { color: var(--cream); margin-bottom: 28px; }
.cta-band .section-title .italic { color: var(--gold); }
.cta-band .section-intro {
  color: rgba(245, 240, 230, 0.85);
  margin: 0 auto 48px;
}
.cta-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* ============ FOOTER ============ */
footer {
  background: var(--green);
  color: var(--cream);
  padding: 80px 40px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto 60px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  margin-bottom: 12px;
}
.footer-logo .italic { color: var(--gold); }
.footer-tagline {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-desc {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.7;
  max-width: 340px;
}
.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col a {
  display: block;
  font-size: 13px;
  opacity: 0.7;
  padding: 6px 0;
  transition: all 0.3s;
}
.footer-col a:hover { opacity: 1; padding-left: 6px; }

/* ============ FOOTER SOCIAL ICONS ============ */
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 4px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200, 169, 110, 0.3);
  color: var(--cream);
  transition: all 0.3s;
  padding: 0 !important;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green);
  padding-left: 0 !important;
  transform: translateY(-2px);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-bottom {
  max-width: 1300px;
  margin: 0 auto;
  padding-top: 40px;
  border-top: 1px solid rgba(200, 169, 110, 0.2);
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.5;
  flex-wrap: wrap;
  gap: 20px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 100px 24px; }
  .section-narrative, .feature-tiles, .why-direct, .testimonial, .cta-band { padding: 100px 24px; }
}

/* ============ PAGE HEADER (for non-home pages) ============ */
.page-header {
  padding: 180px 40px 100px;
  background: var(--cream);
  text-align: center;
  border-bottom: 1px solid var(--cream-dark);
}
.page-header .section-label {
  justify-content: center;
  display: inline-flex;
}
.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 80px);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}
.page-header h1 .italic { color: var(--gold-dark); }
.page-header .intro {
  font-size: 18px;
  color: var(--green-soft);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .page-header { padding: 140px 24px 80px; }
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ DUAL IDENTITY SECTION ============ */
.dual-identity {
  background: var(--green);
  color: var(--cream);
  padding: 140px 40px;
  position: relative;
  overflow: hidden;
}
/* Decorative dark elements */
.dual-identity::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.1;
  pointer-events: none;
}
.dual-identity::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0.08;
  pointer-events: none;
}
.dual-identity-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.dual-identity-img {
  height: 520px;
  background-size: cover;
  background-position: center;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}
.dual-identity-img::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid var(--gold);
  opacity: 0.6;
  pointer-events: none;
}
.dual-identity-text .section-label {
  color: var(--gold);
  margin-bottom: 20px;
}
.dual-identity-text .section-label::before {
  background: var(--gold);
}
.dual-identity-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 54px);
  line-height: 1.1;
  font-weight: 300;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.dual-identity-text h2 .italic { color: var(--gold-light); }
.dual-identity-text p {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(245, 240, 230, 0.8);
  margin-bottom: 20px;
}
.dual-identity-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 36px 0;
  padding: 28px 0;
  border-top: 1px solid rgba(200, 169, 110, 0.3);
  border-bottom: 1px solid rgba(200, 169, 110, 0.3);
}
.dual-meta-item {
  text-align: left;
}
.dual-meta-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
  font-weight: 400;
}
.dual-meta-value .italic { color: var(--gold-light); }
.dual-meta-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}
/* CTA as prominent gold button */
.dual-identity-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--green);
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.4s;
  margin-top: 12px;
  box-shadow: 0 8px 24px rgba(200, 169, 110, 0.3);
}
.dual-identity-cta:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--green);
  gap: 18px;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(200, 169, 110, 0.4);
}

@media (max-width: 900px) {
  .dual-identity-inner { grid-template-columns: 1fr; gap: 40px; }
  .dual-identity-img { height: 320px; order: -1; }
  .dual-identity { padding: 80px 24px; }
}

/* Dark variant for use on thankyou page */
.dual-identity.dark {
  background: var(--green);
  color: var(--cream);
  border-top: none;
}
.dual-identity.dark .dual-identity-text h2 { color: var(--cream); }
.dual-identity.dark .dual-identity-text h2 .italic { color: var(--gold); }
.dual-identity.dark .dual-identity-text p { color: rgba(245, 240, 230, 0.8); }
.dual-identity.dark .section-label { color: var(--gold); }
.dual-identity.dark .section-label::before { background: var(--gold); }
.dual-identity.dark .dual-identity-meta {
  border-color: rgba(200, 169, 110, 0.2);
}
.dual-identity.dark .dual-meta-value { color: var(--cream); }
.dual-identity.dark .dual-meta-value .italic { color: var(--gold); }
.dual-identity.dark .dual-meta-label { color: var(--gold); }
.dual-identity.dark .dual-identity-cta {
  border-color: var(--gold);
  color: var(--gold);
}
.dual-identity.dark .dual-identity-cta:hover {
  background: var(--gold);
  color: var(--green);
}


/* ═══════════════════════════════════════════════════════════
   COMPREHENSIVE RESPONSIVE LAYER
   Mobile-first redesign – overrides everything above
   ═══════════════════════════════════════════════════════════ */

/* ============ TABLET (600 – 1024px) ============ */
@media (max-width: 1024px) {

  /* Typography scaling */
  .hero-title { font-size: clamp(40px, 7vw, 72px) !important; }
  .section-title { font-size: clamp(32px, 5vw, 52px) !important; }

  /* Section padding */
  section { padding: 100px 32px; }
  .section-narrative,
  .feature-tiles,
  .why-direct,
  .testimonial,
  .cta-band,
  .dual-identity,
  .plan-section,
  .timeline-section,
  .quick-faq,
  .services-section,
  .neighborhood,
  .adventures,
  .how-to-book,
  .about-intro,
  .philosophy,
  .principles,
  .team-section,
  .other-props,
  .numbers,
  .contact-methods,
  .contact-form-section,
  .map-section,
  .contact-faq,
  .next-section,
  .meanwhile,
  .questions-band,
  .thanks-hero,
  .amenities,
  .materials,
  .floor-plan,
  .story {
    padding: 100px 32px !important;
  }

  /* Container-wide grids */
  .narrative-grid,
  .story-grid,
  .about-intro-grid,
  .dual-identity-inner,
  .contact-form-grid {
    gap: 60px !important;
  }

  /* Feature tiles */
  .tiles-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* Why direct */
  .direct-grid { grid-template-columns: repeat(2, 1fr); }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Materials */
  .materials-grid { grid-template-columns: repeat(3, 1fr); }

  /* Amenities */
  .amenities-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 40px; }

  /* Services / Experiences */
  .services-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 200px 1fr; }

  /* Neighborhood */
  .n-items { grid-template-columns: repeat(2, 1fr); }

  /* Adventures */
  .adventures-grid { grid-template-columns: repeat(2, 1fr); }

  /* Other props */
  .props-grid { grid-template-columns: 1fr 1fr; }
  .props-grid .prop:last-child { grid-column: 1 / -1; max-width: 600px; margin: 0 auto; }

  /* Principles */
  .principles-grid { grid-template-columns: repeat(2, 1fr); }
  .principles-grid .reveal:nth-child(5) { grid-column: 1 / -1; }

  /* Numbers */
  .numbers-grid { grid-template-columns: repeat(4, 1fr); gap: 30px; }

  /* Methods */
  .methods-grid { grid-template-columns: 1fr; }

  /* Contact form */
  .contact-form-grid { grid-template-columns: 1fr; }

  /* Meanwhile */
  .meanwhile-grid { grid-template-columns: 1fr 1fr; }
  .meanwhile-grid .mw-card:last-child {
    grid-column: 1 / -1;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
  }

  /* Floor plan */
  .floor-grid { grid-template-columns: 1fr 1fr; }

  /* Plan cards - stack large & small */
  .plan-large,
  .plan-small,
  .plan-half { grid-column: 1 / -1; }
  .plan-full-grid { grid-template-columns: 1fr 1fr; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); padding: 0 32px; }
  .gallery-item { height: 280px; }
  .gallery-item.tall { grid-row: auto; }
  .gallery-item.wide { grid-column: span 2; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
    text-align: center;
  }
  .footer-grid > div:last-child .footer-social {
    justify-content: center;
  }

  /* Booking summary */
  .booking-grid { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
  .booking-main { padding: 40px 32px; }
}

/* ============ MOBILE (< 600px) ============ */
@media (max-width: 600px) {

  /* Base typography */
  body { font-size: 15px; line-height: 1.65; }

  /* Section spacing */
  section,
  .section-narrative,
  .feature-tiles,
  .why-direct,
  .testimonial,
  .cta-band,
  .dual-identity,
  .plan-section,
  .timeline-section,
  .quick-faq,
  .services-section,
  .neighborhood,
  .adventures,
  .how-to-book,
  .about-intro,
  .philosophy,
  .principles,
  .team-section,
  .other-props,
  .numbers,
  .contact-methods,
  .contact-form-section,
  .map-section,
  .contact-faq,
  .next-section,
  .meanwhile,
  .questions-band,
  .amenities,
  .materials,
  .floor-plan,
  .story {
    padding: 70px 20px !important;
  }

  /* Navigation */
  nav { padding: 14px 20px !important; }
  nav.scrolled { padding: 12px 20px !important; }
  .nav-logo { font-size: 18px; }

  /* Hero */
  .hero {
    min-height: auto;
    height: 100vh;
    max-height: 780px;
  }
  /* Silnější overlay pro lepší čitelnost textu */
  .hero::before {
    background:
      linear-gradient(180deg,
        rgba(25,40,32,0.45) 0%,
        rgba(25,40,32,0.55) 30%,
        rgba(25,40,32,0.7) 60%,
        rgba(25,40,32,0.95) 100%),
      url('https://ik.imagekit.io/aimxhu5tu/the-bayuh-oases/renders/TYPE%201/09.jpg?tr=w-1200,q-85') center/cover !important;
  }
  .hero-content {
    padding: 0 20px 40px !important;
    width: 100%;
  }
  .hero-title {
    font-size: clamp(40px, 11vw, 56px) !important;
    line-height: 1.05;
    margin-bottom: 20px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.6) !important;
  }
  .hero-sub {
    font-size: 15px;
    margin-bottom: 28px;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.5) !important;
  }
  .hero-label {
    font-size: 9px !important;
    letter-spacing: 3px;
    margin-bottom: 18px;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7) !important;
  }
  .hero-label::before { width: 25px; }
  .hero-meta {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 0 !important;
    margin-bottom: 32px;
    width: 100%;
    padding: 2px !important;
  }
  .hero-meta-item {
    font-size: 8px !important;
    letter-spacing: 1.5px !important;
    padding: 12px 8px !important;
    text-shadow: none !important;
    border-right: 1px solid rgba(245, 240, 230, 0.12) !important;
    border-bottom: 1px solid rgba(245, 240, 230, 0.12) !important;
  }
  .hero-meta-item:nth-child(2n) { border-right: none !important; }
  .hero-meta-item:nth-last-child(-n+2) { border-bottom: none !important; }
  .hero-meta-item strong {
    font-size: 22px !important;
    margin-top: 4px !important;
    text-shadow: none !important;
  }
  .hero-actions {
    flex-direction: column;
    gap: 10px;
  }
  .hero-actions .btn { width: 100%; }
  .hero-side, .hero-side-r { display: none !important; }
  .hero-scroll { display: none; }

  /* Villa hero */
  .villa-hero {
    height: 60vh;
    min-height: 440px;
  }
  .villa-hero::before {
    background:
      linear-gradient(180deg,
        rgba(25,40,32,0.4) 0%,
        rgba(25,40,32,0.55) 40%,
        rgba(25,40,32,0.95) 100%),
      url('https://ik.imagekit.io/aimxhu5tu/the-bayuh-oases/renders/TYPE%201/05.jpg?tr=w-1200,q-85') center/cover !important;
  }
  .villa-hero-content {
    padding: 0 20px 50px;
  }
  .villa-hero-content h1 {
    font-size: clamp(36px, 10vw, 50px) !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8), 0 1px 4px rgba(0, 0, 0, 0.6) !important;
  }
  .villa-hero-sub {
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8), 0 1px 3px rgba(0, 0, 0, 0.5) !important;
  }

  /* Buttons */
  .btn {
    padding: 16px 28px;
    font-size: 10px;
    letter-spacing: 2.5px;
  }

  /* Section headers */
  .section-label {
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 16px;
  }
  .section-label::before { width: 20px; }
  .section-title {
    font-size: clamp(28px, 7vw, 40px) !important;
    line-height: 1.1;
    margin-bottom: 18px;
  }
  .section-intro {
    font-size: 15px;
    line-height: 1.7;
  }
  .lead { font-size: 17px; }

  /* Page header */
  .page-header {
    padding: 120px 20px 70px !important;
  }
  .page-header h1 {
    font-size: clamp(38px, 10vw, 54px) !important;
    line-height: 1.05;
  }
  .page-header .intro {
    font-size: 15px;
  }

  /* Booking bar */
  .booking-bar {
    margin-top: 0;
    padding: 18px 20px;
  }
  .booking-bar-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .booking-btn {
    padding: 16px;
    margin-top: 4px;
  }

  /* Narrative / story / about grids */
  .narrative-grid,
  .story-grid,
  .about-intro-grid,
  .dual-identity-inner {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
  .narrative-img,
  .story-img,
  .about-intro-img,
  .dual-identity-img {
    height: 320px !important;
    order: -1;
  }
  .narrative-img::after,
  .story-img::after,
  .about-intro-img::after,
  .dual-identity-img::after {
    inset: 12px !important;
  }
  .narrative-grid p,
  .story-text p,
  .about-intro-text p {
    font-size: 15px !important;
    line-height: 1.75 !important;
  }

  /* Feature tiles */
  .tiles-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .tile-img { height: 220px !important; }
  .tile-content { padding: 32px 28px 36px; }
  .tile-title { font-size: 28px !important; }

  /* Why direct */
  .direct-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .direct-benefit { padding: 36px 20px; }
  .direct-number { font-size: 52px; }

  /* Testimonial */
  .t-text {
    font-size: 22px !important;
    line-height: 1.45;
  }

  /* CTA band */
  .cta-actions {
    flex-direction: column;
    gap: 10px;
  }
  .cta-actions .btn { width: 100%; }

  /* Specs bar (villa) */
  .specs-bar-inner {
    grid-template-columns: 1fr 1fr !important;
    gap: 24px 10px;
  }
  .spec-bar-value { font-size: 26px; }

  /* Gallery - 2 sloupce na mobilu */
  .gallery-grid {
    grid-template-columns: 1fr 1fr !important;
    padding: 0 16px;
    gap: 6px !important;
  }
  .gallery-item {
    height: 180px !important;
  }
  .gallery-item.tall,
  .gallery-item.wide {
    grid-row: auto !important;
    grid-column: auto !important;
  }
  /* První (hero) fotka přes celou šířku pro efekt */
  .gallery-item:first-child {
    grid-column: 1 / -1 !important;
    height: 240px !important;
  }
  .gallery-filters {
    gap: 6px;
    padding: 0 20px;
    margin-bottom: 40px;
  }
  .filter-btn {
    padding: 10px 18px;
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  /* Amenities - 2 sloupce vedle sebe na mobilu */
  .amenities {
    padding: 60px 16px !important;
  }
  .amenities-header {
    margin-bottom: 32px !important;
  }
  .amenities-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 14px 10px !important;
  }
  .amenity-row {
    gap: 8px !important;
    align-items: flex-start !important;
  }
  .amenity-icon {
    font-size: 11px !important;
    margin-top: 1px !important;
    flex-shrink: 0;
  }
  .amenity-content strong {
    font-size: 13px !important;
    margin-bottom: 2px !important;
    line-height: 1.2 !important;
    display: block;
  }
  .amenity-content span {
    font-size: 11px !important;
    line-height: 1.45 !important;
    display: block;
  }

  /* Materials */
  .materials-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px;
  }
  .material-img { height: 140px; }
  .material-body { padding: 20px 14px; }
  .material-name { font-size: 18px !important; }
  .material-use { font-size: 10px; }

  /* Floor plan - vedle sebe i na mobilu */
  .floor-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  .floor-card {
    padding: 20px 12px !important;
  }
  .floor-name {
    font-size: 16px !important;
  }
  .floor-stats {
    flex-direction: column;
    gap: 4px;
    font-size: 9px !important;
    letter-spacing: 1.5px !important;
    margin-top: 10px !important;
    padding-top: 12px !important;
  }

  /* Services */
  .service-card {
    grid-template-columns: 1fr !important;
  }
  .service-img {
    min-height: 200px !important;
    height: 200px;
  }
  .service-body { padding: 24px 22px; }
  .service-name { font-size: 22px !important; }
  .service-desc { font-size: 13px !important; }
  .service-meta { flex-direction: column; gap: 8px; align-items: start; }

  /* Neighborhood */
  .n-items {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
  .n-item { padding: 26px 22px; }
  .n-item-name { font-size: 20px !important; }
  .n-tabs {
    gap: 6px;
    padding: 0 4px;
  }
  .n-tab {
    padding: 10px 16px;
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  /* Adventures */
  .adventures-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .adventure { padding: 32px 24px; }
  .adventure-num { font-size: 40px; margin-bottom: 16px; }
  .adventure-title { font-size: 22px !important; }

  /* How to book */
  .how-steps {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  .how-step-num { font-size: 56px; }

  /* Plan cards */
  .plan-grid {
    grid-template-columns: 1fr !important;
    gap: 14px;
  }
  .plan-card { padding: 36px 24px !important; }
  .plan-title { font-size: 24px !important; }
  .plan-list li { font-size: 13px; padding: 10px 0 10px 22px; }
  .plan-list-time { font-size: 10px; }
  .plan-full {
    padding: 36px 24px !important;
  }
  .plan-full-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  /* Timeline */
  .timeline::before {
    left: 6px !important;
  }
  .timeline-item {
    grid-template-columns: 24px 1fr !important;
    gap: 16px !important;
    padding: 20px 0;
  }
  .timeline-dot {
    margin-left: 0 !important;
    width: 10px;
    height: 10px;
  }
  .timeline-what { font-size: 20px; }
  .timeline-text { font-size: 13px; }

  /* FAQ */
  .faq-question { font-size: 17px; padding: 22px 0; }

  /* Booking form */
  .booking-main {
    padding: 28px 20px !important;
  }
  .booking-main h2 { font-size: 28px !important; }
  .booking-main .subtitle { font-size: 13px; margin-bottom: 28px; }
  .form-row {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .form-section-title { font-size: 18px; }
  .form-group input,
  .form-group select,
  .form-group textarea,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    padding: 13px 14px;
    font-size: 15px;
  }
  .summary-card {
    padding: 32px 24px;
  }
  .summary-card h3 { font-size: 22px; }
  .summary-row.total { font-size: 18px; }

  /* Why direct mini (book page) */
  .why-direct-mini-inner {
    grid-template-columns: 1fr !important;
    gap: 26px;
  }
  .direct-mini h3 { font-size: 20px; }

  /* Philosophy - kompaktnější text na mobilu */
  .philosophy {
    padding: 70px 24px !important;
  }
  .philosophy h2 {
    font-size: clamp(28px, 8vw, 38px) !important;
    line-height: 1.15 !important;
    margin-bottom: 24px !important;
  }
  .philosophy-body {
    font-size: 15px !important;
    line-height: 1.7 !important;
  }
  .philosophy-body p {
    margin-bottom: 16px !important;
  }

  /* About intro - kompaktnější text */
  .about-intro {
    padding: 60px 24px !important;
  }
  .about-intro-grid {
    gap: 30px !important;
  }
  .about-intro-img {
    height: 260px !important;
  }
  .about-intro-img::after {
    inset: 12px !important;
  }
  .about-intro-text {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }
  .about-intro-text p {
    margin-bottom: 14px !important;
  }

  /* Team - 2 sloupce, kompaktnější karty */
  .team-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
  }
  .team-img {
    height: 160px !important;
  }
  .team-body {
    padding: 18px 14px !important;
  }
  .team-name {
    font-size: 18px !important;
    margin-bottom: 2px;
  }
  .team-role {
    font-size: 9px !important;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
  }
  .team-bio {
    font-size: 12px !important;
    line-height: 1.55 !important;
  }

  /* Principles - 2 sloupce, kompaktnější karty */
  .principles-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px;
  }
  .principles-grid .reveal:nth-child(5) {
    grid-column: 1 / -1;
  }
  .principle {
    padding: 24px 18px !important;
  }
  .principle-num {
    font-size: 11px !important;
    letter-spacing: 3px;
    margin-top: 16px;
    margin-bottom: 10px;
  }
  .principle-title {
    font-size: 19px !important;
    margin-bottom: 10px !important;
    line-height: 1.2;
  }
  .principle-text {
    font-size: 12px !important;
    line-height: 1.55 !important;
  }

  /* Numbers */
  .numbers-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 40px 16px !important;
  }
  .number-value { font-size: 56px !important; }

  /* Other props */
  .props-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .prop-img { height: 220px; }
  .prop-body { padding: 24px 22px; }
  .prop-name { font-size: 22px !important; }

  /* Contact methods */
  .methods-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .method { padding: 36px 28px; }
  .method-title { font-size: 26px !important; }
  .method-value { font-size: 18px !important; }

  /* Contact form */
  .contact-form {
    padding: 32px 22px !important;
  }

  /* Contact info */
  .contact-form-info {
    padding: 24px 22px;
  }
  .info-line {
    flex-direction: column;
    align-items: start;
    gap: 4px;
    padding: 10px 0;
  }
  .info-value { text-align: left; }

  /* Map */
  .map-frame {
    height: 320px;
  }
  .map-caption { font-size: 13px; }

  /* Thank you hero */
  .thanks-hero {
    padding: 160px 20px 100px !important;
  }
  .thanks-hero h1 {
    font-size: clamp(38px, 10vw, 54px) !important;
  }
  .thanks-symbol {
    font-size: 56px;
  }
  .thanks-hero-sub {
    font-size: 15px;
  }
  .thanks-hero div[style*="display: flex"] {
    flex-direction: column !important;
    gap: 10px !important;
  }
  .thanks-hero div[style*="display: flex"] .btn {
    width: 100%;
  }

  /* Next steps */
  .next-step {
    grid-template-columns: 24px 1fr !important;
    gap: 16px !important;
    padding: 22px 0;
  }
  .next-step-dot {
    margin-left: 0 !important;
    width: 10px;
    height: 10px;
  }
  .next-steps::before {
    left: 6px !important;
  }
  .next-step-content h3 { font-size: 20px; }
  .next-step-content p { font-size: 13px; }

  /* Meanwhile */
  .meanwhile-grid {
    grid-template-columns: 1fr !important;
    gap: 16px;
  }
  .mw-img { height: 180px; }
  .mw-body { padding: 24px 22px; }
  .mw-title { font-size: 22px !important; }

  /* Dual identity */
  .dual-identity-img { height: 280px !important; }
  .dual-identity-text h2 {
    font-size: clamp(28px, 8vw, 40px) !important;
    margin-bottom: 20px !important;
  }
  .dual-identity-text p {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }
  .dual-identity-meta {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
    margin: 24px 0 !important;
    padding: 20px 0 !important;
  }
  .dual-meta-value {
    font-size: 22px !important;
  }
  .dual-meta-label {
    font-size: 9px !important;
    letter-spacing: 1.5px !important;
  }
  .dual-identity-cta {
    width: 100%;
    justify-content: center;
    padding: 16px 24px !important;
    font-size: 11px !important;
  }

  /* Footer */
  footer {
    padding: 50px 20px 24px !important;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px 20px !important;
    padding-bottom: 24px;
    margin-bottom: 24px !important;
  }
  /* Hlavní brand blok přes celou šířku */
  .footer-grid > div:first-child {
    grid-column: 1 / -1;
    text-align: left;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(200, 169, 110, 0.15);
    margin-bottom: 4px;
  }
  .footer-grid > div:first-child .footer-desc {
    font-size: 12px;
    max-width: none;
  }
  /* Stay a Company ve 2-column gridu */
  .footer-col h4 {
    font-size: 11px !important;
    letter-spacing: 2.5px;
    margin-bottom: 14px !important;
  }
  .footer-col a {
    font-size: 12px;
    padding: 4px 0;
    opacity: 0.75;
  }
  /* Reach Out (poslední sloupec s ikonami) přes celou šířku, centrovaně */
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
    text-align: center;
    padding-top: 16px;
    border-top: 1px solid rgba(200, 169, 110, 0.15);
  }
  .footer-grid > div:last-child h4 {
    margin-bottom: 16px !important;
  }
  .footer-grid > div:last-child .footer-social {
    justify-content: center;
    gap: 14px;
  }
  .footer-social a {
    width: 46px;
    height: 46px;
  }
  .footer-bottom {
    padding-top: 24px !important;
    flex-direction: column;
    align-items: center !important;
    text-align: center;
    gap: 6px;
    font-size: 9px !important;
    letter-spacing: 1.2px !important;
    line-height: 1.5;
  }
  .footer-bottom > div {
    width: 100%;
  }
  .footer-logo { font-size: 22px; }
  .footer-tagline { font-size: 10px; margin-bottom: 14px; }

  /* Generic container padding fix */
  .tiles-header,
  .why-direct-header,
  .amenities-header,
  .materials-header,
  .floor-header,
  .services-header,
  .neighborhood-header,
  .adventures-header,
  .how-header,
  .plan-header,
  .timeline-header,
  .quick-faq-header,
  .next-header,
  .meanwhile-header,
  .contact-faq-header,
  .about-intro-grid,
  .principles-header,
  .team-header,
  .other-props-header,
  .map-header {
    margin-bottom: 50px !important;
  }
}

/* ============ VERY SMALL (< 380px) ============ */
@media (max-width: 380px) {
  nav { padding: 12px 16px !important; }
  .hero-content { padding: 0 16px 30px !important; }
  .hero-title { font-size: 34px !important; }
  .section-title { font-size: 26px !important; }
  .page-header h1 { font-size: 32px !important; }
  section,
  [class*="-section"],
  .hero,
  .cta-band,
  .testimonial,
  .why-direct,
  .feature-tiles,
  .section-narrative,
  .dual-identity,
  .amenities,
  .materials,
  .floor-plan,
  .story,
  .gallery,
  .philosophy,
  .principles,
  .team-section,
  .other-props,
  .numbers,
  .contact-methods,
  .contact-form-section,
  .map-section,
  .contact-faq,
  .next-section,
  .meanwhile,
  .questions-band,
  .about-intro {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .hero-meta { gap: 14px; }
  .btn { padding: 14px 20px; font-size: 10px; }
}

/* ============ TOUCH TARGETS (mobile usability) ============ */
@media (hover: none) and (pointer: coarse) {
  .btn,
  .booking-btn,
  .submit-btn,
  .form-submit,
  .filter-btn,
  .n-tab,
  .nav-links a,
  .nav-cta,
  .faq-question {
    min-height: 44px;
  }
  a.method,
  a.tile,
  a.mw-card,
  a.prop {
    cursor: default;
  }
}

/* ============ LANDSCAPE PHONES ============ */
@media (max-width: 900px) and (orientation: landscape) and (max-height: 500px) {
  .hero {
    min-height: 480px;
    height: auto;
  }
  .hero-content {
    padding: 90px 32px 50px !important;
  }
  .hero-title {
    font-size: clamp(32px, 5vw, 48px) !important;
  }
  .villa-hero {
    min-height: 360px;
  }
  .thanks-hero {
    padding: 110px 24px 60px !important;
  }
}
