/* ==========================================================================
   SAUGHINA UBUD — BOUTIQUE RESORT DESIGN SYSTEM
   Exact Open Sauce Pro / Open Sauce Sans Font Definitions & Inter Body
   Primary Color: #214134 (Deep Forest Emerald)
   Backgrounds: Pure White (#FFFFFF) & Soft Neutral Greys (#F9FAFB, #F3F4F6, #E5E7EB)
   ========================================================================== */

/* Font definitions for Saughina Ubud Guest Info Portal */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Open+Sans:wght@400;600;700;800&display=swap');

/* Fallback & Webfont definitions for Open Sauce */
@font-face {
  font-family: 'Open Sauce Sans';
  src: local('Open Sauce Sans Bold'), local('OpenSauceSans-Bold'),
    url('https://cdn.jsdelivr.net/fontsource/fonts/open-sauce-sans@latest/latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sauce Sans';
  src: local('Open Sauce Sans SemiBold'), local('OpenSauceSans-SemiBold'),
    url('https://cdn.jsdelivr.net/fontsource/fonts/open-sauce-sans@latest/latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sauce Sans';
  src: local('Open Sauce Sans Medium'), local('OpenSauceSans-Medium'),
    url('https://cdn.jsdelivr.net/fontsource/fonts/open-sauce-sans@latest/latin-500-normal.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sauce Sans';
  src: local('Open Sauce Sans Regular'), local('OpenSauceSans-Regular'),
    url('https://cdn.jsdelivr.net/fontsource/fonts/open-sauce-sans@latest/latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sauce Pro';
  src: local('Open Sauce Pro Bold'), local('OpenSaucePro-Bold'),
    local('Open Sauce Sans Bold'), local('OpenSauceSans-Bold'),
    url('https://cdn.jsdelivr.net/fontsource/fonts/open-sauce-sans@latest/latin-700-normal.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sauce Pro';
  src: local('Open Sauce Pro SemiBold'), local('OpenSaucePro-SemiBold'),
    local('Open Sauce Sans SemiBold'), local('OpenSauceSans-SemiBold'),
    url('https://cdn.jsdelivr.net/fontsource/fonts/open-sauce-sans@latest/latin-600-normal.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Open Sauce Pro';
  src: local('Open Sauce Pro Regular'), local('OpenSaucePro-Regular'),
    local('Open Sauce Sans Regular'), local('OpenSauceSans-Regular'),
    url('https://cdn.jsdelivr.net/fontsource/fonts/open-sauce-sans@latest/latin-400-normal.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Brand Palette */
  --color-primary: #214134;
  --color-primary-hover: #173026;
  --color-primary-soft: #F0F5F2;
  --color-accent-gold: #C29B63;

  /* Backgrounds */
  --bg-white: #FFFFFF;
  --bg-soft-grey: #F9FAFB;
  --bg-surface-grey: #F3F4F6;
  --bg-border: #E5E7EB;

  /* Typography Colors */
  --text-primary: #111827;
  --text-secondary: #4B5563;
  --text-muted: #6B7280;
  --text-white: #FFFFFF;

  /* Font Families - Force Open Sauce for Titles, Inter for everything else */
  --font-heading: 'Open Sauce Sans', 'Open Sauce Pro', 'Open Sauce', 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-title: var(--font-heading);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  /* Apple Design Smooth Rounding */
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-btn: 999px;
  /* Apple continuous pill / capsule rounding */

  /* Elevation Shadows */
  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 25px -5px rgba(33, 65, 52, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 40px -15px rgba(33, 65, 52, 0.12);

  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background-color: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ensure all buttons, form controls, links and body UI strictly use Inter */
button,
input,
optgroup,
select,
textarea {
  font-family: var(--font-body);
}

/* Typography Hierarchy - Open Sauce strictly for titles & headings */
h1,
h2,
h3,
h4,
h5,
h6,
.font-title,
.hero__title,
.section-header__title,
.room-card__title,
.feature-item__title,
.room-hero__title,
.inquiry-sidebar__title,
.brand__name,
.host-banner__title,
.contact-card__title,
.faq__question,
.stat-item__value {
  font-family: var(--font-title);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  line-height: 1.25;
}

p {
  font-family: var(--font-body);
  color: var(--text-secondary);
  font-weight: 400;
  font-size: 0.975rem;
}

a {
  font-family: var(--font-body);
  color: var(--color-primary);
  text-decoration: none;
  transition: var(--transition);
}

img:not(.brand__img) {
  max-width: 100%;
  height: auto;
  display: block;
}

picture {
  width: 100%;
  height: 100%;
}

picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Container Utility */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}

.text-center {
  text-align: center;
}

.section {
  padding: 110px 0;
}

.section--soft {
  background-color: var(--bg-soft-grey);
  border-top: 1px solid var(--bg-border);
  border-bottom: 1px solid var(--bg-border);
}

/* Header & Navigation */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bg-border);
  transition: var(--transition);
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand__img {
  width: 38px !important;
  height: 38px !important;
  max-width: 38px !important;
  max-height: 38px !important;
  object-fit: contain !important;
  flex-shrink: 0;
  display: block;
}

.brand__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand__name {
  font-family: var(--font-title);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1;
}

.brand__tagline {
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-top: 3px;
  line-height: 1;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-primary);
  position: relative;
  padding: 6px 0;
}

.nav__link:hover,
.nav__link.active {
  color: var(--color-primary);
}

.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Primary Button Styling (#214134 - Clean Modern Rounding) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-body) !important;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--text-white);
  border-color: var(--color-primary);
  font-family: var(--font-body) !important;
}

.btn--primary:hover {
  background-color: var(--color-primary-hover);
  border-color: var(--color-primary-hover);
  color: var(--text-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background-color: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
  font-family: var(--font-body) !important;
}

.btn--outline:hover {
  background-color: var(--color-primary);
  color: var(--text-white);
}

.btn--white-outline {
  background-color: transparent;
  color: var(--text-white);
  border-color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body) !important;
}

.btn--white-outline:hover {
  background-color: var(--bg-white);
  color: var(--color-primary);
  border-color: var(--bg-white);
}

.btn--sm {
  padding: 10px 20px;
  font-size: 0.8rem;
  font-family: var(--font-body) !important;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
}

/* Page Breadcrumbs */
.page-breadcrumbs {
  padding: 20px 0;
  background-color: var(--bg-soft-grey);
  border-bottom: 1px solid var(--bg-border);
  font-size: 0.825rem;
  color: var(--text-muted);
}

.page-breadcrumbs a {
  color: var(--text-muted);
}

.page-breadcrumbs a:hover {
  color: var(--color-primary);
}

.page-breadcrumbs span {
  margin: 0 8px;
  color: #D1D5DB;
}

.page-breadcrumbs .current {
  color: var(--text-primary);
  font-weight: 500;
}

/* Hero Section & Slider */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.4s ease-in-out, transform 8s cubic-bezier(0.25, 1, 0.5, 1);
  pointer-events: none;
}

.hero__slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero__bg img,
.hero__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(180deg, rgba(17, 24, 21, 0.45) 0%, rgba(17, 24, 21, 0.75) 100%);
}

.hero__content {
  position: relative;
  z-index: 3;
  max-width: 840px;
  text-align: center;
  color: var(--text-white);
}

.hero__indicators {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__dot:hover,
.hero__dot.active {
  width: 32px;
  background-color: var(--bg-white);
}

/* Scroll Reveal Animation Utility */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

.reveal-delay-3 {
  transition-delay: 0.36s;
}

.hero__subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: white;
  margin-bottom: 16px;
}

.hero__title {
  font-size: 3.4rem;
  color: var(--text-white);
  letter-spacing: 0.02em;
  margin-bottom: 24px;
  font-weight: 600;
}

.hero__desc {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero__btn-full {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 16px 32px;
  font-size: 0.95rem;
}

/* Room Hero Header (For Detail Pages) */
.room-hero {
  position: relative;
  height: 56vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
}

.room-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.room-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.room-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(17, 24, 21, 0.8) 100%);
}

.room-hero__content {
  position: relative;
  z-index: 2;
  color: var(--text-white);
  max-width: 800px;
}

.room-hero__title {
  font-size: 2.8rem;
  color: var(--text-white);
  margin-bottom: 12px;
}

.room-hero__desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Section Header */
.section-header {
  margin-bottom: 56px;
}

.section-header__subtitle {
  font-size: 0.825rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  display: block;
  margin-bottom: 10px;
}

.section-header__title {
  font-size: 2.25rem;
  margin-bottom: 16px;
}

.section-header__desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto;
}

/* Narrative / Essence Section */
.narrative__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.narrative__title {
  font-size: 2.2rem;
  margin-bottom: 24px;
}

.narrative__lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.narrative__text {
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.narrative__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  border-top: 1px solid var(--bg-border);
  padding-top: 28px;
}

.highlight-item h4 {
  font-size: 0.925rem;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  color: var(--color-primary);
}

.highlight-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.narrative__image-wrap img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

/* Accommodations Cards Grid */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.room-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(33, 65, 52, 0.25);
}

.room-card__img-wrap {
  position: relative;
  height: 270px;
  overflow: hidden;
}

.room-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.room-card:hover .room-card__img-wrap img {
  transform: scale(1.05);
}

.room-card__body {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.room-card__category {
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin-bottom: 8px;
}

.room-card__title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.room-card__desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 24px;
  flex-grow: 1;
}

/* Card Specs - Clean Minimalist Typography (No Badge UI) */
.room-card__specs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-top: 1px solid rgba(33, 65, 52, 0.08);
  border-bottom: 1px solid rgba(33, 65, 52, 0.08);
  margin-bottom: 22px;
}

