/*
 * Inn on the Creek homepage overrides
 * Applied only when the page content includes the inn-home-* section classes.
 */

/* 1. Global Enhancements & Utility */
html {
  scroll-behavior: smooth;
}

html body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Better focus styles for accessibility */
html body :focus-visible {
  outline: 2px solid var(--inn-gold, #c9a24f);
  outline-offset: 2px;
}

/* Mobile Menu Touch Target */
html body .wp-block-navigation__responsive-container-open {
    padding: 12px;
    min-width: 44px;
    min-height: 44px;
}

/* Scroll Top Button Polish */
html body .horizon_scroll_top {
  z-index: 9999;
  box-shadow: 0 4px 15px rgba(1, 49, 76, 0.4);
}

/* Remove legacy theme chrome that is still output on the rebuilt homepage. */
body.home a.mm-skip-link,
body.home a#wp-skip-link {
  display: none !important;
}

body.home header.wp-block-template-part,
body.home header.wp-block-group.is-layout-constrained.wp-block-group-is-layout-constrained {
  display: none !important;
}

.inn-home-hero,
.inn-home-quick-facts,
.inn-home-intro,
.inn-home-rooms,
.inn-home-testimonial,
.inn-home-split,
.inn-home-area,
.inn-home-news,
.inn-home-about,
.inn-home-cta {
  /* Colors */
  --inn-cream: #f5eee2;
  --inn-cream-2: #efe3d0;
  --inn-navy: #0f3b57;
  --inn-navy-deep: #0a2c42;
  --inn-gold: #c9a24f;
  --inn-gold-dark: #b98f3f;
  --inn-text: #21323e;
  --inn-muted: #5b6f7d;
  
  /* Typography System */
  --inn-font-heading: 'Aboreto', serif;
  --inn-font-body: 'Work Sans', sans-serif;
  --inn-font-accent: 'Arapey', serif;
  
  --inn-size-h1: clamp(2.5rem, 5vw, 3.8rem);
  --inn-size-h2: clamp(1.8rem, 3vw, 2.4rem);
  --inn-size-h3: clamp(1.2rem, 2vw, 1.4rem);
  --inn-size-body: clamp(1rem, 1.5vw, 1.125rem);
  --inn-size-small: 0.875rem;
  
  --inn-leading-heading: 1.1;
  --inn-leading-body: 1.6;
  
  /* Spacing */
  --inn-space-hero-intro: clamp(40px, 4vw, 60px);
  --inn-space-intro-rooms: clamp(60px, 6vw, 90px);
  --inn-space-rooms-header-gap: clamp(30px, 3vw, 45px);
  
  /* Design Tokens */
  --inn-radius-sm: 3px;
  --inn-radius-md: 6px;
  --inn-radius-lg: 12px;
  
  /* Enhanced Shadows for Depth */
  --inn-shadow-sm: 0 4px 20px rgba(15, 59, 87, 0.06);
  --inn-shadow-md: 0 15px 35px rgba(15, 59, 87, 0.1);
  --inn-shadow-lg: 0 30px 60px -10px rgba(10, 44, 66, 0.25);
  --inn-shadow-text: 0 4px 12px rgba(0, 0, 0, 0.6);
  
  --inn-transition-base: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --inn-transition-hover: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Global Typography Reset for these sections */
.inn-home-hero h1, .inn-home-hero h2, .inn-home-hero h3,
.inn-home-intro h2, .inn-home-intro h3,
.inn-home-rooms h2, .inn-home-rooms h3,
.inn-home-testimonial blockquote,
.inn-home-split h3,
.inn-home-area h3,
.inn-home-news h2, .inn-home-news h3,
.inn-home-about h2,
.inn-home-cta h2 {
  font-family: var(--inn-font-heading);
  font-weight: 400;
  line-height: var(--inn-leading-heading);
  color: var(--inn-navy-deep);
}

.inn-home-hero p,
.inn-home-intro p,
.inn-home-rooms p,
.inn-home-split p,
.inn-home-about p {
  font-family: var(--inn-font-body);
  font-size: var(--inn-size-body);
  line-height: var(--inn-leading-body);
  color: var(--inn-text);
}

/* Button Standardization */
.inn-home-hero .btn,
.inn-home-intro .btn,
.inn-home-rooms .btn,
.inn-home-split .btn,
.inn-home-area .btn,
.inn-home-cta .btn {
  font-family: var(--inn-font-body);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--inn-radius-sm);
  transition: all var(--inn-transition-base);
}

/* Hero structure migrated from sections.css so homepage can run without it. */
.inn-home-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 0;
}

.inn-home-hero .section-hero__background {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.inn-home-hero .section-hero__background img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.inn-home-hero .section-hero__video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.inn-home-hero .section-hero__gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.inn-home-hero .section__container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.inn-home-hero .heading-group {
  display: flex;
  flex-direction: column;
}

.inn-home-hero {
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #000;
}

.inn-home-hero .section-hero__background img,
.inn-home-hero .section-hero__video {
  filter: none;
}

.inn-home-hero .section-hero__gradient {
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.9) 0%, transparent 142px),
    linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.2) 23%, transparent 32%);
}

.inn-home-hero .section__container {
  max-width: 1366px;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0 auto;
  padding-top: 0;
  padding-bottom: clamp(22px, 5vh, 34px);
  position: static;
}

.inn-home-hero .section-hero__content {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
  text-align: center;
  position: static;
}

.inn-home-hero .section-hero__eyebrow {
  display: none !important;
}

.inn-home-hero .section-hero__title {
  font-family: 'Aboreto', serif;
  letter-spacing: 0.02em;
  font-size: clamp(2rem, 5vw, 2.82rem);
  line-height: 1.14;
  color: #fff;
  margin: 0 auto 16px;
  text-shadow: var(--inn-shadow-text);
  max-width: 1200px;
  text-transform: none;
}

.inn-home-hero .section-hero__title::after {
  content: '';
  display: block;
  width: clamp(180px, 22vw, 280px);
  max-width: 65%;
  height: 1px;
  margin: 16px auto 0;
  background: var(--inn-cream-2);
}

.inn-home-hero .section-hero__text {
  max-width: 800px;
  margin: 0 auto;
  overflow: visible;
}

.inn-home-hero .section-hero__text p {
  margin: 0 auto;
  font-family: 'Work Sans', sans-serif;
  color: #fff;
  font-size: clamp(1rem, 2vw, 1.32rem);
  font-weight: 400;
  line-height: 1.5;
  max-width: 800px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.inn-home-hero .btn-group {
  display: none;
}

/* Hero booking widget */
.inn-home-hero .bw-card {
  --bw-card-x: calc(100% - 220px);
  --bw-bg: #FAF8F5;
  --bw-bg-input: #FFFFFF;
  --bw-text: var(--inn-heading);
  --bw-text-muted: var(--inn-muted);
  --bw-border: #E5E2DC;
  --bw-accent: var(--inn-gold-dark);
  --bw-navy: var(--inn-navy);
  --bw-font-heading: 'Aboreto', serif;
  --bw-font-body: 'Work Sans', sans-serif;
  --bw-font-accent: 'Arapey', serif;
  --bw-card-width: 380px;
  position: absolute;
  top: 20%;
  right: 0;
  z-index: 120;
  width: var(--bw-card-width);
  margin-top: 0;
  background: var(--bw-bg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--inn-shadow-lg);
  border-radius: var(--inn-radius-sm);
  opacity: 1;
  transform: translateX(var(--bw-card-x));
  animation: none;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.3s ease;
  will-change: transform, box-shadow;
}

/* Keep homepage booking card hero-anchored (no viewport-fixed scrolling). */
body.home .inn-home-hero .bw-card {
  position: absolute !important;
  top: 20% !important;
  right: 0 !important;
  left: auto !important;
  margin: 0 !important;
  z-index: 120 !important;
  transform: translateX(var(--bw-card-x)) !important;
}

body.home .inn-home-hero .bw-card:hover,
body.home .inn-home-hero .bw-card.is-active,
body.home .inn-home-hero .bw-card:focus-within {
  --bw-card-x: 0px;
  transform: translateX(var(--bw-card-x)) !important;
}

.inn-home-hero .bw-card.is-interacted {
  transition-delay: 0s;
}

.inn-home-hero .bw-card.is-interacted.is-empty-selection {
  transition-duration: 0.2s, 0.2s;
}

.inn-home-hero .bw-card:hover,
.inn-home-hero .bw-card.is-active,
.inn-home-hero .bw-card:focus-within {
  opacity: 1;
  --bw-card-x: 0px;
  transform: translateX(var(--bw-card-x));
  box-shadow: var(--inn-shadow-lg);
  transition-delay: 0s;
}

@keyframes inn-home-booking-peek {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(calc(100% - 220px));
  }
}

.inn-home-hero .bw-card-header,
.inn-home-hero .bw-card-body {
  opacity: 1;
  animation: none;
}

