:root {
  --gold: #c6924a;
  --charcoal: #1e1f1f;
  --offwhite: #f7f5f1;
  --ivory: #f7f5f1;
  --ivory2: #fcfaf6;
  --olive: #5f6754;
  --green: #5f6754;
  --green2: #4b5343;
  --wood: #4a2f1f;
  --mist: #d7dadf;
  --beige: #efe8de;
  --blush: #efe8de;
  --blush2: #f4eee6;
  --muted: #6d6b63;
  --line: rgba(30, 31, 31, 0.12);
  --shadow: 0 26px 70px rgba(74, 47, 31, 0.12);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --script: "Allura", cursive;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--offwhite);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  background-image:
    radial-gradient(
      circle at 14% 8%,
      rgba(198, 146, 74, 0.07),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(215, 218, 223, 0.38),
      transparent 28%
    );
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
main {
  overflow: hidden;
}
.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}
.section-pad {
  padding: 110px 0;
}
.blush {
  background: linear-gradient(180deg, var(--beige), #f7f5f1);
}
.center {
  text-align: center;
}
.narrow {
  max-width: 760px;
  margin: 24px auto 0;
}
.muted {
  color: var(--muted);
}
.kicker,
.eyebrow {
  display: inline-block;
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 16px;
}
.section-heading {
  max-width: 800px;
  margin: 0 0 54px;
}
.section-heading.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-heading h2,
.copy-block h2,
.cta-panel h2,
.slow-copy h2 {
  font-family: var(--serif);
  font-size: clamp(2.25rem, 5vw, 4.8rem);
  line-height: 1.02;
  font-weight: 600;
  margin: 0 0 22px;
  color: var(--charcoal);
  letter-spacing: -0.035em;
}
.section-heading p,
.copy-block p,
.cta-panel p,
.slow-copy p {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 670px;
}
.btn-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: 0.25s ease;
  min-height: 48px;
}
.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 14px 28px rgba(198, 146, 74, 0.24);
}
.btn-primary:hover {
  background: #b98235;
  transform: translateY(-2px);
}
.btn-light {
  background: rgba(247, 245, 241, 0.92);
  color: var(--charcoal);
  border-color: rgba(255, 255, 255, 0.58);
}
.btn-outline,
.btn-ghost {
  border-color: rgba(198, 146, 74, 0.52);
  color: var(--charcoal);
  background: rgba(247, 245, 241, 0.72);
}
.btn-outline:hover,
.btn-ghost:hover,
.btn-light:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--wood);
  font-weight: 800;
  border-bottom: 1px solid var(--gold);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 245, 241, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(30, 31, 31, 0.08);
}
.announcement {
  height: 3px;
  background: linear-gradient(90deg, var(--wood), var(--gold), var(--olive));
}
.header-inner {
  height: 82px;
  display: flex;
  align-items: center;
  gap: 24px;
  width: min(1260px, 94vw);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 245px;
}
.brand img {
  width: 92px;
  height: 58px;
  object-fit: contain;
}
.brand span {
  font-family: var(--serif);
  font-size: 1.48rem;
  line-height: 1.02;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}
.brand em {
  display: block;
  font-style: normal;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex: 1;
}
.nav-link {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--charcoal);
  font-weight: 700;
  position: relative;
  padding: 28px 0;
}
.nav-link:after {
  content: "";
  position: absolute;
  height: 1px;
  background: var(--gold);
  left: 0;
  right: 100%;
  bottom: 20px;
  transition: 0.25s;
}
.nav-link:hover:after,
.nav-link.is-active:after {
  right: 0;
}
.header-cta {
  background: var(--gold);
  color: var(--charcoal);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 10px 20px rgba(198, 146, 74, 0.18);
}
.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 42px;
  height: 42px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--green);
  margin: 7px;
}
.hero {
  min-height: calc(100vh - 86px);
  position: relative;
  display: flex;
  align-items: center;
  background: #111;
  isolation: isolate;
}
.hero-video,
.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(30, 31, 31, 0.72),
      rgba(74, 47, 31, 0.36) 48%,
      rgba(30, 31, 31, 0.12)
    ),
    linear-gradient(
      0deg,
      rgba(30, 31, 31, 0.46),
      transparent 40%,
      rgba(30, 31, 31, 0.18)
    );
  z-index: -1;
}
.hero-content {
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 92px 0 140px;
  color: white;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(3.7rem, 7vw, 7.1rem);
  line-height: 0.91;
  letter-spacing: -0.045em;
  margin: 0 0 28px;
  max-width: 920px;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.34);
}
.hero p {
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  max-width: 730px;
  margin: 0 0 36px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}
.feature-wrap {
  position: relative;
  margin-top: -70px;
  z-index: 4;
}
.feature-strip {
  background: rgba(247, 245, 241, 0.96);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(198, 146, 74, 0.3);
  box-shadow: var(--shadow);
  border-radius: 30px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
}
.feature-strip div {
  padding: 26px 18px;
  text-align: center;
  font-weight: 800;
  color: var(--charcoal);
  border-right: 1px solid rgba(198, 146, 74, 0.22);
}
.feature-strip div:last-child {
  border-right: 0;
}
.offering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.offering-card {
  background: var(--ivory2);
  border: 1px solid rgba(198, 146, 74, 0.24);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(74, 47, 31, 0.09);
  transition: 0.3s;
}
.offering-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.offering-card img {
  height: 310px;
  width: 100%;
  object-fit: cover;
}
.offering-card div {
  padding: 30px;
}
.offering-card span {
  color: var(--gold);
  font-weight: 800;
}
.offering-card h3,
.experience-card h3,
.compare-card h3,
.note-card h3,
.rate-card h3 {
  font-family: var(--serif);
  font-size: 2.16rem;
  line-height: 1.05;
  margin: 10px 0 14px;
  color: var(--charcoal);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.offering-card p,
.experience-card p,
.compare-card li,
.note-card p {
  color: var(--muted);
}
.offering-card a {
  font-weight: 800;
  color: var(--green);
}
.split-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 70px;
  align-items: center;
}
.split-grid.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}
.copy-block {
  padding: 28px 0;
}
.mosaic {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 260px 220px;
  gap: 18px;
}
.mosaic img,
.image-frame img,
.slow-image img,
.inner-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mosaic .mosaic-large {
  grid-row: span 2;
}
.mosaic img,
.image-frame,
.slow-image,
.suite-card,
.editorial-card img {
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.image-frame {
  height: 600px;
}
.tick-list {
  list-style: none;
  padding: 0;
  margin: 22px 0;
}
.tick-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 10px;
  color: var(--muted);
}
.tick-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(198, 146, 74, 0.12);
}
.menu-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.experience-card {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  min-height: 360px;
  box-shadow: 0 18px 44px rgba(36, 27, 24, 0.12);
  background: #111;
}
.experience-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
.experience-card:hover img {
  transform: scale(1.05);
}
.experience-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(8, 20, 16, 0.76),
    rgba(8, 20, 16, 0.05) 58%
  );
}
.experience-card div {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 1;
  color: #fff;
}
.experience-card h3 {
  color: #fff;
  margin-bottom: 8px;
}
.experience-card p {
  color: rgba(255, 255, 255, 0.82);
}
.slow-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: center;
}
.slow-image {
  height: 640px;
}
.slow-copy {
  background: linear-gradient(135deg, var(--olive), #4e563f);
  color: white;
  border-radius: 42px;
  padding: 64px;
  margin-left: -120px;
  box-shadow: var(--shadow);
}
.slow-copy h2 {
  color: #fff;
}
.slow-copy p {
  color: rgba(255, 255, 255, 0.82);
}
.slow-copy .kicker {
  color: #e9bf7a;
}
.slow-copy .btn-outline {
  color: #fff;
  background: transparent;
}
.promise-section {
  background: linear-gradient(180deg, var(--olive), #4e563f);
  color: white;
}
.promise-section .section-heading h2 {
  color: white;
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.promise-item {
  background: rgba(30, 31, 31, 0.1);
  padding: 40px;
  min-height: 180px;
}
.promise-item span {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 2rem;
}
.promise-item p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.88);
}
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}
.compare-card {
  background: var(--ivory2);
  border-radius: 36px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  box-shadow: var(--shadow);
  border: 1px solid rgba(198, 146, 74, 0.24);
}
.compare-card img {
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}
.compare-card div {
  padding: 38px;
}
.compare-card span {
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
  margin-bottom: 34px;
}
.insta-grid img {
  height: 210px;
  width: 100%;
  object-fit: cover;
  border-radius: 24px;
}
.cta-band {
  background: linear-gradient(120deg, var(--green), #263f35);
}
.cta-panel {
  text-align: center;
  color: white;
  border-radius: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 70px;
  background: rgba(255, 255, 255, 0.05);
}
.cta-panel h2 {
  color: #fff;
}
.cta-panel p {
  color: rgba(255, 255, 255, 0.78);
  margin-left: auto;
  margin-right: auto;
}
.inner-hero {
  height: 64vh;
  min-height: 520px;
  position: relative;
  display: flex;
  align-items: flex-end;
  background: #111;
  color: white;
}
.inner-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(30, 31, 31, 0.78), rgba(30, 31, 31, 0.15)),
    linear-gradient(90deg, rgba(74, 47, 31, 0.56), transparent);
}
.inner-hero-content {
  position: relative;
  width: min(1120px, 92vw);
  margin: 0 auto;
  padding: 0 0 82px;
}
.inner-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.3rem, 6.8vw, 6.7rem);
  line-height: 0.92;
  font-weight: 600;
  margin: 0 0 20px;
  letter-spacing: -0.04em;
}
.inner-hero p {
  max-width: 740px;
  font-size: 1.24rem;
  color: rgba(255, 255, 255, 0.84);
}
.two-col-uneven {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 64px;
  align-items: start;
}
.timeline {
  position: relative;
}
.timeline:before {
  content: "";
  position: absolute;
  left: 116px;
  top: 10px;
  bottom: 10px;
  width: 1px;
  background: rgba(183, 139, 77, 0.4);
}
.timeline-item {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 34px;
  margin-bottom: 24px;
}
.timeline-item .time {
  font-weight: 800;
  color: var(--green);
  font-size: 0.92rem;
}
.timeline-item div:last-child {
  background: var(--ivory2);
  border: 1px solid rgba(183, 139, 77, 0.22);
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 10px 28px rgba(35, 27, 22, 0.06);
}
.timeline-item h3 {
  font-family: var(--serif);
  font-size: 1.65rem;
  color: var(--green);
  margin: 0 0 8px;
}
.timeline-item p {
  margin: 0;
  color: var(--muted);
}
.rate-grid {
  display: grid;
  gap: 26px;
}
.rate-grid.two {
  grid-template-columns: 1fr 1fr;
}
.rate-card,
.note-card,
.contact-card {
  background: var(--ivory2);
  border: 1px solid rgba(183, 139, 77, 0.24);
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 12px 32px rgba(45, 32, 24, 0.08);
}
.rate-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}
.rate-row:last-child {
  border-bottom: 0;
}
.rate-row strong {
  font-size: 1.3rem;
  color: var(--green);
}
.rate-row em {
  font-style: normal;
  color: var(--muted);
}
.mini-grid {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}
.mini-grid span {
  background: rgba(255, 250, 243, 0.65);
  border: 1px solid rgba(183, 139, 77, 0.24);
  border-radius: 18px;
  padding: 16px;
  color: var(--green);
  font-weight: 800;
}
.suite-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.suite-card {
  margin: 0;
  background: var(--ivory2);
  border: 1px solid rgba(183, 139, 77, 0.24);
}
.suite-card img {
  height: 320px;
  width: 100%;
  object-fit: cover;
}
.suite-card figcaption {
  padding: 18px 20px;
  font-weight: 800;
  color: var(--green);
}
.category-stack {
  display: grid;
  gap: 42px;
}
.category-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--ivory2);
  border-radius: 42px;
  overflow: hidden;
  border: 1px solid rgba(183, 139, 77, 0.24);
  box-shadow: var(--shadow);
}
.category-panel.reverse img {
  order: 2;
}
.category-panel img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}
.category-panel div {
  padding: 58px;
}
.bedroom-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 32px 0;
}
.bedroom-list span {
  background: var(--ivory2);
  border: 1px solid rgba(183, 139, 77, 0.24);
  border-radius: 999px;
  padding: 16px 20px;
  text-align: center;
  color: var(--green);
  font-weight: 800;
}
.table-wrap {
  overflow-x: auto;
  border-radius: 28px;
  border: 1px solid rgba(183, 139, 77, 0.24);
  box-shadow: 0 10px 28px rgba(35, 27, 22, 0.06);
}
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--ivory2);
  min-width: 760px;
}
th {
  background: var(--olive);
  color: white;
  text-align: left;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 18px;
}
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}
td:first-child {
  font-weight: 800;
  color: var(--green);
}
.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.editorial-card {
  background: var(--ivory2);
  border-radius: 36px;
  overflow: hidden;
  border: 1px solid rgba(183, 139, 77, 0.24);
  box-shadow: 0 12px 34px rgba(45, 32, 24, 0.08);
}
.editorial-card img {
  height: 360px;
  width: 100%;
  object-fit: cover;
}
.editorial-card div {
  padding: 34px;
}
.editorial-card h2 {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--green);
  margin: 0 0 10px;
}
.tariff-page {
  display: grid;
  gap: 38px;
}
.tariff-block h2 {
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--green);
  margin: 0 0 8px;
}
.tariff-notes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
}
.contact-form {
  background: var(--ivory2);
  border: 1px solid rgba(183, 139, 77, 0.24);
  border-radius: 34px;
  padding: 34px;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.contact-form label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green);
  font-weight: 800;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(38, 31, 26, 0.16);
  border-radius: 16px;
  background: #fffaf5;
  padding: 14px;
  margin-top: 8px;
  font: inherit;
  color: var(--charcoal);
}
.contact-form .full {
  grid-column: 1/-1;
}
.address.dark {
  color: var(--muted);
}
.footer {
  background: var(--charcoal);
  color: white;
  padding: 74px 0 24px;
}
.footer-top {
  width: min(1180px, 92vw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1fr 1fr;
  gap: 42px;
}
.footer-brand img {
  width: 140px;
  margin-bottom: 18px;
}
.footer h3,
.footer h4 {
  font-family: var(--serif);
  font-size: 2rem;
  margin: 0 0 14px;
  color: #fff;
}
.footer h4 {
  font-size: 1.5rem;
}
.footer p,
.footer a,
.footer li {
  color: rgba(255, 255, 255, 0.74);
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-bottom {
  width: min(1180px, 92vw);
  margin: 48px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.92rem;
}
.floating-wa {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  background: var(--olive);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 16px 22px;
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(95, 103, 84, 0.32);
}
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.in {
  opacity: 1;
  transform: none;
}

/* Refined brand atmosphere: luxury + nature + heritage + monsoon + minimal premium */
.section-pad:not(.promise-section):not(.cta-band) {
  position: relative;
}
.section-pad:not(.promise-section):not(.cta-band)::before {
  content: "";
  position: absolute;
  left: 3vw;
  right: 3vw;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 146, 74, 0.28),
    transparent
  );
  pointer-events: none;
}
.script-accent {
  font-family: var(--script);
  font-size: 2rem;
  color: var(--gold);
  font-weight: 400;
}
.rate-card,
.note-card,
.contact-card,
.contact-form,
.category-panel,
.editorial-card,
.suite-card {
  background: linear-gradient(180deg, #fcfaf6, var(--offwhite));
}
.offering-card img,
.experience-card img,
.image-frame img,
.mosaic img,
.suite-card img,
.editorial-card img,
.category-panel img,
.compare-card img {
  filter: saturate(0.94) contrast(1.02);
}
::selection {
  background: rgba(198, 146, 74, 0.28);
  color: var(--charcoal);
}
@media (max-width: 1050px) {
  .main-nav,
  .header-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .header-inner {
    height: 76px;
  }
  .brand {
    min-width: 0;
  }
  .main-nav.open {
    display: flex;
    position: absolute;
    left: 0;
    right: 0;
    top: 80px;
    background: var(--offwhite);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 6vw;
    border-bottom: 1px solid var(--line);
    gap: 10px;
  }
  .main-nav.open .nav-link {
    padding: 10px 0;
  }
  .hero h1 {
    font-size: clamp(3.6rem, 13vw, 6.2rem);
  }
  .feature-strip {
    grid-template-columns: 1fr 1fr;
  }
  .feature-strip div {
    border-bottom: 1px solid var(--line);
  }
  .feature-strip div:last-child {
    grid-column: 1/-1;
  }
  .offering-grid,
  .experience-grid,
  .promise-grid,
  .suite-grid,
  .editorial-grid,
  .tariff-notes-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split-grid,
  .split-grid.reverse,
  .slow-grid,
  .two-col-uneven,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .slow-copy {
    margin-left: 0;
  }
  .category-panel,
  .category-panel.reverse {
    grid-template-columns: 1fr;
  }
  .category-panel.reverse img {
    order: 0;
  }
  .compare-card {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 720px) {
  body {
    font-size: 15px;
  }
  .section-pad {
    padding: 78px 0;
  }
  .brand img {
    width: 74px;
  }
  .brand span {
    font-size: 1.22rem;
  }
  .hero {
    min-height: 760px;
  }
  .hero-content {
    padding: 80px 0 110px;
  }
  .hero p {
    font-size: 1.05rem;
  }
  .feature-wrap {
    margin-top: -45px;
  }
  .feature-strip {
    grid-template-columns: 1fr;
    border-radius: 24px;
  }
  .feature-strip div {
    border-right: 0;
  }
  .offering-grid,
  .experience-grid,
  .compare-grid,
  .promise-grid,
  .suite-grid,
  .editorial-grid,
  .rate-grid.two,
  .tariff-notes-grid,
  .bedroom-list {
    grid-template-columns: 1fr;
  }
  .mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .mosaic .mosaic-large {
    grid-row: auto;
  }
  .mosaic img {
    height: 280px;
  }
  .image-frame,
  .slow-image {
    height: 430px;
  }
  .slow-copy {
    padding: 38px;
    border-radius: 28px;
  }
  .section-heading h2,
  .copy-block h2,
  .cta-panel h2,
  .slow-copy h2 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }
  .inner-hero {
    height: 68vh;
  }
  .inner-hero h1 {
    font-size: clamp(3.1rem, 14vw, 5rem);
  }
  .timeline:before {
    display: none;
  }
  .timeline-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .rate-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .contact-form {
    grid-template-columns: 1fr;
    padding: 24px;
  }
  .footer-top,
  .footer-bottom {
    grid-template-columns: 1fr;
    display: grid;
  }
  .footer-bottom {
    gap: 10px;
  }
  .floating-wa {
    left: 18px;
    right: 18px;
    text-align: center;
  }
  .insta-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .insta-grid img {
    height: 170px;
  }
  .category-panel img {
    min-height: 340px;
  }
  .category-panel div {
    padding: 34px;
  }
}

/* 2026-05-21 hero/header refinement to mirror Lovable-style reference */
.home-page .site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  background: linear-gradient(
    180deg,
    rgba(30, 31, 31, 0.42),
    rgba(30, 31, 31, 0)
  );
  border-bottom: 0;
  backdrop-filter: none;
}
.home-page .announcement {
  display: none;
}
.home-page .header-inner {
  height: 116px;
  width: min(1460px, 94vw);
  gap: 18px;
}
.home-page .brand {
  min-width: 275px;
  gap: 14px;
}
.home-page .brand img {
  width: 86px;
  height: 58px;
  filter: brightness(1.9) grayscale(1) contrast(0.92);
  opacity: 0.96;
}
.home-page .brand span {
  color: #f7f5f1;
  font-size: 1.08rem;
  line-height: 1.15;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 800;
}
.home-page .brand span strong {
  font-weight: 800;
}
.home-page .brand em {
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  margin-top: 5px;
  font-family: var(--sans);
  font-weight: 700;
}
.home-page .main-nav {
  gap: 34px;
}
.home-page .nav-link {
  color: rgba(247, 245, 241, 0.88);
  font-size: 0.66rem;
  letter-spacing: 0.3em;
  font-weight: 600;
  padding: 38px 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.24);
}
.home-page .nav-link.is-active {
  color: var(--gold);
}
.home-page .nav-link:after {
  bottom: 31px;
  background: var(--gold);
}
.home-page .header-cta {
  background: var(--olive);
  color: #f7f5f1;
  padding: 12px 24px;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  box-shadow: none;
  min-width: 152px;
  text-align: center;
}
.home-page .hero {
  min-height: 100vh;
  align-items: center;
}
.home-page .hero-shade {
  background:
    linear-gradient(
      90deg,
      rgba(30, 31, 31, 0.55),
      rgba(74, 47, 31, 0.32) 47%,
      rgba(30, 31, 31, 0.12)
    ),
    linear-gradient(
      0deg,
      rgba(30, 31, 31, 0.42),
      rgba(30, 31, 31, 0.05) 40%,
      rgba(30, 31, 31, 0.34)
    );
}
.home-page .hero-content {
  width: min(1420px, 92vw);
  padding: 180px 0 86px;
}
.home-page .hero .eyebrow {
  color: rgba(247, 245, 241, 0.84);
  letter-spacing: 0.42em;
  font-size: 0.7rem;
  margin-bottom: 42px;
}
.home-page .hero h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(4.8rem, 7.35vw, 8.35rem);
  line-height: 0.93;
  letter-spacing: -0.05em;
  max-width: 965px;
  margin-bottom: 34px;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.38);
}
.home-page .hero p {
  max-width: 760px;
  font-size: clamp(1.08rem, 1.65vw, 1.36rem);
  line-height: 1.75;
  color: rgba(247, 245, 241, 0.86);
  font-weight: 400;
  margin-bottom: 38px;
}
.home-page .hero .btn {
  min-width: 260px;
  border-radius: 999px;
  padding: 17px 28px;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
}
.home-page .hero .btn-light {
  background: #f7f5f1;
  color: var(--charcoal);
  border-color: #f7f5f1;
}
.home-page .hero .btn-primary {
  background: rgba(30, 31, 31, 0.36);
  color: #f7f5f1;
  border-color: rgba(247, 245, 241, 0.38);
  box-shadow: none;
}
.home-page .feature-wrap {
  margin-top: 0;
  background: var(--offwhite);
  padding: 32px 0 0;
}
.home-page .feature-strip {
  border-radius: 22px;
  box-shadow: 0 16px 48px rgba(74, 47, 31, 0.08);
}
.home-page .feature-strip div {
  padding: 22px 14px;
  font-size: 0.9rem;
}
/* smaller global desktop header, one-line navigation */
.header-inner {
  width: min(1380px, 94vw);
  gap: 18px;
}
.brand {
  min-width: 230px;
}
.brand img {
  width: 82px;
}
.brand span {
  font-size: 1.28rem;
}
.main-nav {
  gap: 22px;
}
.nav-link {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}
.header-cta {
  font-size: 0.72rem;
  padding: 11px 18px;
  letter-spacing: 0.12em;
}
/* Small blinking WhatsApp button */
.floating-wa {
  width: 58px;
  height: 58px;
  right: 28px;
  bottom: 28px;
  padding: 0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #173d32;
  color: #fff;
  border: 1px solid rgba(247, 245, 241, 0.28);
  box-shadow: 0 16px 36px rgba(23, 61, 50, 0.3);
  text-indent: -9999px;
  overflow: visible;
  animation: waPulse 1.8s ease-in-out infinite;
}
.floating-wa:before {
  content: "☏";
  text-indent: 0;
  font-size: 25px;
  line-height: 1;
  transform: rotate(-8deg);
  font-weight: 900;
}
.floating-wa:after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(23, 61, 50, 0.32);
  border-radius: 50%;
  animation: waRing 1.8s ease-in-out infinite;
}
@keyframes waPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}
@keyframes waRing {
  0% {
    opacity: 0.8;
    transform: scale(0.92);
  }
  100% {
    opacity: 0;
    transform: scale(1.34);
  }
}
@media (max-width: 1180px) {
  .home-page .main-nav {
    gap: 18px;
  }
  .home-page .nav-link {
    font-size: 0.6rem;
    letter-spacing: 0.24em;
  }
  .home-page .brand {
    min-width: 245px;
  }
  .home-page .header-cta {
    min-width: auto;
    padding: 10px 18px;
  }
}
@media (max-width: 1050px) {
  .home-page .site-header {
    position: absolute;
    background: linear-gradient(
      180deg,
      rgba(30, 31, 31, 0.56),
      rgba(30, 31, 31, 0)
    );
  }
  .home-page .menu-toggle span {
    background: #f7f5f1;
  }
  .home-page .main-nav.open {
    top: 76px;
    background: rgba(247, 245, 241, 0.98);
    backdrop-filter: blur(14px);
  }
  .home-page .main-nav.open .nav-link {
    color: var(--charcoal);
    text-shadow: none;
  }
  .home-page .brand span {
    font-size: 0.94rem;
  }
  .home-page .brand img {
    width: 72px;
  }
  .home-page .hero-content {
    padding-top: 140px;
  }
  .home-page .hero h1 {
    font-size: clamp(3.8rem, 12vw, 6.4rem);
  }
}
@media (max-width: 720px) {
  .home-page .header-inner {
    height: 86px;
  }
  .home-page .brand span {
    display: none;
  }
  .home-page .hero {
    min-height: 780px;
  }
  .home-page .hero-content {
    padding: 118px 0 80px;
  }
  .home-page .hero .eyebrow {
    letter-spacing: 0.28em;
    margin-bottom: 28px;
  }
  .home-page .hero h1 {
    font-size: clamp(3.15rem, 15vw, 5.4rem);
  }
  .home-page .hero .btn {
    width: 100%;
    min-width: 0;
  }
  .home-page .feature-wrap {
    padding-top: 22px;
  }
  .floating-wa {
    left: auto;
    right: 18px;
    bottom: 18px;
    width: 54px;
    height: 54px;
  }
}

