/* ==========================================================================
   Bay Nuri's — Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700&family=Inter+Tight:wght@400;500;600;700&display=swap');

:root {
  --cream: #F7F2E4;
  --cream-2: #F6F4EE;
  --dark: #233A2F;
  --dark-2: #16261E;
  --dark-3: #0E1912;
  --sand: #C9A876;
  --sea: #3E7C74;
  --white: #FFFFFF;

  --font-display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Inter Tight', 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Inter', 'Helvetica Neue', Arial, sans-serif;

  --container: 1240px;
  --radius: 14px;
  --radius-sm: 8px;

  --gap: clamp(1.25rem, 3vw, 2.5rem);
}

/* ---- Reset ---- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream-2);
  color: var(--dark);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea, select { font: inherit; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 40px);
}

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  letter-spacing: -0.08em;
  line-height: 0.95;
  font-weight: 400;
}
h1 { font-size: clamp(2.6rem, 7.2vw, 6.9rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.6vw, 1.3rem); }

p { font-size: 1rem; }
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--sea);
}

.underline {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.lede {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 620px;
  color: var(--dark);
  opacity: 0.85;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--dark);
  color: var(--cream);
}
.btn-primary:hover { background: var(--sea); transform: translateY(-2px); }

.btn-cream {
  background: var(--cream);
  color: var(--dark);
}
.btn-cream:hover { background: var(--white); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(247,242,228,0.55);
}
.btn-outline:hover { background: rgba(247,242,228,0.12); }

.btn-outline-dark {
  background: transparent;
  color: var(--dark);
  border: 1.5px solid var(--dark);
}
.btn-outline-dark svg { color: var(--sea); }
.btn-outline-dark:hover { background: var(--dark); color: var(--cream); }
.btn-outline-dark:hover svg { color: var(--cream); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---- Placeholder media blocks (design phase — no real images yet) ---- */
.ph {
  position: relative;
  background:
    radial-gradient(120% 140% at 15% 10%, rgba(247,242,228,0.14), transparent 55%),
    linear-gradient(140deg, var(--sea) 0%, var(--dark) 55%, var(--dark-3) 100%);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.ph::after {
  content: attr(data-label);
  position: absolute;
  bottom: 18px;
  right: 18px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247,242,228,0.6);
  border: 1px solid rgba(247,242,228,0.3);
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  z-index: 1;
}
.ph-sand { background: linear-gradient(140deg, var(--sand) 0%, #8a6a3e 60%, var(--dark-3) 130%); }
.ph-dark { background: linear-gradient(140deg, #2c463a 0%, var(--dark-3) 100%); }
.ph-plain::after { content: none; }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
}
.site-header.is-solid {
  position: fixed;
  background: rgba(35, 58, 47, 0.92);
  backdrop-filter: blur(10px);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.15);
  animation: slideDown 0.3s ease;
}
@keyframes slideDown { from { transform: translateY(-100%); } to { transform: translateY(0); } }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--cream);
}
.logo span { color: var(--cream); }

.main-nav {
  display: flex;
  gap: clamp(16px, 2vw, 30px);
}
.main-nav a {
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 23.4px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #F6F4EE;
  opacity: 0.85;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: opacity 0.2s, border-color 0.2s;
}
.main-nav a:hover,
.main-nav a.active {
  opacity: 1;
  border-color: currentColor;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.header-actions .contact-link {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--cream);
  opacity: 0.85;
}
.header-actions .contact-link:hover { opacity: 1; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-drawer { display: none; }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--cream);
  padding-top: 120px;
  padding-bottom: 60px;
}
.hero-photo {
  background-image: url('../img/hero-slider-kas.webp');
  background-size: cover;
  background-position: center 30%;
}
.hero-video { display: none; }
@media (max-width: 640px) {
  .hero-video {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
  }
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(14,25,18,0.55) 0%, rgba(14,25,18,0.35) 40%, rgba(14,25,18,0.75) 100%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,0);
}
.hero-content { position: relative; z-index: 3; max-width: 780px; }
.hero-content .eyebrow { color: var(--sand); margin-bottom: 18px; display: inline-block; }
.hero-content h1 { margin-bottom: 22px; }
.hero-content .lede { color: var(--cream); opacity: 0.9; margin-bottom: 34px; font-size: clamp(1.05rem, 1.8vw, 1.3rem); }