.inn-home-hero .bw-card-header {
  padding: 20px 24px;
  background: var(--bw-bg);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: padding-left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) 1.5s;
}

.inn-home-hero .bw-card:hover .bw-card-header,
.inn-home-hero .bw-card.is-active .bw-card-header,
.inn-home-hero .bw-card:focus-within .bw-card-header {
  padding-left: 100px;
  transition-delay: 0s;
}

.inn-home-hero .bw-card .bw-bird-icon {
  width: 36px;
  height: 22px;
  color: var(--bw-navy);
}

.inn-home-hero .bw-card-header h3 {
  margin: 0;
  font-family: var(--bw-font-heading);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--bw-text);
}

.inn-home-hero .bw-card-body {
  padding: 0 24px 28px;
}

.inn-home-hero .bw-card-body-inner {
  padding-top: 18px;
  border-top: 1px solid var(--bw-border);
}

.inn-home-hero .bw-price {
  margin-bottom: 12px;
  font-family: var(--bw-font-body);
  color: var(--bw-text-muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.inn-home-hero .bw-price strong {
  font-family: var(--bw-font-heading);
  color: var(--bw-text);
  font-size: 18px;
  font-weight: 600;
  margin: 0 2px;
  vertical-align: -1px;
}

.inn-home-hero .bw-date-label {
  margin-bottom: 6px;
  font-family: var(--bw-font-body);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 12px;
  color: var(--bw-text);
  font-weight: 500;
}

.inn-home-hero .bw-card .bw-date-picker {
  display: flex;
  align-items: center;
  background: var(--bw-bg-input);
  border: 1px solid var(--bw-border);
  margin-bottom: 20px;
  border-radius: var(--inn-radius-sm);
  overflow: hidden;
}

.inn-home-hero .bw-card .bw-date-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 0;
  font-family: var(--bw-font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--bw-navy);
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.inn-home-hero .bw-card .bw-date-input::placeholder {
  color: #999;
  opacity: 1;
}

.inn-home-hero .bw-card .bw-date-input.bw-checkin:not(:placeholder-shown) {
  background: rgba(13, 42, 61, 0.1);
  color: #0d2a3d;
  font-weight: 600;
  box-shadow: inset 0 -2px 0 #0d2a3d;
}

.inn-home-hero .bw-card .bw-date-input.bw-checkout:not(:placeholder-shown) {
  background: rgba(140, 94, 0, 0.12);
  color: #5c3f0d;
  font-weight: 600;
  box-shadow: inset 0 -2px 0 #8c5e00;
}

.inn-home-hero .bw-card .bw-date-arrow {
  color: var(--bw-text-muted);
  font-size: 14px;
  flex: 0 0 30px;
  text-align: center;
}

.inn-home-hero .bw-card .bw-inquiry-btn {
  margin-top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--bw-text);
  background: transparent;
  color: var(--bw-text);
  text-decoration: none;
  font-family: var(--bw-font-heading);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 400;
  padding: 14px 20px;
  transition: var(--inn-transition-base);
  border-radius: var(--inn-radius-sm);
}

.inn-home-hero .bw-card .bw-inquiry-btn:hover {
  background: var(--bw-text);
  color: #fff;
  opacity: 1;
  transform: translateY(-1px);
}

.inn-home-hero .bw-contact {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--bw-border);
  font-size: 13px;
  color: var(--bw-text-muted);
  text-align: center;
  font-family: var(--bw-font-body);
}

.inn-home-hero .bw-contact a {
  color: var(--bw-text);
  text-decoration: none;
  font-weight: 500;
}

.inn-home-hero .bw-contact a:hover {
  text-decoration: underline;
}

/* Stronger check-in/check-out state in Flatpickr */
body.home .flatpickr-calendar {
  border: 1px solid rgba(13, 42, 61, 0.2);
  box-shadow: var(--inn-shadow-lg);
  border-radius: var(--inn-radius-md);
}

body.home .flatpickr-calendar.open .flatpickr-day.selected:not(.startRange):not(.endRange),
body.home .flatpickr-calendar.open .flatpickr-day.selected:not(.startRange):not(.endRange):hover,
body.home .flatpickr-calendar.open .flatpickr-day.startRange,
body.home .flatpickr-calendar.open .flatpickr-day.startRange:hover {
  background: #0d2a3d !important;
  border-color: #0d2a3d !important;
  color: #fff !important;
  box-shadow: 0 0 0 2px rgba(13, 42, 61, 0.24) inset;
}

body.home .flatpickr-calendar.open .flatpickr-day.endRange,
body.home .flatpickr-calendar.open .flatpickr-day.endRange:hover {
  background: #8c5e00 !important;
  border-color: #8c5e00 !important;
  color: #fff !important;
  box-shadow: 0 0 0 2px rgba(140, 94, 0, 0.28) inset;
}

body.home .flatpickr-calendar.open .flatpickr-day.inRange {
  background: rgba(13, 42, 61, 0.12) !important;
  border-color: transparent !important;
  color: #1a2d3d !important;
  box-shadow: none !important;
}

body.home .flatpickr-calendar.open .flatpickr-months {
  background: #0d2a3d;
  border-radius: var(--inn-radius-md) var(--inn-radius-md) 0 0;
}

body.home .flatpickr-calendar.open .flatpickr-current-month,
body.home .flatpickr-calendar.open .flatpickr-current-month input.cur-year,
body.home .flatpickr-calendar.open .flatpickr-weekday,
body.home .flatpickr-calendar.open .flatpickr-prev-month,
body.home .flatpickr-calendar.open .flatpickr-next-month {
  color: #fff !important;
  fill: #fff !important;
}

/* Quick facts are relocated under intro via JS. */
.inn-home-quick-facts {
  display: none !important;
}

/* Consolidation safety: prevent reveal stacks from leaving homepage blocks hidden. */
html[data-theme="v5"] body.home .inn-home-intro .section-two-column-text-image__content,
html[data-theme="v5"] body.home .inn-home-intro .section-two-column-text-image__image,
html[data-theme="v5"] body.home .inn-home-testimonial .section-testimonial__content,
html[data-theme="v5"] body.home .inn-home-testimonial .section-testimonial__content > *,
html[data-theme="v5"] body.home .inn-home-split .section-card-grid__card,
html[data-theme="v5"] body.home .inn-home-area .section-card-grid__card,
html[data-theme="v5"] body.home .inn-home-news .section-blog-listing__item,
html[data-theme="v5"] body.home .inn-home-about .section-two-column-text-image__content,
html[data-theme="v5"] body.home .inn-home-about .section-two-column-text-image__image,
html[data-theme="v5"] body.home .inn-home-cta .section-cta__content {
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

/* Intro */
.inn-home-intro {
  padding-top: 80px;
  padding-bottom: 64px;
  background: #fff;
  position: relative;
  z-index: 240;
}

html[data-theme="v5"] body.home #intro.inn-home-intro {
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 0 !important;
  padding-top: var(--inn-space-hero-intro) !important;
  padding-bottom: 0 !important;
}

html[data-theme="v5"] #intro.inn-home-intro .section__container {
  max-width: min(1440px, 100%);
  margin: 0 auto;
  padding-inline: 0 !important;
}

html[data-theme="v5"] #intro.inn-home-intro .section-two-column-text-image__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
  justify-content: end;
}

@media (min-width: 1200px) {
  html[data-theme="v5"] #intro.inn-home-intro .section-two-column-text-image__grid {
    grid-template-columns: 594px 660px;
    gap: 86px;
  }
}

html[data-theme="v5"] #intro.inn-home-intro .section-two-column-text-image__content {
  max-width: 700px;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.inn-home-intro .section-two-column-text-image__content h2 {
  font-family: 'Aboreto', serif;
  text-transform: none;
  letter-spacing: normal;
  color: var(--inn-navy-deep);
  font-size: clamp(2rem, 2.68vw, 2.28rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

.inn-home-intro .section-two-column-text-image__content p {
  color: var(--inn-text);
  font-family: 'Work Sans', sans-serif;
  font-size: 1.05rem;
  line-height: 1.6;
}

html[data-theme="v5"] #intro.inn-home-intro .btn-group {
  display: none !important;
}

html[data-theme="v5"] #intro.inn-home-intro .inn-home-intro-facts-grid {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 26px;
  width: 100%;
  max-width: 760px;
  align-self: stretch;
}

html[data-theme="v5"] #intro.inn-home-intro .inn-home-intro-fact {
  position: relative;
  margin: 0 !important;
  padding: 0 0 0 18px !important;
  min-height: 42px;
  display: block !important;
  align-items: flex-start !important;
  font-size: inherit !important;
  color: inherit !important;
  line-height: 1.4 !important;
}

html[data-theme="v5"] #intro.inn-home-intro .inn-home-intro-fact::before {
  content: '\2022';
  position: absolute;
  left: 0;
  top: 0.12em;
  color: var(--inn-cream-2);
  font-size: 1.15em;
  line-height: 1;
}