/* 2026-05-21 Instagram integration + cleaner/bigger brand header refinement */
.instagram-live-frame {
  position: relative;
  margin: 0 auto 26px;
  min-height: 128px;
  border: 1px solid rgba(198, 146, 74, 0.28);
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    rgba(247, 245, 241, 0.92),
    rgba(239, 232, 222, 0.72)
  );
  box-shadow: 0 16px 46px rgba(74, 47, 31, 0.08);
  overflow: hidden;
}
.instagram-connect-note {
  padding: 26px 28px;
  text-align: center;
  color: var(--muted);
}
.instagram-connect-note span {
  display: block;
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1.1;
  color: var(--green);
  margin-bottom: 6px;
}
.instagram-connect-note p {
  margin: 0 auto;
  max-width: 720px;
  font-size: 0.96rem;
}
.instagram-connect-note strong {
  color: var(--wood);
}
.instagram-fallback-grid {
  margin-top: 18px;
}
.home-page .brand {
  min-width: 300px;
  gap: 16px;
}
.home-page .brand img {
  width: 96px;
  height: 66px;
}
.home-page .brand span {
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: 0.24em;
}
.home-page .brand em {
  font-size: 0.74rem;
  letter-spacing: 0.36em;
  margin-top: 6px;
}
.home-page .main-nav {
  gap: 28px;
}
.home-page .nav-link {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
}
.home-page .header-cta {
  padding: 10px 18px;
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  min-width: 132px;
}
.header-inner {
  gap: 16px;
}
.brand img {
  width: 92px;
  height: 62px;
}
.brand span {
  font-size: 1.36rem;
  line-height: 1.08;
}
.header-cta {
  padding: 10px 17px;
  font-size: 0.68rem;
}
@media (max-width: 1180px) {
  .home-page .brand {
    min-width: 270px;
  }
  .home-page .brand img {
    width: 86px;
    height: 60px;
  }
  .home-page .brand span {
    font-size: 1.02rem;
    letter-spacing: 0.2em;
  }
  .home-page .main-nav {
    gap: 16px;
  }
  .home-page .nav-link {
    font-size: 0.56rem;
    letter-spacing: 0.22em;
  }
  .home-page .header-cta {
    font-size: 0.58rem;
    padding: 9px 14px;
  }
}
@media (max-width: 1050px) {
  .home-page .brand {
    min-width: 0;
  }
  .home-page .brand img {
    width: 82px;
    height: 58px;
  }
  .home-page .brand span {
    font-size: 1rem;
  }
  .instagram-connect-note {
    padding: 22px 18px;
  }
  .instagram-connect-note span {
    font-size: 1.45rem;
  }
}
@media (max-width: 720px) {
  .home-page .brand img {
    width: 76px;
    height: 52px;
  }
  .home-page .brand span {
    display: block;
    font-size: 0.76rem;
    letter-spacing: 0.13em;
    max-width: 155px;
  }
  .home-page .brand em {
    font-size: 0.55rem;
    letter-spacing: 0.24em;
  }
  .instagram-live-frame {
    border-radius: 22px;
    min-height: 110px;
  }
}

/* Final header correction: smaller one-line brand and cleaner desktop navigation */
.site-header .header-inner {
  height: 74px;
  gap: 18px;
  width: min(1280px, 94vw);
}
.site-header .brand {
  min-width: 215px;
  gap: 9px;
  flex-shrink: 0;
  white-space: nowrap;
}
.site-header .brand img {
  width: 68px;
  height: 46px;
  object-fit: contain;
}
.site-header .brand span {
  font-family: var(--sans);
  font-size: 0.78rem;
  line-height: 1;
  letter-spacing: 0.135em;
  text-transform: uppercase;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: 0.36em;
  white-space: nowrap;
  color: var(--charcoal);
}
.site-header .brand span strong {
  font-weight: 800;
  white-space: nowrap;
}
.site-header .brand em {
  display: inline;
  font: inherit;
  letter-spacing: inherit;
  margin: 0;
  white-space: nowrap;
}
.site-header .main-nav {
  gap: 22px;
  white-space: nowrap;
  min-width: 0;
}
.site-header .nav-link {
  font-size: 0.64rem;
  letter-spacing: 0.2em;
  padding: 27px 0;
}
.site-header .header-cta {
  font-size: 0.66rem;
  padding: 10px 18px;
  letter-spacing: 0.14em;
  min-width: auto;
  flex-shrink: 0;
}

.home-page .site-header .header-inner {
  height: 76px;
}
.home-page .site-header .brand {
  min-width: 245px;
  gap: 10px;
}
.home-page .site-header .brand img {
  width: 72px;
  height: 48px;
  filter: brightness(1.8) grayscale(1) contrast(0.94);
  opacity: 0.96;
}
.home-page .site-header .brand span {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  color: #f7f5f1;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.22);
}
.home-page .site-header .brand em {
  display: inline;
  font-size: inherit;
  letter-spacing: inherit;
  margin: 0;
}
.home-page .site-header .main-nav {
  gap: 24px;
}
.home-page .site-header .nav-link {
  font-size: 0.63rem;
  letter-spacing: 0.24em;
  color: #f7f5f1;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.22);
}
.home-page .site-header .header-cta {
  font-size: 0.64rem;
  padding: 10px 18px;
  background: rgba(95, 103, 84, 0.92);
  color: #f7f5f1;
  border: 1px solid rgba(198, 146, 74, 0.28);
}

