:root {
  --beige-50: #f5efe5;
  --beige-100: #ecdfcf;
  --beige-200: #d8c4ac;
  --blue-800: #0f2a48;
  --blue-700: #15395f;
  --blue-500: #3f6d96;
  --ink-900: #1d2732;
  --ink-700: #45525f;
  --white: #ffffff;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-soft: 0 20px 45px rgba(15, 42, 72, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--ink-900);
  background:
    radial-gradient(circle at 8% 10%, rgba(216, 196, 172, 0.65), transparent 42%),
    radial-gradient(circle at 90% 84%, rgba(63, 109, 150, 0.18), transparent 35%),
    linear-gradient(180deg, #fbf7f1 0%, #f4eee3 100%);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1160px, calc(100% - 3rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(251, 247, 241, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(21, 57, 95, 0.12);
}

.nav-wrap {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand img {
  height: 52px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}

.site-nav a {
  text-decoration: none;
  color: var(--blue-800);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.4rem 0;
  transition: color 0.2s ease;
}

.site-nav a:hover {
  color: var(--blue-500);
}

.nav-cta {
  border: 1px solid rgba(21, 57, 95, 0.3);
  border-radius: 99px;
  padding: 0.6rem 1.3rem;
  margin-left: 0.6rem;
}

.site-nav a.active {
  color: var(--blue-500);
  position: relative;
}

.site-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--blue-500);
  border-radius: 2px;
}

.site-nav a.active.nav-cta::after {
  display: none;
}

.page-hero {
  position: relative;
  min-height: 46vh;
  display: flex;
  align-items: center;
  overflow: clip;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -2;
  transform: scale(1.04);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 42, 72, 0.78), rgba(15, 42, 72, 0.42));
  z-index: -1;
}

.page-hero .hero-content {
  color: var(--white);
  padding: 5rem 0 4rem;
  max-width: 720px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem);
}

.breadcrumbs {
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.feature-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  background: #fff9f0;
  border: 1px solid rgba(21, 57, 95, 0.1);
  border-radius: var(--radius-md);
  padding: 1.4rem;
}

.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.amenity-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 1.4rem;
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.amenity-list li {
  padding-left: 1.4rem;
  position: relative;
  color: var(--ink-700);
}

.amenity-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--blue-500);
  border-radius: 99px;
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.room-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3rem;
}

.room-detail.alt {
  direction: rtl;
}

.room-detail.alt > * {
  direction: ltr;
}

.room-detail img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  width: 100%;
}

.room-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.7rem 0 1rem;
}

.room-meta span {
  background: rgba(63, 109, 150, 0.14);
  color: var(--blue-700);
  border-radius: 99px;
  padding: 0.3rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.gallery-grid.full {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid.full img {
  height: 280px;
}

.contact-info {
  display: grid;
  gap: 1rem;
  margin-top: 1.2rem;
}

.contact-info a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
}

.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(21, 57, 95, 0.12);
}

.map-embed iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}

@media (max-width: 980px) {
  .feature-grid,
  .gallery-grid.full {
    grid-template-columns: repeat(2, 1fr);
  }

  .room-detail,
  .room-detail.alt {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .amenity-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .feature-grid,
  .gallery-grid.full {
    grid-template-columns: 1fr;
  }
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: clip;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  background:
    linear-gradient(100deg, rgba(15, 42, 72, 0.7), rgba(15, 42, 72, 0.22) 60%, rgba(15, 42, 72, 0.55)),
    url("assets/images/POR07547-HDR.jpg") center / cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 14s ease-out forwards;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(15, 42, 72, 0.1), rgba(15, 42, 72, 0.45));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  color: var(--white);
  padding: 6rem 0 5rem;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.1;
  margin: 0;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 4.7rem);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 3.25rem);
  margin-bottom: 1rem;
  color: var(--blue-800);
}

h3 {
  font-size: 1.72rem;
  margin-bottom: 0.55rem;
  color: var(--blue-800);
}

p {
  margin: 0;
  color: var(--ink-700);
  line-height: 1.74;
}