html[data-theme="v5"] #intro.inn-home-intro .inn-home-intro-fact-label {
  display: block;
  margin-bottom: 2px;
  font-family: 'Aboreto', serif;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--inn-navy-deep);
  font-weight: 400;
}

html[data-theme="v5"] #intro.inn-home-intro .inn-home-intro-fact-value {
  display: block;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.42;
  color: var(--inn-text);
  margin: 0 !important;
}

html[data-theme="v5"] #intro.inn-home-intro .section-two-column-text-image__image {
  width: 100%;
  max-width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  justify-self: stretch;
  align-self: stretch;
  min-height: 450px;
  height: auto;
}

html[data-theme="v5"] #intro.inn-home-intro .section-two-column-text-image__image img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  aspect-ratio: auto;
  border-radius: var(--inn-radius-md);
  box-shadow: var(--inn-shadow-md);
  transition: transform var(--inn-transition-base), box-shadow var(--inn-transition-base);
}

html[data-theme="v5"] #intro.inn-home-intro .section-two-column-text-image__image img:hover {
    transform: translateY(-2px);
    box-shadow: var(--inn-shadow-lg);
}

.inn-home-intro .btn-group .btn {
  background: var(--inn-gold);
  color: #132b3d;
  border: 1px solid var(--inn-gold-dark);
  font-family: 'Work Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 11px 19px;
  border-radius: var(--inn-radius-sm);
  transition: var(--inn-transition-base);
}

.inn-home-intro .btn-group .btn:hover {
  background: var(--inn-gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--inn-shadow-sm);
}

/* Rooms + bars */
.inn-home-rooms {
  padding-top: 26px;
  padding-bottom: 14px;
  background: #fff;
}

html[data-theme="v5"] body.home #rooms.inn-home-rooms {
  margin-top: 0 !important;
  padding-top: var(--inn-space-intro-rooms) !important;
  padding-bottom: 18px;
}

.inn-home-rooms .section__header {
  text-align: left;
  margin-bottom: 24px;
  align-items: flex-start;
}

html[data-theme="v5"] body.home #rooms.inn-home-rooms .section__header {
  margin-top: 0 !important;
  margin-bottom: var(--inn-space-rooms-header-gap);
  max-width: min(1260px, calc(100% - 56px));
  margin-inline: auto;
  padding-left: clamp(8px, 2vw, 32px);
}

.inn-home-rooms .section__header h2 {
  font-family: 'Aboreto', serif;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  color: var(--inn-navy-deep);
}

html[data-theme="v5"] body.home #rooms.inn-home-rooms .section__header h2 {
  margin: 0 !important;
  line-height: 1.08;
}

.inn-home-rooms .section__header .heading-group__eyebrow {
  font-family: 'Arapey', serif;
  color: var(--inn-muted);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.05rem;
}

html[data-theme="v5"] body.home #rooms.inn-home-rooms .section__header .heading-group__eyebrow {
  margin: 0 0 10px !important;
  line-height: 1.2;
  display: block;
  text-align: left;
}

.inn-home-rooms .section-card-grid__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

html[data-theme="v5"] body.home #rooms.inn-home-rooms > .section__container:last-child {
  max-width: 1400px;
  margin-inline: auto;
}

.inn-home-rooms .section-card-grid__card {
  display: flex;
  flex-direction: column;
  padding: 5px;
  border: 1px solid #dfd2bb;
  border-radius: 0;
  background: #fdfaf4;
  box-shadow: 0 10px 24px rgba(5, 19, 30, 0.07);
  overflow: hidden;
}

.inn-home-rooms .section-card-grid__image {
  display: block;
  margin: 0;
}

.inn-home-rooms .section-card-grid__image a {
  display: block;
}

.inn-home-rooms .section-card-grid__image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.inn-home-rooms .section-card-grid__content {
  padding: 16px 18px 18px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
}

.inn-home-rooms .section-card-grid__title,
.inn-home-rooms .section-card-grid__title a {
  font-family: 'Arapey', serif;
  font-size: 1.33rem;
  line-height: 1.2;
  color: #17364b;
  margin-bottom: 8px;
}

.inn-home-rooms .section-card-grid__text {
  color: #334d5d;
  font-size: 0.93rem;
  line-height: 1.55;
  margin-bottom: 14px;
}

.inn-home-rooms .inn-home-room-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 16px;
}

.inn-home-rooms .inn-home-room-icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  border: none;
  background: transparent;
  color: #1f435a;
}

.inn-home-rooms .inn-home-room-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.inn-home-rooms .section-card-grid__button {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.inn-home-rooms .section-card-grid__button .btn {
  background: transparent !important;
  border: 0 !important;
  color: #103c57 !important;
  padding: 0 !important;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-bottom: 1px solid #103c57 !important;
}

/* Match exported home.html section rhythm exactly on homepage flow */
html[data-theme="v5"] body.home .entry-content > #intro.inn-home-intro {
  margin-top: 70px !important;
}

html[data-theme="v5"] body.home .entry-content > #rooms.inn-home-rooms {
  margin-top: 70px !important;
  padding-top: 0 !important;
}

html[data-theme="v5"] body.home .entry-content > .bw-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  width: calc(100% - 74px);
  max-width: 1366px;
  margin: 0 auto !important;
  padding: 30px 60px;
  box-sizing: border-box;
  background: #faf8f5;
  border: 1px solid #e5e2dc;
  border-radius: 0;
  color: #242448;
  box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.1);
}

html[data-theme="v5"] body.home .entry-content > .bw-bar .bw-bar-heading h3 {
  margin: 0;
  font-family: 'Arapey', serif;
  font-size: 32px;
  font-style: italic;
  letter-spacing: normal;
  line-height: 38.4px;
  color: #0d2a3d;
}

html[data-theme="v5"] body.home .entry-content > .bw-bar .bw-bar-center {
  flex: 1;
  max-width: 500px;
}

html[data-theme="v5"] body.home .entry-content > .bw-bar .bw-bar-price {
  margin: 0 0 8px;
  color: #6b6b7b;
  font-size: 16px;
}

html[data-theme="v5"] body.home .entry-content > .bw-bar .bw-bar-price strong {
  color: #242448;
  font-size: 16px;
  font-weight: 700;
}

html[data-theme="v5"] body.home .entry-content > .bw-bar .bw-date-picker {
  display: flex;
  align-items: center;
  border: 1px solid #e5e2dc;
  background: #fff;
  padding: 0;
  gap: 0;
  margin: 0;
  height: 40px;
  box-sizing: border-box;
}

html[data-theme="v5"] body.home .entry-content > .bw-bar .bw-date-input {
  border: none;
  outline: none;
  box-shadow: none;
  background: transparent;
  padding: 0 18px !important;
  width: 149px;
  min-width: 0;
  flex: 0 0 149px;
  height: 38px !important;
  line-height: 38px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: #0d2a3d;
  box-sizing: border-box;
}

html[data-theme="v5"] body.home .entry-content > .bw-bar .bw-date-input::placeholder {
  color: #7d8f9b;
  opacity: 1;
}

html[data-theme="v5"] body.home .entry-content > .bw-bar .bw-date-input.bw-checkin {
  border-right: 1px solid #e5e2dc;
  background-image: none;
}

html[data-theme="v5"] body.home .entry-content > .bw-bar .bw-date-input.bw-checkout {
  border-left: 1px solid #e5e2dc;
}

html[data-theme="v5"] body.home .entry-content > .bw-bar .bw-date-arrow {
  padding: 12px 25px;
  color: #8d938f;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
}

html[data-theme="v5"] body.home .entry-content > .bw-bar .bw-bar-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

html[data-theme="v5"] body.home .entry-content > .bw-bar .bw-inquiry-btn {
  margin: 0;
  width: 330px;
  min-width: 330px;
  padding: 14px 20px;
  border: 1px solid #242448;
  background: transparent;
  color: #242448;
  font-family: 'Aboreto', serif;
  font-size: 13px;
  letter-spacing: 1.56px;
  text-transform: uppercase;
}

html[data-theme="v5"] body.home .entry-content > .bw-bar .bw-contact {
  margin: 0;
  padding: 0;
  text-align: right;
  font-size: 13px;
  line-height: 19.5px;
  color: #6b6b7b;
}

html[data-theme="v5"] body.home .entry-content > .bw-bar .bw-contact a {
  color: #6b6b7b;
  font-weight: 400;
}

html[data-theme="v5"] body.home .entry-content > #testimonial.inn-home-testimonial {
  margin-top: 0 !important;
}

html[data-theme="v5"] body.home .entry-content > #breakfast-and-grounds.inn-home-split,
html[data-theme="v5"] body.home .entry-content > #things-to-do.inn-home-area,
html[data-theme="v5"] body.home .entry-content > #latest-news.inn-home-news {
  margin-top: 70px !important;
  padding-top: 80px !important;
}

