:root {
  --green: #173f35;
  --dark: #0e2c25;
  --gold: #b59155;
  --cream: #f7f4ed;
  --white: #fff;
  --charcoal: #222725;
  --muted: #68726d;
  --border: #e8e4db;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', Arial, sans-serif
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px
}

body {
  margin: 0;
  padding-top: 94px; /* Compensate for fixed site-header height */
  background: var(--cream);
  color: var(--green);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.7
}

h1,
h2,
h3,
p,
figure {
  margin-top: 0
}

h1,
h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.14
}

h1 {
  font-size: clamp(48px, 5.1vw, 76px);
  margin-bottom: 26px
}

.hero-h1-kicker {
  display: block;
  font-family: var(--sans);
  font-size: clamp(12px, 1.25vw, 15px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1.3;
}

h2 {
  font-size: clamp(35px, 3.6vw, 52px);
  margin-bottom: 25px
}

h3 {
  font-size: 18px;
  font-weight: 600
}

em {
  font-weight: 400;
  color: var(--gold)
}

p {
  color: var(--muted)
}

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

button,
a {
  -webkit-tap-highlight-color: transparent
}

button {
  font: inherit
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px
}

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

button {
  cursor: pointer
}

.shell {
  width: min(1220px, calc(100% - 96px));
  margin-inline: auto
}

.section {
  padding-block: 100px
}

.eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--green);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 11px
}

.eyebrow>span:empty {
  height: 5px;
  width: 5px;
  background: var(--gold);
  border-radius: 50%
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  min-height: 54px;
  padding: 14px 25px;
  color: var(--white);
  background: var(--green);
  border: 1px solid var(--green);
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  transition: transform .25s, background .25s, box-shadow .25s
}

.button:hover {
  color: white;
  background: var(--dark);
  transform: translateY(-3px);
  box-shadow: 0 7px 15px #0e2c2520
}

.button i {
  font-size: 12px
}

.button-small {
  min-height: 43px;
  padding: 10px 19px;
  font-size: 12px
}

.text-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  padding-block: 14px
}

.text-link i {
  transition: transform .25s
}

.text-link:hover i {
  transform: translateX(4px)
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -.8px
}

.brand-inn {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 1.7px;
  margin-left: 5px
}

.brand-mark {
  font-size: 21px;
  display: inline-flex;
  width: 37px;
  height: 37px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 6px;
  color: var(--green);
  overflow: hidden;
  position: relative;
  background: var(--cream, #fff);
  flex-shrink: 0;
}

.brand-mark img,
.brand-mark .brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 5px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 50;
  transition: background .3s, box-shadow .3s;
  background: #f7f4edef
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 94px;
  transition: height .3s
}

.site-header.scrolled {
  background: #f7f4edee;
  backdrop-filter: blur(15px);
  box-shadow: 0 3px 20px #0e2c2508
}

/* scroll-padding-top keeps anchor links / scrollIntoView targets below the fixed header */
html {
  scroll-padding-top: 94px;
}

.scrolled .nav-wrap {
  height: 76px
}

.desktop-nav {
  display: flex;
  gap: 27px
}

.desktop-nav a {
  font-size: 12px;
  color: #58675f;
  position: relative;
  padding-block: 10px
}

.desktop-nav a.active,
.desktop-nav a:hover {
  color: var(--green)
}

.desktop-nav a.active:after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
  left: 50%;
  bottom: 0
}

.menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--green);
  width: 44px;
  height: 44px
}

.hero {
  overflow: hidden
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 665px;
  align-items: center;
  gap: 30px
}

.hero-copy {
  padding-block: 46px 55px;
  z-index: 2
}

.lead-copy {
  max-width: 440px;
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 29px
}

.hero-actions {
  display: flex;
  gap: 28px;
  align-items: center
}

.hero-checks {
  display: flex;
  gap: 20px;
  font-size: 10px;
  color: #55645b;
  margin-top: 25px;
  white-space: nowrap
}

.hero-checks i {
  color: var(--gold);
  margin-right: 5px;
  font-size: 10px
}

.hero-note {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 51px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7
}

.hero-note b {
  font-weight: 500;
  color: var(--green)
}

.note-line {
  height: 1px;
  background: var(--gold);
  width: 44px
}

.hero-art {
  position: relative;
  height: 630px
}

.hero-photo {
  position: absolute;
  inset: 34px 4px 60px 58px;
  border-radius: 220px 220px 12px 12px;
  overflow: hidden;
  opacity: .82
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-position: 35% center
}

.hero-photo:after {
  content: '';
  position: absolute;
  inset: 0;
  background: #163c332b
}

.vertical-label {
  position: absolute;
  top: 225px;
  right: -32px;
  writing-mode: vertical-rl;
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--muted)
}

.front-phone {
  position: absolute;
  left: 47px;
  top: 38px;
  transform: rotate(-7deg);
  z-index: 3
}

.rear-phone {
  position: absolute;
  right: 5px;
  top: 123px;
  transform: rotate(10deg);
  z-index: 2
}

.phone {
  width: 255px;
  height: 515px;
  border: 6px solid #26362f;
  border-radius: 38px;
  background: #26362f;
  box-shadow: 0 24px 35px #132e3226, 0 0 0 1px #b4b6ac;
  position: relative;
  text-align: left;
  flex-shrink: 0
}

.phone-screen {
  height: 100%;
  background: #fffdf8;
  border-radius: 31px;
  overflow: hidden;
  position: relative;
  color: var(--green);
  font-family: var(--sans);
  line-height: 1.4
}

.statusbar {
  font-size: 9px;
  height: 36px;
  padding: 11px 17px;
  display: flex;
  justify-content: space-between;
  color: #172e25
}

.island {
  position: absolute;
  top: 8px;
  left: calc(50% - 35px);
  width: 70px;
  height: 18px;
  background: #1b2821;
  border-radius: 20px
}

.app-body {
  padding: 10px 15px 65px
}

.app-welcome {
  font-size: 9px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 13px
}

.sun {
  color: var(--gold)
}

.app-avatar {
  background: #ede9de;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center
}

.app-body h3 {
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: -.6px;
  margin-bottom: 15px
}

.app-search {
  background: #f0eee7;
  font-size: 8px;
  color: #849187;
  padding: 11px;
  border-radius: 7px;
  margin-bottom: 19px
}

.app-search i {
  margin-right: 7px
}

.app-section-title {
  font-size: 8px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 9px
}

.app-section-title span {
  font-size: 7px;
  color: #869085
}

.app-body img {
  width: 100%;
  height: 133px;
  border-radius: 9px;
  margin-bottom: 10px
}

.room-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px
}

.room-title>span {
  font-size: 8px;
  color: #977e47
}

.app-muted {
  font-size: 8px;
  color: #788178;
  margin: 6px 0 10px;
  line-height: 1.8
}

.app-amenities {
  font-size: 8px;
  color: #849085
}

.app-next {
  margin-top: 18px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 7px;
  border-radius: 6px;
  font-size: 7px
}

.app-next>span {
  background: #ecf0e8;
  padding: 6px;
  border-radius: 4px
}

.app-next small {
  display: block;
  font-size: 6px;
  margin-top: 4px;
  color: #819080
}

.app-next>i {
  margin-left: auto;
  font-size: 6px
}

.app-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-around;
  background: #fffdf8;
  border-top: 1px solid #efeee9;
  padding: 12px 8px 19px;
  font-size: 12px;
  color: #95a096
}

.app-nav span:first-child {
  color: var(--green)
}

.app-nav small {
  display: block;
  font-size: 6px;
  margin-top: 4px
}

.app-nav:after {
  content: '';
  position: absolute;
  width: 75px;
  height: 3px;
  border-radius: 3px;
  background: #1c2821;
  bottom: 6px;
  left: calc(50% - 37px)
}

.app-back {
  display: block;
  font-size: 9px;
  margin: 5px 0 20px
}

.app-tabs {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
  font-size: 8px;
  margin: 17px 0;
  color: #899386
}

.app-tabs span {
  padding-bottom: 10px
}

.app-tabs span:first-child {
  border-bottom: 2px solid var(--green);
  color: var(--green)
}

.confirmed {
  font-size: 7px;
  display: inline-block;
  background: #ecf2e9;
  color: var(--green);
  padding: 5px 7px;
  border-radius: 4px;
  margin-top: 10px
}

.date-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-block: 1px solid var(--border);
  margin: 16px 0 12px;
  padding: 12px 0
}

.date-grid>div {
  display: flex;
  flex-direction: column;
  gap: 3px
}

.date-grid>div+div {
  border-left: 1px solid var(--border);
  padding-left: 13px
}

.date-grid small {
  font-size: 6px;
  color: #7d897c;
  letter-spacing: 1px
}

.date-grid b {
  font-size: 15px
}

.date-grid span {
  font-size: 7px;
  color: #7d897c
}

.app-summary {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  margin: 12px 0
}

.app-summary span {
  color: #7d897c
}

.app-solid {
  background: var(--green);
  color: white;
  font-size: 8px;
  padding: 12px;
  margin-top: 17px;
  border-radius: 5px;
  display: flex;
  justify-content: space-between
}

.app-eyebrow {
  font-size: 7px;
  letter-spacing: 1px;
  display: block;
  margin: 12px 0
}

.amenity-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 18px 0;
  font-size: 12px
}

.amenity-grid small {
  display: block;
  font-size: 7px;
  margin-top: 4px
}

.success-symbol {
  margin: 4px auto 15px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #e8eee3;
  display: grid;
  place-items: center;
  font-size: 20px
}

.float-note {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fffdf8;
  padding: 15px 20px;
  border: 1px solid #efeee3;
  border-radius: 8px;
  box-shadow: 0 15px 25px #173f3510;
  position: absolute;
  z-index: 4;
  left: 0;
  bottom: 66px;
  animation: noteFloat 6s ease-in-out infinite
}

.float-note b {
  display: block;
  font-size: 11px
}

.float-note small {
  display: block;
  font-size: 9px;
  color: var(--muted);
  margin-top: 3px
}

.round-check {
  background: #eaf0e5;
  color: var(--green);
  display: grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  font-size: 12px
}

.mockup-caption {
  position: absolute;
  bottom: 12px;
  width: 100%;
  text-align: center;
  font-size: 8px;
  letter-spacing: .5px;
  color: var(--muted)
}

.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding: 27px 0;
  font-size: 9px;
  letter-spacing: 1.5px
}

.hero-bottom a {
  letter-spacing: 0;
  font-size: 11px
}

.hero-bottom i {
  margin-left: 20px
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 110px;
  align-items: center
}

.about-image {
  position: relative
}

.about-image>img {
  height: 445px;
  width: 100%;
  border-radius: 8px;
}

/* Dynamic Room Types Carousel */
.about-room-carousel {
  position: relative;
  width: 100%;
  height: 445px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--green, #173F35);
  box-shadow: 0 14px 34px -10px rgba(23, 63, 53, 0.22);
}

.about-room-carousel .carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
}

.about-room-carousel .carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.55s ease-in-out, transform 0.55s ease-in-out;
  transform: scale(1.02);
}

.about-room-carousel .carousel-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

.about-room-carousel .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-room-carousel .carousel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 63, 53, 0.15) 0%, rgba(23, 63, 53, 0.1) 40%, rgba(12, 33, 28, 0.85) 100%);
  pointer-events: none;
  z-index: 3;
}