.hero-content p {
  color: rgba(255, 255, 255, 0.93);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  padding: 0.8rem 1.28rem;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  color: var(--white);
  box-shadow: 0 12px 20px rgba(15, 42, 72, 0.25);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.intro-panel {
  margin-top: -72px;
  position: relative;
  z-index: 3;
}

.stats-grid {
  border-radius: var(--radius-lg);
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  background: rgba(216, 196, 172, 0.35);
}

.stats-grid article {
  background: #fff9f2;
  padding: 1.5rem 1.2rem;
  text-align: center;
}

.stats-grid h2 {
  margin: 0;
  color: var(--blue-700);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.stats-grid p {
  font-size: 0.92rem;
  margin-top: 0.35rem;
}

.section {
  padding: 5.2rem 0;
}

.split {
  display: grid;
  gap: 2.3rem;
  align-items: center;
  grid-template-columns: 1.05fr 0.95fr;
}

.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.about-media img,
.banner-wrap img,
.stay-card img,
.gallery-grid img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.text-link {
  display: inline-block;
  margin-top: 1.35rem;
  color: var(--blue-700);
  font-weight: 700;
  text-decoration: none;
}

.section-head {
  max-width: 660px;
  margin-bottom: 1.8rem;
}

.card-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.stay-card {
  background: rgba(255, 252, 246, 0.95);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(21, 57, 95, 0.08);
}

.stay-card img {
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.stay-card div {
  padding: 1rem 1rem 1.2rem;
}

.banner-strip {
  padding-top: 0;
}

.banner-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: #f8f2e8;
  border: 1px solid rgba(21, 57, 95, 0.12);
}

.banner-copy {
  padding: 2rem;
}

.banner-copy ul {
  margin: 1.2rem 0 0;
  padding-left: 1.1rem;
  color: var(--ink-700);
}

.banner-copy li {
  margin-bottom: 0.55rem;
  line-height: 1.45;
}

.banner-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}

.gallery {
  background: linear-gradient(180deg, rgba(216, 196, 172, 0.14), transparent 60%);
}

.gallery-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, 1fr);
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.location-card {
  background: linear-gradient(165deg, #f8f1e6, #fcfaf6);
  border: 1px solid rgba(21, 57, 95, 0.12);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.contact {
  padding-top: 4.2rem;
}

.contact-wrap {
  background: linear-gradient(140deg, var(--blue-800), #1f4e79 55%, #2f6d95);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 3vw, 2.1rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.contact-wrap h2,
.contact-wrap p,
.contact-wrap .kicker {
  color: var(--white);
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.contact-form label {
  font-size: 0.93rem;
  display: grid;
  gap: 0.3rem;
}

.contact-form input,
.contact-form textarea {
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font: inherit;
  padding: 0.68rem 0.78rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.78);
}

.contact-form .btn-primary {
  margin-top: 0.3rem;
  background: #f3e4cd;
  color: var(--blue-800);
  box-shadow: none;
}

.site-footer {
  padding: 2.4rem 0;
}

.footer-wrap {
  display: grid;
  gap: 0.6rem;
  place-items: center;
  text-align: center;
}

.footer-wrap img {
  height: 48px;
  width: auto;
}

.menu-toggle,
.menu-icon {
  display: none;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  animation: revealIn 0.75s ease forwards;
}

.delay-1 {
  animation-delay: 0.18s;
}

.stagger > * {
  opacity: 0;
  transform: translateY(18px);
  animation: revealIn 0.55s ease forwards;
}

.stagger > *:nth-child(1) {
  animation-delay: 0.06s;
}

.stagger > *:nth-child(2) {
  animation-delay: 0.16s;
}

.stagger > *:nth-child(3) {
  animation-delay: 0.26s;
}

.stagger > *:nth-child(4) {
  animation-delay: 0.36s;
}

@keyframes revealIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

@media (max-width: 980px) {
  .split,
  .reverse,
  .banner-wrap,
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .menu-icon {
    display: inline-grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(21, 57, 95, 0.26);
    border-radius: 8px;
    cursor: pointer;
  }

  .menu-icon span,
  .menu-icon span::before,
  .menu-icon span::after {
    content: "";
    width: 18px;
    height: 2px;
    background: var(--blue-800);
    display: block;
    position: relative;
    transition: 0.2s ease;
  }

  .menu-icon span::before {
    position: absolute;
    top: -6px;
  }

  .menu-icon span::after {
    position: absolute;
    top: 6px;
  }

  .site-nav {
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    background: #fbf7f1;
    border-bottom: 1px solid rgba(21, 57, 95, 0.12);
    padding: 0.9rem 1.4rem 1.2rem;
    display: grid;
    gap: 0.95rem;
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: 0.2s ease;
  }

  .menu-toggle:checked ~ .site-nav {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    min-height: 75vh;
  }

  .section {
    padding: 4.1rem 0;
  }

  .card-grid,
  .gallery-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(1160px, calc(100% - 1.6rem));
  }
}

/* ============================================================
   COZYSTAY-INSPIRED HOME PAGE (.home-cozy)
   ============================================================ */

:root {
  --logo-blue: #1e3a5f;       /* deep navy from logo */
  --logo-blue-soft: #2c4866;  /* lifted blue */
  --cozy-dark: #2a3f5a;        /* blue-beige mix (deep) */
  --cozy-dark-2: #3a4f6a;      /* blue-beige mix (lifted) */
  --cozy-cream: #f1e6d3;       /* warm beige text */
  --cozy-cream-soft: #d9cdb6;  /* muted beige */
  --cozy-accent: #c9a86a;      /* warm gold accent */
  --cozy-panel: #e7dcc6;       /* light beige panel */
  --cozy-muted: rgba(241, 230, 211, 0.78);
}

.home-cozy {
  background: var(--cozy-dark);
  color: var(--cozy-cream);
}

.home-cozy main {
  background: var(--cozy-dark);
}

.home-cozy .site-header {
  background: #f1e6d3;
  border-bottom: 1px solid rgba(30, 58, 95, 0.18);
  box-shadow: 0 2px 12px rgba(30, 58, 95, 0.08);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.home-cozy .site-nav a {
  color: var(--logo-blue, #1e3a5f);
}

.home-cozy .site-nav a:hover,
.home-cozy .site-nav a.active {
  color: #c9a86a;
}

.home-cozy .site-nav a.active::after {
  background: #c9a86a;
}

.home-cozy .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--logo-blue, #1e3a5f);
  border: 1px solid var(--logo-blue, #1e3a5f);
  color: var(--cozy-cream);
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.home-cozy .nav-cta:hover {
  background: var(--cozy-accent);
  border-color: var(--cozy-accent);
  color: #1a2d47;
  transform: translateY(-1px);
}
.home-cozy .site-nav a.nav-cta { color: var(--cozy-cream); }
.home-cozy .site-nav a.nav-cta:hover { color: #1a2d47; }

/* Top bar */
.top-bar {
  background: rgba(30, 58, 95, 0.92);
  color: var(--cozy-cream-soft);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(241, 230, 211, 0.1);
}

.top-bar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 38px;
  gap: 1rem;
}

.top-bar-info,
.top-bar-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.top-bar a {
  color: var(--cozy-cream);
  text-decoration: none;
}

.top-bar .dot {
  opacity: 0.5;
}

.top-cta {
  border: 1px solid rgba(201, 168, 106, 0.5);
  color: var(--cozy-accent) !important;
  padding: 0.3rem 0.85rem;
  border-radius: 99px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.top-cta:hover {
  background: var(--cozy-accent);
  color: #1a2d47 !important;
}

/* Kicker variants */
.kicker.accent { color: var(--cozy-accent); }
.kicker.light  { color: var(--cozy-cream); }

/* Generic dark section */
.dark-section {
  background: var(--cozy-dark);
  color: var(--cozy-cream);
  padding: 5.5rem 0;
}

.dark-section h2,
.dark-section h3 {
  color: var(--cozy-cream);
  font-family: "Cormorant Garamond", Georgia, serif;
}

.dark-section p { color: var(--cozy-muted); }
.muted { color: var(--cozy-muted); }

.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }

/* ---------- HERO ---------- */
.cozy-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: clip;
  isolation: isolate;
}

.cozy-hero-bg {
  position: absolute; inset: 0;
  background: url("assets/images/POR07547-HDR.jpg") center / cover no-repeat;
  transform: scale(1.05);
  animation: heroZoom 16s ease-out forwards;
  z-index: -2;
}

.cozy-hero-slider {
  position: absolute; inset: 0;
  z-index: -2;
  overflow: hidden;
}

.cozy-hero-slider .hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroFade 18s infinite;
  transform: scale(1.05);
}
.cozy-hero-slider .hero-slide:nth-child(1) { animation-delay: 0s; }
.cozy-hero-slider .hero-slide:nth-child(2) { animation-delay: 6s; }
.cozy-hero-slider .hero-slide:nth-child(3) { animation-delay: 12s; }

@keyframes heroFade {
  0%   { opacity: 0; transform: scale(1.05); }
  6%   { opacity: 1; }
  33%  { opacity: 1; transform: scale(1.10); }
  39%  { opacity: 0; }
  100% { opacity: 0; }
}

.cozy-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,58,95,0.55) 0%, rgba(30,58,95,0.30) 40%, rgba(30,58,95,0.85) 100%);
  z-index: -1;
}

.cozy-hero-content {
  text-align: center;
  color: var(--cozy-cream);
  padding: 8rem 0 6rem;
  max-width: 1000px;
}

.cozy-hero-content h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.6rem, 6.2vw, 5rem);
  line-height: 1.05;
  margin: 0.3rem 0 2.3rem;
  color: var(--cozy-cream);
  letter-spacing: 0.01em;
}