html[data-theme="v5"] body.home .entry-content > #about.inn-home-about {
  margin-top: 0 !important;
}

html[data-theme="v5"] body.home .entry-content > #book-today.inn-home-cta {
  margin-top: 96px !important;
  min-height: 80svh !important;
  height: 80svh !important;
  max-height: 720px;
  position: relative;
}

.inn-home-rooms + .wp-block-shortcode,
.inn-home-cta + .wp-block-shortcode {
  max-width: 1240px;
  margin: 8px auto 56px;
  padding: 0 30px;
}

.inn-home-cta + .wp-block-shortcode {
  margin-top: -78px;
  position: relative;
  z-index: 3;
  margin-bottom: 82px;
}

.inn-home-rooms + .wp-block-shortcode .bw-bar,
.inn-home-cta + .wp-block-shortcode .bw-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: var(--inn-cream);
  border: 1px solid var(--inn-cream-2);
  border-radius: 0;
  padding: 18px 22px;
  box-shadow: 0 14px 30px rgba(9, 24, 33, 0.14);
}

.inn-home-rooms + .wp-block-shortcode .bw-bar-title,
.inn-home-cta + .wp-block-shortcode .bw-bar-title {
  font-family: 'Aboreto', serif;
  font-size: 1rem;
  letter-spacing: 0.07em;
  color: #163c54;
}

.inn-home-rooms + .wp-block-shortcode .bw-bar-center,
.inn-home-cta + .wp-block-shortcode .bw-bar-center {
  flex: 1;
  max-width: 520px;
}

.inn-home-rooms + .wp-block-shortcode .bw-bar-price,
.inn-home-cta + .wp-block-shortcode .bw-bar-price {
  margin-bottom: 8px;
  color: #516874;
  font-size: 0.88rem;
}

.inn-home-rooms + .wp-block-shortcode .bw-bar-price strong,
.inn-home-cta + .wp-block-shortcode .bw-bar-price strong {
  color: #17364b;
  font-size: 1.08rem;
}

.inn-home-rooms + .wp-block-shortcode .bw-bar-right,
.inn-home-cta + .wp-block-shortcode .bw-bar-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.inn-home-rooms + .wp-block-shortcode .bw-bar .bw-inquiry-btn,
.inn-home-cta + .wp-block-shortcode .bw-bar .bw-inquiry-btn {
  margin: 0;
  width: auto;
  min-width: 230px;
  padding-inline: 22px;
}

.inn-home-rooms + .wp-block-shortcode .bw-bar .bw-contact,
.inn-home-cta + .wp-block-shortcode .bw-bar .bw-contact {
  margin: 0;
  text-align: right;
}

/* Testimonial */
.inn-home-testimonial {
  height: 80vh;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}

.inn-home-testimonial .section-testimonial__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.inn-home-testimonial .section-testimonial__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: brightness(0.82) saturate(0.9);
}

.inn-home-testimonial .section-testimonial__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.90) 0%, rgba(0, 0, 0, 0.00) 40%);
}

html[data-theme="v5"] body.home #testimonial.inn-home-testimonial .section__container {
  max-width: none;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}

html[data-theme="v5"] body.home #testimonial.inn-home-testimonial .section-testimonial__content {
  width: 90%;
  max-width: 461px;
  margin-left: 10%;
  margin-right: 0;
  padding: 0 0 60px;
  position: relative;
  color: #fff;
}

html[data-theme="v5"] body.home #testimonial.inn-home-testimonial .section-testimonial__stars {
  display: none;
}

html[data-theme="v5"] body.home #testimonial.inn-home-testimonial .section-testimonial__content::before {
  content: "";
  display: block;
  width: 72px;
  height: 58px;
  margin: 0 0 16px;
  background: url(../home-export-assets/quote-b2fd8292.png) no-repeat center center;
  background-size: contain;
  opacity: 1;
  text-shadow: none;
}

html[data-theme="v5"] body.home #testimonial.inn-home-testimonial .section-testimonial__title {
  font-family: 'Aboreto', serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
  max-width: 461px;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

html[data-theme="v5"] body.home #testimonial.inn-home-testimonial .section-testimonial__quote {
  font-family: 'Work Sans', sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
  margin: 0 0 18px;
  max-width: 461px;
  border: 0 !important;
  padding: 0 !important;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

html[data-theme="v5"] body.home #testimonial.inn-home-testimonial .section-testimonial__quote--as-heading {
  font-family: 'Aboreto', serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
  max-width: 461px;
  border: 0 !important;
  padding: 0 !important;
  text-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

html[data-theme="v5"] body.home #testimonial.inn-home-testimonial .section-testimonial__attribution {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 0;
}

html[data-theme="v5"] body.home #testimonial.inn-home-testimonial .section-testimonial__author {
  font-family: 'Arapey', serif;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
  font-style: italic;
  font-size: 26px;
  line-height: 1.2;
  display: inline;
  margin: 0;
}

html[data-theme="v5"] body.home #testimonial.inn-home-testimonial .section-testimonial__source {
  display: none;
  font-family: 'Work Sans', sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.48;
  letter-spacing: 0;
  text-transform: none;
  color: #fff;
  margin: 0 0 16px;
}

html[data-theme="v5"] body.home #testimonial.inn-home-testimonial .section-testimonial__author::before {
  content: "- ";
}

html[data-theme="v5"] body.home #testimonial.inn-home-testimonial .section-testimonial__divider,
html[data-theme="v5"] body.home #testimonial.inn-home-testimonial .section-testimonial__role,
html[data-theme="v5"] body.home #testimonial.inn-home-testimonial .testimonial-location,
html[data-theme="v5"] body.home #testimonial.inn-home-testimonial .section-testimonial__source {
  display: none;
}

@media (max-width: 900px) {
  .inn-home-testimonial {
    height: 80vh;
    min-height: 80vh;
  }

  html[data-theme="v5"] body.home #testimonial.inn-home-testimonial .section__container {
    width: 100%;
    padding: 0;
  }

  html[data-theme="v5"] body.home #testimonial.inn-home-testimonial .section-testimonial__content {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    padding: 0 22px 36px;
  }

  html[data-theme="v5"] body.home #testimonial.inn-home-testimonial .section-testimonial__content::before {
    width: 56px;
    height: 44px;
    margin-bottom: 10px;
  }

  html[data-theme="v5"] body.home #testimonial.inn-home-testimonial .section-testimonial__title,
  html[data-theme="v5"] body.home #testimonial.inn-home-testimonial .section-testimonial__quote--as-heading {
    font-size: 1.75rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  html[data-theme="v5"] body.home #testimonial.inn-home-testimonial .section-testimonial__quote,
  html[data-theme="v5"] body.home #testimonial.inn-home-testimonial .section-testimonial__source {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  html[data-theme="v5"] body.home #testimonial.inn-home-testimonial .section-testimonial__author {
    font-size: 1.625rem;
  }
}

/* Split cards */
.inn-home-split {
  background: #fff;
  padding-top: 46px;
  padding-bottom: 78px;
}

html[data-theme="v5"] body.home .inn-home-split > .section__container {
  max-width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  padding: 0;
}

.inn-home-split .section-card-grid__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.inn-home-split .section-card-grid__card {
  border: 0;
  border-radius: 0;
  overflow: hidden;
  min-height: 438px;
  position: relative;
}

.inn-home-split .section-card-grid__image img {
  height: 438px;
  object-fit: cover;
}

.inn-home-split .section-card-grid__content {
  position: absolute !important;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: min(86%, 520px);
  padding: 26px 26px 24px;
  color: #fff;
  background: linear-gradient(180deg, rgba(10, 37, 56, 0.95) 0%, rgba(11, 43, 63, 0.93) 100%);
  box-shadow: 0 16px 38px rgba(5, 19, 31, 0.32);
  text-align: left;
  display: block;
}

.inn-home-split .section-card-grid__title,
.inn-home-split .section-card-grid__title a,
.inn-home-split .section-card-grid__text {
  color: #fff;
}

.inn-home-split .section-card-grid__title {
  font-family: 'Aboreto', serif;
  letter-spacing: 0.04em;
  font-size: clamp(1.28rem, 1.8vw, 1.72rem);
  margin: 0 0 10px;
  text-transform: none;
}

.inn-home-split .section-card-grid__text {
  font-family: 'Work Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(248, 251, 253, 0.95);
  margin-bottom: 18px;
}

.inn-home-split .section-card-grid__button .btn {
  background: var(--inn-gold) !important;
  color: #142d3f !important;
  border: 1px solid #b98f3f !important;
  padding: 10px 16px !important;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
}