/* Elegant Frosted Glass Room Info Card (Bottom-Left) */
.about-room-carousel .slide-caption {
  position: absolute;
  bottom: 22px;
  left: 20px;
  right: auto;
  max-width: calc(100% - 135px);
  z-index: 5;
  color: #fff;
  background: rgba(14, 38, 32, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(199, 166, 106, 0.4);
  box-shadow: 0 10px 30px -4px rgba(0, 0, 0, 0.45);
  pointer-events: auto;
}

.about-room-carousel .slide-tag {
  font-size: 9.5px;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold, #C7A66A);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  line-height: 1;
}

.about-room-carousel .slide-title {
  font-family: var(--serif, 'Playfair Display', serif);
  font-size: 21px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 5px 0;
  line-height: 1.15;
  letter-spacing: -0.2px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.about-room-carousel .slide-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  line-height: 1.35;
}

.about-room-carousel .slide-meta .meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.about-room-carousel .slide-meta .meta-dot {
  color: var(--gold, #C7A66A);
  font-weight: bold;
}

.about-room-carousel .slide-meta .meta-price {
  color: #ffffff;
  font-weight: 500;
}

.about-room-carousel .slide-meta .meta-price strong {
  color: var(--gold, #C7A66A);
  font-weight: 700;
}

.about-room-carousel .carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(23, 63, 53, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  z-index: 5;
  transition: all 0.25s ease;
  opacity: 0;
}

.about-room-carousel:hover .carousel-btn {
  opacity: 1;
}

.about-room-carousel .carousel-btn:hover {
  background: var(--gold, #C7A66A);
  color: var(--green, #173F35);
  transform: translateY(-50%) scale(1.08);
}

.about-room-carousel .prev-btn {
  left: 14px;
}

.about-room-carousel .next-btn {
  right: 14px;
}

/* Indicators (Top-Right Pill) */
.about-room-carousel .carousel-indicators {
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: auto;
  left: auto;
  transform: none;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 6;
  background: rgba(14, 38, 32, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.about-room-carousel .carousel-indicator {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: all 0.28s ease;
}

.about-room-carousel .carousel-indicator.active {
  width: 22px;
  background: var(--gold, #C7A66A);
}

/* Top-Left Tag Pill (Never Collides with Bottom Caption) */
.about-room-carousel .image-label,
.image-label {
  position: absolute;
  top: 18px;
  left: 18px;
  bottom: auto;
  z-index: 6;
  color: #ffffff;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  background: rgba(14, 38, 32, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
}

.about-stamp {
  position: absolute;
  right: -36px;
  bottom: 49px;
  width: 140px;
  height: 140px;
  background: var(--green);
  color: var(--cream);
  padding: 29px 20px;
  border: 6px solid var(--cream);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.25;
  text-align: center;
  transform: rotate(8deg);
  z-index: 7;
}

.about-copy>p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.9
}

.benefits {
  padding-top: 15px
}

.section-top {
  margin-bottom: 50px
}

.benefits .section-top h2 {
  font-size: clamp(30px, 3vw, 43px)
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px
}

.benefit-grid article {
  padding: 0 22px 0 0;
  border-right: 1px solid var(--border)
}

.benefit-grid article:last-child {
  border: 0
}

.feature-icon {
  font-size: 22px;
  color: var(--green);
  margin-bottom: 25px;
  transition: transform .3s
}

.benefit-grid p,
.feature-item p {
  font-size: 13px;
  line-height: 1.8;
  margin: 0
}

.benefit-grid h3 {
  font-size: 16px;
  margin-bottom: 12px
}

.showcase {
  background: #eaece3;
  overflow: hidden
}

.center-head {
  text-align: center;
  max-width: 630px;
  margin: 0 auto 65px
}

.center-head .eyebrow {
  justify-content: center
}

.center-head p:not(.eyebrow) {
  font-size: 14px
}

.showcase-phones {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 62px;
  padding: 10px 0 20px
}

.showcase-item {
  margin: 0
}

.showcase-item .phone {
  box-shadow: 0 25px 35px #132e321c
}

.showcase-item.item-0 {
  transform: rotate(-6deg);
  padding-top: 58px
}

.showcase-item.item-2 {
  transform: rotate(6deg);
  padding-top: 58px
}

.showcase-item.item-1 .phone {
  width: 276px;
  height: 551px
}

.showcase-item.item-1 .app-body img {
  height: 178px
}

.showcase-item figcaption {
  text-align: center;
  font-size: 11px;
  margin-top: 25px
}

.showcase-item figcaption span {
  color: var(--gold);
  margin-right: 8px
}

.screen-disclaimer {
  text-align: center;
  font-size: 10px;
  margin: 35px 0 0
}

.split-heading {
  display: flex;
  justify-content: space-between;
  align-items: end
}

.split-heading>p {
  font-size: 13px;
  line-height: 1.9
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 35px
}

.feature-item {
  border-top: 1px solid #dcded3;
  padding: 28px 5px 33px;
  transition: transform .25s, border-color .25s
}

.feature-item:hover {
  border-color: var(--gold);
  transform: translateY(-4px)
}

.feature-item:hover .feature-icon {
  transform: scale(1.1)
}

.feature-item h3 {
  font-size: 15px;
  line-height: 1.5
}

.feature-item .feature-icon {
  font-size: 21px;
  margin-bottom: 21px
}

.how-section {
  background: #eeeee6
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 45px;
  position: relative
}

.steps:before {
  content: '';
  height: 1px;
  position: absolute;
  left: 15px;
  right: 15px;
  top: 26px;
  background: #d1d6c8;
  transform-origin: left;
  animation: growLine 2s ease-out
}

.step-number {
  position: relative;
  display: grid;
  place-items: center;
  width: 53px;
  height: 53px;
  border-radius: 50%;
  border: 1px solid #c9cfbe;
  background: #eeeee6;
  font-family: var(--serif);
  font-size: 21px;
  color: var(--green);
  margin-bottom: 27px
}

.steps h3 {
  font-size: 18px
}

.steps p {
  font-size: 13px;
  max-width: 240px
}

.spotlight {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 110px;
  border-bottom: 1px solid var(--border)
}

.spotlight:last-child {
  border: 0
}

.spotlight-copy>p:not(.eyebrow) {
  font-size: 14px;
  max-width: 440px;
  line-height: 1.9
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0;
  color: #4a5d51;
  font-size: 12px
}

.check-list li {
  margin: 14px 0;
  display: flex;
  gap: 13px;
  align-items: center
}

.check-list i {
  color: var(--gold);
  font-size: 11px
}

.spotlight-visual {
  background: #e9ebdf;
  border-radius: 140px 140px 10px 10px;
  height: 540px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden
}

.spotlight-visual .phone {
  transform: rotate(5deg) translateY(30px);
  z-index: 2
}

.spotlight-word {
  position: absolute;
  font-family: var(--serif);
  font-size: 88px;
  bottom: 0;
  left: 20px;
  color: #d9decf;
  font-style: italic
}

.reverse .spotlight-visual {
  order: -1;
  background: #eae3d6
}

.reverse .spotlight-visual .phone {
  transform: rotate(-5deg) translateY(30px)
}

.experience {
  height: 530px;
  position: relative;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center
}

.experience>img {
  position: absolute;
  width: 100%;
  height: 115%;
  object-position: center 58%;
  top: -7%
}

.experience-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #102d29bc, #0e2c2520)
}

.experience-copy {
  position: relative;
  z-index: 1
}

.experience .eyebrow {
  color: #e3d8b9
}

.experience h2 {
  font-size: clamp(44px, 5vw, 68px)
}

.experience h2 em {
  color: #e1cca3
}

.experience p:not(.eyebrow) {
  color: #f2f2e9;
  font-size: 14px
}

.experience-caption {
  position: absolute;
  bottom: 30px;
  right: 48px;
  color: #eee9db;
  font-size: 9px;
  letter-spacing: 2px
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 110px
}

.why-photo {
  position: relative
}

.why-photo img {
  height: 490px;
  width: 100%;
  border-radius: 160px 160px 6px 6px
}

.why-photo>span {
  position: absolute;
  bottom: 25px;
  left: 20px;
  font-size: 9px;
  letter-spacing: 1.7px;
  color: white
}

.why-grid .check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  font-size: 12px
}

.reviews {
  background: #eeeee6
}

.sample-label {
  font-size: 11px !important
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px
}

.review-grid figure {
  background: #f9f8f2;
  padding: 32px;
  border: 1px solid #e4e5da;
  border-radius: 7px;
  margin: 0
}

.stars {
  color: var(--gold);
  letter-spacing: 3px;
  font-size: 12px;
  margin-bottom: 25px
}

.review-grid blockquote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.7;
  min-height: 155px
}

.review-grid figcaption {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 11px;
  border-top: 1px solid var(--border);
  padding-top: 22px
}

.review-grid small {
  display: block;
  color: var(--muted);
  font-size: 9px;
  margin-top: 4px
}

.guest-avatar {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  background: #e1e7db;
  display: grid;
  place-items: center;
  font-size: 10px
}

/* Reviews Pagination Controls */
.review-pagination-wrap {
  text-align: center;
  margin-top: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.button-load-reviews {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: transparent;
  color: var(--green, #173F35);
  border: 1.5px solid var(--green, #173F35);
  padding: 12px 30px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.25s ease;
  min-width: 210px;
}

.button-load-reviews:hover {
  background: var(--green, #173F35);
  color: var(--cream, #F4F1EA);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(23, 63, 53, 0.16);
}

.button-load-reviews:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

.reviews-end-notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #556b60;
  background: rgba(23, 63, 53, 0.07);
  padding: 9px 20px;
  border-radius: 20px;
  font-weight: 500;
  border: 1px solid rgba(23, 63, 53, 0.12);
}

.download-section {
  background: var(--green);
  color: var(--cream);
  overflow: hidden
}

.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  min-height: 590px
}

.download-copy {
  padding: 75px 0
}

.download-copy .eyebrow {
  color: #c9b489
}

.download-copy h2 {
  font-size: clamp(43px, 4.5vw, 65px)
}

.download-copy h2 em {
  color: #d4b783
}

.download-copy>p:not(.eyebrow) {
  color: #cfdbcf;
  max-width: 385px;
  font-size: 14px
}

.button-cream {
  background: var(--cream);
  color: var(--green);
  border-color: var(--cream);
  margin-top: 20px
}

.button-cream:hover {
  background: #e2d4b9;
  color: var(--green)
}

.download-status {
  font-size: 11px !important;
  margin: 16px 0 0;
  line-height: 1.8
}

.download-status.highlight {
  outline: 1px solid #c7a66a;
  outline-offset: 8px;
  border-radius: 3px
}

.download-visual {
  height: 550px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: end;
  background: radial-gradient(ellipse, #c7a66a18, transparent 65%)
}

.download-visual .phone {
  width: 277px;
  height: 555px;
  transform: rotate(8deg) translateY(70px)
}

.download-visual .float-note {
  bottom: 66px;
  left: 0;
  color: var(--green)
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px
}

.final-cta h2 {
  font-size: 38px
}

.final-cta>div:last-child {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px
}

.final-cta p:not(.eyebrow) {
  font-size: 13px
}

.site-footer {
  border-top: 1px solid var(--border);
  padding-top: 65px
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 45px;
  padding-bottom: 65px
}

.footer-grid p {
  font-size: 12px;
  margin-top: 18px;
  line-height: 1.9
}

.footer-grid h3 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 20px
}

.footer-grid>div:not(:first-child) a,
.footer-grid button {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin: 12px 0;
  background: none;
  border: 0;
  padding: 0;
  text-align: left
}

.footer-grid i {
  font-size: 9px;
  margin-left: 10px
}

.footer-grid a:hover,
.footer-grid button:hover {
  color: var(--green)
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 23px 0;
  display: flex;
  justify-content: space-between;
  font-size: 9px;
  color: var(--muted)
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  z-index: 80
}

.back-top {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 30;
  width: 42px;
  height: 42px;
  border: 1px solid #d5d9ca;
  background: var(--cream);
  color: var(--green);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s
}

.back-top.visible {
  opacity: 1;
  pointer-events: auto
}

.mobile-cta {
  display: none
}

.skip-link {
  position: fixed;
  left: 10px;
  top: -100px;
  z-index: 100;
  background: white;
  padding: 10px
}

.skip-link:focus {
  top: 10px
}

.preloader {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 90;
  display: grid;
  place-items: center;
  pointer-events: none;
  animation: preloadAway .5s .1s both
}

.preloader span {
  font-family: var(--serif);
  font-size: 32px
}

.offcanvas {
  background: var(--cream);
  color: var(--green);
  max-width: 90%
}

.offcanvas h2 {
  font-size: 28px;
  margin: 0
}

.offcanvas nav {
  display: flex;
  flex-direction: column;
  gap: 15px
}

.offcanvas nav a {
  padding: 12px;
  border-bottom: 1px solid var(--border)
}

dialog {
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 480px;
  width: calc(100% - 40px);
  padding: 40px;
  background: var(--cream);
  color: var(--green)
}

dialog::backdrop {
  background: #0e2c2566;
  backdrop-filter: blur(5px)
}

dialog h2 {
  font-size: 31px
}

dialog p {
  font-size: 14px
}

.dialog-close {
  position: absolute;
  right: 12px;
  top: 7px;
  background: none;
  border: 0;
  font-size: 28px;
  color: var(--green);
  width: 40px;
  height: 40px
}

.dialog-done {
  margin-top: 15px
}

@keyframes noteFloat {
  50% {
    transform: translateY(-7px)
  }
}

@keyframes preloadAway {
  to {
    opacity: 0;
    visibility: hidden
  }
}

@keyframes growLine {
  from {
    transform: scaleX(0)
  }

  to {
    transform: scaleX(1)
  }
}

@media(min-width:1400px) {
  .hero-grid {
    min-height: 730px
  }

  .hero-art {
    transform: scale(1.06)
  }
}

@media(max-width:1100px) {
  .shell {
    width: calc(100% - 64px)
  }

  .desktop-nav {
    gap: 17px
  }

  .desktop-nav a {
    font-size: 11px
  }

  .brand {
    font-size: 22px
  }

  .hero-grid {
    gap: 10px;
    min-height: 620px
  }

  .hero-art {
    transform: scale(.88);
    transform-origin: center right;
    width: 500px;
    margin-left: -65px
  }

  .hero-copy {
    padding-right: 15px
  }

  .hero-checks {
    gap: 10px;
    font-size: 9px
  }

  .hero-actions {
    gap: 15px
  }

  .hero-actions .button {
    padding: 14px 18px
  }

  .about-grid,
  .spotlight,
  .why-grid {
    gap: 70px
  }

  .showcase-phones {
    gap: 37px
  }

  .showcase-item .phone {
    width: 230px;
    height: 486px
  }

  .showcase-item.item-1 .phone {
    width: 255px;
    height: 521px
  }

  .features-grid {
    gap: 0 22px
  }

  .download-grid {
    gap: 40px
  }
}

@media(max-width:900px) {
  .desktop-nav {
    display: none
  }

  .menu-toggle {
    display: block
  }

  .nav-download {
    margin-left: auto;
    margin-right: 15px
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0
  }

  .hero-copy {
    text-align: center;
    padding: 50px 0 0
  }

  .hero-copy .eyebrow,
  .hero-actions,
  .hero-checks {
    justify-content: center
  }

  .lead-copy {
    margin-inline: auto;
    max-width: 500px
  }

  .hero-note {
    display: none
  }

  .hero-art {
    width: 540px;
    margin: auto;
    transform: scale(.93);
    transform-origin: center;
    height: 640px
  }

  .hero h1 {
    font-size: clamp(48px, 7vw, 68px)
  }

  .hero-bottom {
    margin-top: -15px
  }

  .section {
    padding-block: 75px
  }

  .about-grid,
  .why-grid {
    gap: 50px
  }

  .about-image>img,
  .about-room-carousel {
    height: 405px
  }

  .about-stamp {
    width: 115px;
    height: 115px;
    padding: 22px 10px;
    font-size: 20px
  }

  .about-room-carousel .slide-caption {
    max-width: calc(100% - 125px);
    padding: 10px 16px;
  }

  .benefit-grid {
    gap: 20px
  }

  .benefit-grid article {
    padding-right: 15px
  }

  .benefit-grid h3 {
    font-size: 14px
  }

  .benefit-grid p {
    font-size: 12px
  }

  .showcase-phones {
    gap: 22px
  }

  .showcase-item .phone {
    width: 200px;
    height: 430px
  }

  .showcase-item.item-1 .phone {
    width: 222px;
    height: 467px
  }

  .showcase-item .app-body {
    padding: 5px 11px 60px
  }

  .showcase-item .app-body h3 {
    font-size: 20px
  }

  .showcase-item .app-body img {
    height: 110px
  }

  .showcase-item.item-1 .app-body img {
    height: 130px
  }

  .showcase-item .app-back {
    margin-bottom: 12px
  }

  .showcase-item .app-solid {
    margin-top: 10px
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 35px
  }

  .split-heading {
    align-items: start;
    gap: 35px
  }

  .steps {
    gap: 25px
  }

  .spotlight {
    gap: 50px
  }

  .spotlight-visual {
    height: 505px
  }

  .spotlight-visual .phone {
    width: 230px;
    height: 490px
  }

  .why-grid .check-list {
    grid-template-columns: 1fr
  }

  .review-grid {
    gap: 15px
  }

  .review-grid figure {
    padding: 23px
  }

  .review-grid blockquote {
    font-size: 17px;
    min-height: 200px
  }

  .download-visual .phone {
    width: 250px;
    height: 520px
  }

  .download-visual .float-note {
    left: -25px
  }

  .footer-grid {
    gap: 25px;
    grid-template-columns: 1.6fr 1fr 1fr 1fr
  }
}

@media(max-width:600px) {
  .shell {
    width: calc(100% - 40px)
  }

  .nav-wrap {
    height: 78px
  }

  .scrolled .nav-wrap {
    height: 68px
  }

  .brand {
    font-size: 21px;
    gap: 8px
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    font-size: 18px
  }

  .brand-inn {
    font-size: 7px;
    margin-left: 3px
  }

  .nav-download {
    display: none
  }

  .hero-copy {
    padding-top: 33px
  }

  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.7px;
    margin-bottom: 20px
  }

  .hero h1 {
    font-size: clamp(40px, 9.6vw, 57px);
    margin-bottom: 23px
  }

  .lead-copy {
    font-size: 13px;
    line-height: 1.9;
    max-width: 370px
  }

  .hero-actions {
    gap: 13px;
    flex-wrap: wrap
  }

  .hero-actions .button {
    font-size: 12px;
    min-height: 51px;
    padding: 13px 17px
  }

  .text-link {
    font-size: 11px;
    gap: 12px
  }

  .hero-checks {
    font-size: 8px;
    gap: 13px;
    flex-wrap: wrap;
    margin-top: 22px
  }

  .hero-art {
    width: 500px;
    height: 600px;
    left: 50%;
    margin-left: -250px;
    transform: scale(.7);
    transform-origin: 50% 0;
    margin-bottom: -175px;
    margin-top: 35px
  }

  .hero-photo {
    left: 44px;
    right: 0
  }

  .hero-art .front-phone {
    left: 37px
  }

  .vertical-label {
    display: none
  }

  .hero-bottom {
    margin-top: 0;
    padding: 21px 0;
    justify-content: center
  }

  .hero-bottom>span {
    display: none
  }

  .hero-bottom a {
    font-size: 10px
  }

  .section {
    padding-block: 60px
  }

  .about-grid,
  .why-grid,
  .spotlight {
    grid-template-columns: 1fr;
    gap: 36px
  }

  .about-image {
    margin-right: 20px
  }

  .about-image>img,
  .about-room-carousel {
    height: 320px
  }

  .about-stamp {
    width: 82px;
    height: 82px;
    padding: 13px 4px;
    font-size: 13.5px;
    line-height: 1.2;
    border-width: 4px;
    right: -8px;
    bottom: -12px;
  }

  /* Prevent top collision on mobile by hiding decorative label */
  .about-room-carousel .image-label {
    display: none !important;
  }

  /* Center indicators cleanly at the top of the photo on mobile */
  .about-room-carousel .carousel-indicators {
    top: 12px;
    left: 50%;
    right: auto;
    bottom: auto;
    transform: translateX(-50%);
    padding: 4px 8px;
  }

  .about-room-carousel .carousel-btn {
    width: 28px;
    height: 28px;
    font-size: 11px;
    opacity: 0.8;
  }

  .about-room-carousel .prev-btn {
    left: 6px;
  }

  .about-room-carousel .next-btn {
    right: 6px;
  }

  /* Compact, high-contrast, non-overlapping bottom card */
  .about-room-carousel .slide-caption {
    left: 10px;
    bottom: 10px;
    max-width: calc(100% - 86px);
    padding: 8px 12px;
    border-radius: 9px;
  }

  .about-room-carousel .slide-tag {
    font-size: 8px;
    letter-spacing: 1px;
    margin-bottom: 2px;
  }

  .about-room-carousel .slide-title {
    font-size: 15px;
    margin: 0 0 2px 0;
    line-height: 1.15;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .about-room-carousel .slide-meta {
    font-size: 10.5px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    line-height: 1.3;
  }

  .about-room-carousel .slide-meta .meta-pill {
    gap: 4px;
  }

  .about-room-carousel .slide-meta .meta-dot {
    display: none;
  }

  .about-room-carousel .slide-meta .meta-price {
    font-size: 10.5px;
  }

  .about-copy h2 {
    font-size: 38px
  }

  .about-copy>p:not(.eyebrow) {
    font-size: 13px
  }

  .benefits {
    padding-top: 10px
  }

  .section-top {
    margin-bottom: 33px
  }

  .benefits h2 {
    max-width: 340px
  }

  .benefit-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px 20px
  }

  .benefit-grid article {
    border: 0
  }

  .feature-icon {
    font-size: 20px;
    margin-bottom: 16px
  }

  .benefit-grid p {
    font-size: 12px
  }

  .center-head {
    margin-bottom: 40px
  }

  .center-head h2 {
    font-size: 35px
  }

  .center-head p:not(.eyebrow) {
    font-size: 12px
  }

  .showcase-phones {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 10px 20px 25px;
    gap: 25px;
    margin-inline: -20px;
    align-items: start
  }

  .showcase-item {
    scroll-snap-align: center;
    flex-shrink: 0
  }

  .showcase-item.item-0,
  .showcase-item.item-2 {
    transform: none;
    padding-top: 0
  }

  .showcase-item .phone,
  .showcase-item.item-1 .phone {
    width: 230px;
    height: 485px
  }

  .showcase-item .app-body img,
  .showcase-item.item-1 .app-body img {
    height: 130px
  }

  .showcase-item figcaption {
    font-size: 11px;
    margin-top: 20px
  }

  .screen-disclaimer {
    margin-top: 12px;
    font-size: 9px
  }

  .split-heading {
    display: block
  }

  .split-heading>p {
    font-size: 12px
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 0
  }

  .feature-item {
    display: grid;
    grid-template-columns: 38px 1fr;
    gap: 0 10px;
    padding: 23px 0
  }

  .feature-item .feature-icon {
    grid-row: 1/3;
    margin: 3px 0
  }

  .feature-item h3 {
    margin-bottom: 6px
  }

  .feature-item p {
    font-size: 12px
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-left: 0
  }

  .steps:before {
    top: 0;
    bottom: 25px;
    left: 25px;
    right: auto;
    width: 1px;
    height: auto
  }

  .steps article {
    display: grid;
    grid-template-columns: 53px 1fr;
    gap: 0 23px
  }

  .step-number {
    grid-row: 1/3;
    margin: 0
  }

  .steps h3 {
    padding-top: 4px;
    margin-bottom: 7px;
    font-size: 16px
  }

  .steps p {
    margin-bottom: 0;
    max-width: none;
    font-size: 12px
  }

  .spotlight {
    gap: 25px
  }

  .spotlight-visual {
    height: 450px;
    margin-inline: 20px;
    border-radius: 130px 130px 8px 8px
  }

  .spotlight-copy>p:not(.eyebrow) {
    font-size: 13px
  }

  .reverse .spotlight-visual {
    order: 0
  }

  .spotlight-visual .phone {
    width: 230px;
    height: 490px;
    transform: rotate(5deg) translateY(53px)
  }

  .reverse .spotlight-visual .phone {
    transform: rotate(-5deg) translateY(53px)
  }

  .spotlight h2 {
    font-size: 37px
  }

  .experience {
    height: 420px
  }

  .experience h2 {
    font-size: 42px
  }

  .experience .experience-copy>p:not(.eyebrow) {
    font-size: 12px
  }

  .experience-caption {
    right: 20px;
    font-size: 7px
  }

  .why-photo img {
    height: 355px
  }

  .why-grid>div:last-child>p:not(.eyebrow) {
    font-size: 13px
  }

  .why-grid .check-list {
    grid-template-columns: 1fr 1fr;
    font-size: 10px;
    gap: 0 15px
  }

  .why-grid .check-list li {
    align-items: start
  }

  .why-grid .check-list i {
    margin-top: 4px
  }

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

  .review-grid figure {
    padding: 26px
  }

  .review-grid blockquote {
    font-size: 19px;
    min-height: 0
  }

  .stars {
    margin-bottom: 16px
  }

  .review-grid figcaption {
    padding-top: 16px
  }

  .download-grid {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center
  }

  .download-copy {
    padding: 58px 0 10px
  }

  .download-copy .eyebrow {
    justify-content: center
  }

  .download-copy>p:not(.eyebrow) {
    margin-inline: auto;
    font-size: 13px
  }

  .download-copy h2 {
    font-size: 45px
  }

  .download-visual {
    height: 470px
  }

  .download-visual .phone {
    transform: rotate(7deg) translateY(60px)
  }

  .download-visual .float-note {
    bottom: 50px;
    left: 0;
    text-align: left
  }

  .final-cta {
    display: block;
    text-align: center
  }

  .final-cta .eyebrow {
    justify-content: center
  }

  .final-cta h2 {
    font-size: 34px
  }

  .final-cta>div:last-child {
    margin-top: 25px
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px 15px;
    padding-bottom: 35px
  }

  .footer-grid>div:first-child {
    grid-column: 1/-1
  }

  .footer-grid p {
    font-size: 12px
  }

  .footer-grid h3 {
    font-size: 10px
  }

  .footer-grid>div:not(:first-child) a,
  .footer-grid button {
    font-size: 10px;
    min-height: 26px
  }

  .footer-grid i {
    font-size: 7px;
    margin-left: 3px
  }

  .footer-bottom {
    font-size: 8px;
    gap: 15px;
    padding-bottom: 90px
  }

  .footer-bottom>span:last-child {
    display: none
  }

  .mobile-cta {
    position: fixed;
    bottom: 12px;
    left: 20px;
    right: 20px;
    z-index: 35;
    min-height: 48px;
    box-shadow: 0 6px 25px #0e2c2533;
    transform: translateY(90px);
    transition: transform .3s;
    display: flex
  }

  .mobile-cta.visible {
    transform: translateY(0)
  }

  .back-top {
    right: 15px;
    bottom: 78px;
    width: 37px;
    height: 37px
  }

  .mockup-caption {
    font-size: 10px
  }

  .offcanvas {
    width: 310px !important
  }
}

@media(max-width:360px) {
  .shell {
    width: calc(100% - 32px)
  }

  .hero-art {
    transform: scale(.59);
    margin-bottom: -242px
  }

  .hero-checks {
    font-size: 7px;
    gap: 8px
  }

  .hero-actions {
    gap: 8px
  }

  .hero-actions .button {
    font-size: 11px;
    padding: 12px 14px
  }

  .hero-actions .text-link {
    font-size: 10px
  }

  .why-grid .check-list {
    grid-template-columns: 1fr
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior: auto
  }

  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important
  }

  .preloader {
    display: none
  }

  [data-aos] {
    opacity: 1 !important;
    transform: none !important
  }
}

/* Readable page typography and real app screenshots. */
:root {
  --muted: #4e5e55;
  --gold: #8a672e
}

body {
  font-size: 16px
}

.eyebrow {
  font-size: 12px;
  line-height: 1.6
}

.desktop-nav a,
.button-small,
.text-link {
  font-size: 14px
}

.button {
  font-size: 15px
}

.lead-copy,
.about-copy>p:not(.eyebrow),
.spotlight-copy>p:not(.eyebrow),
.split-heading>p,
.center-head p:not(.eyebrow),
.download-copy>p:not(.eyebrow),
.experience p:not(.eyebrow),
.final-cta p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.8
}

.benefit-grid p,
.feature-item p,
.steps p,
.check-list,
.footer-grid p {
  font-size: 15px;
  line-height: 1.75
}

.benefit-grid h3,
.feature-item h3,
.steps h3 {
  font-size: 18px
}

.hero-checks,
.hero-note,
.hero-bottom,
.hero-bottom a,
.screen-disclaimer,
.mockup-caption,
.showcase-item figcaption,
.sample-label,
.review-grid small,
.footer-grid h3,
.footer-bottom,
.download-status {
  font-size: 13px !important;
  line-height: 1.7
}

.footer-grid>div:not(:first-child) a,
.footer-grid button {
  font-size: 14px;
  min-height: 32px
}

.hero-checks {
  white-space: normal;
  flex-wrap: wrap;
  gap: 10px 18px
}

.float-note b {
  font-size: 14px
}

.float-note small {
  font-size: 12px
}

.review-grid figcaption {
  font-size: 14px
}

.review-grid blockquote {
  min-height: 0
}

.image-label,
.why-photo>span,
.experience-caption {
  font-size: 12px;
  background: #0e2c25e8;
  padding: 8px 12px;
  border-radius: 4px;
  max-width: 90%
}

.screenshot-phone {
  display: block;
  padding: 0;
  width: 255px;
  height: auto !important;
  aspect-ratio: 1080/2460;
  border: 5px solid #26362f;
  border-radius: 25px;
  overflow: hidden;
  background: #fff;
  position: relative;
  line-height: 0
}

.screenshot-phone>img {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: contain;
  border-radius: 0
}

.enlarge-hint {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: #173f35;
  color: white;
  padding: 9px 12px;
  border-radius: 5px;
  font: 600 12px/1.2 var(--sans);
  white-space: nowrap;
  opacity: 0;
  transition: opacity .2s
}

.screenshot-phone:hover .enlarge-hint,
.screenshot-phone:focus-visible .enlarge-hint {
  opacity: 1
}

.showcase-phones {
  justify-content: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 30px;
  padding: 20px 15px 35px
}

.showcase-item {
  flex: none;
  scroll-snap-align: center;
  padding-top: 0 !important;
  transform: none !important;
  width: 275px
}

.showcase-item .phone,
.showcase-item.item-1 .phone {
  width: 275px;
  height: auto !important
}

.showcase-item figcaption {
  margin-top: 18px
}

.spotlight-visual {
  height: 660px
}

.spotlight-visual .phone {
  width: 260px;
  transform: rotate(2deg)
}

.reverse .spotlight-visual .phone {
  transform: rotate(-2deg)
}

.download-visual {
  height: 650px
}

.download-visual .phone {
  width: 260px;
  transform: rotate(5deg) translateY(30px)
}

#screenshot-dialog {
  padding: 55px 16px 18px;
  width: min(620px, calc(100% - 24px));
  max-width: 620px;
  max-height: 94dvh;
  overflow-y: auto;
  background: #f7f4ed
}

#screenshot-dialog img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain
}

#screenshot-caption {
  font-size: 16px;
  font-weight: 600;
  color: var(--green)
}

.screenshot-close {
  position: sticky;
  top: 0;
  float: right;
  margin-top: -43px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  background: white;
  color: var(--green);
  font-size: 28px;
  z-index: 2
}

@media(max-width:1100px) {
  .hero-art {
    margin-left: -35px
  }

  .hero-grid {
    grid-template-columns: 1.05fr 1fr
  }

  .hero-actions {
    flex-wrap: wrap
  }

  .hero-checks {
    font-size: 12px !important
  }
}

@media(max-width:900px) {
  .hero-grid {
    grid-template-columns: 1fr
  }

  .hero-art {
    margin-inline: auto
  }

  .spotlight-visual {
    height: 600px
  }

  .why-grid .check-list {
    font-size: 15px
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .footer-grid>div:first-child {
    grid-column: 1/-1
  }

  .offcanvas {
    --bs-offcanvas-width: 280px
  }

  .offcanvas-header {
    padding: 16px 18px 8px
  }

  .offcanvas h2 {
    font-size: 25px
  }

  .offcanvas-body {
    padding: 8px 18px 18px
  }

  .offcanvas nav {
    gap: 2px
  }

  .offcanvas nav a {
    padding: 9px 12px;
    min-height: 44px;
    font-size: 15px;
    line-height: 26px;
    border-radius: 5px
  }

  .offcanvas nav a:hover {
    background: #e8ecdf
  }

  .offcanvas .btn-close {
    min-width: 24px;
    min-height: 24px;
    padding: 10px
  }

  .spotlight-visual .phone {
    width: 240px
  }
}

@media(max-width:600px) {
  .hero-art {
    left: auto;
    margin-inline: auto;
    margin-left: auto !important;   /* override the -65px from 1100px breakpoint */
    width: 100% !important;
    max-width: 100%;
    height: 660px;
    transform: none !important;
    transform-origin: center;
    margin-top: 24px;
    margin-bottom: 0;
    /* No overflow:hidden here — parent .hero handles clipping.
       Keeping it here clips the float-note at the bottom. */
  }

  .hero-photo {
    inset: 16px 0 50px 0;
    border-radius: 180px 180px 12px 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
  }

  .front-phone {
    left: 50% !important;
    top: 20px;
    transform: translateX(-50%) rotate(-4deg) !important;
    z-index: 3;
  }

  .rear-phone {
    display: none
  }

  .hero-art .phone {
    width: min(240px, 78vw)
  }

  .hero-art .float-note {
    /* Use left/right inset so it never clips at viewport edges */
    left: 16px;
    right: 16px;
    width: auto;
    max-width: none;
    transform: none;
    bottom: 10px;
    animation: none;
    padding: 11px 15px;
    gap: 10px;
    border-radius: 10px;
    white-space: normal;
    text-align: left;
  }

  /* Compact text inside float-note on mobile */
  .hero-art .float-note b {
    font-size: 12px;
  }

  .hero-art .float-note small {
    font-size: 10px;
    margin-top: 2px;
  }

  .hero-art .round-check {
    width: 28px;
    height: 28px;
    font-size: 12px;
    flex-shrink: 0;
  }


  .mockup-caption {
    bottom: -16px;
    font-size: 10px;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: 90vw;
  }

  .vertical-label {
    display: none
  }

  .hero-bottom {
    margin-top: 32px
  }

  body {
    padding-top: 78px !important;
  }

  .hero-checks {
    font-size: 10px !important;
    gap: 4px 10px;
    margin-top: 10px !important;
  }

  .hero-actions {
    gap: 12px;
    margin-bottom: 2px;
  }

  .hero-actions .button {
    font-size: 12px;
    padding: 8px 16px;
    min-height: unset;
  }

  .hero-actions .text-link {
    font-size: 12px;
  }

  .hero {
    overflow-x: clip;
    overflow-y: visible;
  }

  /* ── Hero Copy Compaction: fit everything + search btn on one screen ── */
  .hero-copy {
    padding-block: 8px 10px !important;
  }

  .hero-h1-kicker {
    font-size: 11px !important;
    letter-spacing: 1.2px !important;
    margin-bottom: 4px !important;
  }

  .hero h1 {
    font-size: clamp(34px, 8.8vw, 44px) !important;
    line-height: 1.12 !important;
    margin-bottom: 8px !important;
    letter-spacing: -0.03em !important;
  }

  .lead-copy {
    font-size: 12px !important;
    line-height: 1.45 !important;
    margin-bottom: 10px !important;
  }

  .hero-copy .eyebrow {
    margin-bottom: 6px !important;
    font-size: 9px !important;
  }

  /* Hide the hero-note ("A little less effort.") on mobile to save space */
  .hero-note {
    display: none !important;
  }

  .section {
    padding-block: 58px
  }

  .eyebrow {
    font-size: 11px
  }

  .about-copy>p:not(.eyebrow),
  .why-grid>div:last-child>p:not(.eyebrow),
  .spotlight-copy>p:not(.eyebrow),
  .experience .experience-copy>p:not(.eyebrow),
  .download-copy>p:not(.eyebrow),
  .center-head p:not(.eyebrow) {
    font-size: 16px
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 25px
  }

  .benefit-grid article {
    border-bottom: 1px solid var(--border);
    padding-bottom: 20px
  }

  .feature-item p,
  .benefit-grid p,
  .steps p,
  .check-list {
    font-size: 15px
  }

  .why-grid .check-list {
    grid-template-columns: 1fr;
    font-size: 15px
  }

  .showcase-item,
  .showcase-item .phone,
  .showcase-item.item-1 .phone {
    width: min(290px, calc(100vw - 60px))
  }

  .spotlight-visual {
    height: 650px;
    margin-inline: 0;
    border-radius: 60px 60px 8px 8px
  }

  .spotlight-visual .phone,
  .reverse .spotlight-visual .phone {
    width: min(270px, calc(100vw - 65px));
    transform: none
  }

  .download-visual {
    height: 640px
  }

  .download-visual .phone {
    transform: none;
    width: min(270px, calc(100vw - 65px))
  }

  .download-visual .float-note {
    bottom: 15px
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px
  }

  .footer-grid>div:not(:first-child) a,
  .footer-grid button {
    font-size: 14px;
    min-height: 36px
  }

  .footer-bottom {
    font-size: 12px !important
  }

  .offcanvas {
    width: min(280px, 84vw) !important
  }

  /* Move "View screen" hint to the TOP of the phone on mobile
     so it doesn't overlap the Booking confirmed card at the bottom */
  .hero-art .screenshot-phone .enlarge-hint {
    bottom: auto;
    top: 10px;
    opacity: 1;
    font-size: 11px;
    padding: 6px 10px;
    z-index: 10;
  }

  /* Also keep all other enlarge-hints visible on touch devices */
  .enlarge-hint {
    opacity: 1
  }

  .experience-caption {
    font-size: 10px;
    letter-spacing: 1px
  }

  .image-label,
  .why-photo>span {
    font-size: 10px
  }

  .mobile-cta {
    font-size: 15px
  }

  .review-grid small {
    font-size: 12px !important
  }
}

@media(max-width:360px) {
  .hero-art {
    transform: none;
    margin-bottom: 0;
    height: 640px
  }

  .hero-checks {
    font-size: 12px !important
  }

  .hero-actions .button,
  .hero-actions .text-link {
    font-size: 14px
  }

  .spotlight-visual {
    height: 600px
  }

  .download-visual {
    height: 600px
  }
}

/* Supplied mockups already include their phone frames. */
.screenshot-phone {
  aspect-ratio: 1480/2800;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible
}

.screenshot-phone>img {
  height: auto !important;
  object-fit: contain;
  border-radius: 0
}

.showcase-phones {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 22px;
  overflow: visible;
  max-width: 1080px;
  margin-inline: auto;
  padding: 0
}

.showcase-item {
  width: 100%;
  min-width: 0
}

.showcase-item .phone,
.showcase-item.item-1 .phone {
  width: 100%;
  height: auto !important;
  box-shadow: none
}

.showcase-item figcaption {
  margin-top: 8px;
  font-size: 15px !important
}

.hero-art .phone {
  width: 300px
}

.front-phone {
  left: 25px;
  top: 12px
}

.rear-phone {
  right: -20px;
  top: 95px
}

.spotlight-visual .phone,
.reverse .spotlight-visual .phone,
.download-visual .phone {
  width: 330px;
  max-width: 100%
}

.enlarge-hint {
  bottom: 8%;
  font-size: 12px
}

@media(max-width:900px) {
  .showcase-phones {
    gap: 8px
  }

  .showcase-item figcaption {
    font-size: 14px !important
  }

  .hero-art .phone {
    width: 300px
  }
}

@media(max-width:600px) {
  .showcase-phones {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-inline: auto;
    max-width: 350px
  }

  .showcase-item,
  .showcase-item .phone,
  .showcase-item.item-1 .phone {
    width: 100%
  }

  .showcase-item figcaption {
    font-size: 16px !important;
    margin-top: 0
  }

  .hero-art .phone {
    width: min(330px, calc(100vw - 32px))
  }

  .front-phone {
    top: 20px
  }

  .hero-art {
    height: 675px
  }

  .spotlight-visual .phone,
  .reverse .spotlight-visual .phone,
  .download-visual .phone {
    width: 330px;
    max-width: 100%
  }

  .spotlight-visual,
  .download-visual {
    height: auto;
    min-height: 620px;
    padding-block: 12px
  }

  .download-visual .float-note {
    bottom: 8px
  }
}

@media(max-width:360px) {
  .hero-art {
    height: 620px
  }

  .spotlight-visual,
  .download-visual {
    min-height: 560px
  }
}

/* Screen viewer: fixed controls, full-device fit, optional readable zoom. */
html.screen-viewer-open {
  overflow: hidden;
  scrollbar-gutter: stable
}

#screenshot-dialog {
  width: min(940px, calc(100vw - 48px));
  max-width: 940px;
  height: min(900px, calc(100dvh - 48px));
  max-height: calc(100dvh - 48px);
  padding: 0;
  border: 1px solid #dce2d6;
  border-radius: 18px;
  overflow: hidden;
  background: #f7f4ed;
  box-shadow: 0 30px 100px #061c2870
}

#screenshot-dialog[open] {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto
}