.spec-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body) !important;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-secondary);
}

.spec-item::before {
  content: '•';
  color: var(--color-primary);
  opacity: 0.6;
  font-size: 0.9rem;
}

.room-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.room-card__link {
  font-family: var(--font-body) !important;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.room-card__link:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

/* Detailed Room Page Layout */
.room-details-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.room-main__section {
  margin-bottom: 48px;
}

.room-main__section h2 {
  font-family: var(--font-title);
  font-size: 1.4rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bg-border);
}

/* Architectural Key Specs Ribbon - Clean Minimalist (No Badge UI) */
.specs-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #FCFDFC;
  border: 1px solid rgba(33, 65, 52, 0.12);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 40px;
  box-shadow: 0 2px 12px rgba(33, 65, 52, 0.04);
}

.spec-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 14px;
  min-width: 0;
}

.spec-box:not(:last-child) {
  border-right: 1px solid rgba(33, 65, 52, 0.08);
}

.spec-box__icon {
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  background: none;
  border: none;
}

.spec-box__content {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.spec-box__label {
  font-family: var(--font-body) !important;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.spec-box__value {
  font-family: var(--font-body) !important;
  font-size: 0.885rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.amenity-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background-color: var(--bg-soft-grey);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  color: var(--text-primary);
}

.amenity-card svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* Sidebar Inquiry Card */
.inquiry-sidebar {
  position: sticky;
  top: 110px;
  background-color: var(--bg-white);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-md);
}

.inquiry-sidebar__header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--bg-border);
}