@media (max-width: 900px) {
  .inn-home-split {
    padding-top: 36px;
    padding-bottom: 58px;
  }

  .inn-home-split .section-card-grid__card {
    min-height: 360px;
  }

  .inn-home-split .section-card-grid__image img {
    height: 360px;
  }

  .inn-home-split .section-card-grid__content {
    width: calc(100% - 36px);
    bottom: 16px;
    padding: 20px 18px 18px;
  }

  .inn-home-split .section-card-grid__title {
    font-size: clamp(1.05rem, 5.2vw, 1.4rem);
    margin-bottom: 8px;
  }

  .inn-home-split .section-card-grid__text {
    font-size: 0.95rem;
    margin-bottom: 14px;
  }
}

/* Things to do */
.inn-home-area {
  background: #f5f4f1;
  padding-top: 80px;
  padding-bottom: 80px;
}

html[data-theme="v5"] body.home #things-to-do.inn-home-area > .section__container:first-child {
  max-width: none;
  width: 100%;
  margin: 0 0 50px;
  padding: 40px 22px 0;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

html[data-theme="v5"] body.home #things-to-do.inn-home-area .section__header {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  text-align: left;
}

html[data-theme="v5"] body.home #things-to-do.inn-home-area .section__header h2 {
  font-family: 'Aboreto', serif;
  text-transform: uppercase;
  letter-spacing: 0.048em;
  font-size: clamp(2rem, 3.4vw, 3.2rem);
  line-height: 1.06;
  color: #15384f;
  margin: 0;
  justify-self: start;
  text-align: left;
  align-self: start;
}

html[data-theme="v5"] body.home #things-to-do.inn-home-area .section__header .heading-group__eyebrow {
  order: 2;
  font-family: 'Work Sans', sans-serif;
  font-size: 1.06rem;
  line-height: 1.6;
  color: #445f70;
  letter-spacing: 0.01em;
  text-transform: none;
  max-width: 54ch;
  text-align: left;
  border-left: 1px solid #d1a248;
  padding-left: 20px;
}

html[data-theme="v5"] body.home #things-to-do.inn-home-area > .section__container:last-child {
  max-width: none;
  width: 100%;
  margin: 0;
  padding: 0 22px;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
}

html[data-theme="v5"] body.home #things-to-do.inn-home-area .section-card-grid__grid {
  width: 66%;
  max-width: 75vw;
  margin-left: auto;
  margin-right: 0;
  height: auto;
  display: flex;
  gap: 20px;
  align-items: stretch;
}

html[data-theme="v5"] body.home #things-to-do.inn-home-area .section-card-grid__card {
  flex: 1;
  display: grid;
  grid-template-rows: 1fr auto;
  row-gap: 12px;
  height: 500px;
}

html[data-theme="v5"] body.home #things-to-do.inn-home-area .section-card-grid__card:nth-child(3) {
  flex: 2;
}

.inn-home-area .section-card-grid__card {
  border: 0;
  border-radius: 0;
  overflow: hidden;
  min-height: 0;
  position: relative;
  display: block;
}

html[data-theme="v5"] body.home #things-to-do.inn-home-area .section-card-grid__image {
  position: static;
  margin-bottom: 0;
  height: 100%;
}

html[data-theme="v5"] body.home #things-to-do.inn-home-area .section-card-grid__image > a {
  display: block;
  width: 100%;
  height: 100%;
}

html[data-theme="v5"] body.home #things-to-do.inn-home-area .section-card-grid__image img {
  height: 100%;
  object-fit: cover;
  width: 100%;
  display: block;
  aspect-ratio: auto;
}

html[data-theme="v5"] body.home #things-to-do.inn-home-area .section-card-grid__card:nth-child(1),
html[data-theme="v5"] body.home #things-to-do.inn-home-area .section-card-grid__card:nth-child(2) {
  aspect-ratio: auto;
}

html[data-theme="v5"] body.home #things-to-do.inn-home-area .section-card-grid__card:nth-child(3) {
  grid-column: auto;
  aspect-ratio: auto;
}

html[data-theme="v5"] body.home #things-to-do.inn-home-area .section-card-grid__content {
  position: static;
  inset: auto;
  background: none;
  padding: 0;
  z-index: 2;
}

html[data-theme="v5"] body.home #things-to-do.inn-home-area .section-card-grid__title,
html[data-theme="v5"] body.home #things-to-do.inn-home-area .section-card-grid__title a {
  margin: 0;
  color: #15384f;
  font-family: 'Arapey', serif;
  font-size: 1rem;
}

html[data-theme="v5"] body.home #things-to-do.inn-home-area .section-card-grid__title::after {
  content: '';
  display: block;
  height: 2px;
  width: 100%;
  margin-top: 4px;
  background: #d1a248;
}

html[data-theme="v5"] body.home #things-to-do.inn-home-area .section-card-grid__button {
  display: none;
}

.inn-home-area .section-card-grid__button .btn {
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid #fff !important;
  color: #fff !important;
  padding: 0 !important;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Latest news */
.inn-home-news {
  padding-top: 78px;
  padding-bottom: 92px;
  background: #f8f5ef;
}

html[data-theme="v5"] body.home #latest-news.inn-home-news > .section__container:first-child {
  max-width: min(1320px, calc(100% - 64px));
  margin: 0 auto 24px;
  padding: 0;
}

.inn-home-news .section__header {
  margin: 0;
  text-align: center;
}

.inn-home-news .section__header h2 {
  font-family: 'Aboreto', serif;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: clamp(1.55rem, 2.7vw, 2.4rem);
  color: #163b54;
  margin: 0;
}

html[data-theme="v5"] body.home #latest-news.inn-home-news > .section__container:last-child {
  max-width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  padding: 0;
}

.inn-home-news .section-blog-listing__grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(3, minmax(130px, auto));
  gap: 14px;
}

.inn-home-news .section-blog-listing__item {
  display: grid;
  grid-template-columns: 112px 1fr;
  border: 1px solid #e1d7c7;
  background: #f9f4ea;
  overflow: hidden;
}

.inn-home-news .section-blog-listing__item:nth-child(1) {
  display: block;
  grid-column: 1;
  grid-row: 1 / span 3;
}

.inn-home-news .section-blog-listing__item:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
}

.inn-home-news .section-blog-listing__item:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

.inn-home-news .section-blog-listing__item:nth-child(4) {
  grid-column: 2;
  grid-row: 3;
}

.inn-home-news .section-blog-listing__image {
  margin: 0;
}

.inn-home-news .section-blog-listing__item:nth-child(1) .section-blog-listing__image img {
  width: 100%;
  height: 100%;
  min-height: 450px;
  object-fit: cover;
}

.inn-home-news .section-blog-listing__item:not(:nth-child(1)) .section-blog-listing__image img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.inn-home-news .section-blog-listing__content {
  padding: 14px 16px;
}

.inn-home-news .section-blog-listing__meta {
  margin-bottom: 8px;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #607788;
  line-height: 1.2;
}

.inn-home-news .section-blog-listing__meta span:first-child {
  color: #185173;
}

.inn-home-news .section-blog-listing__title {
  margin: 0 0 6px;
  line-height: 1.2;
}

.inn-home-news .section-blog-listing__title a {
  font-family: 'Aboreto', serif;
  color: #163b54;
  font-size: 1.22rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.inn-home-news .section-blog-listing__item:not(:nth-child(1)) .section-blog-listing__title a {
  font-size: 0.98rem;
}

.inn-home-news .section-blog-listing__excerpt {
  margin: 0;
  color: #3e5a6b;
  font-family: 'Work Sans', sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
}

.inn-home-news .section-blog-listing__item:not(:nth-child(1)) .section-blog-listing__excerpt {
  display: block;
}

.inn-home-news .section-blog-listing__link {
  display: inline-block;
  margin-top: 12px;
  color: #103f5d;
  font-family: 'Work Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7rem;
}

@media (max-width: 1100px) {
  html[data-theme="v5"] body.home #latest-news.inn-home-news > .section__container:first-child,
  html[data-theme="v5"] body.home #latest-news.inn-home-news > .section__container:last-child {
    width: calc(100% - 32px);
    max-width: none;
  }

  .inn-home-news .section-blog-listing__item,
  .inn-home-news .section-blog-listing__item:nth-child(1),
  .inn-home-news .section-blog-listing__item:nth-child(2),
  .inn-home-news .section-blog-listing__item:nth-child(3),
  .inn-home-news .section-blog-listing__item:nth-child(4) {
    grid-template-columns: 104px 1fr;
  }

  .inn-home-news .section-blog-listing__title a {
    font-size: 1rem;
  }

  .inn-home-news .section-blog-listing__item:nth-child(1) .section-blog-listing__title a {
    font-size: 1.06rem;
  }
}

/* About (index-v3 overlay card) */
.inn-home-about {
  background: #fff;
  padding: 100px 0;
  position: relative;
}

html[data-theme="v5"] body.home #about.inn-home-about .section__header {
  display: none !important;
}

html[data-theme="v5"] body.home #about.inn-home-about > .section__container:last-child {
  max-width: min(1400px, calc(100% - 64px));
  margin: 0 auto;
  padding: 0;
}