/* Booking widget */
.booking-widget {
  display: grid;
  grid-template-columns: repeat(3, 1fr) auto;
  gap: 0;
  background: rgba(42, 63, 90, 0.78);
  border: 1px solid rgba(241, 230, 211, 0.18);
  border-radius: 6px;
  padding: 0.55rem;
  backdrop-filter: blur(8px);
  max-width: 880px;
  margin: 0 auto;
  text-align: left;
}

.booking-widget label {
  display: grid;
  gap: 0.2rem;
  padding: 0.55rem 1rem;
  border-right: 1px solid rgba(241, 230, 211, 0.14);
}

.booking-widget label:last-of-type { border-right: none; }

.booking-widget span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cozy-cream-soft);
}

.booking-widget input,
.booking-widget select {
  background: transparent;
  border: none;
  color: var(--cozy-cream);
  font: inherit;
  font-size: 0.95rem;
  padding: 0.1rem 0;
  outline: none;
}

.booking-widget input::-webkit-calendar-picker-indicator {
  filter: invert(1) opacity(0.6);
  cursor: pointer;
}

.booking-widget select option { color: #111; }

.booking-widget .btn-accent {
  border-radius: 4px;
  padding: 0.95rem 1.6rem;
  align-self: stretch;
  white-space: nowrap;
}

/* Buttons (cozy) */
.btn-accent {
  background: var(--cozy-accent);
  color: #1a1206;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  border-radius: 999px;
  padding: 0.85rem 1.5rem;
  box-shadow: 0 10px 24px rgba(201, 168, 106, 0.25);
}
.btn-accent:hover { background: #d8b779; }

.btn-outline {
  border: 1px solid var(--cozy-cream);
  color: var(--cozy-cream);
  background: transparent;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 0.8rem 1.4rem;
}
.btn-outline:hover { background: var(--cozy-cream); color: var(--cozy-dark); }

.btn-light {
  background: var(--cozy-dark);
  color: var(--cozy-cream);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  padding: 0.8rem 1.4rem;
}
.btn-light:hover { background: #000; }

.btn.small { padding: 0.6rem 1.1rem; font-size: 0.72rem; }

/* ---------- INTRO DARK (offset image + copy) ---------- */
.offset-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.offset-media img {
  width: 100%;
  border-radius: 4px;
  transform: translateY(-2.5rem);
  box-shadow: 0 30px 60px rgba(0,0,0,0.45);
}

.offset-copy h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 1.2rem;
}

.offset-copy .btn { margin-top: 1.4rem; }

/* ---------- FULL-WIDTH IMAGE STRIP ---------- */
.image-strip {
  background: var(--cozy-dark);
}

.image-strip img {
  width: 100%;
  height: clamp(280px, 48vw, 520px);
  object-fit: cover;
  display: block;
}

/* ---------- APARTMENT TYPE CARDS ---------- */
.apartment-types .section-head { margin-bottom: 2.5rem; }

.type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.type-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  aspect-ratio: 1.05;
  text-decoration: none;
  isolation: isolate;
}

.type-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.type-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.78) 100%);
}