@media (max-width: 1180px) {
  .site-header .brand {
    min-width: 195px;
  }
  .site-header .brand img {
    width: 62px;
    height: 42px;
  }
  .site-header .brand span {
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }
  .site-header .main-nav {
    gap: 17px;
  }
  .site-header .nav-link {
    font-size: 0.58rem;
    letter-spacing: 0.17em;
  }
  .site-header .header-cta {
    padding: 9px 14px;
    font-size: 0.58rem;
  }
  .home-page .site-header .brand {
    min-width: 215px;
  }
  .home-page .site-header .brand img {
    width: 64px;
    height: 44px;
  }
  .home-page .site-header .brand span {
    font-size: 0.64rem;
    letter-spacing: 0.18em;
  }
  .home-page .site-header .main-nav {
    gap: 16px;
  }
  .home-page .site-header .nav-link {
    font-size: 0.56rem;
    letter-spacing: 0.2em;
  }
}
@media (max-width: 1050px) {
  .site-header .brand,
  .home-page .site-header .brand {
    min-width: 0;
  }
  .site-header .brand img,
  .home-page .site-header .brand img {
    width: 64px;
    height: 44px;
  }
  .site-header .brand span,
  .home-page .site-header .brand span {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    color: var(--charcoal);
    text-shadow: none;
  }
  .home-page .site-header .brand span {
    color: #f7f5f1;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.22);
  }
}
@media (max-width: 720px) {
  .site-header .brand span,
  .home-page .site-header .brand span {
    display: none;
  }
  .site-header .brand img,
  .home-page .site-header .brand img {
    width: 70px;
    height: 48px;
  }
  .site-header .header-inner,
  .home-page .site-header .header-inner {
    height: 72px;
  }
}

/* Final brand + Instagram integration update */
.instagram-live-frame {
  background: rgba(247, 245, 241, 0.82);
  border: 1px solid rgba(198, 146, 74, 0.24);
  border-radius: 34px;
  padding: 16px;
  box-shadow: 0 18px 46px rgba(74, 47, 31, 0.08);
  min-height: 260px;
  overflow: hidden;
}
.instagram-connect-note,
.instagram-fallback-grid {
  display: none !important;
}

/* Two-line compact brand: LOGO + KERALA HOUSEBOAT / ESCAPES */
.site-header .header-inner {
  height: 68px;
  gap: 14px;
  width: min(1280px, 95vw);
}
.site-header .brand,
.home-page .site-header .brand {
  min-width: 185px !important;
  max-width: 205px;
  gap: 8px !important;
  flex-shrink: 0;
  align-items: center;
  white-space: nowrap;
}
.site-header .brand img,
.home-page .site-header .brand img {
  width: 58px !important;
  height: 40px !important;
  object-fit: contain;
}
.site-header .brand span,
.home-page .site-header .brand span {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  font-family: var(--sans) !important;
  font-size: 0.66rem !important;
  line-height: 1.05 !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase;
  font-weight: 800;
  white-space: nowrap;
}
.site-header .brand span strong,
.home-page .site-header .brand span strong {
  display: block;
  white-space: nowrap;
  font-weight: 800;
}
.site-header .brand em,
.home-page .site-header .brand em {
  display: block !important;
  font-style: normal !important;
  font: inherit !important;
  letter-spacing: 0.28em !important;
  margin: 3px 0 0 18px !important;
  white-space: nowrap;
}
.home-page .site-header .brand img {
  filter: brightness(1.75) grayscale(1) contrast(0.96);
  opacity: 0.96;
}
.home-page .site-header .brand span {
  color: #f7f5f1 !important;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.24);
}
.site-header .main-nav {
  gap: 20px !important;
  white-space: nowrap;
  min-width: 0;
}
.site-header .nav-link {
  font-size: 0.6rem !important;
  letter-spacing: 0.19em !important;
  padding: 24px 0 !important;
}
.site-header .header-cta {
  font-size: 0.6rem !important;
  padding: 8px 14px !important;
  letter-spacing: 0.13em !important;
}
.home-page .site-header .header-inner {
  height: 70px;
}
.home-page .site-header .main-nav {
  gap: 21px !important;
}
.home-page .site-header .nav-link {
  font-size: 0.58rem !important;
  letter-spacing: 0.21em !important;
}
.home-page .site-header .header-cta {
  font-size: 0.58rem !important;
  padding: 8px 14px !important;
}

@media (max-width: 1180px) {
  .site-header .brand,
  .home-page .site-header .brand {
    min-width: 160px !important;
    max-width: 170px;
  }
  .site-header .brand img,
  .home-page .site-header .brand img {
    width: 52px !important;
    height: 36px !important;
  }
  .site-header .brand span,
  .home-page .site-header .brand span {
    font-size: 0.57rem !important;
    letter-spacing: 0.12em !important;
  }
  .site-header .brand em,
  .home-page .site-header .brand em {
    letter-spacing: 0.22em !important;
    margin-left: 15px !important;
  }
  .site-header .main-nav,
  .home-page .site-header .main-nav {
    gap: 14px !important;
  }
  .site-header .nav-link,
  .home-page .site-header .nav-link {
    font-size: 0.52rem !important;
    letter-spacing: 0.14em !important;
  }
  .site-header .header-cta,
  .home-page .site-header .header-cta {
    font-size: 0.52rem !important;
    padding: 8px 11px !important;
  }
}
@media (max-width: 1050px) {
  .site-header .brand,
  .home-page .site-header .brand {
    min-width: 0 !important;
    max-width: none;
  }
  .site-header .brand img,
  .home-page .site-header .brand img {
    width: 64px !important;
    height: 44px !important;
  }
  .site-header .brand span,
  .home-page .site-header .brand span {
    font-size: 0.62rem !important;
    letter-spacing: 0.12em !important;
  }
  .site-header .brand em,
  .home-page .site-header .brand em {
    margin-left: 16px !important;
  }
}
@media (max-width: 720px) {
  .site-header .brand span,
  .home-page .site-header .brand span {
    display: none !important;
  }
  .site-header .brand img,
  .home-page .site-header .brand img {
    width: 68px !important;
    height: 46px !important;
  }
  .site-header .header-inner,
  .home-page .site-header .header-inner {
    height: 70px;
  }
  .instagram-live-frame {
    padding: 8px;
    border-radius: 22px;
    min-height: 210px;
  }
}

/* 2026-05-21 Cormorant/Tailwind-style hero typography refinement */
:root {
  --font-sans: "Inter", system-ui, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-mono:
    ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-5xl: 3rem;
  --text-7xl: 4.5rem;
  --container-2xl: 42rem;
  --container-4xl: 56rem;
  --tracking-widest: 0.1em;
  --leading-relaxed: 1.625;
  --font-weight-light: 300;
  --shadow-luxe: 0 30px 80px -40px rgba(30, 31, 31, 0.25);
  --shadow-soft: 0 12px 40px -20px rgba(30, 31, 31, 0.15);
  --radius: 4px;
  --serif: var(--font-serif);
  --sans: var(--font-sans);
}
body {
  font-family: var(--font-sans);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,
h2,
h3,
.section-heading h2,
.copy-block h2,
.cta-panel h2,
.slow-copy h2,
.inner-hero h1 {
  font-family: var(--font-serif);
  font-weight: 600;
}
.home-page .hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 6.8vw, 5.5rem) !important;
  line-height: 1.02 !important;
  max-width: 56rem !important;
  font-weight: 600 !important;
  letter-spacing: -0.025em !important;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4) !important;
  margin: 0 0 0 !important;
}
.home-page .hero p {
  margin-top: 1.75rem !important;
  max-width: 42rem !important;
  font-size: clamp(1rem, 1.45vw, 1.125rem) !important;
  line-height: 1.625 !important;
  font-weight: 300 !important;
  color: rgba(247, 245, 241, 0.9) !important;
  margin-bottom: 2.25rem !important;
}
.home-page .hero .eyebrow {
  font-size: 11px !important;
  letter-spacing: 0.28em !important;
  color: rgba(247, 245, 241, 0.9) !important;
  text-transform: uppercase;
  font-weight: 300 !important;
  margin-bottom: 2rem !important;
}
.home-page .hero-content {
  padding-top: 168px !important;
  padding-bottom: 88px !important;
}
.home-page .hero .btn-row {
  margin-top: 0 !important;
}
.home-page .hero .btn {
  font-size: 0.68rem !important;
  letter-spacing: 0.2em !important;
  min-width: 220px !important;
  padding: 15px 24px !important;
}
/* Keep brand compact and in one row with the two-line wordmark */
.home-page .site-header .brand,
.site-header .brand {
  min-width: 178px !important;
  max-width: 198px !important;
}
.home-page .site-header .brand img,
.site-header .brand img {
  width: 56px !important;
  height: 38px !important;
}
.home-page .site-header .brand span,
.site-header .brand span {
  font-size: 0.62rem !important;
  letter-spacing: 0.17em !important;
  line-height: 1.05 !important;
}
.home-page .site-header .brand em,
.site-header .brand em {
  margin-left: 16px !important;
  letter-spacing: 0.26em !important;
}
.home-page .site-header .main-nav,
.site-header .main-nav {
  gap: 18px !important;
}
.home-page .site-header .nav-link,
.site-header .nav-link {
  font-size: 0.57rem !important;
  letter-spacing: 0.18em !important;
}
.home-page .site-header .header-cta,
.site-header .header-cta {
  font-size: 0.56rem !important;
  padding: 8px 12px !important;
  letter-spacing: 0.12em !important;
}
@media (max-width: 1180px) {
  .home-page .site-header .brand,
  .site-header .brand {
    min-width: 158px !important;
    max-width: 170px !important;
  }
  .home-page .site-header .brand img,
  .site-header .brand img {
    width: 50px !important;
    height: 35px !important;
  }
  .home-page .site-header .brand span,
  .site-header .brand span {
    font-size: 0.55rem !important;
    letter-spacing: 0.12em !important;
  }
  .home-page .site-header .brand em,
  .site-header .brand em {
    margin-left: 14px !important;
    letter-spacing: 0.2em !important;
  }
  .home-page .site-header .main-nav,
  .site-header .main-nav {
    gap: 12px !important;
  }
  .home-page .site-header .nav-link,
  .site-header .nav-link {
    font-size: 0.5rem !important;
    letter-spacing: 0.12em !important;
  }
  .home-page .site-header .header-cta,
  .site-header .header-cta {
    font-size: 0.5rem !important;
    padding: 8px 10px !important;
  }
}
@media (max-width: 720px) {
  .home-page .hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem) !important;
    line-height: 1.02 !important;
  }
  .home-page .hero p {
    font-size: 1rem !important;
    margin-top: 1.25rem !important;
  }
}

