@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&family=Jost:wght@300;400;500;600;700&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  /* Spec Colors */
  --cream: #F5EDD8;
  --surface: #FBF7EE;
  --forest: #2A4A2A;
  --terracotta: #7B2D14;
  --gold: #C9A060;
  --burgundy: #8B2020;
  --text: #1E1A12;
  --text-muted: #6B5A42;
  
  /* Additional UI variables */
  --white: #FFFFFF;
  --forest-light: #3D6B3D;
  --gold-alpha: rgba(201, 160, 96, 0.2);
  --gold-glow: rgba(201, 160, 96, 0.06);
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
}

/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  background: linear-gradient(135deg, #F5EDD8 0%, #EDE4CF 40%, #F0E8D5 100%);
  min-height: 100vh;
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── Blob utility ── */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.2;
}

h2 {
  font-size: 2.8rem;
  color: var(--forest);
}

p {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: var(--text-muted);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

button, .btn {
  font-family: 'Jost', sans-serif;
  cursor: pointer;
  border: none;
  outline: none;
  background: none;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  filter: brightness(1.05) contrast(1.05); /* Proactive photo styling */
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-padding {
  padding: 7.5rem 0;
}

/* ══════════════════════════════════════
   SECTION 1 — Sticky Header & Navbar
   (glassmorphism always on)
   ══════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(245, 237, 216, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 160, 96, 0.2);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(245, 237, 216, 0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(201, 160, 96, 0.3);
  box-shadow: 0 4px 30px rgba(30, 26, 18, 0.04);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5.5rem;
  transition: var(--transition-smooth);
}

.site-header.scrolled .navbar {
  height: 4.5rem;
}

.logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.logo-img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.site-header.scrolled .logo-img {
  height: 38px;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-size: 1.8rem;
  line-height: 1;
}

.logo-junu {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
  color: var(--forest);
}

.logo-tora {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--terracotta);
}

.logo-sub {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  margin-top: 0.25rem;
  line-height: 1;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
  align-items: center;
}

.nav-item a {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0.5rem 0;
  position: relative;
}

.nav-item a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: var(--transition-smooth);
}

.nav-item a:hover {
  color: var(--terracotta);
}

.nav-item a:hover::after {
  width: 100%;
}

.nav-cta {
  background-color: var(--terracotta);
  color: var(--white);
  padding: 0.75rem 1.75rem;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 12px;
}

.nav-cta:hover {
  background-color: var(--forest);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(123, 45, 20, 0.2);
}

/* Mobile Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  z-index: 1100;
}

.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--forest);
  transition: var(--transition-smooth);
}

/* ══════════════════════════════════════
   SECTION 2 — Hero
   ══════════════════════════════════════ */
.hero {
  min-height: 100svh;
  position: relative;
  background-image: url('photos/heroimage.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  background-attachment: scroll;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(20, 12, 8, 0.65) 0%,
    rgba(42, 74, 42, 0.45) 60%,
    rgba(20, 12, 8, 0.3) 100%
  );
  content: '';
}

/* Hero blobs (positioned via HTML) */
.hero-blob-1 {
  width: 500px;
  height: 500px;
  top: -100px;
  left: -150px;
  background: rgba(201, 160, 96, 0.25);
}

.hero-blob-2 {
  width: 400px;
  height: 400px;
  bottom: 50px;
  right: -100px;
  background: rgba(42, 74, 42, 0.12);
}

.hero-watermark {
  position: absolute;
  top: 5%;
  left: -2%;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 11vw;
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: 0.05em;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 680px;
  margin-top: 3rem;
}

.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
}

.hero-title {
  font-size: 4.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
  color: #F5EDD8;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.hero-subtext {
  font-size: 1.1rem;
  color: rgba(245, 237, 216, 0.85);
  max-width: 520px;
  margin-bottom: 2rem;
}

/* SVG Divider */
.decorative-divider {
  display: flex;
  align-items: center;
  margin-bottom: 2.5rem;
}

.divider-line {
  height: 1px;
  background-color: var(--gold-alpha);
  width: 80px;
}

.hero .divider-line {
  background-color: rgba(201, 160, 96, 0.5);
}

.divider-icon {
  fill: var(--gold);
  margin: 0 1rem;
  display: flex;
  align-items: center;
}

.hero-ctas {
  display: flex;
  gap: 1.5rem;
}

.btn-primary {
  background-color: var(--terracotta);
  color: var(--white);
  padding: 1rem 2rem;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 14px;
  box-shadow: 0 4px 15px rgba(123, 45, 20, 0.15);
}

.btn-primary:hover {
  background-color: var(--forest);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(42, 74, 42, 0.2);
}

.btn-secondary {
  border: 1px solid var(--terracotta);
  color: var(--terracotta);
  padding: 1rem 2rem;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 14px;
}

.btn-secondary:hover {
  background-color: var(--terracotta);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(123, 45, 20, 0.15);
}

.hero .btn-secondary {
  border: 1px solid rgba(245, 237, 216, 0.7);
  color: #F5EDD8;
}

.hero .btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.15);
  color: #F5EDD8;
  border-color: rgba(245, 237, 216, 0.7);
}