.inn-home-about .section-two-column-text-image__grid {
  position: relative;
  display: block;
  min-height: 600px;
}

.inn-home-about .section-two-column-text-image__image {
  position: relative;
  width: 68%;
  height: 600px;
  overflow: hidden;
  margin-left: 0;
  margin-right: auto;
  z-index: 1;
}

.inn-home-about .section-two-column-text-image__image.has-gallery .section-two-column-text-image__gallery,
.inn-home-about .section-two-column-text-image__image.has-gallery .section-two-column-text-image__gallery-track {
  width: 100%;
  height: 100%;
}

.inn-home-about .section-two-column-text-image__image.has-gallery .section-two-column-text-image__gallery-track {
  display: block;
}

.inn-home-about .section-two-column-text-image__image.has-gallery .section-two-column-text-image__gallery-slide {
  display: none;
  height: 100%;
}

.inn-home-about .section-two-column-text-image__image.has-gallery .section-two-column-text-image__gallery-slide.is-active,
.inn-home-about .section-two-column-text-image__image.has-gallery .section-two-column-text-image__gallery-slide:first-child {
  display: block;
}

.inn-home-about .section-two-column-text-image__image.has-gallery .section-two-column-text-image__gallery-arrow,
.inn-home-about .section-two-column-text-image__image.has-gallery .section-two-column-text-image__gallery-dots {
  display: none !important;
}

 .inn-home-about .section-two-column-text-image__image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  aspect-ratio: auto;
}

.inn-home-about .section-two-column-text-image__content {
  position: absolute;
  left: 50%;
  top: 100px;
  transform: none;
  width: 576px;
  max-width: calc(100% - 64px);
  background: #01314c;
  color: #fff;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.45);
  z-index: 2;
}

.inn-home-about .section-two-column-text-image__content h2 {
  font-family: 'Aboreto', serif;
  text-transform: none;
  letter-spacing: normal;
  font-size: 40px;
  line-height: 60px;
  font-weight: 700;
  color: #fff;
}

 .inn-home-about .heading-group__eyebrow {
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Work Sans', sans-serif;
  text-transform: none;
  letter-spacing: normal;
  font-size: 1rem;
}

.inn-home-about .section-two-column-text-image__content p {
  color: #f1f7fb;
  font-family: 'Work Sans', sans-serif;
  font-size: 17px;
  line-height: 30.6px;
}

.inn-home-about .btn-group .btn {
  background: var(--inn-gold);
  color: #122e41;
  border: 1px solid #b98f3f;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-family: 'Work Sans', sans-serif;
  font-weight: 600;
  padding: 11px 17px;
}

@media (max-width: 900px) {
  html[data-theme="v5"] body.home #about.inn-home-about > .section__container:last-child {
    width: calc(100% - 32px);
    max-width: none;
  }

  .inn-home-about .section-two-column-text-image__grid {
    min-height: auto;
  }

  .inn-home-about .section-two-column-text-image__image {
    width: 100%;
    height: 400px;
  }

  .inn-home-about .section-two-column-text-image__image img {
    height: 400px;
  }

  .inn-home-about .section-two-column-text-image__content {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    transform: none;
    width: 90%;
    margin: -50px auto 0;
    padding: 28px 22px 30px;
  }
}

/* CTA */
.inn-home-cta {
  min-height: 80svh;
  height: 80svh;
  max-height: 720px;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
  align-items: flex-start;
}

.inn-home-cta .section-cta__background img {
  filter: brightness(0.64) saturate(0.9);
}

.inn-home-cta .section-cta__gradient {
  background: rgba(0, 0, 0, 0.4);
}

html[data-theme="v5"] body.home #book-today.inn-home-cta .section__container {
  max-width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
  height: 0;
  padding: 0;
  position: static;
}

html[data-theme="v5"] body.home .inn-home-cta .section-cta__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  max-width: min(598px, calc(100% - 64px));
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: 34%;
  left: 50%;
  transform: translateX(-50%) !important;
  z-index: 4;
}

.inn-home-cta .section-cta__eyebrow {
  order: 2;
  display: block;
  margin: 0;
  font-family: 'Work Sans', sans-serif;
  text-transform: none;
  letter-spacing: 0.01em;
  font-size: 22px;
  line-height: 30.8px;
  color: rgba(244, 249, 252, 0.95);
  max-width: 598px;
}

.inn-home-cta .section-cta__title {
  order: 1;
  margin: 0;
  font-family: 'Aboreto', serif;
  letter-spacing: normal;
  text-transform: none;
  color: #fff;
  font-size: clamp(3.2rem, 5.6vw, 5rem);
  line-height: 1;
  font-weight: 700;
}

.inn-home-cta .btn-group {
  display: none;
}

/* Center CTA booking bar over the CTA image while keeping source order. */
html[data-theme="v5"] body.home .entry-content > #book-today.inn-home-cta + .bw-bar {
  width: calc(100% - 74px);
  max-width: 1366px;
  margin-top: -340px !important;
  margin-bottom: 120px !important;
  position: relative;
  z-index: 4;
}

/* Remove remaining legacy red button treatments on homepage sections. */
html[data-theme="v5"] body.home .inn-home-about .btn-group .btn,
html[data-theme="v5"] body.home .inn-home-about .btn-group .btn.btn-primary,
html[data-theme="v5"] body.home .inn-home-cta .btn-group .btn,
html[data-theme="v5"] body.home .inn-home-hero .btn-group .btn {
  background: #c9a24f !important;
  color: #142d3f !important;
  border-color: #b98f3f !important;
}

html[data-theme="v5"] body.home .inn-home-about .btn-group .btn:hover,
html[data-theme="v5"] body.home .inn-home-about .btn-group .btn.btn-primary:hover,
html[data-theme="v5"] body.home .inn-home-cta .btn-group .btn:hover,
html[data-theme="v5"] body.home .inn-home-hero .btn-group .btn:hover {
  background: #b98f3f !important;
  border-color: #a67d30 !important;
}

@media (prefers-reduced-motion: reduce) {
  .inn-home-hero .bw-card {
    animation: none;
    opacity: 1;
    transform: translateX(calc(100% - 220px));
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .inn-home-hero .bw-card {
    display: none;
  }

  .inn-home-news .section-blog-listing__grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .inn-home-news .section-blog-listing__item,
  .inn-home-news .section-blog-listing__item:nth-child(1),
  .inn-home-news .section-blog-listing__item:nth-child(2),
  .inn-home-news .section-blog-listing__item:nth-child(3),
  .inn-home-news .section-blog-listing__item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    display: grid;
    grid-template-columns: 120px 1fr;
  }

  .inn-home-news .section-blog-listing__item:nth-child(1) .section-blog-listing__image img {
    min-height: 100%;
  }
}