/* 2026-05-21 Day Cruises page luxury redesign */
.day-cruises-page .inner-hero.day-hero {
  min-height: 86vh;
  height: auto;
  align-items: flex-end;
}
.day-cruises-page .day-hero .inner-hero-overlay {
  background:
    linear-gradient(180deg, rgba(30, 31, 31, 0.15), rgba(30, 31, 31, 0.68) 78%),
    linear-gradient(90deg, rgba(74, 47, 31, 0.5), rgba(30, 31, 31, 0.1) 56%);
}
.day-cruises-page .day-hero-content {
  padding-bottom: 88px;
  max-width: 780px;
}
.day-cruises-page .day-hero h1 {
  font-size: clamp(3.2rem, 6.5vw, 5.9rem);
  line-height: 0.97;
  letter-spacing: -0.03em;
  max-width: 760px;
  margin-bottom: 22px;
}
.day-cruises-page .day-hero p {
  max-width: 650px;
  font-size: 1.1rem;
  line-height: 1.78;
  color: rgba(247, 245, 241, 0.9);
}
.day-cruises-page .day-hero .btn-row {
  margin-top: 28px;
}
.day-overview-section {
  padding-top: 92px;
  padding-bottom: 96px;
}
.day-overview-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 68px;
  align-items: start;
}
.day-overview-aside {
  position: relative;
}
.fact-stack {
  display: grid;
  gap: 18px;
}
.fact-card {
  background: linear-gradient(
    145deg,
    rgba(247, 245, 241, 0.98),
    rgba(239, 232, 222, 0.92)
  );
  border: 1px solid rgba(198, 146, 74, 0.22);
  border-radius: 28px;
  padding: 28px 28px 26px;
  box-shadow: 0 18px 50px rgba(74, 47, 31, 0.08);
}
.fact-card small {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 10px;
}
.fact-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.02;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.fact-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.72;
}
.day-journey-section .section-heading {
  margin-bottom: 52px;
}
.day-timeline-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.day-timeline-card {
  background: var(--ivory2);
  border: 1px solid rgba(198, 146, 74, 0.22);
  border-radius: 30px;
  padding: 32px 28px 28px;
  box-shadow: 0 18px 46px rgba(74, 47, 31, 0.07);
  position: relative;
  overflow: hidden;
}
.day-timeline-card:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--gold), rgba(198, 146, 74, 0.15));
}
.time-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(198, 146, 74, 0.12);
  color: var(--wood);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 16px;
}
.day-timeline-card h3 {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.05;
  margin: 0 0 12px;
  color: var(--charcoal);
}
.day-timeline-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.78;
}
.day-menu-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 56px;
  align-items: center;
}
.day-menu-image {
  height: 640px;
}
.day-menu-board {
  background: linear-gradient(
    145deg,
    rgba(247, 245, 241, 0.96),
    rgba(239, 232, 222, 0.88)
  );
  border: 1px solid rgba(198, 146, 74, 0.22);
  border-radius: 34px;
  padding: 42px 40px;
  box-shadow: 0 22px 56px rgba(74, 47, 31, 0.08);
}
.day-menu-board p {
  color: var(--muted);
  font-size: 1.02rem;
}
.menu-board-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-top: 24px;
}
.menu-block {
  padding: 6px 0;
}
.menu-block h3 {
  font-family: var(--serif);
  font-size: 1.75rem;
  line-height: 1.08;
  margin: 0 0 12px;
  color: var(--charcoal);
}
.style-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.style-card {
  background: linear-gradient(
    145deg,
    rgba(247, 245, 241, 0.98),
    rgba(239, 232, 222, 0.86)
  );
  border: 1px solid rgba(198, 146, 74, 0.2);
  border-radius: 30px;
  padding: 34px 28px;
  box-shadow: 0 18px 48px rgba(74, 47, 31, 0.07);
}
.style-card.is-featured {
  background: linear-gradient(
    160deg,
    rgba(95, 103, 84, 0.97),
    rgba(75, 83, 67, 0.95)
  );
  color: #fff;
  border-color: rgba(198, 146, 74, 0.36);
}
.style-card h3 {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.05;
  margin: 0 0 12px;
}
.style-card p {
  margin: 0 0 16px;
  color: inherit;
  opacity: 0.88;
  line-height: 1.75;
}
.mini-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mini-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  color: inherit;
  opacity: 0.9;
}
.mini-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.day-rate-section {
  padding-top: 108px;
  padding-bottom: 112px;
}
.day-rate-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.season-panel {
  background: linear-gradient(
    155deg,
    rgba(247, 245, 241, 0.98),
    rgba(239, 232, 222, 0.9)
  );
  border: 1px solid rgba(198, 146, 74, 0.22);
  border-radius: 34px;
  padding: 34px 30px;
  box-shadow: 0 20px 50px rgba(74, 47, 31, 0.08);
}
.season-panel.is-winter {
  background: linear-gradient(
    155deg,
    rgba(247, 245, 241, 0.98),
    rgba(215, 218, 223, 0.62)
  );
}
.season-head {
  padding-bottom: 18px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(198, 146, 74, 0.24);
}
.season-head span {
  display: block;
  font-family: var(--serif);
  font-size: 2.3rem;
  line-height: 1;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.season-head p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.rate-pair {
  padding: 16px 0;
  border-bottom: 1px solid rgba(30, 31, 31, 0.08);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 14px;
  align-items: start;
}
.rate-pair:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.rate-pair strong {
  font-size: 1.02rem;
  color: var(--charcoal);
}
.rate-pair span {
  font-family: var(--serif);
  font-size: 1.95rem;
  line-height: 1;
  color: var(--wood);
  white-space: nowrap;
}
.rate-pair em {
  grid-column: 1/-1;
  color: var(--muted);
  font-style: normal;
  font-size: 0.92rem;
}
.soft-note-panel {
  margin-top: 28px;
  border: 1px solid rgba(198, 146, 74, 0.18);
  background: rgba(247, 245, 241, 0.88);
  border-radius: 26px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(74, 47, 31, 0.05);
}
.soft-note-panel p {
  margin: 0;
  color: var(--muted);
  max-width: 760px;
}
@media (max-width: 1050px) {
  .day-overview-grid,
  .day-menu-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .day-menu-image {
    height: 460px;
  }
  .day-timeline-grid,
  .style-grid,
  .day-rate-panels {
    grid-template-columns: 1fr;
  }
  .menu-board-grid {
    grid-template-columns: 1fr;
  }
  .soft-note-panel {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 720px) {
  .day-cruises-page .day-hero-content {
    padding-bottom: 70px;
  }
  .day-cruises-page .day-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }
  .day-cruises-page .day-hero p {
    font-size: 1rem;
  }
  .fact-card,
  .day-timeline-card,
  .day-menu-board,
  .style-card,
  .season-panel {
    border-radius: 24px;
    padding: 24px 20px;
  }
  .day-menu-image {
    height: 360px;
  }
  .rate-pair span {
    font-size: 1.7rem;
  }
}

/* 2026-05-21 multi-page premium redesign */
.compact-page-hero {
  height: 54vh;
  min-height: 420px;
  max-height: 560px;
  align-items: flex-end;
}
.compact-page-hero .compact-hero-content {
  padding-bottom: 62px;
  max-width: 760px;
}
.compact-page-hero h1 {
  font-size: clamp(2.9rem, 5.6vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}
.compact-page-hero p {
  max-width: 620px;
  font-size: 1.06rem;
  line-height: 1.75;
  color: rgba(247, 245, 241, 0.9);
}
.compact-page-hero .eyebrow {
  color: rgba(247, 245, 241, 0.92) !important;
  letter-spacing: 0.28em !important;
}
.compact-page-hero .inner-hero-overlay {
  background:
    linear-gradient(180deg, rgba(30, 31, 31, 0.14), rgba(30, 31, 31, 0.7) 80%),
    linear-gradient(90deg, rgba(74, 47, 31, 0.45), rgba(30, 31, 31, 0.05) 62%);
}
.day-hero-small {
  min-height: 420px;
  max-height: 520px;
}
.overnight-hero-small,
.boats-hero-small,
.tariffs-hero-small,
.contact-hero-small {
  min-height: 430px;
  max-height: 540px;
}
.overnight-intro-grid,
.boats-intro-grid,
.contact-luxe-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 58px;
  align-items: start;
}
.overnight-facts,
.boats-side-note {
  display: grid;
  gap: 18px;
}
.overnight-timeline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.overnight-line-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  padding: 28px;
  border-radius: 28px;
  background: rgba(247, 245, 241, 0.95);
  border: 1px solid rgba(198, 146, 74, 0.18);
  box-shadow: 0 16px 42px rgba(74, 47, 31, 0.06);
}
.overnight-line-item span {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold);
}
.overnight-line-item h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.08;
  margin: 0 0 10px;
}
.overnight-line-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}
.editorial-suite-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 20px;
  align-items: stretch;
}
.editorial-card {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 48px rgba(74, 47, 31, 0.08);
  min-height: 250px;
  background: #111;
}
.editorial-card.tall {
  grid-row: span 2;
  min-height: 520px;
}
.editorial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.editorial-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(247, 245, 241, 0.92);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--wood);
}
.suite-note {
  margin-top: 24px;
  padding: 24px 26px;
  border-radius: 26px;
  background: rgba(239, 232, 222, 0.66);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.suite-note p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
}
.category-editorial-stack {
  display: grid;
  gap: 32px;
}
.category-editorial {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: center;
  padding: 24px;
  border-radius: 38px;
  border: 1px solid rgba(198, 146, 74, 0.2);
  background: linear-gradient(
    145deg,
    rgba(247, 245, 241, 0.98),
    rgba(239, 232, 222, 0.88)
  );
  box-shadow: 0 18px 48px rgba(74, 47, 31, 0.07);
}
.category-editorial.reverse {
  grid-template-columns: 1.08fr 0.92fr;
}
.category-editorial.reverse .category-image {
  order: 2;
}
.category-editorial.reverse .category-copy {
  order: 1;
}
.category-image {
  height: 380px;
  border-radius: 28px;
  overflow: hidden;
}
.category-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.category-copy h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.4vw, 3.35rem);
  line-height: 1;
  margin: 0 0 16px;
}
.category-copy p {
  color: var(--muted);
}
.comparison-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
.comparison-mini-card {
  background: rgba(247, 245, 241, 0.95);
  border: 1px solid rgba(198, 146, 74, 0.18);
  padding: 28px 24px;
  border-radius: 28px;
  box-shadow: 0 14px 38px rgba(74, 47, 31, 0.06);
}
.comparison-mini-card h3 {
  font-family: var(--serif);
  font-size: 1.9rem;
  line-height: 1.05;
  margin: 0 0 14px;
}
.comparison-mini-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.comparison-mini-card li {
  margin-bottom: 10px;
  color: var(--muted);
}
.premium-table-wrap table {
  background: rgba(247, 245, 241, 0.95);
}
.tariffs-shell {
  display: grid;
  gap: 28px;
}
.tariff-editorial-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.tariff-card-block,
.tariff-wide-section,
.note-luxe {
  background: rgba(247, 245, 241, 0.95);
  border: 1px solid rgba(198, 146, 74, 0.18);
  border-radius: 30px;
  box-shadow: 0 16px 42px rgba(74, 47, 31, 0.06);
}
.tariff-card-block {
  padding: 28px 26px;
}
.tariff-card-head span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 10px;
}
.tariff-card-head h3 {
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
  margin: 0 0 8px;
}
.tariff-card-head p {
  margin: 0 0 18px;
  color: var(--muted);
}
.tariff-listing > div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(30, 31, 31, 0.08);
}
.tariff-listing > div:first-child {
  border-top: 0;
  padding-top: 0;
}
.tariff-listing strong {
  font-size: 1.02rem;
}
.tariff-listing span {
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1;
  color: var(--wood);
}
.tariff-listing em {
  grid-column: 1/-1;
  font-style: normal;
  color: var(--muted);
  font-size: 0.92rem;
}
.tariff-wide-section {
  padding: 30px 26px;
}
.wide-section-head h2 {
  font-family: var(--serif);
  font-size: 2.6rem;
  line-height: 1;
  margin: 0 0 6px;
}
.wide-section-head p {
  margin: 0 0 18px;
  color: var(--muted);
}
.tariff-note-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.note-luxe {
  padding: 28px 24px;
}
.note-luxe h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  line-height: 1.08;
  margin: 0 0 12px;
}
.note-luxe p {
  margin: 0 0 10px;
  color: var(--muted);
}
.contact-luxe-copy {
  padding: 16px 0;
}
.contact-luxe-cards {
  display: grid;
  gap: 16px;
  margin: 22px 0;
}
.contact-mini-card,
.address-panel {
  padding: 22px 24px;
  border-radius: 26px;
  background: rgba(247, 245, 241, 0.95);
  border: 1px solid rgba(198, 146, 74, 0.18);
  box-shadow: 0 14px 38px rgba(74, 47, 31, 0.06);
}
.contact-mini-card small,
.address-panel small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 10px;
}
.contact-mini-card a {
  font-weight: 700;
  color: var(--wood);
}
.contact-mini-card p,
.address-panel p {
  margin: 0;
  color: var(--muted);
}
.contact-form-luxe {
  padding: 34px 30px;
  border-radius: 34px;
  background: linear-gradient(
    145deg,
    rgba(247, 245, 241, 0.98),
    rgba(239, 232, 222, 0.88)
  );
  border: 1px solid rgba(198, 146, 74, 0.22);
  box-shadow: 0 18px 52px rgba(74, 47, 31, 0.08);
}
.contact-form-luxe .form-heading {
  grid-column: 1/-1;
  margin-bottom: 6px;
}
.contact-form-luxe .form-heading h2 {
  font-family: var(--serif);
  font-size: 2.4rem;
  line-height: 1;
  margin: 0 0 10px;
}
.contact-form-luxe .form-heading p {
  margin: 0;
  color: var(--muted);
}
.contact-form-luxe label {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--wood);
}
.contact-form-luxe input,
.contact-form-luxe select,
.contact-form-luxe textarea {
  margin-top: 10px;
}
@media (max-width: 1050px) {
  .compact-page-hero {
    height: auto;
    min-height: 380px;
    max-height: none;
  }
  .compact-page-hero .compact-hero-content {
    padding-bottom: 54px;
  }
  .overnight-intro-grid,
  .boats-intro-grid,
  .contact-luxe-grid,
  .tariff-editorial-grid,
  .comparison-cards-grid,
  .tariff-note-grid,
  .overnight-timeline {
    grid-template-columns: 1fr;
  }
  .editorial-suite-grid {
    grid-template-columns: 1fr 1fr;
  }
  .editorial-card.tall {
    grid-row: auto;
    min-height: 380px;
  }
  .category-editorial,
  .category-editorial.reverse {
    grid-template-columns: 1fr;
  }
  .category-editorial.reverse .category-image,
  .category-editorial.reverse .category-copy {
    order: initial;
  }
  .suite-note {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 720px) {
  .compact-page-hero .compact-hero-content {
    padding-bottom: 42px;
  }
  .compact-page-hero h1 {
    font-size: clamp(2.5rem, 11.5vw, 3.8rem);
  }
  .compact-page-hero p {
    font-size: 0.98rem;
  }
  .day-overview-grid,
  .day-menu-layout {
    grid-template-columns: 1fr !important;
  }
  .day-timeline-grid,
  .style-grid,
  .day-rate-panels,
  .overnight-intro-grid,
  .boats-intro-grid,
  .tariff-editorial-grid,
  .comparison-cards-grid,
  .tariff-note-grid,
  .overnight-timeline,
  .contact-luxe-grid {
    grid-template-columns: 1fr !important;
  }
  .editorial-suite-grid {
    grid-template-columns: 1fr !important;
  }
  .overnight-line-item {
    grid-template-columns: 1fr;
    padding: 22px;
  }
  .contact-form-luxe {
    padding: 24px 20px;
  }
}

/* =========================================================
   IQ200 STEELMAN FINAL PASS
   Purpose: remove any ordinary/template feel from inner pages
   and make pages closer to the Lovable reference: compact hero,
   editorial luxury spacing, calm ivory/olive/gold tone.
   ========================================================= */

/* Global refinement */
body {
  background:
    radial-gradient(
      circle at 8% 4%,
      rgba(198, 146, 74, 0.055),
      transparent 28%
    ),
    linear-gradient(180deg, #f7f5f1 0%, #f7f5f1 44%, #efe8de 100%);
}
.section-pad {
  padding: 96px 0;
}
.section-heading h2,
.copy-block h2,
.cta-panel h2,
.slow-copy h2 {
  font-size: clamp(2.2rem, 4.25vw, 4.35rem) !important;
  letter-spacing: -0.028em;
}
.section-heading p,
.copy-block p,
.cta-panel p,
.slow-copy p {
  font-weight: 300;
  line-height: 1.78;
}
.kicker,
.eyebrow {
  color: #c6924a !important;
  font-weight: 700 !important;
  letter-spacing: 0.28em !important;
}

/* Inner page hero: keep shorter and homepage-consistent */
.inner-hero.compact-page-hero {
  height: 52vh !important;
  min-height: 390px !important;
  max-height: 520px !important;
  align-items: flex-end !important;
  border-bottom: 1px solid rgba(198, 146, 74, 0.22);
}
.inner-hero.compact-page-hero img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(0.98);
}
.compact-page-hero .inner-hero-overlay {
  background:
    linear-gradient(
      180deg,
      rgba(30, 31, 31, 0.1) 0%,
      rgba(30, 31, 31, 0.3) 42%,
      rgba(30, 31, 31, 0.76) 100%
    ),
    linear-gradient(
      90deg,
      rgba(30, 31, 31, 0.6),
      rgba(74, 47, 31, 0.18) 52%,
      rgba(30, 31, 31, 0.06)
    ) !important;
}
.compact-page-hero .compact-hero-content {
  padding-bottom: 58px !important;
  max-width: 780px !important;
}
.compact-page-hero h1 {
  font-family: var(--font-serif) !important;
  font-size: clamp(2.85rem, 5.4vw, 5.15rem) !important;
  line-height: 1.02 !important;
  max-width: 850px;
  font-weight: 600 !important;
  letter-spacing: -0.025em !important;
  color: #f7f5f1 !important;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4) !important;
  margin: 0 0 18px !important;
}
.compact-page-hero p {
  max-width: 660px !important;
  color: rgba(247, 245, 241, 0.9) !important;
  font-size: clamp(1rem, 1.28vw, 1.12rem) !important;
  line-height: 1.68 !important;
  font-weight: 300 !important;
  margin: 0 !important;
}
.day-hero-small {
  height: 48vh !important;
  max-height: 480px !important;
  min-height: 370px !important;
}
.day-hero-small .compact-hero-content {
  padding-bottom: 52px !important;
}
.day-hero-small h1 {
  font-size: clamp(2.75rem, 5.1vw, 4.7rem) !important;
}
.day-hero-small p {
  max-width: 610px !important;
}

/* Header inner page polish */
.site-header {
  box-shadow: 0 6px 18px rgba(74, 47, 31, 0.035);
}
.site-header .nav-link {
  color: #1e1f1f;
}
.site-header .header-cta {
  background: #5f6754 !important;
  color: #f7f5f1 !important;
  box-shadow: none !important;
}
.site-header .header-cta:hover {
  background: #4a2f1f !important;
}

/* Day Cruise page */
.day-overview-section {
  padding-top: 86px;
}
.day-overview-grid {
  align-items: center !important;
}
.fact-card {
  border-radius: 24px !important;
  border-color: rgba(198, 146, 74, 0.24) !important;
}
.fact-card strong {
  font-size: clamp(1.65rem, 2.35vw, 2.15rem) !important;
}
.day-timeline-card {
  min-height: 245px;
  border-radius: 26px !important;
}
.day-timeline-card h3 {
  font-size: clamp(1.55rem, 2.2vw, 2.05rem) !important;
}
.day-menu-board {
  border-radius: 30px !important;
}
.day-menu-image {
  border-radius: 30px !important;
}
.style-card {
  position: relative;
  overflow: hidden;
}
.style-card:after {
  content: "";
  position: absolute;
  inset: auto 24px 0 24px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 146, 74, 0.55),
    transparent
  );
}
.style-card.is-featured:after {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(247, 245, 241, 0.45),
    transparent
  );
}
.season-panel {
  border-radius: 30px !important;
}
.soft-note-panel {
  background: linear-gradient(
    135deg,
    rgba(247, 245, 241, 0.96),
    rgba(239, 232, 222, 0.74)
  );
}