#screenshot-dialog::backdrop {
  background: #071e20b8;
  backdrop-filter: blur(10px)
}

.viewer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  background: #fffdf8;
  border-bottom: 1px solid var(--border);
  z-index: 1
}

.viewer-label {
  display: block;
  font-size: 10px;
  letter-spacing: 1.8px;
  font-weight: 700;
  color: #637064;
  margin-bottom: 5px
}

#screenshot-caption {
  font: 600 19px/1.35 var(--sans);
  letter-spacing: -.3px;
  color: var(--green);
  margin: 0
}

.viewer-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-shrink: 0
}

.viewer-zoom {
  min-height: 44px;
  padding: 8px 16px;
  background: var(--green);
  color: white;
  border: 1px solid var(--green);
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  min-width: 96px
}

.viewer-zoom:hover {
  background: var(--dark)
}

#screenshot-dialog .screenshot-close {
  position: static;
  float: none;
  margin: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  line-height: 1;
  border: 1px solid #d8ded3;
  border-radius: 50%;
  background: #f7f4ed;
  color: var(--green);
  font-size: 26px;
  flex-shrink: 0
}

#screenshot-dialog .screenshot-close:hover {
  background: #e8ecdf
}

.viewer-stage {
  min-height: 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  background: #e8ece4;
  overscroll-behavior: contain
}