.type-card:hover img { transform: scale(1.06); }

.type-label {
  position: absolute;
  left: 1.4rem;
  bottom: 1.2rem;
  z-index: 2;
  color: var(--cozy-cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}

/* ---------- ACCENT PANEL ---------- */
.accent-panel {
  background: var(--cozy-panel);
  color: var(--cozy-dark);
  padding: 5.5rem 0;
}

.accent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.accent-copy .kicker { color: var(--cozy-dark); opacity: 0.7; }
.accent-copy h2 { color: var(--cozy-dark); font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 1.2rem; }
.accent-copy p  { color: rgba(42, 63, 90,0.78); }

.accent-media img {
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 25px 50px rgba(42, 63, 90,0.25);
}

/* ---------- AMENITIES MOSAIC ---------- */
.amenities-head { max-width: 760px; margin-bottom: 3rem; }
.amenities-head h2 { font-size: clamp(2rem, 3.8vw, 2.9rem); margin-bottom: 1rem; }

.feature-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.mosaic-card {
  background: var(--cozy-dark-2);
  border: 1px solid rgba(241, 230, 211, 0.06);
  border-radius: 4px;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.mosaic-card.image { padding: 0; }
.mosaic-card.image img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }

.mosaic-card.text {
  padding: 2rem 2.2rem;
  justify-content: center;
}

.mosaic-card.text h3 { font-size: 1.7rem; margin-bottom: 0.6rem; }
.mosaic-card.text p { color: var(--cozy-muted); margin-bottom: 1rem; }

.text-link.light { color: var(--cozy-accent); }
.text-link.light:hover { color: var(--cozy-cream); }

/* ---------- TESTIMONIAL BANNER ---------- */
.testimonial-banner {
  position: relative;
  isolation: isolate;
  padding: 6rem 0;
  color: var(--logo-blue, #1e3a5f);
}

.testimonial-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
}

.testimonial-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(241, 230, 211, 0.94), rgba(231, 220, 198, 0.82));
  z-index: -1;
}