/* Overnight page */
.overnight-intro-section {
  padding-top: 90px;
}
.overnight-timeline {
  position: relative;
}
.overnight-line-item {
  border-radius: 24px !important;
  background: rgba(247, 245, 241, 0.94) !important;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.overnight-line-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 46px rgba(74, 47, 31, 0.09);
}
.overnight-line-item h3 {
  font-size: clamp(1.45rem, 2vw, 1.9rem) !important;
}
.editorial-suite-grid {
  gap: 18px !important;
}
.editorial-card {
  border: 1px solid rgba(198, 146, 74, 0.18);
}
.editorial-card figcaption {
  box-shadow: 0 10px 24px rgba(30, 31, 31, 0.12);
}

/* Our Houseboats page */
.boats-intro-section {
  padding-top: 90px;
}
.category-editorial {
  padding: 18px !important;
  border-radius: 34px !important;
  background: linear-gradient(
    145deg,
    rgba(247, 245, 241, 0.98),
    rgba(239, 232, 222, 0.82)
  ) !important;
}
.category-image {
  height: 420px !important;
  border-radius: 26px !important;
}
.category-copy {
  padding: 10px 14px;
}
.category-copy h2 {
  color: #1e1f1f;
}
.comparison-mini-card {
  min-height: 300px;
}
.comparison-mini-card h3 {
  color: #4a2f1f;
}

/* Tariffs page */
.tariffs-intro-section {
  padding-top: 86px;
}
.tariffs-shell > .section-heading {
  max-width: 760px;
  margin-bottom: 14px;
}
.tariff-card-block,
.tariff-wide-section,
.note-luxe {
  border-radius: 28px !important;
}
.tariff-card-block {
  background: linear-gradient(
    145deg,
    rgba(247, 245, 241, 0.98),
    rgba(239, 232, 222, 0.78)
  ) !important;
}
.tariff-listing > div {
  align-items: baseline;
}
.tariff-listing span {
  color: #4a2f1f;
}
.premium-table-wrap table {
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  border-radius: 22px;
}
.premium-table-wrap th {
  background: #5f6754 !important;
  color: #f7f5f1 !important;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.premium-table-wrap td {
  font-size: 0.96rem;
}
.note-luxe h3 {
  color: #4a2f1f;
}

/* Contact page */
.contact-luxe-section {
  padding-top: 90px;
}
.contact-luxe-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.025em;
}
.contact-mini-card,
.address-panel,
.contact-form-luxe {
  border-color: rgba(198, 146, 74, 0.23) !important;
}
.contact-form-luxe input,
.contact-form-luxe select,
.contact-form-luxe textarea {
  background: rgba(247, 245, 241, 0.88) !important;
  border: 1px solid rgba(198, 146, 74, 0.22) !important;
}
.contact-form-luxe input:focus,
.contact-form-luxe select:focus,
.contact-form-luxe textarea:focus {
  outline: 1px solid #c6924a;
  box-shadow: 0 0 0 4px rgba(198, 146, 74, 0.12);
}

/* Footer better luxury finish */
.footer {
  background: #1e1f1f !important;
}
.footer h3,
.footer h4 {
  color: #f7f5f1 !important;
}
.footer a:hover {
  color: #c6924a !important;
}

/* Floating WhatsApp: small blinking button only */
.floating-wa {
  width: 54px !important;
  height: 54px !important;
  right: 24px !important;
  bottom: 24px !important;
  border-radius: 50% !important;
  background: #5f6754 !important;
  color: #fff !important;
  text-indent: -9999px !important;
  overflow: visible !important;
  box-shadow: 0 14px 32px rgba(95, 103, 84, 0.28) !important;
}
.floating-wa:before {
  content: "☎" !important;
  text-indent: 0 !important;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
}
.floating-wa:after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(95, 103, 84, 0.45);
  animation: waRing 1.7s ease-out infinite;
}

/* Mobile */
@media (max-width: 1050px) {
  .inner-hero.compact-page-hero {
    min-height: 360px !important;
    height: auto !important;
  }
  .compact-page-hero .compact-hero-content {
    padding-top: 120px !important;
    padding-bottom: 46px !important;
  }
  .category-image {
    height: 330px !important;
  }
  .comparison-mini-card {
    min-height: auto;
  }
}
@media (max-width: 720px) {
  .section-pad {
    padding: 72px 0 !important;
  }
  .inner-hero.compact-page-hero {
    min-height: 330px !important;
  }
  .compact-page-hero h1 {
    font-size: clamp(2.4rem, 11vw, 3.6rem) !important;
  }
  .compact-page-hero p {
    font-size: 0.98rem !important;
  }
  .day-hero-small {
    min-height: 330px !important;
  }
  .day-timeline-card {
    min-height: auto;
  }
  .category-image {
    height: 280px !important;
  }
  .footer-top {
    gap: 34px;
  }
}

/* =========================================================
   2026-05-21 strict steelman fix:
   Inner-page hero copy must sit clearly ON the image,
   not feel separated from it.
   Applied across Day Cruises, Overnight Stays,
   Our Houseboats, Tariffs, Contact, and Experiences.
   ========================================================= */
.inner-hero.compact-page-hero {
  position: relative !important;
  display: flex !important;
  align-items: flex-end !important;
  overflow: hidden !important;
  isolation: isolate;
  height: 46vh !important;
  min-height: 360px !important;
  max-height: 470px !important;
  border-bottom: 1px solid rgba(198, 146, 74, 0.22);
}
.inner-hero.compact-page-hero img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transform: scale(1.01);
  filter: saturate(0.92) contrast(0.96) brightness(0.88);
}
.inner-hero.compact-page-hero .inner-hero-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  background:
    linear-gradient(
      180deg,
      rgba(30, 31, 31, 0.1) 0%,
      rgba(30, 31, 31, 0.26) 40%,
      rgba(30, 31, 31, 0.82) 100%
    ),
    linear-gradient(
      90deg,
      rgba(30, 31, 31, 0.72) 0%,
      rgba(30, 31, 31, 0.46) 38%,
      rgba(74, 47, 31, 0.16) 58%,
      rgba(30, 31, 31, 0.08) 75%
    ) !important;
}
.inner-hero.compact-page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(
    circle at 14% 38%,
    rgba(247, 245, 241, 0.06),
    transparent 28%
  );
  pointer-events: none;
}
.compact-page-hero .compact-hero-content {
  position: relative !important;
  z-index: 2 !important;
  width: min(1360px, 92vw) !important;
  margin: 0 auto !important;
  padding: 106px 0 48px !important;
  max-width: none !important;
}
.compact-page-hero .eyebrow {
  display: block !important;
  margin: 0 0 20px !important;
  color: #c6924a !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.42em !important;
  text-transform: uppercase !important;
}
.compact-page-hero h1 {
  max-width: 1100px !important;
  margin: 0 0 18px !important;
  font-family: var(--font-serif) !important;
  font-size: clamp(2.7rem, 4.75vw, 4.95rem) !important;
  line-height: 0.98 !important;
  letter-spacing: -0.028em !important;
  color: #f7f5f1 !important;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.42) !important;
}
.compact-page-hero p {
  max-width: 760px !important;
  margin: 0 !important;
  color: rgba(247, 245, 241, 0.92) !important;
  font-size: clamp(1rem, 1.12vw, 1.16rem) !important;
  line-height: 1.72 !important;
  font-weight: 300 !important;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.22) !important;
}
.day-hero-small,
.overnight-hero-small,
.boats-hero-small,
.tariffs-hero-small,
.contact-hero-small,
.experiences-hero-small {
  height: 44vh !important;
  min-height: 340px !important;
  max-height: 430px !important;
}
.day-hero-small .compact-hero-content,
.overnight-hero-small .compact-hero-content,
.boats-hero-small .compact-hero-content,
.tariffs-hero-small .compact-hero-content,
.contact-hero-small .compact-hero-content,
.experiences-hero-small .compact-hero-content {
  padding-top: 96px !important;
  padding-bottom: 42px !important;
}
.day-hero-small img {
  object-position: center 58% !important;
}
.overnight-hero-small img {
  object-position: center 52% !important;
}
.boats-hero-small img {
  object-position: center 54% !important;
}
.tariffs-hero-small img {
  object-position: center 56% !important;
}
.contact-hero-small img {
  object-position: center 48% !important;
}
.experiences-hero-small img {
  object-position: center 54% !important;
}

@media (max-width: 1050px) {
  .inner-hero.compact-page-hero {
    height: auto !important;
    min-height: 330px !important;
    max-height: none !important;
  }
  .compact-page-hero .compact-hero-content {
    width: min(92vw, 980px) !important;
    padding: 94px 0 38px !important;
  }
  .compact-page-hero h1 {
    font-size: clamp(2.45rem, 7.4vw, 4rem) !important;
    max-width: 860px !important;
  }
  .compact-page-hero p {
    max-width: 640px !important;
  }
}
@media (max-width: 720px) {
  .inner-hero.compact-page-hero {
    min-height: 310px !important;
  }
  .compact-page-hero .compact-hero-content {
    width: min(92vw, 640px) !important;
    padding: 82px 0 30px !important;
  }
  .compact-page-hero .eyebrow {
    margin-bottom: 14px !important;
    font-size: 0.62rem !important;
    letter-spacing: 0.3em !important;
  }
  .compact-page-hero h1 {
    font-size: clamp(2.2rem, 10.2vw, 3.45rem) !important;
    margin-bottom: 12px !important;
  }
  .compact-page-hero p {
    font-size: 0.96rem !important;
    line-height: 1.62 !important;
    max-width: 94% !important;
  }
}

/* 2026-05-21 blush / charcoal / ivory refinement per user brief */
:root {
  --gold: #d2b7b2;
  --offwhite: #f8f5f2;
  --ivory: #f8f5f2;
  --ivory2: #fcfaf8;
  --beige: #f3e9e5;
  --blush: #f3e9e5;
  --blush2: #faf2ee;
  --green: #2f3032;
  --green2: #3c3d40;
  --olive: #2f3032;
  --line: rgba(30, 31, 31, 0.1);
  --shadow: 0 22px 56px rgba(30, 31, 31, 0.08);
}

body {
  background-color: var(--offwhite);
  background-image:
    radial-gradient(
      circle at 14% 8%,
      rgba(210, 183, 178, 0.16),
      transparent 30%
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(215, 218, 223, 0.16),
      transparent 28%
    );
}

.announcement {
  height: 2px;
  background: linear-gradient(90deg, #d8beb7, #e8d9d3, #c9d0d7);
}

.kicker,
.eyebrow,
.compare-card span,
.offering-card span,
.promise-item span,
.tick-list li:before {
  color: var(--gold);
}
.tick-list li:before {
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(210, 183, 178, 0.16);
}

.btn-primary,
.header-cta {
  background: var(--charcoal) !important;
  color: var(--ivory) !important;
  border: 1px solid rgba(30, 31, 31, 0.14) !important;
  box-shadow: 0 14px 30px rgba(30, 31, 31, 0.12) !important;
}
.btn-primary:hover,
.header-cta:hover {
  background: #343536 !important;
  transform: translateY(-2px);
}

.btn-light {
  background: rgba(248, 245, 242, 0.95) !important;
  color: var(--charcoal) !important;
  border: 1px solid rgba(30, 31, 31, 0.12) !important;
}
.btn-outline,
.btn-ghost {
  background: rgba(243, 233, 229, 0.72) !important;
  border-color: rgba(30, 31, 31, 0.14) !important;
  color: var(--charcoal) !important;
}
.btn-outline:hover,
.btn-ghost:hover,
.btn-light:hover {
  border-color: rgba(30, 31, 31, 0.26) !important;
  background: rgba(248, 245, 242, 0.98) !important;
}
.text-link {
  color: var(--charcoal);
  border-bottom-color: rgba(210, 183, 178, 0.92);
}

.site-header,
.home-page .site-header {
  position: sticky !important;
  top: 0;
  background: rgba(248, 245, 242, 0.92) !important;
  border-bottom: 1px solid rgba(30, 31, 31, 0.08) !important;
  backdrop-filter: blur(18px);
}

.site-header .header-inner,
.home-page .site-header .header-inner {
  height: 72px !important;
  width: min(1320px, 95vw) !important;
  gap: 16px !important;
}

.site-header .brand,
.home-page .site-header .brand {
  min-width: 205px !important;
  max-width: 205px !important;
  gap: 10px !important;
  align-items: center !important;
}
.site-header .brand img,
.home-page .site-header .brand img {
  width: 58px !important;
  height: 40px !important;
  filter: none !important;
  opacity: 1 !important;
}
.site-header .brand span,
.home-page .site-header .brand span {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center !important;
  font-family: var(--sans) !important;
  font-size: 0.7rem !important;
  line-height: 1.05 !important;
  letter-spacing: 0.18em !important;
  color: var(--charcoal) !important;
  text-transform: uppercase !important;
  text-shadow: none !important;
}
.site-header .brand span strong,
.home-page .site-header .brand span strong {
  display: block;
  font-weight: 700;
  white-space: nowrap;
}
.site-header .brand em,
.home-page .site-header .brand em {
  display: block !important;
  margin: 3px 0 0 0 !important;
  letter-spacing: 0.18em !important;
  font-style: normal !important;
  font: inherit !important;
  white-space: nowrap !important;
}

.site-header .main-nav,
.home-page .site-header .main-nav {
  gap: 22px !important;
}
.site-header .nav-link,
.home-page .site-header .nav-link {
  font-size: 0.74rem !important;
  letter-spacing: 0.26em !important;
  font-weight: 500 !important;
  color: rgba(30, 31, 31, 0.78) !important;
  padding: 24px 0 !important;
  text-shadow: none !important;
}
.site-header .nav-link:hover,
.site-header .nav-link.is-active,
.home-page .site-header .nav-link:hover,
.home-page .site-header .nav-link.is-active {
  color: var(--charcoal) !important;
}
.site-header .nav-link:after,
.home-page .site-header .nav-link:after {
  background: rgba(30, 31, 31, 0.62) !important;
  height: 1px !important;
  bottom: 17px !important;
}
.site-header .header-cta,
.home-page .site-header .header-cta {
  padding: 9px 16px !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.18em !important;
  min-width: auto !important;
}

.hero .eyebrow,
.inner-hero .eyebrow {
  color: rgba(248, 245, 242, 0.88);
}
.feature-strip,
.instagram-live-frame,
.offering-card,
.compare-card,
.rate-card,
.note-card,
.contact-card,
.category-panel,
.editorial-card,
.contact-form,
.table-wrap,
.timeline-item div:last-child {
  border-color: rgba(210, 183, 178, 0.26) !important;
}

.slow-copy,
.promise-section,
.cta-band {
  background: linear-gradient(180deg, #2c2d2f, #3a3b3e) !important;
}
.promise-section .promise-grid {
  background: rgba(255, 255, 255, 0.12) !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}
.promise-item {
  background: rgba(255, 255, 255, 0.03) !important;
}

.footer-brand img {
  width: 140px;
}
.footer a:hover,
.footer-links a:hover {
  color: #fff;
}

.floating-wa {
  background: #25d366 !important;
  color: #fff !important;
  border: 0 !important;
  box-shadow: 0 16px 32px rgba(37, 211, 102, 0.28) !important;
}

@media (max-width: 1280px) {
  .site-header .brand,
  .home-page .site-header .brand {
    min-width: 186px !important;
    max-width: 186px !important;
  }
  .site-header .brand img,
  .home-page .site-header .brand img {
    width: 54px !important;
    height: 38px !important;
  }
  .site-header .brand span,
  .home-page .site-header .brand span {
    font-size: 0.64rem !important;
    letter-spacing: 0.16em !important;
  }
  .site-header .main-nav,
  .home-page .site-header .main-nav {
    gap: 16px !important;
  }
  .site-header .nav-link,
  .home-page .site-header .nav-link {
    font-size: 0.66rem !important;
    letter-spacing: 0.2em !important;
  }
  .site-header .header-cta,
  .home-page .site-header .header-cta {
    font-size: 0.58rem !important;
    padding: 8px 13px !important;
  }
}

@media (max-width: 1050px) {
  .site-header .header-inner,
  .home-page .site-header .header-inner {
    height: 72px !important;
  }
  .site-header .brand,
  .home-page .site-header .brand {
    min-width: 0 !important;
    max-width: none !important;
  }
  .site-header .brand img,
  .home-page .site-header .brand img {
    width: 62px !important;
    height: 44px !important;
  }
  .site-header .brand span,
  .home-page .site-header .brand span {
    font-size: 0.62rem !important;
    letter-spacing: 0.12em !important;
  }
  .menu-toggle span {
    background: var(--charcoal) !important;
  }
  .main-nav.open {
    background: rgba(248, 245, 242, 0.98) !important;
    top: 72px !important;
  }
  .main-nav.open .nav-link {
    color: var(--charcoal) !important;
  }
}

@media (max-width: 720px) {
  .site-header .brand span,
  .home-page .site-header .brand span {
    display: none !important;
  }
  .site-header .brand img,
  .home-page .site-header .brand img {
    width: 66px !important;
    height: 46px !important;
  }
  .site-header .header-inner,
  .home-page .site-header .header-inner {
    height: 70px !important;
  }
  .floating-wa {
    left: auto !important;
    right: 18px !important;
    bottom: 18px !important;
    width: 56px !important;
    height: 56px !important;
    padding: 0 !important;
    text-indent: -9999px !important;
  }
}

/* Final requested edits: refined enquiry labels + menu with Experiences */
.contact-form label,
.contact-form-luxe label {
  font-size: 0.74rem !important;
  letter-spacing: 0.26em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  color: rgba(30, 31, 31, 0.78) !important;
  font-family: var(--sans) !important;
}
.contact-form input,
.contact-form select,
.contact-form textarea,
.contact-form-luxe input,
.contact-form-luxe select,
.contact-form-luxe textarea {
  margin-top: 11px !important;
}

/* Keep seven header links clean in one row */
.site-header .main-nav,
.home-page .site-header .main-nav {
  gap: 16px !important;
}
.site-header .nav-link,
.home-page .site-header .nav-link {
  font-size: 0.68rem !important;
  letter-spacing: 0.2em !important;
}
@media (max-width: 1280px) {
  .site-header .main-nav,
  .home-page .site-header .main-nav {
    gap: 12px !important;
  }
  .site-header .nav-link,
  .home-page .site-header .nav-link {
    font-size: 0.6rem !important;
    letter-spacing: 0.16em !important;
  }
}
@media (max-width: 1120px) {
  .site-header .nav-link,
  .home-page .site-header .nav-link {
    font-size: 0.56rem !important;
    letter-spacing: 0.13em !important;
  }
}

/* Refined Experiences page cards */
.narrow-intro {
  max-width: 860px;
  text-align: center;
  margin-bottom: 34px;
}
.narrow-intro h2 {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 4.5vw, 4.1rem);
  line-height: 1.02;
  color: var(--charcoal);
  margin: 0 0 14px;
}
.narrow-intro p {
  margin: 0 auto;
  color: var(--muted);
  max-width: 760px;
}
.experiences-editorial-section {
  padding-top: 84px;
}
.experience-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.experience-detail-card {
  display: flex;
  flex-direction: column;
  background: rgba(247, 245, 241, 0.96);
  border: 1px solid rgba(198, 146, 74, 0.16);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(74, 47, 31, 0.06);
  min-height: 100%;
}
.experience-detail-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}
.experience-detail-copy {
  padding: 22px 22px 24px;
}
.experience-detail-copy span {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 10px;
}
.experience-detail-copy h2 {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.04;
  margin: 0 0 10px;
  color: var(--charcoal);
}
.experience-detail-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
  font-size: 0.98rem;
}
@media (max-width: 1080px) {
  .experience-detail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  .experience-detail-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .experience-detail-card img {
    height: 220px;
  }
  .narrow-intro {
    text-align: left;
    margin-bottom: 24px;
  }
  .narrow-intro p {
    margin: 0;
  }
}