@media (max-width: 900px) {
  .inn-home-hero,
  .inn-home-quick-facts,
  .inn-home-intro,
  .inn-home-rooms,
  .inn-home-testimonial,
  .inn-home-split,
  .inn-home-area,
  .inn-home-news,
  .inn-home-about,
  .inn-home-cta {
    --inn-space-hero-intro: 20px;
    --inn-space-intro-rooms: 50px;
    --inn-space-rooms-header-gap: 24px;
  }

  .inn-home-intro {
    padding-top: 64px;
    padding-bottom: 52px;
  }

  html[data-theme="v5"] #intro.inn-home-intro .section__container {
    max-width: 100%;
    padding-inline: 20px;
  }

  html[data-theme="v5"] #intro.inn-home-intro .section-two-column-text-image__grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px;
    align-items: start;
  }

  html[data-theme="v5"] #intro.inn-home-intro .section-two-column-text-image__content {
    max-width: none;
    margin: 0 !important;
    padding: 0 !important;
  }

  html[data-theme="v5"] #intro.inn-home-intro .inn-home-intro-facts-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  html[data-theme="v5"] #intro.inn-home-intro .section-two-column-text-image__image {
    width: 100%;
    max-width: 100%;
    margin-right: 0 !important;
    height: auto !important;
  }

  html[data-theme="v5"] #intro.inn-home-intro .section-two-column-text-image__image img {
    height: auto !important;
    min-height: 320px;
    max-height: 460px;
    aspect-ratio: 4 / 3;
  }

  .inn-home-quick-facts {
    margin-top: -30px;
    padding-inline: 20px;
  }

  .inn-home-quick-facts .section-quick-facts__bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  html[data-theme="v5"] body.home .entry-content > .bw-bar {
    box-sizing: border-box;
    width: calc(100% - 32px);
    max-width: 420px;
    margin: 24px auto 28px !important;
    padding: 18px 16px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  html[data-theme="v5"] body.home .entry-content > .bw-bar .bw-bar-heading {
    text-align: center;
  }

  html[data-theme="v5"] body.home .entry-content > .bw-bar .bw-bar-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: none;
  }

  html[data-theme="v5"] body.home .entry-content > .bw-bar .bw-bar-price {
    margin: 0;
  }

  html[data-theme="v5"] body.home .entry-content > .bw-bar .bw-date-picker {
    width: 100%;
    display: flex;
  }

  html[data-theme="v5"] body.home .entry-content > .bw-bar .bw-date-arrow {
    display: none;
  }

  html[data-theme="v5"] body.home .entry-content > .bw-bar .bw-date-input {
    width: 50%;
    flex: 1 1 0;
    min-width: 0;
    padding: 12px 10px;
  }

  html[data-theme="v5"] body.home .entry-content > .bw-bar .bw-bar-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  html[data-theme="v5"] body.home .entry-content > .bw-bar .bw-inquiry-btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }

  html[data-theme="v5"] body.home .entry-content > .bw-bar .bw-contact {
    text-align: center;
  }

  .inn-home-rooms + .wp-block-shortcode .bw-bar,
  .inn-home-cta + .wp-block-shortcode .bw-bar {
    flex-direction: column;
    align-items: stretch;
  }

  .inn-home-rooms + .wp-block-shortcode .bw-bar-right,
  .inn-home-cta + .wp-block-shortcode .bw-bar-right {
    align-items: stretch;
  }

  .inn-home-split .section-card-grid__grid,
  .inn-home-area .section-card-grid__grid {
    grid-template-columns: 1fr;
  }

  .inn-home-rooms .section-card-grid__grid {
    grid-template-columns: 1fr;
  }

  html[data-theme="v5"] body.home #things-to-do.inn-home-area > .section__container:first-child,
  html[data-theme="v5"] body.home #things-to-do.inn-home-area > .section__container:last-child {
    width: calc(100% - 32px);
    max-width: none;
    z-index: auto;
  }

  html[data-theme="v5"] body.home #things-to-do.inn-home-area .section__header {
    display: block;
  }

  html[data-theme="v5"] body.home #things-to-do.inn-home-area .section__header h2 {
    max-width: none;
    margin-bottom: 12px;
    font-size: clamp(1.8rem, 8vw, 2.45rem);
  }

  html[data-theme="v5"] body.home #things-to-do.inn-home-area .section__header .heading-group__eyebrow {
    max-width: none;
    font-size: 0.98rem;
  }

  html[data-theme="v5"] body.home #things-to-do.inn-home-area .section-card-grid__grid {
    width: 100%;
    margin: 0;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  html[data-theme="v5"] body.home #things-to-do.inn-home-area .section-card-grid__card:nth-child(1),
  html[data-theme="v5"] body.home #things-to-do.inn-home-area .section-card-grid__card:nth-child(2),
  html[data-theme="v5"] body.home #things-to-do.inn-home-area .section-card-grid__card:nth-child(3) {
    grid-column: auto;
    aspect-ratio: 4 / 5;
  }

  html[data-theme="v5"] body.home #things-to-do.inn-home-area .section-card-grid__content {
    padding: 14px 12px 14px;
  }

  .inn-home-about .section-two-column-text-image__grid {
    gap: 18px;
  }

  html[data-theme="v5"] body.home .entry-content > #book-today.inn-home-cta {
    min-height: 70svh !important;
    height: 70svh !important;
  }

  html[data-theme="v5"] body.home #book-today.inn-home-cta .section__container {
    width: calc(100% - 32px);
    max-width: none;
    padding-top: clamp(22px, 6vh, 46px);
  }

  .inn-home-cta .section-cta__content {
    gap: 10px;
  }

  .inn-home-cta .section-cta__title {
    font-size: clamp(1.45rem, 6.4vw, 2.2rem);
  }

  .inn-home-cta .section-cta__eyebrow {
    font-size: clamp(0.95rem, 3.8vw, 1.14rem);
    line-height: 1.4;
  }

  html[data-theme="v5"] body.home .entry-content > #book-today.inn-home-cta + .bw-bar {
    width: calc(100% - 32px);
    max-width: 520px;
    margin-top: -120px !important;
    margin-bottom: 80px !important;
  }
}

@media (max-width: 640px) {
  .inn-home-hero,
  .inn-home-quick-facts,
  .inn-home-intro,
  .inn-home-rooms,
  .inn-home-testimonial,
  .inn-home-split,
  .inn-home-area,
  .inn-home-news,
  .inn-home-about,
  .inn-home-cta {
    --inn-space-hero-intro: 16px;
    --inn-space-intro-rooms: 50px;
    --inn-space-rooms-header-gap: 18px;
  }

  html[data-theme="v5"] #intro.inn-home-intro .section__container {
    padding-inline: 16px;
  }

  .inn-home-intro .section-two-column-text-image__content h2 {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
  }

  .inn-home-intro .section-two-column-text-image__content p {
    font-size: 1rem;
    line-height: 1.58;
  }

  html[data-theme="v5"] #intro.inn-home-intro .section-two-column-text-image__image img {
    min-height: 260px;
  }

  .inn-home-hero .section__container {
    padding-top: 110px;
    padding-bottom: 56px;
  }

  .inn-home-rooms + .wp-block-shortcode,
  .inn-home-cta + .wp-block-shortcode {
    padding-inline: 16px;
  }

  .inn-home-news .section-blog-listing__item,
  .inn-home-news .section-blog-listing__item:nth-child(1),
  .inn-home-news .section-blog-listing__item:nth-child(2),
  .inn-home-news .section-blog-listing__item:nth-child(3),
  .inn-home-news .section-blog-listing__item:nth-child(4) {
    grid-template-columns: 96px 1fr;
  }

  .inn-home-news .section-blog-listing__content {
    padding: 10px;
  }

  .inn-home-news .section-blog-listing__title a {
    font-size: 0.95rem;
  }

  html[data-theme="v5"] body.home .entry-content > #book-today.inn-home-cta {
    min-height: 72svh !important;
    height: 72svh !important;
  }

  html[data-theme="v5"] body.home #book-today.inn-home-cta .section__container {
    width: calc(100% - 24px);
    padding-top: clamp(18px, 5vh, 34px);
  }

  .inn-home-cta .section-cta__title {
    font-size: clamp(1.28rem, 8vw, 1.8rem);
    letter-spacing: 0.04em;
  }

  .inn-home-cta .section-cta__eyebrow {
    font-size: 0.95rem;
    line-height: 1.35;
  }

  html[data-theme="v5"] body.home .entry-content > #book-today.inn-home-cta + .bw-bar {
    width: calc(100% - 24px);
    margin-top: calc(-36svh - 116px) !important;
    margin-bottom: 62px !important;
  }
}

/* =========================================
   GEMINI "COOL" & TYPOGRAPHY OVERRIDES
   ========================================= */

/* 1. Design System & Variables */
/* Loaded from tokens.css via :root */

/* 2. Global Typography Reset */
.inn-home-hero h1, .inn-home-hero h2, .inn-home-hero h3,
.inn-home-intro h2, .inn-home-intro h3,
.inn-home-rooms h2, .inn-home-rooms h3,
.inn-home-testimonial blockquote,
.inn-home-split h3, .inn-home-area h3,
.inn-home-news h2, .inn-home-news h3,
.inn-home-about h2, .inn-home-cta h2 {
  font-family: var(--inn-font-heading) !important;
  font-weight: 400 !important;
  line-height: var(--inn-leading-heading) !important;
  color: var(--inn-navy-deep) !important;
}

.inn-home-hero p, .inn-home-intro p,
.inn-home-rooms p, .inn-home-split p,
.inn-home-about p {
  font-family: var(--inn-font-body) !important;
  font-size: var(--inn-size-body) !important;
  line-height: var(--inn-leading-body) !important;
  color: var(--inn-text) !important;
}

/* Eyebrows */
.heading-group__eyebrow, .section-cta__eyebrow {
  font-family: var(--inn-font-accent) !important;
  font-size: var(--inn-size-body) !important;
  color: var(--inn-muted) !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-style: italic !important;
}

/* 3. Hero & Booking Widget */
.inn-home-hero .section-hero__title {
  text-shadow: var(--inn-shadow-text) !important;
}

.inn-home-hero .bw-card {
  /* Glassmorphism */
  background: rgba(250, 248, 245, 0.85) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.4) !important;
  box-shadow: var(--inn-shadow-lg) !important;
  border-radius: var(--inn-radius-md) 0 0 var(--inn-radius-md) !important;
}

/* 4. Room Cards (Lift & Zoom) */
.inn-home-rooms .section-card-grid__card {
  overflow: hidden;
  border: none !important;
  box-shadow: var(--inn-shadow-sm) !important;
  transition: transform var(--inn-transition-hover), box-shadow var(--inn-transition-hover) !important;
}

.inn-home-rooms .section-card-grid__card:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--inn-shadow-lg) !important;
}

.inn-home-rooms .section-card-grid__image img {
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.inn-home-rooms .section-card-grid__card:hover .section-card-grid__image img {
  transform: scale(1.08) !important;
}

/* 5. Testimonial */
.inn-home-testimonial .section-testimonial__quote {
  font-family: var(--inn-font-accent) !important;
  font-style: italic !important;
  font-size: clamp(1.8rem, 4vw, 2.6rem) !important;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3) !important;
}