.testimonial-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.testimonial-copy h2 {
  font-size: clamp(1.9rem, 3.6vw, 2.7rem);
  color: var(--logo-blue, #1e3a5f);
  margin-bottom: 0;
}

.testimonial-copy p { color: rgba(30, 58, 95, 0.78); }

.testimonial-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(30, 58, 95, 0.18);
  border-radius: 6px;
  padding: 2rem 2.2rem;
  margin: 0;
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 30px rgba(30, 58, 95, 0.12);
}

.testimonial-card .stars {
  color: var(--cozy-accent);
  letter-spacing: 0.2em;
  margin-bottom: 0.8rem;
}

.testimonial-card blockquote {
  margin: 0 0 0.8rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  line-height: 1.45;
  color: var(--logo-blue, #1e3a5f);
}

.testimonial-card figcaption {
  font-size: 0.85rem;
  color: rgba(30, 58, 95, 0.7);
  letter-spacing: 0.06em;
}

/* ---------- DISCOVER THE CITY ---------- */
.discover-city .section-head { margin-bottom: 2.8rem; }
.discover-city .section-head p { max-width: 560px; margin: 0.6rem auto 0; }

.discover-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.discover-card {
  background: var(--cozy-dark-2);
  border: 1px solid rgba(241, 230, 211, 0.06);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.discover-card img {
  width: 100%;
  aspect-ratio: 1.4;
  object-fit: cover;
}

.discover-body {
  padding: 1.4rem 1.5rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.discover-body .tag {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cozy-accent);
}

.discover-body h3 { font-size: 1.4rem; }
.discover-body p { color: var(--cozy-muted); margin-bottom: 0.4rem; }
.discover-body .text-link { color: var(--cozy-accent); }

/* ---------- INFO COLUMNS ---------- */
.info-columns { padding: 5rem 0; border-top: 1px solid rgba(241, 230, 211, 0.08); }

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  text-align: center;
}

.info-col h3 { font-size: 1.8rem; margin-bottom: 0.8rem; }
.info-col p  { color: var(--cozy-muted); margin-bottom: 0.4rem; }
.info-col a  { color: var(--cozy-accent); text-decoration: none; }
.info-col .btn { margin-top: 1.2rem; }

/* ---------- NEWSLETTER ---------- */
.newsletter {
  background: #1a2d47;
  padding: 3.5rem 0;
  border-top: 1px solid rgba(241, 230, 211, 0.06);
}

.newsletter-wrap {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
}

.newsletter-wrap h2 {
  color: var(--cozy-cream);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  margin: 0.4rem 0 0;
}

.newsletter-form {
  display: flex;
  gap: 0.6rem;
  background: rgba(241,230,211,0.08);
  border: 1px solid rgba(241,230,211,0.18);
  border-radius: 999px;
  padding: 0.4rem 0.4rem 0.4rem 1.2rem;
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  color: var(--cozy-cream);
  font: inherit;
  outline: none;
}

.newsletter-form input::placeholder { color: var(--cozy-cream-soft); }

/* ---------- FOOTER ---------- */
.cozy-footer {
  background: #1a2d47;
  color: var(--cozy-cream-soft);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(241,230,211,0.06);
}

.footer-cozy {
  display: grid;
  gap: 1.2rem;
  place-items: center;
  text-align: center;
}

.footer-cozy .footer-brand img { height: 56px; margin: 0 auto 0.6rem; }
.footer-cozy .footer-brand p { color: var(--cozy-cream); }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.4rem;
  margin: 0.6rem 0;
}