#screenshot-dialog .viewer-stage img {
  width: auto;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  cursor: zoom-in;
  filter: drop-shadow(0 8px 12px #173f3517)
}

#screenshot-dialog.is-zoomed .viewer-stage {
  display: block;
  overflow: auto;
  scrollbar-width: thin;
  scrollbar-color: #899887 #e8ece4
}

#screenshot-dialog.is-zoomed .viewer-stage img {
  width: min(100%, 720px);
  height: auto;
  max-height: none;
  margin: 0 auto;
  cursor: zoom-out
}

.viewer-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  border-top: 1px solid var(--border);
  background: #fffdf8;
  font-size: 12px;
  line-height: 1.5;
  color: #536255
}

.viewer-escape {
  font-size: 11px;
  white-space: nowrap;
  color: #68726d
}

@media(max-width:600px) {
  #screenshot-dialog {
    width: calc(100vw - 20px);
    height: calc(100dvh - 24px);
    max-height: calc(100dvh - 24px);
    border-radius: 14px
  }

  .viewer-header {
    padding: 15px 14px;
    gap: 10px
  }

  .viewer-label {
    font-size: 9px;
    letter-spacing: 1.3px
  }

  #screenshot-caption {
    font-size: 15px;
    line-height: 1.4
  }

  .viewer-actions {
    gap: 6px
  }

  .viewer-zoom {
    font-size: 12px;
    min-width: 78px;
    padding: 8px 10px
  }

  #screenshot-dialog .screenshot-close {
    width: 44px;
    height: 44px
  }

  .viewer-stage {
    padding: 8px
  }

  .viewer-footer {
    padding: 11px 14px;
    font-size: 11px
  }

  .viewer-escape {
    display: none
  }
}