/* Homepage hero — exact reference values (desktop) */
@media (min-width: 1024px) {
  .hero-photo .hero-content h1 {
    font-size: 111px;
    line-height: 111.1px;
    font-weight: 400;
    letter-spacing: -0.08em;
    color: #F7F2E4;
  }
  .hero-photo .hero-content .lede {
    font-size: 23px;
    line-height: 31.1px;
    opacity: 1;
  }
  .hero-photo .hero-btn {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 18px;
    line-height: 23.4px;
    letter-spacing: normal;
    padding: 15px 22px;
    color: var(--dark);
  }
}

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.hero-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-stat-icon {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(247,242,228,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sand);
}
.hero-stat-text {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}
.hero-stat-text strong { font-size: 0.92rem; font-weight: 700; }
.hero-stat-text span { font-size: 0.82rem; opacity: 0.8; }

.review-badge {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--cream);
}
.review-badge-stars {
  display: flex;
  align-items: center;
  gap: 4px;
}
.review-badge-stars svg { color: var(--cream); }
.review-badge-score {
  margin-left: 8px;
  font-weight: 700;
  font-size: 1.3rem;
}
.review-badge-count {
  font-size: 0.82rem;
  opacity: 0.8;
}

.hero-stats-band {
  position: relative;
  background: var(--white);
  padding: 24px 0 70px;
}
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.hero-stat-block .dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dark);
  opacity: 0.4;
  margin-bottom: 22px;
}
.hero-stat-block .num {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
  color: var(--dark);
  margin-bottom: 16px;
}
.hero-stat-block .label {
  display: inline-block;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.5px;
  color: rgba(35,58,47,0.6);
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: rgba(35,58,47,0.25);
}
.hero-curve {
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 140vw;
  height: 130px;
  z-index: 2;
  pointer-events: none;
  background: var(--white);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
@media (max-width: 980px) {
  .hero-stats-row { grid-template-columns: 1fr 1fr; row-gap: 44px; }
}
@media (max-width: 640px) {
  .hero-curve { height: 70px; }
}

.page-hero {
  min-height: 62vh;
  padding-top: 140px;
  padding-bottom: 70px;
}
.page-hero h1 { font-size: clamp(2.4rem, 5.4vw, 4.6rem); }
.page-hero-photo {
  position: relative;
  background-size: cover;
  background-position: center;
}
.page-hero-photo::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(14,25,18,0.5);
}

/* ==========================================================================
   Sections
   ========================================================================== */
section { padding: clamp(60px, 9vw, 120px) 0; }
.divider-section { padding: clamp(40px, 6vw, 64px) 0 clamp(50px, 7vw, 90px); }
.divider { border: none; border-top: 1.5px solid rgba(35,58,47,0.45); margin: 0; }
.section-lead-heading {
  font-family: var(--font-heading);
  font-size: 50px;
  line-height: 56px;
  font-weight: 400;
  letter-spacing: -0.08em;
  color: #233A2F;
  text-align: center;
  margin: clamp(56px, 8vw, 96px) auto 0;
  max-width: 900px;
}
.section-head {
  max-width: 720px;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { display: block; margin-bottom: 14px; }
.section-head h2 { margin-bottom: 16px; }

.bg-dark { background: var(--dark); color: var(--cream); }
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 { color: var(--cream); }
.bg-dark .lede, .bg-dark p { color: var(--cream); opacity: 0.85; }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }

/* ---- About split ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(4rem, 8vw, 8rem);
  align-items: center;
}
.split .ph { aspect-ratio: 4/5; border-radius: var(--radius); }
.split-photo {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
}
.pulse-marker {
  position: absolute;
  left: 37%;
  top: 43%;
  width: 14px;
  height: 14px;
  z-index: 2;
}
.pulse-marker .dot {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sea);
  box-shadow: 0 0 0 2px rgba(255,255,255,0.9);
}
.pulse-marker .ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--sea);
  opacity: 0.55;
  animation: pulse-ring 1.8s cubic-bezier(0.4,0,0.6,1) infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 0.55; }
  100% { transform: scale(3.4); opacity: 0; }
}
.split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-text h2 { margin-bottom: 20px; }
.split-text p + p { margin-top: 16px; }
.split-text .btn-row { margin-top: 30px; }
.split-text-list {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.split-text-list li {
  position: relative;
  padding-left: 22px;
  opacity: 0.9;
}
.split-text-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sand);
}
.stat-lead {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 4vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--dark);
  margin-bottom: 18px;
}
.stat-lead .counter { font-weight: 600; }

/* ---- Checklist ---- */
.check-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 32px;
  margin-top: 10px;
}
.check-item {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px 20px;
  border: 1.5px solid rgba(35,58,47,0.25);
  border-radius: var(--radius-sm);
  font-weight: 500;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.check-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(35, 58, 47, 0.16);
  border-color: rgba(35,58,47,0.4);
}