.footer-links a {
  color: var(--cozy-cream);
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
}

.footer-links a:hover { color: var(--cozy-accent); }

.footer-copy { font-size: 0.78rem; opacity: 0.7; margin-top: 0.4rem; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 980px) {
  .offset-split,
  .accent-grid,
  .testimonial-wrap,
  .info-grid,
  .newsletter-wrap { grid-template-columns: 1fr; gap: 2rem; }

  .feature-mosaic,
  .type-grid,
  .discover-grid { grid-template-columns: 1fr 1fr; }

  .booking-widget {
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
  }
  .booking-widget label { border-right: none; border-bottom: 1px solid rgba(241,230,211,0.12); }
  .booking-widget .btn-accent { grid-column: 1 / -1; }

  .offset-media img { transform: none; }
  .top-bar-info span:first-child { display: none; }
}

@media (max-width: 760px) {
  .home-cozy .site-nav {
    background: #1a2d47;
    border-bottom: 1px solid rgba(241,230,211,0.08);
  }
  .home-cozy .menu-icon { border-color: rgba(241,230,211,0.3); }
  .home-cozy .menu-icon span,
  .home-cozy .menu-icon span::before,
  .home-cozy .menu-icon span::after { background: var(--cozy-cream); }

  .feature-mosaic,
  .type-grid,
  .discover-grid { grid-template-columns: 1fr; }

  .top-bar-info { display: none; }

  .cozy-hero { min-height: 80vh; }
  .cozy-hero-content { padding: 6rem 0 4rem; }

  .mosaic-card.text { padding: 1.6rem 1.5rem; }
}


/* ============================================================
   VIDEO PLAY BUTTON + MODAL
   ============================================================ */