/* Scrolling Ticker — unchanged */
.ticker-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  background-color: var(--forest);
  padding: 0.8rem 0;
  z-index: 15;
}

.ticker {
  display: inline-block;
  white-space: nowrap;
  padding-right: 100%;
  animation: scroll-ticker 30s linear infinite;
}

.ticker-item {
  display: inline-block;
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  padding: 0 2rem;
  position: relative;
}

@keyframes scroll-ticker {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

/* ══════════════════════════════════════
   SECTION 3 — About / Intro
   (glass card wrapper)
   ══════════════════════════════════════ */
#about {
  position: relative;
  overflow: hidden;
}

/* About blob (positioned via HTML) */
.about-blob {
  width: 350px;
  height: 350px;
  top: 50%;
  left: -80px;
  background: rgba(123, 45, 20, 0.07);
  transform: translateY(-50%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 5rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 160, 96, 0.25);
  border-radius: 28px;
  padding: 3.5rem;
  box-shadow: 0 8px 40px rgba(42, 74, 42, 0.06),
              0 2px 8px rgba(201, 160, 96, 0.08);
  position: relative;
  z-index: 1;
}

.about-images-wrapper {
  position: relative;
  padding-bottom: 4rem;
  padding-right: 4rem;
}

/* CSS gradient image cards */
.image-card-main {
  width: 100%;
  height: 400px;
  display: block;
  box-shadow: 0 10px 40px rgba(30, 26, 18, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.image-card-label {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--white);
  text-transform: uppercase;
}

.image-card-sub {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  height: 220px;
  display: block;
  box-shadow: 0 12px 35px rgba(30, 26, 18, 0.12);
  border: 4px solid var(--surface);
  z-index: 5;
  border-radius: 16px;
  overflow: hidden;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-label {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.about-heading {
  font-size: 2.8rem;
  color: var(--forest);
  margin-bottom: 1.5rem;
}

.about-body {
  font-size: 1.05rem;
  margin-bottom: 2rem;
  color: var(--text-muted);
}

.chips-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.chip {
  background-color: var(--cream);
  border: 1px solid var(--gold);
  color: var(--text);
  padding: 0.5rem 1.25rem;
  font-size: 0.85rem;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-radius: 999px;
}

/* ══════════════════════════════════════
   SECTION 4 — Rooms
   ══════════════════════════════════════ */
.rooms-header {
  text-align: center;
  margin-bottom: 4rem;
}

.rooms-title {
  font-size: 3rem;
  font-style: italic;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.rooms-subtext {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.rooms-header .decorative-divider {
  justify-content: center;
  margin-bottom: 0;
}

.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.room-card {
  border-radius: 24px;
  background: rgba(251, 247, 238, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 160, 96, 0.2);
  box-shadow: 0 4px 24px rgba(30, 26, 18, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.room-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(42, 74, 42, 0.1);
  border-color: rgba(201, 160, 96, 0.5);
}

.room-badge {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background-color: #7B2D14;
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 0.4rem 1rem;
  text-transform: uppercase;
  z-index: 20;
  border-radius: 999px;
}

/* Carousel Styling */
.room-carousel {
  position: relative;
  height: 240px;
  border-radius: 20px 20px 0 0;
  overflow: hidden;
  width: 100%;
}

.carousel-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(1.05) contrast(1.05);
}

.carousel-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #F5EDD8;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Carousel Navigation Arrows */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(245, 237, 216, 0.92);
  backdrop-filter: blur(8px);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(30,26,18,0.15);
  transition: all 0.2s ease;
  opacity: 1 !important;
  visibility: visible !important;
}

.carousel-btn:hover {
  background: rgba(245, 237, 216, 1);
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn-prev { left: 10px; }
.carousel-btn-next { right: 10px; }

.carousel-btn .material-icons {
  font-size: 1.2rem;
  color: #7B2D14;
}

/* Remove any hover-only visibility rule */
/* Delete or override any rule that has:
   .room-card:hover .carousel-btn or
   .carousel-wrapper:hover .carousel-btn
   with opacity: 0 or visibility: hidden */

.carousel-wrapper:hover .carousel-btn,
.room-card:hover .carousel-btn {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Mobile — make arrows slightly smaller */
@media (max-width: 768px) {
  .carousel-btn {
    width: 30px;
    height: 30px;
  }
  .carousel-btn .material-icons {
    font-size: 1rem;
  }
  .carousel-btn-prev { left: 8px; }
  .carousel-btn-next { right: 8px; }
}

/* Carousel Dot Indicators */
.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(201, 160, 96, 0.4);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-dot.active {
  background-color: #7B2D14;
}

/* Room details and description */
.room-details {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #2A4A2A;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.room-description {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.5;
  color: #6B5A42;
  margin-bottom: 1rem;
}

.room-price {
  font-family: 'Libre Baskerville', serif;
  font-size: 1.4rem;
  color: #7B2D14;
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.price-period {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.85rem;
  color: #6B5A42;
}

/* Facilities Section Styling */
.facilities-section {
  border-top: 1px solid rgba(201, 160, 96, 0.2);
  padding-top: 1.25rem;
  margin-bottom: 1.5rem;
  margin-top: auto;
}

.facilities-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.facility-line {
  flex-grow: 1;
  height: 1px;
  background-color: rgba(201, 160, 96, 0.2);
}

.facility-header-text {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #C9A060;
  font-size: 0.7rem;
  white-space: nowrap;
}

.facilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 1rem;
}

.facility-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.facility-item .material-icons {
  font-size: 1.1rem;
  color: #7B2D14;
}

.facility-label {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.82rem;
  color: #6B5A42;
}

/* Book Now Button styling */
.room-book-btn {
  width: 100%;
  background-color: #7B2D14;
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 0.9rem;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: auto;
}

.room-book-btn:hover {
  background-color: #5A200E;
}

.rooms-footer-note {
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  font-size: 0.95rem;
  color: #6B5A42;
  border-top: 1px solid rgba(201, 160, 96, 0.2);
  padding-top: 1.5rem;
  margin-top: 2rem;
}

/* ══════════════════════════════════════
   SECTION 5 — Amenities
   (glassmorphism tiles on dark bg)
   ══════════════════════════════════════ */
.amenities-section {
  background: linear-gradient(135deg, #2A4A2A 0%, #1E3A1E 100%);
  position: relative;
  overflow: hidden;
}

/* Amenity blobs (positioned via HTML) */
.amenities-blob-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  background: rgba(201, 160, 96, 0.12);
}

.amenities-blob-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -80px;
  background: rgba(255, 255, 255, 0.04);
}

.amenities-header {
  text-align: center;
  margin-bottom: 4.5rem;
  position: relative;
  z-index: 1;
}

.amenities-title {
  font-size: 3rem;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.amenities-subtext {
  color: var(--gold);
  font-size: 1.05rem;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.amenity-tile {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: var(--transition-smooth);
}

.amenity-tile:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(201, 160, 96, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.amenity-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1.25rem;
}

.amenity-label {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  color: var(--white);
}

/* ══════════════════════════════════════
   SECTION 6 — Location
   (glass card wrapper)
   ══════════════════════════════════════ */
.location-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201, 160, 96, 0.2);
  border-radius: 28px;
  padding: 3.5rem;
  box-shadow: 0 8px 40px rgba(30, 26, 18, 0.05);
}

.map-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.map-static {
  background: linear-gradient(135deg, #2A4A2A 0%, #1E3A1E 100%);
  border-radius: 20px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  position: relative;
  overflow: hidden;
}

.map-static::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='1' fill='%23C9A060' opacity='0.15'/%3E%3C/svg%3E") repeat;
  pointer-events: none;
}

.map-pin-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(201,160,96,0.25);
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  z-index: 2;
}

.map-pin-icon {
  font-size: 2.5rem;
  color: #C9A060;
  flex-shrink: 0;
  animation: pin-bounce 2s ease-in-out infinite;
}

@keyframes pin-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.map-pin-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #F5EDD8;
  margin-bottom: 0.4rem;
}

.map-pin-address {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: rgba(245,237,216,0.75);
  line-height: 1.6;
}

.map-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #7B2D14;
  color: #F5EDD8;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.9rem 1.75rem;
  border-radius: 12px;
  text-decoration: none;
  position: relative;
  z-index: 2;
  align-self: flex-start;
  transition: all 0.3s ease;
}

.map-open-btn:hover {
  background: #C9A060;
  color: #1E1A12;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(123,45,20,0.2);
}

.map-open-btn .material-icons {
  font-size: 1.1rem;
}

.map-landmark {
  background: rgba(201,160,96,0.1);
  border: 1px solid rgba(201,160,96,0.25);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  color: #6B5A42;
  line-height: 1.5;
}

.map-landmark .material-icons {
  color: #7B2D14;
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.map-landmark strong {
  font-weight: 500;
  color: #2A4A2A;
}

.location-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.location-heading {
  font-size: 2.5rem;
  color: var(--forest);
  margin-bottom: 1rem;
}

.location-address {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.location-chips {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

.location-chip {
  background-color: var(--surface);
  border: 1px solid var(--gold-alpha);
  color: var(--text);
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  font-family: 'Jost', sans-serif;
  font-weight: 400;
  display: inline-block;
  align-self: flex-start;
  border-radius: 999px;
}

.location-ctas {
  display: flex;
  gap: 1.5rem;
}

.location-ctas .btn {
  border-radius: 12px;
}

/* ══════════════════════════════════════
   SECTION 7 — Reviews
   (glassmorphism cards)
   ══════════════════════════════════════ */
.reviews-section {
  background-color: var(--cream);
  overflow: hidden;
  padding-bottom: 6rem;
}

.reviews-header {
  text-align: center;
  margin-bottom: 4rem;
}

.reviews-title {
  font-size: 3rem;
  font-style: italic;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.reviews-rating {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--terracotta);
}

.stars {
  color: var(--gold);
  margin-right: 0.5rem;
  font-size: 1.2rem;
}

.reviews-rating-subtext {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.25rem;
}

/* Review Ticker (continuous carousel) */
.reviews-ticker-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 1.5rem 0;
}

/* Fade gradients on edges */
.reviews-ticker-container::before,
.reviews-ticker-container::after {
  content: '';
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.reviews-ticker-container::before {
  left: 0;
  background: linear-gradient(to right, var(--cream) 0%, transparent 100%);
}

.reviews-ticker-container::after {
  right: 0;
  background: linear-gradient(to left, var(--cream) 0%, transparent 100%);
}

.reviews-ticker {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: reviews-scroll 40s linear infinite;
}

.reviews-ticker:hover {
  animation-play-state: paused;
}

.review-card {
  border-radius: 20px;
  background: rgba(251, 247, 238, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(201, 160, 96, 0.2);
  box-shadow: 0 4px 20px rgba(30, 26, 18, 0.04);
  padding: 2.5rem;
  width: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-text {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-transform: uppercase;
}

@keyframes reviews-scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(calc(-50% - 1rem), 0, 0); /* offset for exact spacing clone */
  }
}

/* ══════════════════════════════════════
   SECTION 8 — CTA Banner
   ══════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--terracotta), var(--forest));
  text-align: center;
  padding: 6.5rem 0;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

/* CTA blobs (positioned via HTML) */
.cta-blob-1 {
  width: 500px;
  height: 500px;
  top: -200px;
  left: -100px;
  background: rgba(255, 255, 255, 0.06);
}

.cta-blob-2 {
  width: 400px;
  height: 400px;
  bottom: -150px;
  right: -100px;
  background: rgba(201, 160, 96, 0.1);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner-content {
  position: relative;
  z-index: 5;
  max-width: 650px;
  margin: 0 auto;
}

.cta-title {
  font-size: 3.5rem;
  color: var(--cream);
  margin-bottom: 1rem;
}

.cta-subtext {
  font-size: 1.1rem;
  color: var(--cream);
  opacity: 0.85;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.btn-cta-whatsapp {
  background-color: var(--white);
  color: var(--terracotta);
  padding: 1rem 2rem;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 14px;
}

.btn-cta-whatsapp:hover {
  background-color: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.btn-cta-call {
  border: 1px solid var(--white);
  color: var(--white);
  padding: 1rem 2rem;
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 14px;
}

.btn-cta-call:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* ══════════════════════════════════════
   SECTION 9 — Footer
   ══════════════════════════════════════ */
.site-footer {
  background-color: var(--text);
  color: var(--cream);
  padding: 5.5rem 0 2rem;
  border-top: 1px solid rgba(201, 160, 96, 0.15);
  position: relative;
  overflow: hidden;
}

/* Footer blob (positioned via HTML) */
.footer-blob {
  width: 500px;
  height: 300px;
  top: 0;
  right: -100px;
  background: rgba(201, 160, 96, 0.04);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 54px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 2.2rem;
  line-height: 1;
  display: flex;
}

.footer-logo-junu {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-style: italic;
  color: var(--cream);
}

.footer-logo-tora {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--gold);
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.8;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
  padding-left: 0.25rem;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.95rem;
  opacity: 0.8;
}

.footer-contact-item span {
  font-family: 'Jost', sans-serif;
}

.footer-contact-item i {
  color: var(--gold);
  font-size: 1.2rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.footer-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ══════════════════════════════════════
   Booking Modal — glassmorphism
   ══════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 26, 18, 0.6);
  backdrop-filter: blur(8px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-card {
  border-radius: 28px;
  background: rgba(251, 247, 238, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(201, 160, 96, 0.3);
  box-shadow: 0 24px 60px rgba(30, 26, 18, 0.15);
  width: 100%;
  max-width: 500px;
  padding: 3rem 2.5rem;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.8rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.modal-close-btn:hover {
  color: var(--terracotta);
}

.modal-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.modal-logo {
  width: 72px;
  height: 72px;
  border-radius: 12px;
  margin: 0 auto 1.25rem;
  display: block;
  object-fit: contain;
  box-shadow: 0 4px 12px rgba(30, 26, 18, 0.08);
}

.modal-title {
  font-size: 2.5rem;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.modal-subtext {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.modal-option-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--gold-alpha);
  padding: 1.25rem;
  transition: var(--transition-smooth);
}

.modal-option-card:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30, 26, 18, 0.06);
}

.modal-option-icon {
  font-size: 2.2rem;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-option-details {
  display: flex;
  flex-direction: column;
}

.modal-option-title {
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--forest);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.modal-option-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 300;
}

/* ══════════════════════════════════════
   Intersection Observer Animations
   ══════════════════════════════════════ */
.fade-in-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.fade-in-on-scroll.animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger support */
.stagger-grid > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.stagger-grid.animate-in > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger-grid.animate-in > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-grid.animate-in > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-grid.animate-in > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-grid.animate-in > *:nth-child(4) { transition-delay: 0.4s; }
.stagger-grid.animate-in > *:nth-child(5) { transition-delay: 0.5s; }
.stagger-grid.animate-in > *:nth-child(6) { transition-delay: 0.6s; }

/* ══════════════════════════════════════
   Responsive Media Queries
   ══════════════════════════════════════ */

/* Widescreen */
@media (min-width: 1200px) {
  .logo-main {
    font-size: 2rem;
  }
}

/* ============================================
   TABLET — max-width: 991px
   ============================================ */
@media (max-width: 991px) {

  /* HERO */
  .hero-title { font-size: 3.2rem; }
  .hero-watermark { font-size: 13vw; }
  .hero-content { max-width: 100%; padding: 0 1.5rem; }

  /* ABOUT */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem;
    border-radius: 20px;
  }
  .about-images-wrapper {
    padding-right: 2rem;
    padding-bottom: 3rem;
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }
  .image-card-main { height: 300px; }
  .image-card-sub { height: 180px; width: 65%; }

  /* ROOMS */
  .rooms-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .room-card:nth-child(3) {
    grid-column: span 2;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

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

  /* LOCATION */
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 2.5rem;
    border-radius: 20px;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .footer-col:nth-child(1) { grid-column: span 2; }
}

/* ============================================
   MOBILE — max-width: 768px
   ============================================ */
@media (max-width: 768px) {

  /* CONTAINER */
  .container { padding: 0 1.25rem; }
  .section-padding { padding: 4rem 0; }

  /* TYPOGRAPHY */
  h2 { font-size: 2rem; }
  .about-heading,
  .rooms-title,
  .reviews-title,
  .amenities-title,
  .cta-title { font-size: 2rem; }
  .location-heading { font-size: 1.8rem; }
  .modal-title { font-size: 2rem; }

  /* NAVBAR */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(245, 237, 216, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    box-shadow: -8px 0 30px rgba(30,26,18,0.12);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1050;
    border-radius: 24px 0 0 24px;
  }
  .nav-links.active { right: 0; }
  .nav-item a { font-size: 1rem; }
  .nav-cta {
    padding: 0.6rem 1.1rem;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    border-radius: 10px;
    width: auto;
    white-space: nowrap;
  }

  /* HERO */
  .hero {
    background-position: center center;
    background-size: cover;
    background-attachment: scroll;
    min-height: 100svh;
  }
  .hero-title { font-size: 2.4rem; line-height: 1.15; }
  .hero-watermark {
    font-size: 20vw;
    top: 10%;
    opacity: 0.03;
  }
  .hero-subtext { font-size: 0.95rem; }
  .hero-content { margin-top: 0; padding: 0 1.25rem; }
  .hero-ctas {
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
    justify-content: center;
    border-radius: 12px;
    padding: 0.9rem 1.5rem;
  }

  /* TICKER */
  .ticker-item { font-size: 0.8rem; padding: 0 1.25rem; }

  /* ABOUT */
  .about-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    border-radius: 16px;
    gap: 2rem;
  }
  .about-images-wrapper {
    padding-right: 1.5rem;
    padding-bottom: 2.5rem;
    max-width: 100%;
  }
  .image-card-main { height: 240px; }
  .image-card-sub {
    height: 160px;
    width: 60%;
  }
  .about-heading { font-size: 1.8rem; }
  .about-body { font-size: 0.95rem; }
  .chips-row { gap: 0.5rem; }
  .chip { font-size: 0.8rem; padding: 0.4rem 1rem; }

  /* ROOMS */
  .rooms-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .room-card:nth-child(3) {
    grid-column: auto;
    max-width: 100%;
  }
  .room-card { border-radius: 20px; }
  .room-name { font-size: 1.5rem; }
  .room-price { font-size: 1.15rem; }
  .room-details { padding: 1.25rem; }

  /* FACILITIES GRID inside room cards */
  .facilities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem 0.75rem;
  }
  .facility-label { font-size: 0.78rem; }

  /* AMENITIES */
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .amenity-tile {
    padding: 2rem 1.25rem;
    border-radius: 16px;
  }
  .amenity-icon { font-size: 2rem; margin-bottom: 0.75rem; }
  .amenity-label { font-size: 0.9rem; }

  /* LOCATION */
  .location-grid {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    border-radius: 16px;
    gap: 2rem;
  }
  .map-static {
    min-height: 260px;
    padding: 1.5rem;
    border-radius: 16px;
  }
  .map-pin-name { font-size: 1.2rem; }
  .map-pin-address { font-size: 0.82rem; }
  .map-open-btn { width: 100%; justify-content: center; }
  .location-chips { gap: 0.5rem; }
  .location-chip { font-size: 0.8rem; padding: 0.5rem 1rem; }
  .location-ctas {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .location-ctas .btn {
    width: 100%;
    text-align: center;
    border-radius: 12px;
  }
  .location-heading { font-size: 1.8rem; }

  /* REVIEWS */
  .review-card { width: 280px; padding: 1.5rem; }
  .review-text { font-size: 0.85rem; }
  .reviews-ticker-container::before,
  .reviews-ticker-container::after { width: 60px; }

  /* CTA BANNER */
  .cta-banner { padding: 4rem 0; }
  .cta-title { font-size: 1.8rem; }
  .cta-subtext { font-size: 0.95rem; padding: 0 1rem; }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 0 1.25rem;
    width: 100%;
  }
  .btn-cta-whatsapp,
  .btn-cta-call {
    width: 100%;
    max-width: 320px;
    text-align: center;
    border-radius: 12px;
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-col:nth-child(1) { grid-column: auto; }
  .footer-logo { font-size: 1.8rem; }
  .footer-tagline { font-size: 0.85rem; }
  .site-footer { padding: 3.5rem 0 1.5rem; }

  /* MODAL */
  .modal-card {
    margin: 1rem;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    max-width: calc(100% - 2rem);
  }
  .modal-option-card { padding: 1rem; border-radius: 14px; }
  .modal-option-icon { font-size: 1.8rem; }
  .modal-title { font-size: 1.8rem; }
}

/* ============================================
   SMALL MOBILE — max-width: 480px
   ============================================ */
@media (max-width: 480px) {

  .hero-title { font-size: 2rem; }
  .hero-eyebrow { font-size: 0.68rem; letter-spacing: 0.18em; }

  .about-grid { padding: 1.25rem; }
  .image-card-main { height: 200px; }
  .image-card-sub { height: 130px; width: 58%; }

  .rooms-title,
  .amenities-title,
  .reviews-title,
  .cta-title { font-size: 1.7rem; }

  .amenities-grid { grid-template-columns: 1fr 1fr; }
  .amenity-tile { padding: 1.5rem 1rem; }

  .logo-main { font-size: 1.4rem; }
  .logo-sub { font-size: 0.58rem; letter-spacing: 0.18em; }

  .nav-cta { font-size: 0.75rem; padding: 0.65rem 1.25rem; }

  .review-card { width: 260px; }

  .footer-logo { font-size: 1.5rem; }
}