/* 2026-05-21 Homepage feature strip refinement */
.home-page .feature-wrap {
  position: relative !important;
  margin-top: 0 !important;
  z-index: 4;
  background: var(--offwhite);
  border-top: 1px solid rgba(198, 146, 74, 0.14);
  border-bottom: 1px solid rgba(198, 146, 74, 0.14);
}
.home-page .premium-feature-strip {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  align-items: stretch;
  padding: 28px 0 26px;
}
.home-page .premium-feature-strip .feature-item {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 14px 18px;
  color: var(--gold);
  text-decoration: none;
  border-right: 1px solid rgba(198, 146, 74, 0.16);
  transition:
    transform 0.22s ease,
    color 0.22s ease,
    opacity 0.22s ease;
}
.home-page .premium-feature-strip .feature-item:last-child {
  border-right: 0;
}
.home-page .premium-feature-strip .feature-item:hover {
  transform: translateY(-2px);
  color: #b98235;
}
.home-page .premium-feature-strip .feature-icon {
  display: block;
  margin-bottom: 18px;
  font-size: 1.75rem;
  line-height: 1;
  font-weight: 400;
  opacity: 0.9;
}
.home-page .premium-feature-strip .feature-label {
  display: block;
  font-family: var(--font-sans, var(--sans));
  font-size: 0.66rem;
  line-height: 1.55;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 400;
  color: inherit;
}
@media (max-width: 1050px) {
  .home-page .premium-feature-strip {
    grid-template-columns: 1fr 1fr;
    padding: 22px 0;
  }
  .home-page .premium-feature-strip .feature-item {
    min-height: 118px;
    border-right: 1px solid rgba(198, 146, 74, 0.16);
    border-bottom: 1px solid rgba(198, 146, 74, 0.16);
  }
  .home-page .premium-feature-strip .feature-item:nth-child(2n) {
    border-right: 0;
  }
  .home-page .premium-feature-strip .feature-item:last-child {
    grid-column: 1/-1;
    border-bottom: 0;
  }
}
@media (max-width: 720px) {
  .home-page .feature-wrap {
    border-top: 0;
  }
  .home-page .premium-feature-strip {
    grid-template-columns: 1fr;
    padding: 10px 0 12px;
  }
  .home-page .premium-feature-strip .feature-item {
    min-height: auto;
    padding: 18px 10px;
    border-right: 0 !important;
    border-bottom: 1px solid rgba(198, 146, 74, 0.14);
  }
  .home-page .premium-feature-strip .feature-item:last-child {
    border-bottom: 0;
  }
  .home-page .premium-feature-strip .feature-icon {
    font-size: 1.4rem;
    margin-bottom: 12px;
  }
  .home-page .premium-feature-strip .feature-label {
    font-size: 0.62rem;
    letter-spacing: 0.24em;
  }
}

/* 2026-05-21 Homepage feature strip slimmer blush refinement */
.home-page .feature-wrap {
  margin-top: 0 !important;
  padding: 0 !important;
  background: #f6efec !important;
  border-top: 1px solid rgba(198, 146, 74, 0.1) !important;
  border-bottom: 1px solid rgba(198, 146, 74, 0.1) !important;
}
.home-page .premium-feature-strip {
  background: transparent !important;
  padding: 16px 0 14px !important;
}
.home-page .premium-feature-strip .feature-item {
  min-height: 92px !important;
  padding: 10px 14px 8px !important;
  color: var(--charcoal) !important;
  border-right: 1px solid rgba(198, 146, 74, 0.14) !important;
}
.home-page .premium-feature-strip .feature-item:hover {
  color: var(--charcoal) !important;
  transform: translateY(-1px) !important;
}
.home-page .premium-feature-strip .feature-icon {
  color: var(--gold) !important;
  font-size: 1.28rem !important;
  margin-bottom: 10px !important;
  opacity: 1 !important;
}
.home-page .premium-feature-strip .feature-label {
  font-family: var(--sans) !important;
  font-size: 0.7rem !important;
  line-height: 1.45 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  color: var(--charcoal) !important;
}
@media (max-width: 1050px) {
  .home-page .premium-feature-strip {
    padding: 12px 0 !important;
  }
  .home-page .premium-feature-strip .feature-item {
    min-height: 84px !important;
    padding: 12px 10px !important;
  }
  .home-page .premium-feature-strip .feature-icon {
    font-size: 1.15rem !important;
    margin-bottom: 8px !important;
  }
  .home-page .premium-feature-strip .feature-label {
    font-size: 0.66rem !important;
    letter-spacing: 0.2em !important;
  }
}
@media (max-width: 720px) {
  .home-page .premium-feature-strip {
    padding: 2px 0 4px !important;
  }
  .home-page .premium-feature-strip .feature-item {
    min-height: auto !important;
    padding: 14px 10px !important;
  }
  .home-page .premium-feature-strip .feature-icon {
    font-size: 1.05rem !important;
    margin-bottom: 7px !important;
  }
  .home-page .premium-feature-strip .feature-label {
    font-size: 0.62rem !important;
    letter-spacing: 0.18em !important;
  }
}

/* =========================================================
   IQ200 Premium Card Refinement
   Objective: make all cards feel more Aman / Oberoi:
   lighter, quieter, more editorial, less boxy, less sales-like.
   Links now follow header-menu rhythm: small uppercase,
   letter-spaced, subtle charcoal.
   ========================================================= */

:root {
  --card-premium-bg: rgba(252, 250, 248, 0.82);
  --card-premium-bg-strong: rgba(248, 245, 242, 0.94);
  --card-premium-border: rgba(30, 31, 31, 0.085);
  --card-premium-border-gold: rgba(198, 146, 74, 0.16);
  --card-premium-shadow: 0 22px 54px rgba(30, 31, 31, 0.055);
  --card-premium-shadow-hover: 0 28px 70px rgba(30, 31, 31, 0.085);
}

/* Card base */
.offering-card,
.experience-card,
.experience-detail-card,
.compare-card,
.rate-card,
.note-card,
.contact-card,
.category-panel,
.category-editorial,
.editorial-card,
.suite-card,
.fact-card,
.day-timeline-card,
.style-card,
.season-panel,
.soft-note-panel,
.contact-form,
.contact-form-luxe,
.instagram-live-frame,
.table-wrap,
.timeline-item div:last-child,
.overnight-line-item {
  background: var(--card-premium-bg) !important;
  border: 1px solid var(--card-premium-border) !important;
  box-shadow: var(--card-premium-shadow) !important;
  border-radius: 28px !important;
}

/* more graceful image cards */
.offering-card,
.experience-detail-card,
.editorial-card,
.suite-card,
.category-panel,
.compare-card {
  overflow: hidden !important;
}

/* subtle top hairline used in luxury hospitality cards */
.offering-card,
.experience-detail-card,
.rate-card,
.note-card,
.contact-card,
.category-editorial,
.style-card,
.season-panel,
.soft-note-panel,
.fact-card,
.day-timeline-card,
.overnight-line-item {
  position: relative;
}
.offering-card:before,
.experience-detail-card:before,
.rate-card:before,
.note-card:before,
.contact-card:before,
.category-editorial:before,
.style-card:before,
.season-panel:before,
.soft-note-panel:before,
.fact-card:before,
.day-timeline-card:before,
.overnight-line-item:before {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 146, 74, 0.36),
    transparent
  );
  z-index: 2;
}

/* hover should feel expensive, not jumpy */
.offering-card,
.experience-detail-card,
.category-editorial,
.editorial-card,
.suite-card,
.rate-card,
.note-card,
.contact-card,
.style-card,
.day-timeline-card,
.overnight-line-item {
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease,
    background-color 0.28s ease;
}
.offering-card:hover,
.experience-detail-card:hover,
.category-editorial:hover,
.editorial-card:hover,
.suite-card:hover,
.rate-card:hover,
.note-card:hover,
.contact-card:hover,
.style-card:hover,
.day-timeline-card:hover,
.overnight-line-item:hover {
  transform: translateY(-3px) !important;
  box-shadow: var(--card-premium-shadow-hover) !important;
  border-color: var(--card-premium-border-gold) !important;
  background: rgba(252, 250, 248, 0.94) !important;
}

/* Card images: softer, editorial crop */
.offering-card img,
.experience-detail-card img,
.editorial-card img,
.suite-card img,
.category-panel img,
.compare-card img {
  filter: saturate(0.94) contrast(0.98);
  transition:
    transform 0.7s ease,
    filter 0.7s ease;
}
.offering-card:hover img,
.experience-detail-card:hover img,
.editorial-card:hover img,
.suite-card:hover img,
.category-panel:hover img,
.compare-card:hover img {
  transform: scale(1.025);
  filter: saturate(0.98) contrast(1);
}

/* Card headings: subtler and more refined */
.offering-card h3,
.experience-card h3,
.experience-detail-copy h2,
.compare-card h3,
.note-card h3,
.rate-card h3,
.contact-card h3,
.category-editorial h2,
.category-panel h2,
.editorial-card h3,
.suite-card figcaption,
.fact-card strong,
.day-timeline-card h3,
.style-card h3,
.season-panel h3,
.overnight-line-item h3,
.timeline-item h3 {
  color: rgba(30, 31, 31, 0.88) !important;
  font-family: var(--serif) !important;
  font-weight: 500 !important;
  letter-spacing: -0.018em !important;
}

/* Reduce oversized card headings slightly */
.offering-card h3,
.experience-detail-copy h2,
.compare-card h3,
.category-editorial h2,
.category-panel h2 {
  font-size: clamp(1.72rem, 2.15vw, 2.24rem) !important;
  line-height: 1.08 !important;
}
.rate-card h3,
.note-card h3,
.contact-card h3,
.day-timeline-card h3,
.style-card h3,
.season-panel h3,
.overnight-line-item h3,
.timeline-item h3 {
  font-size: clamp(1.38rem, 1.75vw, 1.82rem) !important;
  line-height: 1.12 !important;
}

/* Card text: quieter, premium readability */
.offering-card p,
.experience-detail-copy p,
.experience-card p,
.compare-card li,
.note-card p,
.rate-card p,
.contact-card p,
.category-editorial p,
.category-panel p,
.editorial-card p,
.style-card p,
.season-panel p,
.timeline-item p,
.overnight-line-item p {
  color: rgba(30, 31, 31, 0.62) !important;
  font-weight: 300 !important;
  line-height: 1.78 !important;
}

/* Labels inside cards */
.offering-card span,
.experience-detail-copy span,
.compare-card span,
.category-editorial span,
.rate-card span,
.note-card span,
.style-card span,
.season-panel span,
.kicker,
.eyebrow {
  color: rgba(198, 146, 74, 0.84) !important;
  font-family: var(--sans) !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.24em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
}