/* Coordinated reveals and low-distraction interaction motion. */
:root {
  --motion-ease: cubic-bezier(.22, 1, .36, 1)
}

[data-aos].aos-init {
  transition-property: opacity, transform;
  transition-duration: 750ms;
  transition-timing-function: var(--motion-ease)
}

[data-aos=fade-up].aos-init:not(.aos-animate) {
  opacity: 0;
  transform: translate3d(0, 22px, 0)
}

[data-aos=fade].aos-init:not(.aos-animate) {
  opacity: 0
}

[data-aos].aos-animate {
  opacity: 1
}

.hero-art[data-aos=fade] {
  transition-property: opacity
}

.button,
.viewer-zoom,
.screenshot-close,
.dialog-close {
  transition: background-color .22s ease, color .22s ease, box-shadow .25s ease, transform .3s var(--motion-ease)
}

.button:active,
.viewer-zoom:active,
.screenshot-close:active {
  transform: scale(.98)
}

.desktop-nav a,
.footer-grid a,
.footer-grid button,
.offcanvas nav a {
  transition: color .2s ease, background-color .2s ease
}

.screenshot-phone>img {
  transition: filter .35s ease
}

.screenshot-phone:hover>img {
  filter: drop-shadow(0 10px 12px #173f3528)
}

.showcase-item .phone {
  transition: translate .4s var(--motion-ease)
}

.showcase-item .phone:hover {
  translate: 0 -6px
}

.feature-item.aos-animate:hover {
  transform: translateY(-4px)
}

.hero-art .float-note {
  animation: noteFloat 7s ease-in-out infinite
}

.hero-art .mockup-caption {
  transition: opacity .3s ease
}

.steps:before {
  animation: none;
  transform: scaleX(0);
  transition: transform 1.1s var(--motion-ease)
}

.steps:has(.aos-animate):before {
  transform: scaleX(1)
}

.offcanvas {
  transition: transform .32s var(--motion-ease) !important
}

.offcanvas-backdrop {
  transition: opacity .25s ease
}

#screenshot-dialog[open],
#info-dialog[open] {
  animation: dialogEnter .28s var(--motion-ease) both
}