.image-strip { position: relative; isolation: isolate; }
.image-strip::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(42, 63, 90,0.25), rgba(42, 63, 90,0.55));
  pointer-events: none;
}

.video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  background: rgba(42, 63, 90, 0.55);
  border: 1px solid rgba(241, 230, 211, 0.55);
  color: var(--cozy-cream);
  padding: 0.85rem 1.4rem 0.85rem 0.85rem;
  border-radius: 999px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  font: inherit;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition: transform 0.25s ease, background 0.25s ease;
}
.video-play:hover { transform: translate(-50%, -50%) scale(1.05); background: rgba(42, 63, 90,0.75); }

.video-play-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--cozy-accent);
  color: #1a1206;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  padding-left: 4px;
  box-shadow: 0 0 0 6px rgba(201,168,106,0.25), 0 0 0 14px rgba(201,168,106,0.12);
}

.video-modal {
  position: fixed; inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.video-modal[hidden] { display: none; }

.video-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(20, 14, 8, 0.85);
  backdrop-filter: blur(6px);
}

.video-modal-dialog {
  position: relative;
  width: min(960px, 100%);
  background: #1a1206;
  border-radius: 12px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  overflow: hidden;
}

.video-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
}
.video-modal-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}

.video-modal-close {
  position: absolute;
  top: -14px; right: -14px;
  z-index: 2;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--cozy-accent);
  color: #1a1206;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

/* ============================================================
   RICH FOOTER (.cozy-footer .footer-grid)
   ============================================================ */
.cozy-footer { padding: 4.5rem 0 1.5rem; }

.cozy-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 3rem;
  align-items: start;
}

.cozy-footer .footer-col h4 {
  color: var(--cozy-cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  margin: 0 0 1rem;
}

.cozy-footer .footer-col p,
.cozy-footer .footer-col li {
  color: var(--cozy-cream-soft);
  font-size: 0.9rem;
  line-height: 1.65;
  margin: 0 0 0.55rem;
}

.cozy-footer .footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.cozy-footer .footer-col a {
  color: var(--cozy-cream-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}
.cozy-footer .footer-col a:hover { color: var(--cozy-accent); }

.cozy-footer .footer-about img {
  height: 60px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}

.footer-newsletter {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
  background: rgba(241, 230, 211, 0.08);
  border: 1px solid rgba(241, 230, 211, 0.18);
  border-radius: 999px;
  padding: 0.35rem 0.35rem 0.35rem 1.1rem;
}
.footer-newsletter input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--cozy-cream);
  font: inherit;
  font-size: 0.88rem;
}
.footer-newsletter input::placeholder { color: var(--cozy-cream-soft); }

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.8rem;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(241,230,211,0.08);
  border: 1px solid rgba(241,230,211,0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--cozy-cream);
}
.footer-social a:hover { background: var(--cozy-accent); color: #1a1206; border-color: transparent; }

.cozy-footer .footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(241,230,211,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--cozy-cream-soft);
}
.cozy-footer .footer-bottom a { color: var(--cozy-cream-soft); text-decoration: none; }
.cozy-footer .footer-bottom a:hover { color: var(--cozy-accent); }

@media (max-width: 980px) {
  .cozy-footer .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .cozy-footer .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cozy-footer .footer-bottom { flex-direction: column; text-align: center; }
  .video-play-label { display: none; }
  .video-play { padding: 0.5rem; }
  .site-nav { gap: 1.4rem; }
}

/* ---------- FLOATING WHATSAPP BUTTON ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 4px 12px rgba(0, 0, 0, 0.18);
  z-index: 999;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  animation: waPulse 2.4s ease-in-out infinite;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 32px rgba(37, 211, 102, 0.55), 0 6px 16px rgba(0, 0, 0, 0.22);
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.55); }
  50%      { box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45), 0 0 0 14px rgba(37, 211, 102, 0); }
}
@media (max-width: 600px) {
  .wa-float { width: 52px; height: 52px; right: 16px; bottom: 16px; }
  .wa-float svg { width: 26px; height: 26px; }
}