/* Links inside cards should echo header menu */
.offering-card a,
.experience-detail-card a,
.compare-card a,
.category-panel a,
.category-editorial a,
.editorial-card a,
.suite-card a,
.rate-card a,
.note-card a,
.contact-card a,
.text-link,
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: rgba(30, 31, 31, 0.78) !important;
  font-family: var(--sans) !important;
  font-size: 0.64rem !important;
  line-height: 1.4 !important;
  letter-spacing: 0.22em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(198, 146, 74, 0.42) !important;
  padding-bottom: 5px;
}
.offering-card a:after,
.experience-detail-card a:after,
.compare-card a:after,
.category-panel a:after,
.category-editorial a:after,
.editorial-card a:after,
.suite-card a:after,
.rate-card a:after,
.note-card a:after,
.contact-card a:after,
.text-link:after,
.card-link:after {
  content: "→";
  letter-spacing: 0;
  color: rgba(198, 146, 74, 0.82);
  transform: translateY(-1px);
}
.offering-card a:hover,
.experience-detail-card a:hover,
.compare-card a:hover,
.category-panel a:hover,
.category-editorial a:hover,
.editorial-card a:hover,
.suite-card a:hover,
.rate-card a:hover,
.note-card a:hover,
.contact-card a:hover,
.text-link:hover,
.card-link:hover {
  color: var(--charcoal) !important;
  border-bottom-color: rgba(30, 31, 31, 0.55) !important;
}

/* Homepage offering cards: more editorial, less generic */
.offering-card img {
  height: 280px !important;
}
.offering-card div {
  padding: 26px 28px 30px !important;
}
.offering-grid {
  gap: 24px !important;
}

/* Experiences cards: ensure elegant card rhythm */
.experience-detail-card img {
  height: 196px !important;
}
.experience-detail-copy {
  padding: 22px 24px 26px !important;
}

/* Comparison / category cards */
.compare-card,
.category-panel {
  border-radius: 34px !important;
}
.compare-card div,
.category-panel div,
.category-editorial {
  padding: 34px !important;
}

/* Tariff and note cards */
.rate-card,
.note-card {
  padding: 30px !important;
}
.rate-row {
  border-bottom: 1px solid rgba(30, 31, 31, 0.075) !important;
}
.rate-row strong {
  color: rgba(30, 31, 31, 0.86) !important;
  font-weight: 500 !important;
}

/* Contact form premium refinement */
.contact-form,
.contact-form-luxe {
  background: rgba(252, 250, 248, 0.88) !important;
}
.contact-form label,
.contact-form-luxe label {
  color: rgba(30, 31, 31, 0.76) !important;
}
.contact-form input,
.contact-form select,
.contact-form textarea,
.contact-form-luxe input,
.contact-form-luxe select,
.contact-form-luxe textarea {
  background: rgba(247, 245, 242, 0.72) !important;
  border: 1px solid rgba(30, 31, 31, 0.11) !important;
  color: var(--charcoal) !important;
}

/* Remove too-strong green/gold sales feel from small cards */
.mini-grid span,
.bedroom-list span {
  background: rgba(248, 245, 242, 0.78) !important;
  border: 1px solid rgba(30, 31, 31, 0.09) !important;
  color: rgba(30, 31, 31, 0.74) !important;
  font-family: var(--sans) !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  font-weight: 600 !important;
}

/* Mobile refinements */
@media (max-width: 720px) {
  .offering-card img,
  .experience-detail-card img {
    height: 220px !important;
  }
  .offering-card div,
  .experience-detail-copy,
  .compare-card div,
  .category-panel div,
  .category-editorial,
  .rate-card,
  .note-card,
  .contact-card {
    padding: 24px !important;
  }
  .offering-card h3,
  .experience-detail-copy h2,
  .compare-card h3,
  .category-editorial h2,
  .category-panel h2 {
    font-size: 1.82rem !important;
  }
  .offering-card a,
  .experience-detail-card a,
  .compare-card a,
  .category-panel a,
  .category-editorial a,
  .editorial-card a,
  .suite-card a,
  .rate-card a,
  .note-card a,
  .contact-card a,
  .text-link,
  .card-link {
    font-size: 0.6rem !important;
    letter-spacing: 0.18em !important;
  }
}

/* =========================================================
   IQ200 homepage refinement requested after card review
   - feature strip subtler/unbolded
   - buttons converted to refined text links
   - CTA action links centered and premium
   ========================================================= */

/* Feature strip directly below hero video: lighter, subtler typography */
.home-page .premium-feature-strip .feature-label {
  font-weight: 400 !important;
  color: rgba(30, 31, 31, 0.68) !important;
  letter-spacing: 0.26em !important;
}
.home-page .premium-feature-strip .feature-item {
  color: rgba(30, 31, 31, 0.68) !important;
}
.home-page .premium-feature-strip .feature-icon {
  color: rgba(198, 146, 74, 0.88) !important;
  font-weight: 400 !important;
}

/* Replace button feeling with Discover-the-Houseboats style text links */
.luxe-action-link,
a.luxe-action-link,
.text-link.luxe-action-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  width: auto !important;
  min-width: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(30, 31, 31, 0.58) !important;
  border-radius: 0 !important;
  padding: 0 0 8px 0 !important;
  margin-top: 18px !important;
  color: rgba(30, 31, 31, 0.78) !important;
  font-family: var(--sans) !important;
  font-size: 0.68rem !important;
  line-height: 1.4 !important;
  letter-spacing: 0.28em !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
  text-decoration: none !important;
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    opacity 0.22s ease,
    transform 0.22s ease !important;
}
.luxe-action-link:after,
a.luxe-action-link:after,
.text-link.luxe-action-link:after {
  content: "→";
  margin-left: 10px;
  color: rgba(30, 31, 31, 0.72) !important;
  letter-spacing: 0 !important;
  transform: translateY(-1px);
}
.luxe-action-link:hover,
a.luxe-action-link:hover,
.text-link.luxe-action-link:hover {
  color: var(--charcoal) !important;
  border-bottom-color: var(--charcoal) !important;
  transform: translateY(-1px) !important;
}

/* Keep header and floating WhatsApp buttons button-like */
.header-cta,
.floating-wa {
  border-bottom: 0 !important;
}
.header-cta:after,
.floating-wa:after {
  content: none !important;
}

/* Centralize Begin the Journey CTA links and keep them readable */
.cta-panel {
  text-align: center !important;
}
.cta-panel .btn-row {
  justify-content: center !important;
  align-items: center !important;
  gap: 34px !important;
}
.cta-panel .luxe-action-link {
  color: rgba(248, 245, 242, 0.88) !important;
  border-bottom-color: rgba(248, 245, 242, 0.58) !important;
}
.cta-panel .luxe-action-link:after {
  color: rgba(248, 245, 242, 0.82) !important;
}
.cta-panel .luxe-action-link:hover {
  color: #fff !important;
  border-bottom-color: #fff !important;
}

/* Follow Instagram and slow backwater CTA readability */
.instagram-section .luxe-action-link,
.slow-copy .luxe-action-link {
  color: rgba(30, 31, 31, 0.78) !important;
  border-bottom-color: rgba(30, 31, 31, 0.5) !important;
}
.slow-copy .luxe-action-link {
  color: rgba(248, 245, 242, 0.88) !important;
  border-bottom-color: rgba(248, 245, 242, 0.58) !important;
}
.slow-copy .luxe-action-link:after {
  color: rgba(248, 245, 242, 0.82) !important;
}

/* Cards should not show heavy button surfaces */
.offering-card .luxe-action-link,
.experience-detail-card .luxe-action-link,
.category-editorial .luxe-action-link,
.category-panel .luxe-action-link,
.note-card .luxe-action-link,
.rate-card .luxe-action-link {
  margin-top: 20px !important;
}

/* Mobile: center CTA links but keep card links left-aligned */
@media (max-width: 720px) {
  .cta-panel .btn-row {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .luxe-action-link,
  a.luxe-action-link,
  .text-link.luxe-action-link {
    font-size: 0.62rem !important;
    letter-spacing: 0.2em !important;
  }
}

/* =========================================================
   Day Cruise menu image and Premium card readability fix
   ========================================================= */

/* Show the full menu image without cropping, so every dish/text remains visible */
.day-cruise-menu-full-image,
.day-cruises-page img.day-cruise-menu-full-image,
img[src*="kerala-cuisine"],
img[src*="dining-area-kerala"],
img[alt*="menu"],
img[alt*="cuisine"] {
  object-fit: contain !important;
  object-position: center center !important;
  height: auto !important;
  max-height: none !important;
  width: 100% !important;
  background: #f6efec !important;
  padding: 14px !important;
  border-radius: 24px !important;
}

/* If the food image sits inside an image card, let the card expand naturally */
.day-cruises-page .image-card:has(.day-cruise-menu-full-image),
.day-cruises-page .split-image:has(.day-cruise-menu-full-image),
.day-cruises-page .editorial-image:has(.day-cruise-menu-full-image) {
  height: auto !important;
  min-height: 0 !important;
  background: #f6efec !important;
}

/* Subtle dietary request note */
.subtle-meal-note {
  margin: 18px 0 0 !important;
  padding: 16px 18px !important;
  background: rgba(248, 245, 242, 0.78) !important;
  border: 1px solid rgba(30, 31, 31, 0.08) !important;
  border-left: 2px solid rgba(198, 146, 74, 0.42) !important;
  border-radius: 16px !important;
  color: rgba(30, 31, 31, 0.66) !important;
  font-size: 0.94rem !important;
  line-height: 1.72 !important;
  font-weight: 300 !important;
}

/* Premium card readability fix */
.premium-card,
.card-premium,
.category-card,
.category-editorial,
.category-panel,
.style-card,
.offering-card,
.experience-detail-card,
.rate-card,
.note-card {
  color: rgba(30, 31, 31, 0.84) !important;
}

.premium-card h1,
.premium-card h2,
.premium-card h3,
.card-premium h1,
.card-premium h2,
.card-premium h3,
.category-card h1,
.category-card h2,
.category-card h3,
.category-editorial h1,
.category-editorial h2,
.category-editorial h3,
.category-panel h1,
.category-panel h2,
.category-panel h3,
.style-card h1,
.style-card h2,
.style-card h3 {
  color: rgba(30, 31, 31, 0.92) !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.premium-card p,
.card-premium p,
.category-card p,
.category-editorial p,
.category-panel p,
.style-card p,
.premium-card li,
.card-premium li,
.category-card li,
.category-editorial li,
.category-panel li,
.style-card li {
  color: rgba(30, 31, 31, 0.7) !important;
  opacity: 1 !important;
}

/* Specifically make Premium Houseboat card text readable if it uses dark/image overlay styling */
#premium,
.premium-houseboat-card,
[data-card="premium"],
article:has(h2:-webkit-any-link) {
  color: rgba(30, 31, 31, 0.84);
}

/* Safer fallback for cards with text over images */
.overlay-card,
.image-overlay-card,
.card-with-overlay {
  background: linear-gradient(
    180deg,
    rgba(30, 31, 31, 0.18),
    rgba(30, 31, 31, 0.72)
  ) !important;
}
.overlay-card h1,
.overlay-card h2,
.overlay-card h3,
.overlay-card p,
.image-overlay-card h1,
.image-overlay-card h2,
.image-overlay-card h3,
.image-overlay-card p,
.card-with-overlay h1,
.card-with-overlay h2,
.card-with-overlay h3,
.card-with-overlay p {
  color: #f8f5f2 !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.34) !important;
}

/* Day cruise meal image stack */
.meal-image-stack {
  display: grid;
  gap: 18px;
  align-self: start;
}
.meal-image-stack .day-menu-image {
  height: auto;
  min-height: 0;
}
.meal-image-stack .day-menu-image img {
  height: auto;
  display: block;
  object-fit: contain;
  background: #f6efec;
}
.meal-caption {
  padding: 0 4px;
  text-align: left;
}
.meal-caption span {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  line-height: 1.05;
  color: var(--green);
  font-weight: 600;
  letter-spacing: -0.02em;
}
.meal-caption p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}
.meal-caption-second {
  margin-top: 12px;
}
@media (max-width: 720px) {
  .meal-image-stack {
    gap: 14px;
  }
  .meal-caption span {
    font-size: 1.55rem;
  }
}

/* Overnight stays page – refined suite slider update */
.suite-feature-block {
  display: grid;
  gap: 28px;
  margin-top: 18px;
}
.suite-slider-intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.suite-slider-intro h3 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.05;
  margin: 10px 0 12px;
  color: var(--green);
}
.suite-slider-intro p {
  color: rgba(30, 31, 31, 0.64);
  max-width: 660px;
  margin: 0 auto;
}
.suite-slider {
  position: relative;
  max-width: 920px;
  margin: 0 auto;
  background: linear-gradient(180deg, #fcfaf6, var(--offwhite));
  border: 1px solid rgba(183, 139, 77, 0.22);
  border-radius: 34px;
  padding: 22px 22px 18px;
  box-shadow: 0 14px 34px rgba(45, 32, 24, 0.08);
}
.suite-slide-track {
  position: relative;
  min-height: 0;
}
.suite-slide {
  display: none;
  margin: 0;
}
.suite-slide.is-active {
  display: block;
  animation: suiteFade 0.7s ease;
}
.suite-slide img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 26px;
  box-shadow: 0 16px 34px rgba(45, 32, 24, 0.1);
}
.suite-slide-caption {
  margin-top: 14px;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(198, 146, 74, 0.88);
}
.suite-slider-indicators {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
}
.suite-indicator {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(198, 146, 74, 0.26);
  display: inline-block;
}
.suite-indicator.is-active {
  background: rgba(198, 146, 74, 0.84);
  box-shadow: 0 0 0 4px rgba(198, 146, 74, 0.12);
}
.overnight-editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 28px;
}
.overnight-editorial-grid .editorial-card {
  min-height: 290px;
}
.overnight-editorial-grid .editorial-card img {
  height: 100%;
}
.overnight-editorial-grid .editorial-card figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(247, 245, 241, 0.92);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--wood);
}
@keyframes suiteFade {
  from {
    opacity: 0.35;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 900px) {
  .suite-slider {
    padding: 16px 16px 14px;
  }
  .suite-slide img {
    height: 420px;
  }
}
@media (max-width: 720px) {
  .overnight-editorial-grid {
    grid-template-columns: 1fr;
  }
  .suite-slide img {
    height: 340px;
  }
  .suite-slide-caption {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }
}

/* Day Cruise video experience section */
.day-video-section {
  background: linear-gradient(180deg, #fcfaf6, var(--offwhite));
}
.day-cruise-video-frame {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(252, 250, 248, 0.92);
  border: 1px solid rgba(183, 139, 77, 0.24);
  border-radius: 38px;
  padding: 18px;
  box-shadow: 0 18px 44px rgba(45, 32, 24, 0.09);
}
.day-cruise-video {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  border-radius: 28px;
  background: #111;
  box-shadow: 0 16px 34px rgba(45, 32, 24, 0.12);
}
.day-cruise-video-caption {
  text-align: center;
  padding: 18px 12px 4px;
}
.day-cruise-video-caption span {
  display: block;
  color: rgba(198, 146, 74, 0.88);
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}
.day-cruise-video-caption p {
  margin: 0;
  color: rgba(30, 31, 31, 0.62);
  font-weight: 300;
}
@media (max-width: 720px) {
  .day-cruise-video-frame {
    padding: 12px;
    border-radius: 28px;
  }
  .day-cruise-video {
    border-radius: 22px;
    max-height: 500px;
  }
}

/* Overnight menu and special dinner updates */
.overnight-page .day-menu-layout {
  align-items: start;
}
.overnight-page .day-menu-image {
  height: 560px;
}
.overnight-page .meal-caption p {
  max-width: 480px;
}
.overnight-page .menu-board-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.overnight-page .menu-block {
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid rgba(198, 146, 74, 0.14);
  border-radius: 22px;
  padding: 22px 20px;
}
.overnight-page .menu-block h3 {
  margin-bottom: 12px;
}
.overnight-highlight-note {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(198, 146, 74, 0.2);
}
.special-request-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
}
.special-request-image {
  height: 520px;
}
.special-request-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.special-request-copy {
  background: linear-gradient(
    145deg,
    rgba(247, 245, 241, 0.96),
    rgba(239, 232, 222, 0.88)
  );
  border: 1px solid rgba(198, 146, 74, 0.22);
  border-radius: 34px;
  padding: 40px 36px;
  box-shadow: 0 22px 56px rgba(74, 47, 31, 0.08);
}
.special-request-copy p {
  color: var(--muted);
}
.special-request-copy ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: rgba(30, 31, 31, 0.68);
  line-height: 1.8;
}
@media (max-width: 900px) {
  .overnight-page .day-menu-image {
    height: 460px;
  }
  .special-request-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .special-request-image {
    height: 400px;
  }
}
@media (max-width: 720px) {
  .overnight-page .menu-board-grid {
    grid-template-columns: 1fr;
  }
  .overnight-page .day-menu-image {
    height: 360px;
  }
  .special-request-image {
    height: 320px;
  }
  .special-request-copy {
    padding: 28px 22px;
    border-radius: 24px;
  }
}