#screenshot-dialog[open]::backdrop,
#info-dialog[open]::backdrop {
  animation: backdropEnter .25s ease both
}

@keyframes dialogEnter {
  from {
    opacity: 0;
    transform: translateY(12px) scale(.98)
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1)
  }
}

@keyframes backdropEnter {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@media(max-width:600px) {
  [data-aos].aos-init {
    transition-duration: 500ms !important;
    transition-delay: 0ms !important
  }

  [data-aos=fade-up].aos-init:not(.aos-animate) {
    transform: translate3d(0, 12px, 0)
  }

  .hero-art .float-note {
    animation: none
  }

  .steps:before {
    transform: scaleY(0);
    transform-origin: top
  }

  .steps:has(.aos-animate):before {
    transform: scaleY(1)
  }
}

@media(hover:none) {
  .showcase-item .phone:hover {
    translate: none
  }

  .screenshot-phone:hover>img {
    filter: none
  }
}

@media(prefers-reduced-motion:reduce) {
  [data-aos].aos-init {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important
  }

  .steps:before {
    transform: none !important
  }

  .offcanvas {
    transition: none !important
  }

  .showcase-item .phone {
    translate: none !important
  }
}

/* Stable refresh: scroll styling must not change document geometry. */
html {
  scrollbar-gutter: stable
}

.preloader {
  display: none
}

.nav-wrap,
.scrolled .nav-wrap {
  height: 94px;
  transition: none
}

.hero-art .float-note {
  animation: none
}

@media(max-width:600px) {

  .nav-wrap,
  .scrolled .nav-wrap {
    height: 78px
  }
}

/* AOS can load late from its CDN; uninitialized content stays in place. */
[data-aos]:not(.aos-init) {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important
}

/* Header navigation: clear current location without changing link dimensions. */
.desktop-nav {
  gap: 6px;
  align-items: center
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 13px;
  border-radius: 8px;
  color: #4e5e55;
  font-weight: 500;
  line-height: 1.4;
  isolation: isolate;
  transition: color .2s ease, background-color .2s ease, box-shadow .2s ease
}

.desktop-nav a:after {
  content: '';
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 5px;
  width: auto;
  height: 2px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .24s var(--motion-ease);
  opacity: 1
}

.desktop-nav a:hover {
  color: var(--green);
  background: #e9ede3
}

.desktop-nav a:hover:after {
  transform: scaleX(.55)
}

.desktop-nav a.active {
  color: var(--green);
  background: #e0e8da;
  box-shadow: inset 0 0 0 1px #173f3518
}

.desktop-nav a.active:after {
  left: 13px;
  right: 13px;
  bottom: 5px;
  width: auto;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(1)
}

.desktop-nav a.active:hover {
  background: #d5e1cd;
  box-shadow: inset 0 0 0 1px #173f3530
}

.desktop-nav a:focus-visible,
.nav-download:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
  box-shadow: 0 0 0 5px #c7a66a35
}

.nav-download {
  transition: background-color .2s ease, box-shadow .2s ease, transform .2s ease
}

.nav-download:hover {
  background: var(--dark);
  box-shadow: 0 5px 14px #173f3525;
  transform: translateY(-1px)
}

.nav-download.active {
  box-shadow: 0 0 0 3px var(--cream), 0 0 0 5px var(--gold)
}

.menu-toggle {
  border-radius: 8px;
  transition: background-color .2s ease, color .2s ease
}

.menu-toggle:hover,
.menu-toggle[aria-expanded=true] {
  background: #e0e8da;
  color: var(--dark)
}

.offcanvas nav a {
  position: relative;
  transition: background-color .2s ease, color .2s ease;
  box-shadow: none
}

.offcanvas nav a.active {
  background: #e0e8da;
  color: var(--green);
  box-shadow: inset 3px 0 0 var(--gold);
  font-weight: 600
}

.offcanvas nav a.active:hover {
  background: #d5e1cd
}

.offcanvas nav a:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 2px
}

@media(min-width:901px) and (max-width:1100px) {
  .desktop-nav {
    gap: 2px
  }

  .desktop-nav a {
    padding: 10px 8px;
    font-size: 12px
  }

  .desktop-nav a:after,
  .desktop-nav a.active:after {
    left: 8px;
    right: 8px
  }
}

@media(prefers-reduced-motion:reduce) {
  .desktop-nav a:after {
    transition: none
  }

  .nav-download:hover {
    transform: none
  }
}

/* --- Interactive Components & Section Enhancements --- */
.hero-search-widget {
  margin-top: 28px;
  background: #fffdf8;
  border: 1px solid #e2ded4;
  border-radius: 14px;
  padding: 18px 20px;
  box-shadow: 0 8px 24px #173f350d;
  max-width: 540px;
  box-sizing: border-box
}

.widget-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--green)
}

.widget-header i {
  color: var(--gold);
  margin-right: 6px
}

.live-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .4px;
  color: #286347;
  background: #edf5ee;
  padding: 3px 10px;
  border-radius: 20px
}

.pulse-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2e8555;
  animation: pulseLive 2s infinite
}

@keyframes pulseLive {
  0% {
    box-shadow: 0 0 0 0 #2e855570
  }

  70% {
    box-shadow: 0 0 0 6px #2e855500
  }

  100% {
    box-shadow: 0 0 0 0 #2e855500
  }
}

.search-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  align-items: end
}

.search-input-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0
}

.search-input-col label {
  font-size: 11px;
  font-weight: 600;
  color: #55665c;
  display: flex;
  align-items: center;
  gap: 5px
}

.search-input-col label i {
  font-size: 10px;
  color: var(--gold)
}

.search-input-col input,
.search-input-col select {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #d9d5cb;
  border-radius: 7px;
  padding: 8px 12px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--green);
  background: #fff;
  outline: none;
  min-height: 42px;
  transition: border-color .2s, box-shadow .2s
}

.search-input-col input:focus,
.search-input-col select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px #c7a66a25
}

.search-btn-col {
  min-width: 0
}

.search-btn-col .search-submit-btn {
  width: 100%;
  min-height: 42px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 7px;
  background: var(--green);
  color: #ffffff !important;
  border: 1px solid var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
  transition: all .25s ease
}

.search-btn-col .search-submit-btn:hover {
  background: var(--dark);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px #173f3525
}

.search-result-box {
  margin-top: 14px;
  padding: 12px 16px;
  background: #f0f5ec;
  border: 1px solid #d0decc;
  border-radius: 10px;
  font-size: 13px;
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  animation: fadeDown .3s ease;
  transition: all .25s ease;
}

.search-result-box.booked {
  background: #fdf5f4;
  border-color: #f0c3be;
  color: #8c281f;
}

.search-result-box.loading {
  background: #fbf9f4;
  border-color: #e4decb;
  color: var(--green);
}

.search-result-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex-grow: 1;
}

.search-result-title {
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 7px;
}

.search-result-meta {
  font-size: 11.5px;
  color: #55675c;
  line-height: 1.4;
}

.search-result-breakdown {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 6px;
}

.avail-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 10.5px;
  font-weight: 600;
  padding: 3px 7px;
  border-radius: 4px;
  background: #ffffff;
  border: 1px solid #c9d8c4;
  color: var(--green);
}

.avail-chip.chip-booked {
  background: #fff3f2;
  border-color: #f2c7c2;
  color: #a83226;
}

.avail-chip.chip-hall {
  background: #fbf7ee;
  border-color: #e2cca2;
  color: #7d5e22;
}

.avail-numbers-tag {
  display: inline-block;
  font-size: 10px;
  background: #e1ebda;
  color: #173f35;
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 600;
  margin-left: 4px;
}

.search-result-box .view-in-app-btn {
  background: var(--green) !important;
  color: #ffffff !important;
  text-decoration: none !important;
  padding: 9px 18px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  border-radius: 6px !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  border: 1px solid var(--green) !important;
  box-shadow: 0 4px 10px #173f3520 !important;
  transition: all .2s ease !important
}

.search-result-box .view-in-app-btn:hover {
  background: var(--dark) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 14px #173f3530 !important
}

.search-result-box .view-in-app-btn i {
  color: #e2cca2 !important;
  font-size: 11px !important;
  transition: transform .2s ease !important
}

.search-result-box .view-in-app-btn:hover i {
  transform: translateX(3px) !important
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-6px)
  }

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

/* About Stats Grid */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin: 24px 0 20px
}

.stat-card {
  background: #fffdf8;
  border: 1px solid #e5e1d7;
  border-radius: 10px;
  padding: 16px 14px;
  text-align: center;
  transition: transform .25s, box-shadow .25s, border-color .25s
}

.stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 8px 20px #173f350f
}

.stat-number {
  display: block;
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.1;
  color: var(--green);
  font-weight: 600
}

.stat-number strong {
  font-weight: 600;
  color: var(--green)
}

.stat-label {
  display: block;
  font-size: 11px;
  color: #67746c;
  margin-top: 5px;
  font-weight: 500
}

/* Interactive Cards in Benefits */
.interactive-card {
  position: relative;
  cursor: pointer;
  transition: transform .3s var(--motion-ease), background .3s, box-shadow .3s;
  border-radius: 8px;
  padding: 16px 20px 20px !important
}

.interactive-card:hover {
  background: #fffdf8;
  box-shadow: 0 12px 28px #173f350c;
  transform: translateY(-5px)
}

.interactive-card:hover .feature-icon {
  transform: scale(1.15) rotate(-3deg);
  color: var(--gold)
}

.card-detail-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: var(--green);
  background: #ebf0e6;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 14px;
  transition: background .2s, color .2s
}

.interactive-card:hover .card-detail-pill {
  background: var(--green);
  color: white
}

/* App Showcase Interactive Tabs */
.showcase-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap
}

.showcase-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: 24px;
  border: 1px solid #d2d6c9;
  background: white;
  color: #5a6860;
  font-size: 13px;
  font-weight: 600;
  transition: all .22s ease;
  cursor: pointer
}

.showcase-tab-btn i {
  font-size: 11px
}

.showcase-tab-btn:hover {
  border-color: var(--gold);
  color: var(--green);
  background: #fbfaf6
}

.showcase-tab-btn.active {
  background: var(--green);
  color: white;
  border-color: var(--green);
  box-shadow: 0 4px 14px #173f3522
}

.showcase-item {
  transition: opacity .35s ease, transform .35s var(--motion-ease), filter .35s ease
}

.showcase-item.is-dimmed {
  opacity: .35;
  filter: grayscale(40%)
}

.showcase-item.is-focused {
  transform: scale(1.03) !important
}

/* Features Category Filter & Tags */
.feature-filter-nav {
  display: flex;
  gap: 10px;
  margin: 28px 0 35px;
  flex-wrap: wrap
}