/* ---- FAQ accordion ---- */
.faq-list {
  max-width: 820px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--white);
  border: 1.5px solid rgba(35,58,47,0.14);
  border-radius: var(--radius-sm);
  padding: 4px 24px;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 28px 18px 0;
  position: relative;
  font-weight: 600;
  color: var(--dark);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  position: absolute;
  right: 2px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--dark);
  border-bottom: 1.5px solid var(--dark);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { transform: translateY(-35%) rotate(-135deg); }
.faq-item p { padding-bottom: 20px; opacity: 0.8; line-height: 1.6; }

/* ---- Cards grid (Beach / Konaklama / Restoran preview) ---- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.feature-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  color: var(--cream);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(14, 25, 18, 0.35);
}
.feature-card .card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.5s ease;
}
.feature-card:hover .card-photo { transform: scale(1.06); }
.feature-card .card-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--dark);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 8px 14px;
  border-radius: 100px;
  text-transform: uppercase;
  z-index: 2;
}
.feature-card .card-body {
  position: relative;
  z-index: 2;
  padding: 26px;
  background: linear-gradient(0deg, rgba(14,25,18,0.88) 0%, rgba(14,25,18,0.15) 80%, transparent 100%);
  padding-top: 90px;
}
.feature-card h3 { margin-bottom: 6px; }
.feature-card p { font-size: 0.9rem; opacity: 0.85; max-width: 34ch; }
.feature-card .card-link {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 3px;
}

/* ---- Rooms (Konaklama) ---- */
.room-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 10px;
}
.room-grid .room-featured {
  grid-column: 1;
  grid-row: 1 / 3;
  aspect-ratio: 681 / 810;
}
.room-grid .room-wide { grid-column: 2 / 4; grid-row: 2; }
.room-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 260px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-end;
  color: var(--cream);
  background: var(--dark-2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  scroll-margin-top: 110px;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(14, 25, 18, 0.35);
}
.room-card:hover .room-photo { transform: scale(1.06); }
.room-card .room-photo { transition: transform 0.4s ease; }
.room-card .room-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
}
.room-card .price-tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--dark);
  color: var(--cream);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  z-index: 2;
  line-height: 1.2;
}
.room-card .price-tag strong { font-weight: 700; }
.room-card .card-body {
  position: relative;
  z-index: 2;
  padding: 22px;
  background: linear-gradient(0deg, rgba(14,25,18,0.9) 0%, transparent 90%);
  padding-top: 100px;
}
.room-card h3 {
  font-size: 32px;
  line-height: 35.2px;
  letter-spacing: 0px;
  font-weight: 400;
  color: #F7F2E4;
  margin-bottom: 2px;
}
.room-card .room-loc {
  font-size: 16px;
  line-height: 20.8px;
  letter-spacing: 0px;
  color: #F7F2E4;
  opacity: 1;
  margin-bottom: 12px;
}
.room-card .room-specs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
  line-height: 18.2px;
  letter-spacing: 0px;
  color: #FFFFFF;
  opacity: 1;
}
.room-card .spec-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.room-card .spec-icon img { width: 16px; height: 16px; display: block; }