/* 2026-05-21 final refinements: visible homepage hero links and compact overnight menu */
.home-page .hero .btn-row {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 16px !important;
  align-items: center !important;
  margin-top: 28px !important;
}
.home-page .hero .text-link,
.home-page .hero .luxe-action-link {
  color: #fffaf2 !important;
  border: 1px solid rgba(255, 255, 255, 0.58) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.58) !important;
  background: rgba(16, 16, 16, 0.36) !important;
  backdrop-filter: blur(8px) !important;
  border-radius: 999px !important;
  padding: 14px 22px !important;
  min-width: 220px !important;
  justify-content: center !important;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.62) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25) !important;
}
.home-page .hero .text-link:after,
.home-page .hero .luxe-action-link:after {
  color: #fffaf2 !important;
}
.home-page .hero .text-link:hover,
.home-page .hero .luxe-action-link:hover {
  background: rgba(255, 250, 242, 0.94) !important;
  color: var(--charcoal) !important;
  text-shadow: none !important;
  border-color: rgba(255, 250, 242, 0.94) !important;
}
.home-page .hero .text-link:hover:after,
.home-page .hero .luxe-action-link:hover:after {
  color: var(--charcoal) !important;
}
.overnight-page .day-menu-board {
  padding: 30px 28px !important;
}
.overnight-page .menu-board-grid {
  gap: 14px !important;
}
.overnight-page .menu-block {
  border-radius: 18px !important;
  padding: 16px 16px !important;
}
.overnight-page .menu-block h3 {
  margin: 0 0 8px !important;
  font-size: clamp(1.2rem, 1.5vw, 1.48rem) !important;
}
.overnight-page .tick-list {
  margin: 12px 0 0 !important;
}
.overnight-page .tick-list li {
  margin-bottom: 5px !important;
  line-height: 1.45 !important;
  font-size: 0.92rem !important;
  padding-left: 19px !important;
}
.overnight-page .tick-list li:before {
  top: 0.62em !important;
  width: 5px !important;
  height: 5px !important;
  box-shadow: 0 0 0 3px rgba(198, 146, 74, 0.1) !important;
}
.overnight-highlight-note {
  margin-top: 12px !important;
  padding-top: 12px !important;
}
.overnight-highlight-note p {
  font-size: 0.92rem !important;
  line-height: 1.55 !important;
}
@media (max-width: 720px) {
  .home-page .hero .btn-row {
    gap: 12px !important;
  }
  .home-page .hero .text-link,
  .home-page .hero .luxe-action-link {
    width: 100% !important;
    min-width: 0 !important;
  }
  .overnight-page .day-menu-board {
    padding: 24px 18px !important;
  }
}

/* Our Houseboats page image updates */
.our-houseboats-page .category-suite-slider-wrap {
  padding: 0 !important;
  background: #111;
  position: relative;
}
.our-houseboats-page .category-suite-slider {
  width: 100%;
  height: 100%;
  position: relative;
  background: #111;
}
.our-houseboats-page .category-suite-slider .suite-slide-track,
.our-houseboats-page .category-suite-slider .suite-slide {
  height: 100%;
}
.our-houseboats-page .category-suite-slider .suite-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  box-shadow: none;
}
.our-houseboats-page .category-suite-slider .suite-slide-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  margin: 0;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(247, 245, 241, 0.92);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--wood);
  z-index: 2;
}
.our-houseboats-page .category-suite-slider .suite-slider-indicators {
  position: absolute;
  right: 18px;
  bottom: 21px;
  margin: 0;
  z-index: 3;
}
.our-houseboats-page .category-suite-slider .suite-indicator {
  background: rgba(255, 255, 255, 0.46);
}
.our-houseboats-page .category-suite-slider .suite-indicator.is-active {
  background: rgba(198, 146, 74, 0.95);
}

/* Final homepage dining image correction + contact action buttons */
.dining-meal-frame {
  height: 430px;
  background: #fbf5ec;
}
.dining-meal-frame img {
  object-fit: cover;
  object-position: center 62%;
}
.form-action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 6px;
}
.form-action-row .btn {
  width: 100%;
  justify-content: center;
}
@media (max-width: 720px) {
  .dining-meal-frame {
    height: 340px;
  }
  .form-action-row {
    grid-template-columns: 1fr;
  }
}

/* Final consolidated contact form state */
.contact-form-luxe .form-action-row {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 4px;
}

.contact-form-luxe .form-action-row .btn-primary {
  border: 0;
  cursor: pointer;
  min-width: 180px;
}

.contact-form-luxe .form-action-row .btn-primary:disabled {
  cursor: progress;
  opacity: 0.72;
}

.form-privacy-note {
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0;
  line-height: 1.6;
  margin: 0;
  text-transform: none;
}

.form-success-message {
  background: linear-gradient(
    145deg,
    rgba(247, 245, 241, 0.98),
    rgba(239, 232, 222, 0.92)
  );
  border: 1px solid rgba(198, 146, 74, 0.28);
  border-radius: 28px;
  box-shadow: 0 18px 52px rgba(74, 47, 31, 0.08);
  grid-column: 1 / -1;
  margin-top: 22px;
  padding: 28px;
}

.form-success-message h3 {
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 10px;
}

.form-success-message p {
  color: var(--muted);
  margin: 0;
}

/* 2026-05-23 live launch refinement: first-fold, mobile branding, mobile tariffs */
/* Keep the homepage hero premium, but prevent the video area from swallowing the first screen on laptops. */
.home-page .hero {
  min-height: clamp(560px, calc(100svh - 70px), 760px) !important;
  height: auto !important;
  align-items: center !important;
}
.home-page .hero-content {
  padding-top: clamp(64px, 9vh, 96px) !important;
  padding-bottom: clamp(58px, 8vh, 88px) !important;
}
.home-page .hero h1 {
  font-size: clamp(2.75rem, 6vw, 5.15rem) !important;
  line-height: 1.02 !important;
  max-width: 820px !important;
}
.home-page .hero p {
  max-width: 660px !important;
}
.home-page .hero-shade {
  background:
    linear-gradient(90deg, rgba(30, 31, 31, 0.78), rgba(74, 47, 31, 0.44) 48%, rgba(30, 31, 31, 0.18)),
    linear-gradient(0deg, rgba(30, 31, 31, 0.52), transparent 46%, rgba(30, 31, 31, 0.22)) !important;
}

/* Tablet: keep brand visible without crowding the nav. */
@media (max-width: 1050px) {
  .site-header .brand,
  .home-page .site-header .brand {
    min-width: 165px !important;
    max-width: 190px !important;
  }
  .site-header .brand img,
  .home-page .site-header .brand img {
    width: 50px !important;
    height: 34px !important;
  }
  .site-header .brand span,
  .home-page .site-header .brand span {
    display: flex !important;
    font-size: 0.54rem !important;
    letter-spacing: 0.11em !important;
    line-height: 1.05 !important;
  }
  .site-header .brand em,
  .home-page .site-header .brand em {
    margin-left: 13px !important;
    letter-spacing: 0.18em !important;
  }
}

/* Mobile: show logo + Kerala Houseboat Escapes, hide only the header CTA to preserve space. */
@media (max-width: 720px) {
  .site-header .header-inner,
  .home-page .site-header .header-inner {
    height: 68px !important;
    width: min(100% - 28px, 95vw) !important;
    gap: 10px !important;
    justify-content: space-between !important;
  }
  .site-header .brand,
  .home-page .site-header .brand {
    min-width: 158px !important;
    max-width: 178px !important;
    gap: 7px !important;
  }
  .site-header .brand img,
  .home-page .site-header .brand img {
    width: 44px !important;
    height: 31px !important;
  }
  .site-header .brand span,
  .home-page .site-header .brand span {
    display: flex !important;
    flex-direction: column !important;
    font-size: 0.49rem !important;
    line-height: 1.08 !important;
    letter-spacing: 0.09em !important;
    color: var(--charcoal) !important;
    text-shadow: none !important;
    white-space: nowrap !important;
  }
  .site-header .brand em,
  .home-page .site-header .brand em {
    display: block !important;
    margin-left: 10px !important;
    letter-spacing: 0.16em !important;
  }
  .home-page .site-header .brand img {
    filter: none !important;
    opacity: 1 !important;
  }
  .site-header .header-cta,
  .home-page .site-header .header-cta {
    display: none !important;
  }
  .menu-toggle {
    display: block !important;
    flex: 0 0 42px !important;
  }

  .home-page .hero {
    min-height: calc(100svh - 68px) !important;
    align-items: center !important;
  }
  .home-page .hero-content {
    width: min(100% - 32px, 92vw) !important;
    padding-top: 54px !important;
    padding-bottom: 58px !important;
  }
  .home-page .hero .eyebrow {
    font-size: 0.62rem !important;
    letter-spacing: 0.2em !important;
    margin-bottom: 1.2rem !important;
  }
  .home-page .hero h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.45rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -0.02em !important;
  }
  .home-page .hero p {
    font-size: 0.98rem !important;
    line-height: 1.58 !important;
    margin-top: 1rem !important;
    margin-bottom: 1.35rem !important;
  }
  .home-page .hero .btn-row {
    gap: 10px !important;
  }
  .home-page .hero .btn {
    width: 100% !important;
    min-width: 0 !important;
    padding: 13px 18px !important;
  }
}

/* Mobile tariffs: convert wide price tables into readable stacked cards. */
@media (max-width: 720px) {
  .tariff-editorial-grid {
    grid-template-columns: 1fr !important;
  }
  .tariff-card-block,
  .tariff-wide-section,
  .note-luxe {
    padding: 22px 18px !important;
    border-radius: 22px !important;
  }
  .tariff-listing > div {
    grid-template-columns: 1fr !important;
    gap: 7px !important;
  }
  .tariff-listing span {
    font-size: 1.6rem !important;
  }
  .premium-table-wrap {
    overflow: visible !important;
    border: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
  }
  .premium-table-wrap table,
  .premium-table-wrap thead,
  .premium-table-wrap tbody,
  .premium-table-wrap th,
  .premium-table-wrap td,
  .premium-table-wrap tr {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
  }
  .premium-table-wrap thead {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
  }
  .premium-table-wrap tbody tr {
    background: rgba(247, 245, 241, 0.98) !important;
    border: 1px solid rgba(198, 146, 74, 0.22) !important;
    border-radius: 20px !important;
    margin: 0 0 14px !important;
    padding: 12px 14px !important;
    box-shadow: 0 12px 30px rgba(74, 47, 31, 0.06) !important;
  }
  .premium-table-wrap td {
    display: flex !important;
    justify-content: space-between !important;
    align-items: baseline !important;
    gap: 16px !important;
    padding: 10px 0 !important;
    border-bottom: 1px solid rgba(30, 31, 31, 0.08) !important;
    text-align: right !important;
    color: var(--charcoal) !important;
    font-weight: 600 !important;
  }
  .premium-table-wrap td:last-child {
    border-bottom: 0 !important;
  }
  .premium-table-wrap td::before {
    color: var(--muted) !important;
    font-size: 0.72rem !important;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    font-weight: 800 !important;
    text-align: left !important;
  }
  .premium-table-wrap td:nth-child(1)::before { content: "Category"; }
  .premium-table-wrap td:nth-child(2)::before { content: "1 Bedroom"; }
  .premium-table-wrap td:nth-child(3)::before { content: "2 Bedrooms"; }
  .premium-table-wrap td:nth-child(4)::before { content: "3 Bedrooms"; }
  .premium-table-wrap td:nth-child(5)::before { content: "4 Bedrooms"; }
  .premium-table-wrap td:nth-child(6)::before { content: "5 Bedrooms"; }
}

@media (max-width: 420px) {
  .site-header .brand,
  .home-page .site-header .brand {
    min-width: 150px !important;
  }
  .site-header .brand img,
  .home-page .site-header .brand img {
    width: 40px !important;
    height: 29px !important;
  }
  .site-header .brand span,
  .home-page .site-header .brand span {
    font-size: 0.46rem !important;
    letter-spacing: 0.075em !important;
  }
  .home-page .hero h1 {
    font-size: clamp(2.15rem, 10.8vw, 3.05rem) !important;
  }
}

/* KHE live mobile refinement: premium readable mobile menu + visible brand text */
@media (max-width: 720px) {
  .site-header .brand,
  .home-page .site-header .brand {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-width: 0 !important;
    max-width: calc(100vw - 92px) !important;
  }

  .site-header .brand img,
  .home-page .site-header .brand img {
    width: 54px !important;
    height: 38px !important;
    flex: 0 0 auto !important;
  }

  .site-header .brand span,
  .home-page .site-header .brand span {
    display: block !important;
    font-size: 0.68rem !important;
    line-height: 1.15 !important;
    letter-spacing: 0.13em !important;
    max-width: 185px !important;
    white-space: normal !important;
  }

  .menu-toggle {
    width: 48px !important;
    height: 48px !important;
    padding: 10px !important;
  }

  .menu-toggle span {
    height: 2px !important;
    margin: 5px 0 !important;
  }

  .main-nav.open,
  .home-page .site-header .main-nav.open,
  .site-header .main-nav.open {
    padding: 22px 24px 26px !important;
    gap: 2px !important;
    box-shadow: 0 18px 34px rgba(23, 31, 33, 0.12) !important;
  }

  .main-nav.open .nav-link,
  .home-page .site-header .main-nav.open .nav-link,
  .site-header .main-nav.open .nav-link {
    display: block !important;
    width: 100% !important;
    padding: 15px 6px !important;
    font-size: 0.94rem !important;
    line-height: 1.2 !important;
    letter-spacing: 0.12em !important;
    text-align: left !important;
    border-bottom: 1px solid rgba(31, 39, 42, 0.08) !important;
  }

  .main-nav.open .nav-link:last-child,
  .home-page .site-header .main-nav.open .nav-link:last-child,
  .site-header .main-nav.open .nav-link:last-child {
    border-bottom: 0 !important;
  }
}

@media (max-width: 390px) {
  .site-header .brand span,
  .home-page .site-header .brand span {
    font-size: 0.58rem !important;
    letter-spacing: 0.1em !important;
    max-width: 150px !important;
  }
  .site-header .brand img,
  .home-page .site-header .brand img {
    width: 48px !important;
    height: 34px !important;
  }
}