.inquiry-sidebar__title {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

.inquiry-sidebar__sub {
  font-size: 0.825rem;
  color: var(--text-muted);
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.775rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.875rem;
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-sm);
  background-color: var(--bg-soft-grey);
  color: var(--text-primary);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background-color: var(--bg-white);
}

.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 4px 0 18px;
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.5;
  cursor: pointer;
}

.privacy-consent input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: var(--color-primary);
}

.privacy-consent a {
  color: var(--color-primary);
  text-decoration: underline;
}

/* Experiences & Feature Showcase */
.features-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 12px 0;
}

.features-track {
  display: flex;
  gap: 28px;
  width: max-content;
  animation: marqueeRightToLeft 38s linear infinite;
}

.features-marquee:hover .features-track {
  animation-play-state: paused;
}

@keyframes marqueeRightToLeft {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.features-marquee .feature-card {
  width: 360px;
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features-marquee .feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.feature-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.feature-card__img {
  height: 240px;
}

.feature-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card__body {
  padding: 28px;
}

.feature-card__title {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.feature-card__desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gallery-item {
  position: relative;
  height: 280px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  cursor: pointer;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.gallery-item.swapping {
  opacity: 0;
  transform: scale(0.92);
}

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

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(17, 24, 21, 0.85) 100%);
  color: var(--text-white);
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  font-size: 0.85rem;
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover .gallery-item__caption {
  opacity: 1;
}

/* Host Section */
.host-banner {
  background-color: var(--bg-white);
  border: 1px solid var(--bg-border);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 40px;
  align-items: center;
}

.host-avatar {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--bg-border);
}

.host-avatar__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.host-content__quote {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.host-content__signature {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--color-primary);
}

/* Location Section */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.landmarks-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 36px;
}

.landmark {
  display: flex;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--bg-border);
  font-size: 0.9rem;
}