/* ---- Amenities ---- */
.amenity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 30px;
  column-gap: 20px;
  margin-top: 12px;
}
.amenity-grid-6 {
  grid-template-columns: repeat(3, 1fr);
}
.amenity {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.amenity .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.amenity .icon svg { width: 26px; height: 26px; stroke: var(--dark); fill: none; }
.amenity .icon img { width: 28px; height: 28px; display: block; }
.amenity span { font-size: 0.95rem; font-weight: 400; color: var(--dark); }

/* ---- Steps (Ulaşım) ---- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding-top: 8px;
}
.step .step-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--sand);
  line-height: 1;
  margin-bottom: 18px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
}
.step h4 { margin-bottom: 8px; }
.step p { font-size: 0.9rem; opacity: 0.8; }

/* ---- Schedule table ---- */
.schedule {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(35,58,47,0.15);
}
.schedule table { width: 100%; border-collapse: collapse; }
.schedule th, .schedule td {
  text-align: left;
  padding: 16px 22px;
  font-size: 0.92rem;
}
.schedule thead { background: var(--dark); color: var(--cream); }
.schedule thead th { font-weight: 700; text-transform: uppercase; font-size: 0.75rem; letter-spacing: 0.06em; }
.schedule tbody tr:nth-child(even) { background: rgba(35,58,47,0.04); }
.schedule tbody tr + tr { border-top: 1px solid rgba(35,58,47,0.08); }

.free-hours-badge {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  text-align: center;
  background: var(--dark);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(28px, 5vw, 44px);
}
.free-hours-time {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.02em;
  color: var(--sand);
}
.free-hours-text {
  font-size: 1.05rem;
  opacity: 0.9;
}

/* ---- Gallery ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 160px;
  gap: 16px;
}
.gallery-grid .ph { border-radius: var(--radius-sm); }
.gallery-grid .g1 { grid-column: span 2; grid-row: span 2; }
.gallery-grid .g5 { grid-column: span 2; }
.room-gallery-photo {
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.room-gallery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.room-hero-main {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.room-hero-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.room-hero-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(35,58,47,0.3) transparent;
}
.room-thumb {
  flex: 0 0 auto;
  width: 120px;
  height: 84px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  padding: 0;
  cursor: pointer;
  background: none;
  opacity: 0.65;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.room-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.room-thumb:hover { opacity: 0.9; }
.room-thumb.active {
  opacity: 1;
  border-color: var(--sea);
}

/* ---- Photo gallery (horizontal scroll) ---- */
.photo-gallery {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 14px;
  scrollbar-width: thin;
  scrollbar-color: rgba(35,58,47,0.3) transparent;
}
.photo-gallery::-webkit-scrollbar { height: 6px; }
.photo-gallery::-webkit-scrollbar-thumb { background: rgba(35,58,47,0.25); border-radius: 100px; }
.photo-gallery .photo {
  flex: 0 0 auto;
  width: 300px;
  height: 380px;
  scroll-snap-align: start;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.photo-gallery .photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-gallery .photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14,25,18,0.35) 0%, transparent 45%);
  opacity: 0;
  transition: opacity 0.35s ease;
}
.photo-gallery .photo:hover::after { opacity: 1; }
.photo-gallery .photo:hover img { transform: scale(1.08); }

@media (max-width: 640px) {
  .photo-gallery { gap: 12px; }
  .photo-gallery .photo { width: 220px; height: 290px; }
}

/* ---- SEO block ---- */
.seo-block {
  border-radius: var(--radius);
  padding: clamp(32px, 5vw, 56px);
}
.seo-block h2 { margin-bottom: 18px; }
.seo-block p { max-width: 900px; opacity: 0.85; }
.seo-block p + p { margin-top: 14px; }

/* ---- CTA banner ---- */
.cta-banner {
  border-radius: var(--radius);
  padding: clamp(50px, 7vw, 90px) clamp(30px, 6vw, 70px);
  text-align: center;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  display: block;
}
.cta-banner h2 { max-width: 760px; margin: 0 auto 20px; }
.cta-banner .lede { max-width: 560px; margin: 0 auto 32px; color: var(--cream); }
.cta-banner .btn-row { justify-content: center; }
.cta-banner-light {
  background: var(--white);
  color: var(--dark);
}
.cta-banner-light h2 { color: var(--dark); }
.cta-banner-light .lede { color: var(--dark); opacity: 0.75; }