.inn-home-testimonial:hover .section-testimonial__background img {
  transform: scale(1.05);
  transition: transform 8s ease-out;
}

/* 6. Spacing Rhythm */
html[data-theme="v5"] body.home .entry-content > #intro.inn-home-intro { margin-top: var(--inn-space-hero-intro) !important; }
html[data-theme="v5"] body.home .entry-content > #rooms.inn-home-rooms { margin-top: var(--inn-space-intro-rooms) !important; }
html[data-theme="v5"] body.home .entry-content > #breakfast-and-grounds.inn-home-split,
html[data-theme="v5"] body.home .entry-content > #things-to-do.inn-home-area,
html[data-theme="v5"] body.home .entry-content > #latest-news.inn-home-news { margin-top: var(--inn-space-intro-rooms) !important; }
html[data-theme="v5"] body.home .entry-content > #book-today.inn-home-cta { margin-top: calc(var(--inn-space-intro-rooms) * 1.5) !important; }

/* 7. Mobile Booking Widget */
@media (max-width: 900px) {
  .inn-home-hero .section__container {
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding-bottom: 40px;
  }
  
  body.home .inn-home-hero .bw-card {
    position: relative !important;
    transform: none !important;
    top: auto !important;
    right: auto !important;
    left: auto !important;
    margin: 30px auto 0 !important;
    width: 100% !important;
    max-width: 400px !important;
    animation: none !important;
    opacity: 1 !important;
    border-radius: var(--inn-radius-md) !important;
  }

  .inn-home-hero .section-hero__content {
    padding-top: 80px; 
  }
}

/* =========================================
   SEXY CARDS OVERRIDES
   ========================================= */

/* 1. Room Cards (Classic Luxury with Icons) */
.inn-home-rooms .section-card-grid__card {
  height: 100%;
  background: var(--inn-neutral-100) !important; /* Cream/Surface 100 */
  border: 1px solid var(--inn-neutral-200) !important;
  box-shadow: var(--shadow-sm) !important;
  border-radius: var(--radius-md) !important;
  display: flex;
  flex-direction: column;
}

.inn-home-rooms .section-card-grid__image {
  aspect-ratio: 3/2 !important; /* Landscape */
  width: 100%;
  margin: 0;
  border-bottom: 1px solid var(--inn-neutral-200);
}

.inn-home-rooms .section-card-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.inn-home-rooms .section-card-grid__card:hover .section-card-grid__image img {
  transform: scale(1.05) !important;
}

.inn-home-rooms .section-card-grid__content {
  padding: var(--space-5) !important;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
}

.inn-home-rooms .section-card-grid__title {
  margin-bottom: var(--space-2);
  width: 100%;
}

.inn-home-rooms .section-card-grid__title a {
  font-family: var(--font-heading);
  font-size: 1.3rem !important;
  text-decoration: none;
  color: var(--inn-navy-900);
  display: block;
}

/* New Icon Row Style */
.inn-room-icon-row {
  display: flex;
  gap: 16px;
  margin-bottom: var(--space-3);
  font-size: 0.8rem;
  color: var(--inn-neutral-600);
  width: 100%;
}

.inn-room-icon-row span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.inn-room-icon-row i {
  color: var(--inn-gold-600);
}

.inn-home-rooms .section-card-grid__text {
  font-size: var(--text-sm);
  color: var(--inn-neutral-600);
  margin-bottom: var(--space-4);
  line-height: 1.6;
  max-width: none;
}

.inn-home-rooms .section-card-grid__button {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: flex-start;
}

.inn-home-rooms .btn {
  padding: 10px 0 !important;
  border: none !important;
  border-bottom: 1px solid var(--inn-navy-900) !important;
  border-radius: 0 !important;
  color: var(--inn-navy-900) !important;
  background: transparent !important;
  font-size: 0.75rem !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.inn-home-rooms .btn:hover {
  color: var(--inn-gold-600) !important;
  border-color: var(--inn-gold-600) !important;
  transform: none !important;
}

/* 2. Things to Do / Split Cards (Overlay Style) */
.inn-home-area .section-card-grid__card,
.inn-home-split .section-card-grid__card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md) !important;
  display: flex;
  align-items: flex-end; /* Align content to bottom */
  border: none !important;
}

.inn-home-area .section-card-grid__card {
  aspect-ratio: 4/5 !important;
}

.inn-home-split .section-card-grid__card {
  aspect-ratio: 3/2 !important;
}

.inn-home-area .section-card-grid__image,
.inn-home-split .section-card-grid__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

.inn-home-area .section-card-grid__image img,
.inn-home-split .section-card-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.inn-home-area .section-card-grid__card:hover .section-card-grid__image img,
.inn-home-split .section-card-grid__card:hover .section-card-grid__image img {
  transform: scale(1.08);
}

/* Overlay Gradient */
.inn-home-area .section-card-grid__card::after,
.inn-home-split .section-card-grid__card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 60%);
  z-index: 1;
  pointer-events: none;
}

.inn-home-area .section-card-grid__content,
.inn-home-split .section-card-grid__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--space-6);
  color: var(--inn-neutral-50);
  background: transparent !important;
  border: none !important;
  text-align: left;
}

.inn-home-area .section-card-grid__title,
.inn-home-split .section-card-grid__title {
  margin-bottom: 4px;
}

.inn-home-area .section-card-grid__title a,
.inn-home-split .section-card-grid__title a {
  color: var(--inn-neutral-50) !important;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  text-decoration: none;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.inn-home-split .section-card-grid__text {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  margin-bottom: 12px;
  max-width: 90%;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.inn-home-area .section-card-grid__button,
.inn-home-split .section-card-grid__button {
  margin-top: var(--space-2);
}

.inn-home-area .btn,
.inn-home-split .btn {
  border-color: var(--inn-neutral-50) !important;
  color: var(--inn-neutral-50) !important;
  padding: 10px 20px !important;
  font-size: 0.75rem !important;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.1) !important;
}

.inn-home-area .btn:hover,
.inn-home-split .btn:hover {
  background: var(--inn-neutral-50) !important;
  color: var(--inn-navy-900) !important;
}

/* =========================================
   DESIGN SYSTEM SYNC: CLASSIC ROOMS
   ========================================= */

.inn-home-rooms .section-card-grid__card {
  height: 100%;
  background: var(--inn-neutral-100) !important;
  border: 1px solid var(--inn-neutral-200) !important;
  box-shadow: var(--shadow-sm) !important;
  border-radius: var(--radius-md) !important;
  display: flex;
  flex-direction: column;
  text-align: center; /* Centered */
}

.inn-home-rooms .section-card-grid__image {
  aspect-ratio: 3/2 !important;
  width: 100%;
  margin: 0;
  border-bottom: 1px solid var(--inn-neutral-200);
}

.inn-home-rooms .section-card-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
}

.inn-home-rooms .section-card-grid__content {
  padding: var(--space-6) var(--space-5) !important;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center alignment */
  flex-grow: 1;
}

/* Title with Gold Line */
.inn-home-rooms .section-card-grid__title {
  margin-bottom: 16px;
  width: 100%;
  position: relative;
  padding-bottom: 16px;
}

.inn-home-rooms .section-card-grid__title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 1px;
  background: var(--inn-gold-400);
}

.inn-home-rooms .section-card-grid__title a {
  font-family: var(--font-heading);
  font-size: 1.4rem !important;
  text-decoration: none;
  color: var(--inn-navy-900);
  display: block;
}

/* Text */
.inn-home-rooms .section-card-grid__text {
  font-size: 0.95rem;
  color: var(--inn-neutral-600);
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 90%;
}

/* Icons (Design System Style) */
.inn-room-icon-row {
  display: inline-flex;
  gap: 24px;
  margin-bottom: 24px;
  width: 100%;
  justify-content: center;
}

.inn-room-icon-row .icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.inn-room-icon-row svg { 
  color: var(--inn-navy-900);
  width: 24px;
  height: 24px;
  margin-bottom: 0;
  stroke: currentColor;
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.inn-room-icon-row span {
  font-family: var(--font-heading);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--inn-neutral-600);
  line-height: 1.2;
}

/* Button / Link */
.inn-home-rooms .section-card-grid__button {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.inn-home-rooms .btn {
  padding: 0 0 4px 0 !important;
  border: none !important;
  border-bottom: 1px solid var(--inn-navy-900) !important;
  border-radius: 0 !important;
  color: var(--inn-navy-900) !important;
  background: transparent !important;
  font-family: var(--font-heading) !important;
  font-size: 0.75rem !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  position: relative;
}

.inn-home-rooms .btn:hover {
  color: var(--inn-gold-600) !important;
  border-color: var(--inn-gold-600) !important;
  transform: none !important;
}