.feature-filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid #d5dad0;
  background: #f7f4ed;
  color: #56645b;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all .2s ease
}

.feature-filter-btn:hover {
  background: #ede9de;
  color: var(--green)
}

.feature-filter-btn.active {
  background: var(--green);
  color: white;
  border-color: var(--green);
  box-shadow: 0 4px 12px #173f3518
}

.feature-item {
  position: relative;
  cursor: pointer
}

.feature-item.is-hidden {
  display: none !important
}

.feature-tag {
  position: absolute;
  top: 15px;
  right: 10px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #859086;
  background: #eef1e7;
  padding: 2px 8px;
  border-radius: 10px;
  opacity: 0;
  transition: opacity .25s ease
}

.feature-item:hover .feature-tag {
  opacity: 1
}

/* How It Works Interactive Steps */
.step-card {
  cursor: pointer;
  padding: 12px;
  border-radius: 10px;
  transition: background .25s ease, transform .25s ease
}

.step-card:hover {
  background: #e7e7de;
  transform: translateY(-3px)
}

.step-card.active .step-number {
  border-color: var(--gold);
  background: var(--green);
  color: var(--cream);
  box-shadow: 0 0 0 4px #c7a66a35
}

.step-card.active h3 {
  color: var(--gold)
}

.step-insight-card {
  margin-top: 35px;
  background: #fbfaf6;
  border: 1px solid #d8ded0;
  border-left: 4px solid var(--gold);
  border-radius: 10px;
  padding: 16px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 6px 18px #173f350a
}

.insight-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap
}

.insight-content {
  font-size: 14px;
  color: var(--green);
  line-height: 1.6
}

/* Spotlights Interactive Check Items */
.interactive-check-item {
  cursor: pointer;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .2s, transform .2s;
  display: flex;
  align-items: center;
  gap: 12px
}

.interactive-check-item:hover {
  background: #0e2c250d;
  transform: translateX(4px)
}

.interactive-check-item.checked {
  background: #2e855512
}

.interactive-check-item.checked i {
  color: #2e8555;
  transform: scale(1.2)
}

.interactive-check-item.checked span {
  color: var(--green);
  font-weight: 600
}

/* Experience Highlights */
.experience-highlights {
  display: flex;
  gap: 12px;
  margin-top: 22px;
  flex-wrap: wrap
}

.exp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff18;
  backdrop-filter: blur(8px);
  border: 1px solid #ffffff30;
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  transition: background .25s, transform .25s
}

.exp-badge:hover {
  background: #ffffff30;
  transform: translateY(-2px)
}

.exp-badge i {
  color: #e6c98f
}

/* Comparison Switcher */
.comparison-switch-nav {
  display: inline-flex;
  background: #ede9dd;
  padding: 4px;
  border-radius: 25px;
  margin-bottom: 24px;
  border: 1px solid #ded9cb
}

.comp-switch-btn {
  border: 0;
  background: none;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #5a6860;
  cursor: pointer;
  transition: all .22s ease
}

.comp-switch-btn.active {
  background: var(--green);
  color: white;
  box-shadow: 0 2px 10px #173f3525
}

/* Reviews Filter & Helpful Upvote */
.review-filter-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap
}

.review-tab-btn {
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid #d4d8cc;
  background: #f9f8f2;
  font-size: 13px;
  font-weight: 600;
  color: #59675d;
  cursor: pointer;
  transition: all .2s ease
}

.review-tab-btn:hover {
  background: #edeae0;
  color: var(--green)
}

.review-tab-btn.active {
  background: var(--green);
  color: white;
  border-color: var(--green);
  box-shadow: 0 4px 12px #173f351a
}

.review-card {
  transition: transform .3s, box-shadow .3s, opacity .3s
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px #173f3512
}

.review-card.is-hidden {
  display: none !important
}

/* Download Group & QR Code Box */
.download-action-group {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin: 25px 0 15px
}

.button-outline-cream {
  background: transparent;
  color: var(--cream);
  border: 1px solid #cfdbcf55;
  min-height: 54px;
  padding: 14px 22px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all .25s ease;
  cursor: pointer
}

.button-outline-cream:hover {
  background: #ffffff18;
  color: white;
  border-color: var(--cream);
  transform: translateY(-2px)
}

.qr-code-card-box {
  margin: 18px 0;
  background: #fffdf8;
  border: 1px solid #e1dacf;
  border-radius: 12px;
  padding: 16px;
  max-width: 380px;
  animation: fadeDown .3s ease;
  box-shadow: 0 12px 30px #061c2830
}

.qr-card-inner {
  display: flex;
  align-items: center;
  gap: 16px
}

.qr-card-inner img {
  border-radius: 8px;
  border: 1px solid #d8d3c7;
  flex-shrink: 0
}

.qr-card-desc strong {
  display: block;
  font-size: 13px;
  color: var(--green);
  margin-bottom: 4px
}

.qr-card-desc small {
  font-size: 11px;
  color: #67746c;
  line-height: 1.5;
  display: block
}

/* ── Global Interactive Toast Notification ─────────────────────── */
.interactive-toast {
  /* Positioning: centered on desktop, full-width-aware on mobile */
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 40px));

  /* Sizing: never wider than viewport minus 32px gutters */
  width: max-content;
  max-width: min(420px, calc(100vw - 32px));
  min-width: 220px;

  /* Visual design */
  background: linear-gradient(135deg, #173f35 0%, #0e2c25 100%);
  color: #ffffff;
  padding: 13px 18px;
  border-radius: 16px;
  border: 1px solid #c7a66a55;
  box-shadow:
    0 4px 6px -1px #00000030,
    0 16px 40px #0e2c2560,
    inset 0 1px 0 #ffffff14;

  /* Typography */
  font-size: 13.5px;
  font-weight: 600;
  font-family: var(--sans);
  line-height: 1.3;
  letter-spacing: -0.1px;

  /* Layout */
  display: flex;
  align-items: center;
  gap: 11px;

  /* State */
  z-index: 10500;
  opacity: 0;
  pointer-events: none;
  transition: transform .38s cubic-bezier(0.34, 1.56, 0.64, 1), opacity .28s ease;

  /* Auto-progress bar via pseudo-element */
  overflow: hidden;
}

/* Progress bar that drains during toast lifetime */
.interactive-toast::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #c7a66a, #e5cb9b);
  border-radius: 0 0 16px 16px;
  transform-origin: left;
  transform: scaleX(0);
  opacity: 0;
  transition: none;
}

.interactive-toast.show::after {
  transform: scaleX(1);
  opacity: 1;
  transition: transform 2.6s linear, opacity .1s;
}

/* Icon pill inside toast */
.interactive-toast i {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: #c7a66a25;
  border: 1px solid #c7a66a50;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #e5cb9b;
  flex-shrink: 0;
  line-height: 1;
}

.interactive-toast span {
  flex: 1;
  min-width: 0;
  word-break: break-word;
}

.interactive-toast.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* ── Mobile: stick to viewport edges ──────────────────────────── */
@media (max-width: 600px) {
  .interactive-toast {
    /* Stretch from left to right with equal gutters */
    left: 16px;
    right: 16px;
    bottom: 20px;
    width: auto;
    max-width: none;
    min-width: 0;
    /* Override transform — no centering needed when left/right are set */
    transform: translateY(calc(100% + 30px));
    border-radius: 14px;
    font-size: 13px;
    padding: 12px 16px;
  }

  .interactive-toast.show {
    transform: translateY(0);
  }

  .interactive-toast::after {
    border-radius: 0 0 14px 14px;
  }
}


@media(max-width:900px) {
  .search-form-row {
    grid-template-columns: 1fr 1fr;
    gap: 10px
  }

  .about-stats-grid {
    gap: 10px
  }
}

@media(max-width:600px) {
  /* Compact the search widget so it fits on-screen with the hero copy */
  .hero-search-widget {
    margin-top: 10px !important;
    padding: 10px 12px !important;
    border-radius: 10px;
  }

  .widget-header {
    margin-bottom: 8px !important;
    font-size: 11px !important;
  }

  .search-form-row {
    grid-template-columns: 1fr 1fr !important;
    gap: 7px 8px !important;
  }

  .search-form-row .search-input-col:nth-child(3),
  .search-form-row .search-btn-col {
    grid-column: 1 / -1 !important;
  }

  .search-input-col {
    gap: 2px !important;
  }

  .search-input-col label {
    font-size: 9.5px !important;
    margin-bottom: 1px !important;
  }

  .search-input-col input,
  .search-input-col select {
    padding: 5px 8px !important;
    min-height: 33px !important;
    font-size: 11.5px !important;
    border-radius: 6px !important;
  }

  .search-btn-col .search-submit-btn {
    min-height: 35px !important;
    padding: 6px 12px !important;
    font-size: 12.5px !important;
    border-radius: 6px !important;
    width: 100% !important;
  }

  .search-result-box {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    text-align: left
  }

  .search-result-box .view-in-app-btn {
    justify-content: center
  }

  .about-stats-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px
  }

  .stat-card {
    padding: 10px 6px
  }

  .stat-number {
    font-size: 20px
  }

  .stat-label {
    font-size: 9px
  }

  .step-insight-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px
  }

  .download-action-group {
    flex-direction: column;
    align-items: stretch
  }

  .button-outline-cream {
    justify-content: center
  }

  .qr-card-inner {
    flex-direction: column;
    text-align: center
  }
}

/* ========================================================
   ENHANCED SIDEBAR / OFFCANVAS NAVIGATION (ANTI-SHIFT & RESPONSIVE)
   ======================================================== */
/* Keep background page layout strictly locked in place when sidebar opens */
html {
  scrollbar-gutter: stable;
  /* clip prevents horizontal overflow WITHOUT creating a scroll container.
     Using 'hidden' here would hijack the viewport scroll root and break window.scrollTo(). */
  overflow-x: clip;
}

@media (min-width: 901px) {
  html {
    overflow-y: scroll;
  }
}

body {
  overflow-x: hidden;
}

body,
body.modal-open,
body[style*="overflow: hidden"] {
  padding-right: 0 !important;
  margin-right: 0 !important;
}

/* Ensure header height NEVER shifts between scrolled/unscrolled states */
.nav-wrap,
.scrolled .nav-wrap {
  height: 78px !important;
  transition: none !important;
}

@media (min-width: 901px) {
  .nav-wrap,
  .scrolled .nav-wrap {
    height: 94px !important;
  }
}

.site-header,
.site-header.scrolled {
  padding-right: 0 !important;
  margin-right: 0 !important;
}

.menu-toggle:focus,
.menu-toggle:focus-visible {
  outline: none !important;
}

/* Sidebar Drawer Container */
.offcanvas.sidebar-nav {
  width: min(340px, 86vw) !important;
  max-width: 360px !important;
  background: #f7f4ed !important;
  color: var(--green) !important;
  border-left: 1px solid #e2ded4 !important;
  box-shadow: -15px 0 45px #0e2c2535 !important;
  display: flex !important;
  flex-direction: column !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
  z-index: 1055 !important;
}

.offcanvas-backdrop {
  background-color: #0e2c25 !important;
  backdrop-filter: blur(8px) !important;
  opacity: 0.65 !important;
  transition: opacity 0.3s ease !important;
  z-index: 1050 !important;
}

/* Sidebar Header */
.sidebar-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 20px 22px 18px !important;
  border-bottom: 1px solid #e7e3d8 !important;
  background: #fffdf8 !important;
}

.sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sidebar-brand .brand-mark {
  width: 40px;
  height: 40px;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 8px;
  background: #f3eee2;
  color: var(--green);
  flex-shrink: 0;
}

.sidebar-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  margin: 0;
  color: var(--green);
  line-height: 1.15;
}

.sidebar-subtitle {
  font-size: 10px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #728277;
  display: block;
  margin-top: 2px;
}

.sidebar-close-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid #dad5c7;
  background: #fffdf8;
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.22s ease;
  flex-shrink: 0;
}

.sidebar-close-btn:hover {
  background: var(--green);
  color: white;
  border-color: var(--green);
  transform: rotate(90deg);
}

/* Sidebar Body & Links */
.sidebar-body {
  padding: 20px 18px 24px !important;
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  overflow-y: auto !important;
  gap: 18px !important;
}

.sidebar-menu {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #4b5a51;
  text-decoration: none;
  background: transparent;
  transition: all 0.22s ease;
  position: relative;
}

.sidebar-link .link-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #ede9de;
  display: grid;
  place-items: center;
  font-size: 14px;
  color: var(--green);
  transition: all 0.22s ease;
  flex-shrink: 0;
  overflow: visible;
  line-height: 1;
}

.sidebar-link .link-icon i {
  display: inline-block !important;
  font-size: 14px !important;
  color: inherit !important;
  line-height: 1 !important;
}

.sidebar-link .link-label {
  flex-grow: 1;
}

.sidebar-link .link-arrow {
  font-size: 11px;
  color: #9aa89e;
  transition: transform 0.22s ease, color 0.22s ease;
}

.sidebar-link:hover {
  background: #ede9de;
  color: var(--green);
  transform: translateX(3px);
}

.sidebar-link:hover .link-icon {
  background: var(--green);
  color: white;
}

.sidebar-link:hover .link-arrow {
  color: var(--green);
  transform: translateX(2px);
}

.sidebar-link.active {
  background: #e1ebda !important;
  color: var(--green) !important;
  font-weight: 700 !important;
  box-shadow: inset 4px 0 0 var(--gold), 0 2px 8px #173f3512 !important;
}

.sidebar-link.active .link-icon {
  background: var(--green) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 6px #173f3525 !important;
}

.sidebar-link.active .link-icon i {
  color: #ffffff !important;
}

.sidebar-link.active .link-arrow {
  color: var(--gold) !important;
  transform: translateX(3px) !important;
}

/* UNIQUE DOWNLOAD APP BUTTON */
.sidebar-cta-wrap {
  margin-top: auto;
  padding-top: 10px;
}

.sidebar-download-btn {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  background: linear-gradient(135deg, #173f35 0%, #0e2c25 100%) !important;
  color: #ffffff !important;
  padding: 14px 16px !important;
  border-radius: 12px !important;
  text-decoration: none !important;
  border: 1px solid #c7a66a65 !important;
  box-shadow: 0 8px 24px #0e2c2535, inset 0 1px 0 #ffffff22 !important;
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1) !important;
  position: relative;
  overflow: visible;
}

.sidebar-download-btn.active {
  border-color: #c7a66a !important;
  box-shadow: 0 0 0 2.5px #c7a66a, 0 14px 32px #0e2c2560 !important;
}

.sidebar-download-btn.active .cta-icon-box {
  background: #c7a66a !important;
  color: #0e2c25 !important;
  transform: scale(1.08) !important;
}

.sidebar-download-btn.active .cta-icon-box i {
  color: #0e2c25 !important;
}

.sidebar-download-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.14), transparent);
  transition: left 0.6s ease;
}

.sidebar-download-btn:hover:before {
  left: 100%;
}

.sidebar-download-btn:hover {
  transform: translateY(-3px) scale(1.01) !important;
  box-shadow: 0 12px 30px #0e2c2550, 0 0 0 2px #c7a66a !important;
  color: #ffffff !important;
}

.sidebar-download-btn .cta-icon-box {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #c7a66a26;
  border: 1px solid #c7a66a70;
  display: grid;
  place-items: center;
  font-size: 16px;
  color: #e5cb9b;
  flex-shrink: 0;
  line-height: 1;
  overflow: visible;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.sidebar-download-btn .cta-icon-box i,
.sidebar-download-btn .cta-icon-box .fa-solid,
.sidebar-download-btn .cta-icon-box .fa-download {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-family: "Font Awesome 6 Free" !important;
  font-weight: 900 !important;
  font-style: normal !important;
  font-size: 16px !important;
  color: #e5cb9b !important;
  line-height: 1 !important;
  -webkit-font-smoothing: antialiased;
}

.sidebar-download-btn:hover .cta-icon-box {
  transform: scale(1.1);
  background: #c7a66a;
  color: #0e2c25;
}

.sidebar-download-btn:hover .cta-icon-box i {
  color: #0e2c25 !important;
}

.sidebar-download-btn .cta-text-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
  text-align: left;
}

.sidebar-download-btn .cta-btn-heading {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.2px;
  line-height: 1.2;
}

.sidebar-download-btn .cta-btn-sub {
  font-size: 10px;
  color: #d1dcce;
  line-height: 1.2;
}

.sidebar-download-btn .cta-badge {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff18;
  display: grid;
  place-items: center;
  font-size: 11px;
  color: #e5cb9b;
  flex-shrink: 0;
  line-height: 1;
  transition: transform 0.25s ease;
}

.sidebar-download-btn .cta-badge i {
  display: inline-block !important;
  visibility: visible !important;
  font-size: 11px !important;
  color: #e5cb9b !important;
  line-height: 1 !important;
}

.sidebar-download-btn:hover .cta-badge {
  transform: translateX(2px);
  background: #ffffff30;
}

/* Sidebar Info Footer */
.sidebar-info-footer {
  border-top: 1px solid #e7e3d8;
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-status-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #286347;
}

.sidebar-info-footer p {
  font-size: 10px;
  color: #7a887e;
  margin: 0;
  line-height: 1.4;
}

@media(max-width: 400px) {
  .offcanvas.sidebar-nav {
    width: calc(100vw - 32px) !important;
  }

  .sidebar-header {
    padding: 16px 18px 14px !important;
  }

  .sidebar-body {
    padding: 16px 14px 20px !important;
    gap: 16px !important;
  }

  .sidebar-link {
    padding: 10px 12px;
    font-size: 13px;
  }
}

/* ==========================================================================
   Reviews Pagination & End Message
   ========================================================================== */
.review-pagination-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  text-align: center;
  gap: 16px;
}

.button-load-reviews {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #173F35;
  color: #fff;
  border: 1px solid rgba(199, 166, 106, 0.4);
  border-radius: 999px;
  padding: 14px 34px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(23, 63, 53, 0.15);
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.button-load-reviews:hover {
  background: #1f5246;
  border-color: #c7a66a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(23, 63, 53, 0.25);
  color: #fff;
}

.button-load-reviews:active {
  transform: translateY(0);
}

.button-load-reviews:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.reviews-end-notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #6d7d74;
  background: rgba(23, 63, 53, 0.05);
  border: 1px solid rgba(23, 63, 53, 0.12);
  border-radius: 999px;
  padding: 10px 22px;
  margin: 0;
  letter-spacing: 0.2px;
  animation: fadeInNotice 0.35s ease;
}

.reviews-end-notice i {
  color: #c7a66a;
  font-size: 15px;
}

@keyframes fadeInNotice {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Contact Details Modal (Enhanced Luxury UI - No Scrollbar)
   ========================================================================== */
#info-dialog {
  max-width: 680px !important;
  width: min(680px, calc(100vw - 32px)) !important;
  max-height: 94vh !important;
  padding: 32px 36px 26px !important;
  background: #fbf9f4 !important;
  border: 1px solid rgba(199, 166, 106, 0.4) !important;
  border-radius: 18px !important;
  box-shadow: 0 24px 60px -10px rgba(14, 44, 37, 0.35) !important;
  overflow: hidden !important; /* STRICTLY NO SCROLLBAR */
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

#info-dialog::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

#info-dialog .dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(23, 63, 53, 0.06);
  border: 1px solid rgba(23, 63, 53, 0.12);
  color: var(--green, #173F35);
  font-size: 20px;
  cursor: pointer;
  transition: all 0.22s ease;
  line-height: 1;
}

#info-dialog .dialog-close:hover {
  background: var(--green, #173F35);
  color: #fff;
  transform: rotate(90deg);
}

#info-dialog .eyebrow {
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--gold, #C7A66A);
  margin-bottom: 6px;
  text-transform: uppercase;
}

#info-dialog h2 {
  font-size: 26px !important;
  line-height: 1.2 !important;
  margin-bottom: 8px !important;
  color: var(--green, #173F35);
  font-family: var(--serif, 'Playfair Display', serif);
}

#dialog-copy {
  overflow: hidden !important;
}

.contact-modal-body {
  margin-top: 4px;
}

.contact-intro {
  font-size: 13px !important;
  line-height: 1.55 !important;
  color: #5d6d63 !important;
  margin-bottom: 16px !important;
}

.contact-card-grid {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 10px 14px !important;
  margin-bottom: 20px !important;
}

.contact-item {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 10px 14px !important;
  background: #ffffff !important;
  border: 1px solid rgba(23, 63, 53, 0.1) !important;
  border-radius: 10px !important;
  box-shadow: 0 2px 6px rgba(23, 63, 53, 0.03) !important;
  transition: all 0.22s ease !important;
}

.contact-item:hover {
  border-color: rgba(199, 166, 106, 0.6) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(23, 63, 53, 0.08) !important;
}

.contact-icon {
  width: 32px !important;
  height: 32px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 8px !important;
  background: var(--green, #173F35) !important;
  color: #ffffff !important;
  font-size: 13px !important;
  flex-shrink: 0 !important;
}

.contact-icon i {
  color: #ffffff !important;
}

.contact-detail {
  display: flex !important;
  flex-direction: column !important;
  gap: 1px !important;
  min-width: 0 !important;
}

.contact-label {
  font-size: 9px !important;
  font-weight: 700 !important;
  letter-spacing: 0.8px !important;
  text-transform: uppercase !important;
  color: #8c9b91 !important;
  line-height: 1 !important;
}

.contact-val {
  color: var(--green, #173F35) !important;
  font-size: 12.5px !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  white-space: normal !important;
  word-break: break-word !important;
}

.contact-link {
  color: var(--green, #173F35) !important;
  text-decoration: underline !important;
  text-decoration-color: rgba(199, 166, 106, 0.6) !important;
  text-underline-offset: 2px !important;
  transition: color 0.2s !important;
}

.contact-link:hover {
  color: var(--gold, #C7A66A) !important;
}

.contact-sep {
  color: #a8b3ab !important;
  margin: 0 3px !important;
}

.contact-modal-footer {
  display: flex !important;
  justify-content: flex-end !important;
  align-items: center !important;
  margin-top: 4px !important;
}

#info-dialog .dialog-done {
  margin-top: 0 !important;
  padding: 10px 28px !important;
  min-height: 42px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  border-radius: 8px !important;
  background: var(--green, #173F35) !important;
  color: #fff !important;
  border: 1px solid rgba(199, 166, 106, 0.4) !important;
  transition: all 0.22s ease !important;
}

#info-dialog .dialog-done:hover {
  background: #1f5246 !important;
  border-color: #c7a66a !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(23, 63, 53, 0.2) !important;
}

@media (max-width: 620px) {
  #info-dialog {
    padding: 24px 18px 20px !important;
    max-height: 95vh !important;
    overflow-y: auto !important;
  }
  .contact-card-grid {
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  .contact-val {
    white-space: normal !important;
  }
}