/* ---- Contact / Reservation form ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}
.info-card {
  background: var(--dark);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 34px;
}
.info-card h3 { margin-bottom: 18px; }
.info-list { margin-top: 22px; display: flex; flex-direction: column; gap: 16px; }
.info-list li { display: flex; gap: 14px; align-items: flex-start; font-size: 0.92rem; opacity: 0.9; }
.info-list .ico {
  flex: none; width: 36px; height: 36px;
  border-radius: 50%; border: 1px solid rgba(247,242,228,0.4);
  display: flex; align-items: center; justify-content: center;
}
.info-list .ico svg { width: 16px; height: 16px; stroke: var(--cream); fill: none; }

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  border: 1px solid rgba(35,58,47,0.1);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  opacity: 0.75;
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(35,58,47,0.18);
  border-radius: var(--radius-sm);
  background: var(--cream-2);
  color: var(--dark);
  transition: border-color 0.2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--sea);
}
.field textarea { resize: vertical; min-height: 110px; }

.custom-select { position: relative; }
.custom-select-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 16px;
  border: 1.5px solid rgba(35,58,47,0.18);
  border-radius: var(--radius-sm);
  background: var(--cream-2);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 1rem;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.2s;
}
.custom-select-trigger .custom-select-value.is-placeholder { opacity: 0.55; }
.custom-select-trigger:focus,
.custom-select.is-open .custom-select-trigger { outline: none; border-color: var(--sea); }
.custom-select-trigger.has-error { border-color: #c0392b; }
.custom-select-caret {
  flex: none;
  width: 9px; height: 9px;
  border-right: 1.5px solid var(--dark);
  border-bottom: 1.5px solid var(--dark);
  transform: rotate(45deg);
  opacity: 0.6;
  margin-top: -3px;
  transition: transform 0.2s ease;
}
.custom-select.is-open .custom-select-caret { transform: rotate(-135deg); margin-top: 3px; }
.custom-select-options {
  position: absolute;
  left: 0; right: 0;
  top: calc(100% + 6px);
  z-index: 20;
  background: var(--white);
  border: 1.5px solid rgba(35,58,47,0.15);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 32px rgba(14,25,18,0.16);
  max-height: 240px;
  overflow-y: auto;
  padding: 6px;
  display: none;
}
.custom-select.is-open .custom-select-options { display: block; }
.custom-select-options li {
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--dark);
  cursor: pointer;
}
.custom-select-options li:hover,
.custom-select-options li.is-active { background: var(--cream-2); }

/* ---- Map placeholder ---- */
.map-block { border-radius: var(--radius); overflow: hidden; height: 420px; }

.shorts-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.shorts-embed {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 9/16;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 48px rgba(14,25,18,0.18);
  background: var(--dark-3);
}
.shorts-embed iframe,
.shorts-embed video { width: 100%; height: 100%; border: 0; display: block; object-fit: cover; }

/* ==========================================================================
   Floating WhatsApp button
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.whatsapp-float img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 18px rgba(14,25,18,0.35));
}
.whatsapp-float:hover { transform: translateY(-3px); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
  background: var(--dark-3);
  color: var(--cream);
  padding: 60px 0 40px;
  text-align: center;
}
.footer-brand-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding-bottom: 34px;
}
.footer-brand-row .logo { display: inline-block; }
.footer-divider { border: none; border-top: 1px solid rgba(247,242,228,0.14); margin: 0; }
.social-row { display: flex; gap: 14px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(247,242,228,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.social-row a:hover { border-color: var(--cream); background: rgba(247,242,228,0.08); }
.social-row svg { width: 16px; height: 16px; stroke: var(--cream); fill: none; }

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 34px 0;
}
.footer-nav a { font-size: 0.95rem; opacity: 0.8; transition: opacity 0.2s; }
.footer-nav a:hover { opacity: 1; }
.footer-nav span { opacity: 0.35; }

.footer-copy { font-size: 0.85rem; opacity: 0.55; padding-bottom: 34px; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 26px;
  font-size: 0.8rem;
  opacity: 0.55;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a { transition: opacity 0.2s; }
.footer-bottom a:hover { opacity: 0.75; }

.footer-credit { font-size: 1.1rem; font-weight: 600; opacity: 0.95; padding-top: 26px; }
.footer-credit a { color: var(--sand); text-decoration: underline; text-underline-offset: 3px; transition: opacity 0.2s; }
.footer-credit a:hover { opacity: 0.75; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .main-nav, .header-actions .contact-link, .header-actions .btn { display: none; }
  .nav-toggle { display: flex; }
  .split { grid-template-columns: 1fr; row-gap: 72px; }
  .card-grid { grid-template-columns: 1fr 1fr; }
  .room-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .room-grid .room-featured, .room-grid .room-wide { grid-column: auto; grid-row: auto; }
  .check-grid { grid-template-columns: 1fr 1fr; }
  .amenity-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid .g1 { grid-column: span 2; grid-row: span 1; aspect-ratio: 16/9; height: auto; }
}

@media (max-width: 640px) {
  .card-grid { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .amenity-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .hero-meta { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* ---- Mobile nav drawer ---- */
@media (max-width: 980px) {
  .mobile-drawer {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 99;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 26px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  }
  .mobile-drawer.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .mobile-drawer a {
    font-family: var(--font-heading);
    font-weight: 500;
    letter-spacing: -0.02em;
    font-size: 2rem;
    color: var(--cream);
  }
}