.landmark__name {
  font-weight: 500;
}

.landmark__dist {
  color: var(--text-muted);
}

.map-box {
  height: 380px;
  background: radial-gradient(circle, #EBF2EE 0%, #D5E3DB 100%);
  border-radius: var(--radius-md);
  border: 1px solid var(--bg-border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.map-box h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.map-box p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Footer */
.footer {
  background-color: var(--text-primary);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 40px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer__brand .brand__name {
  color: var(--text-white);
}

.footer__brand .brand__tagline {
  color: rgba(255, 255, 255, 0.5);
}

.footer__desc {
  font-size: 0.875rem;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.6);
  max-width: 320px;
}

.footer__col h4 {
  color: var(--text-white);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}

.footer__links {
  list-style: none;
}

.footer__links li {
  margin-bottom: 12px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.footer__links a:hover {
  color: var(--text-white);
}

.footer__bottom {
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
}

.site-credit {
  margin-top: 8px;
}

.site-credit a {
  color: rgba(255, 255, 255, 0.6);
}

.site-credit a:hover,
.site-credit a:focus-visible {
  color: var(--text-white);
}

/* External Link Safety Popup Modal - Clean Architectural Dialog */
.external-modal {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(17, 28, 22, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 2500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 24px;
}

.external-modal.active {
  opacity: 1;
  visibility: visible;
}

.external-modal__card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 36px 32px 32px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 50px -10px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(33, 65, 52, 0.08);
  border: 1px solid var(--bg-border);
  transform: scale(0.96) translateY(10px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.external-modal.active .external-modal__card {
  transform: scale(1) translateY(0);
}

.external-modal__title {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: 0.01em;
  line-height: 1.3;
}

.external-modal__text {
  font-family: var(--font-body) !important;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.external-modal__notice {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #F8FAF9;
  border: 1px solid rgba(33, 65, 52, 0.08);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  margin-bottom: 28px;
  font-family: var(--font-body) !important;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  text-align: left;
}

.external-modal__notice svg {
  color: var(--color-primary);
  flex-shrink: 0;
}

.external-modal__notice strong {
  color: var(--text-primary);
  font-weight: 600;
}

.external-modal__btns {
  display: flex;
  gap: 12px;
}

.external-modal__btns .btn {
  flex: 1;
  padding: 13px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font-body) !important;
}

.external-modal__btns .btn--outline {
  font-weight: 500;
  color: var(--text-secondary);
  border-color: var(--bg-border);
  font-family: var(--font-body) !important;
}

.external-modal__btns .btn--outline:hover {
  background-color: var(--bg-surface-grey);
  color: var(--text-primary);
  border-color: var(--bg-border);
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  padding: 24px;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox__close {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--text-white);
  cursor: pointer;
}

.lightbox__content {
  max-width: 960px;
  text-align: center;
}

.lightbox__content img {
  max-height: 80vh;
  border-radius: var(--radius-md);
}

.lightbox__caption {
  color: var(--text-white);
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  margin-top: 16px;
  font-size: 0.9rem;
}

/* Mobile Responsiveness & Robust Non-Overflowing Grid System */
@media (max-width: 1024px) {
  .hero__title {
    font-size: 2.6rem;
  }

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

  .narrative__grid,
  .location-grid,
  .room-details-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .specs-bar {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 12px;
  }

  .spec-box:not(:last-child) {
    border-right: none;
  }

  .spec-box:nth-child(1),
  .spec-box:nth-child(3) {
    border-right: 1px solid rgba(33, 65, 52, 0.08);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {

  html,
  body {
    overflow-x: hidden;
  }

  .header__actions .btn--primary {
    display: none;
  }

  .container {
    padding: 0 20px;
  }

  .section {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .section-header__title {
    font-size: 1.75rem;
  }

  .header__nav {
    height: 72px;
  }

  .nav__list {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 24px 20px;
    gap: 16px;
    border-bottom: 1px solid var(--bg-border);
    display: none;
    box-shadow: var(--shadow-md);
    z-index: 99;
  }

  .nav__list.active {
    display: flex;
  }

  .mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
  }

  .hero {
    min-height: 80vh;
    padding: 90px 16px 56px;
  }

  .hero__title {
    font-size: 2rem;
    letter-spacing: 0.01em;
  }

  .hero__desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }

  .hero__btn-full {
    width: 100%;
    padding: 14px 24px;
    font-size: 0.875rem;
  }

  .room-hero {
    height: 45vh;
    min-height: 300px;
    padding-bottom: 36px;
  }

  .room-hero__title {
    font-size: 1.8rem;
  }

  .narrative__highlights {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rooms-grid,
  .features-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .room-card__img-wrap {
    height: 220px;
  }

  .room-card__body {
    padding: 24px 20px;
  }

  .host-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 20px;
    gap: 20px;
  }

  .host-avatar {
    width: 92px;
    height: 92px;
    margin: 0 auto;
  }

  .location-grid {
    gap: 32px;
  }

  .map-box {
    height: 260px;
    padding: 24px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__desc {
    max-width: 100%;
  }

  .inquiry-sidebar {
    position: static;
    margin-top: 24px;
    padding: 24px 20px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 52px 0;
  }

  .hero__title {
    font-size: 1.75rem;
  }

  .hero__subtitle {
    font-size: 0.75rem;
  }

  .specs-bar {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px;
  }

  .spec-box:nth-child(1),
  .spec-box:nth-child(3) {
    border-right: none;
  }

  .spec-box:not(:last-child) {
    border-bottom: 1px solid rgba(33, 65, 52, 0.08);
  }

  .spec-box {
    padding: 10px 12px;
  }

  .external-modal {
    padding: 16px;
    align-items: flex-end;
  }

  .external-modal__card {
    padding: 28px 20px 24px;
    border-radius: 16px;
  }

  .external-modal__btns {
    flex-direction: column-reverse;
    gap: 8px;
  }

  .external-modal__btns .btn {
    width: 100%;
    padding: 13px 16px;
  }

  .room-details-grid {
    gap: 28px;
  }

  .room-main__section h2 {
    font-size: 1.2rem;
  }

  .amenities-grid {
    grid-template-columns: 1fr;
  }
}