/* =========================================================
   HOTEL VISHAKA PAARK
   Main Visual System
   ========================================================= */

/* =========================================================
   01. DESIGN TOKENS
   ========================================================= */

:root {
  --ink: #3a2418;
  --ink-deep: #24150e;
  --brown: #624431;
  --brown-soft: #80644f;

  --gold: #b77a18;
  --gold-soft: #d7b56a;
  --gold-pale: #ead9b3;

  --olive: #667052;
  --olive-soft: #899276;

  --paper: #f5efe3;
  --paper-deep: #ece2d1;
  --ivory: #fffdf8;
  --white: #ffffff;

  --muted: #756b61;
  --muted-light: #9b9085;

  --line: rgba(58, 36, 24, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);

  --shadow-soft: 0 18px 55px rgba(36, 21, 14, 0.08);
  --shadow-card: 0 22px 70px rgba(36, 21, 14, 0.12);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;

  --container: 1240px;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;

  --transition: 300ms cubic-bezier(0.22, 1, 0.36, 1);
}


/* =========================================================
   02. RESET
   ========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

button {
  border: 0;
  cursor: pointer;
}

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

p,
h1,
h2,
h3,
figure {
  margin: 0;
}

address {
  font-style: normal;
}

::selection {
  background: var(--gold);
  color: var(--white);
}


/* =========================================================
   03. GLOBAL UTILITIES
   ========================================================= */

.container {
  width: min(
    calc(100% - 64px),
    var(--container)
  );
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 120px 0;
}

.section-paper {
  background:
    linear-gradient(
      135deg,
      rgba(183, 122, 24, 0.035),
      transparent 35%
    ),
    var(--paper);
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--gold);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.19em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background: currentColor;
}

.section-number {
  display: inline-block;
  margin-right: 14px;

  color: var(--gold);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  font-style: italic;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 58px;
}

.section-heading h2,
.about-content h2,
.services-intro h2,
.city-copy h2,
.ai-copy h2 {
  margin-top: 20px;

  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 0.95;
}

.section-heading h2 em,
.about-content h2 em,
.services-intro h2 em,
.city-copy h2 em,
.ai-copy h2 em {
  color: var(--brown-soft);
  font-weight: 400;
}

.section-heading > p {
  max-width: 600px;
  margin-top: 22px;

  color: var(--muted);
  font-size: 16px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;

  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;

  transition:
    gap var(--transition),
    color var(--transition);
}

.text-link:hover {
  gap: 15px;
  color: var(--gold);
}

.text-link span {
  font-size: 18px;
}


/* =========================================================
   04. ACCESSIBILITY
   ========================================================= */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* =========================================================
   05. PAGE LOADER
   ========================================================= */

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: grid;
  place-items: center;

  background: var(--ink);

  opacity: 1;
  visibility: visible;

  transition:
    opacity 600ms ease,
    visibility 600ms ease;
}

body.page-loaded .page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  display: grid;
  place-items: center;

  width: 72px;
  height: 72px;

  border: 1px solid rgba(215, 181, 106, 0.45);
  border-radius: 50%;

  color: var(--gold-soft);
  font-family: var(--serif);
  font-size: 25px;
  font-style: italic;
}


/* =========================================================
   06. HEADER
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  width: 100%;

  color: var(--white);

  transition:
    background var(--transition),
    box-shadow var(--transition),
    color var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 253, 248, 0.96);
  color: var(--ink);
  box-shadow: 0 8px 35px rgba(36, 21, 14, 0.08);

  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;

  width: min(
    calc(100% - 64px),
    1380px
  );
  min-height: 86px;
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: auto;
  height: 52px;
  max-width: 185px;
  object-fit: contain;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
}

.main-nav a {
  position: relative;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  opacity: 0.88;

  transition:
    color var(--transition),
    opacity var(--transition);
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;

  width: 0;
  height: 1px;

  background: currentColor;

  transition: width var(--transition);
}

.main-nav a:hover {
  opacity: 1;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
font-family: "Cormorant Garamond", serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  white-space: nowrap;

}

.phone-icon {
  font-size: 14px;
  transform: rotate(-45deg);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 44px;
  padding: 0 20px;

  background: var(--gold);
  color: var(--white);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  transition:
    background var(--transition),
    transform var(--transition);
}

.header-cta:hover {
  background: var(--ink);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;

  width: 44px;
  height: 44px;

  background: transparent;
  color: currentColor;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 5px auto;

  background: currentColor;

  transition: transform var(--transition);
}


/* =========================================================
   07. HERO
   ========================================================= */

.hero {
  position: relative;
  min-height: 820px;

  display: flex;
  align-items: center;

  overflow: hidden;

  color: var(--white);
  background: var(--ink);
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center;

  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(36, 21, 14, 0.82) 0%,
      rgba(36, 21, 14, 0.56) 38%,
      rgba(36, 21, 14, 0.18) 70%,
      rgba(36, 21, 14, 0.42) 100%
    ),
    linear-gradient(
      180deg,
      rgba(36, 21, 14, 0.36),
      transparent 35%,
      rgba(36, 21, 14, 0.38)
    );
}

.hero-container {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 350px;
  align-items: center;
  gap: 80px;

  padding-top: 95px;
  padding-bottom: 90px;
}

.hero-content {
  max-width: 780px;
}

.hero-eyebrow {
  color: var(--gold-soft);
}

.hero-content h1 {
  max-width: 760px;
  margin-top: 22px;

  font-family: var(--serif);
  font-size: clamp(66px, 7vw, 112px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.86;
}

.hero-content h1 span {
  display: block;

  color: var(--gold-soft);
  font-style: italic;
  font-weight: 400;
}

.hero-description {
  max-width: 560px;
  margin-top: 30px;

  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;

  margin-top: 36px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  min-height: 52px;
  padding: 0 24px;

  border: 1px solid transparent;

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;

  transition:
    transform var(--transition),
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.button:hover {
  transform: translateY(-3px);
}

.button-primary {
  background: var(--gold);
  color: var(--white);
}

.button-primary:hover {
  background: var(--gold-soft);
  color: var(--ink);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
}

.button-ghost:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--gold);
}

.button-light {
  background: var(--ivory);
  color: var(--ink);
}

.button-light:hover {
  background: var(--gold-soft);
}

.button-whatsapp {
  background: #607457;
  color: var(--white);
}

.button-whatsapp:hover {
  background: #506148;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 22px;

  margin-top: 58px;
}

.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-meta-item strong {
  color: var(--white);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  line-height: 1;
}

.hero-meta-item span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-meta-divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.25);
}

.hero-concierge-card {
  align-self: end;

  padding: 28px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(36, 21, 14, 0.48);

  backdrop-filter: blur(18px);

  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.18);

  animation: conciergeFloat 5s ease-in-out infinite;
}

.concierge-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
}

.concierge-icon {
  display: grid;
  place-items: center;

  width: 46px;
  height: 46px;

  border: 1px solid rgba(215, 181, 106, 0.45);
  border-radius: 50%;

  color: var(--gold-soft);
}

.concierge-icon span {
  font-size: 19px;
}

.concierge-label {
  display: block;

  margin-bottom: 3px;

  color: var(--gold-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.concierge-card-top strong {
  display: block;

  color: var(--white);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
}

.hero-concierge-card > p {
  margin-top: 20px;

  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.7;
}

.concierge-open {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  margin-top: 22px;
  padding: 14px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.14);

  background: transparent;
  color: var(--white);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;

  transition: color var(--transition);
}

.concierge-open:hover {
  color: var(--gold-soft);
}

.hero-sketch {
  position: absolute;
  z-index: 1;

  pointer-events: none;

  opacity: 0.32;
}

.hero-sketch-left {
  left: 5%;
  bottom: 13%;

  width: 180px;
  height: 180px;

  border: 1px solid rgba(215, 181, 106, 0.5);
  border-radius: 48% 52% 44% 56%;
  transform: rotate(-12deg);
}

.hero-sketch-left::before,
.hero-sketch-left::after {
  content: "";
  position: absolute;

  border: 1px solid rgba(215, 181, 106, 0.35);
  border-radius: 50%;
}

.hero-sketch-left::before {
  inset: 18px 30px;
}

.hero-sketch-left::after {
  inset: 40px 55px;
}

.hero-sketch-right {
  top: 23%;
  right: 7%;

  width: 120px;
  height: 120px;

  border: 1px solid rgba(215, 181, 106, 0.42);
  border-radius: 48% 52% 54% 46%;
  transform: rotate(25deg);
}

.hero-sketch-right::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;

  width: 180px;
  height: 1px;

  background: rgba(215, 181, 106, 0.4);

  transform: rotate(-20deg);
}


/* =========================================================
   08. BOOKING BAR
   ========================================================= */

.booking-section {
  position: relative;
  z-index: 10;

  margin-top: -45px;
}

.booking-bar {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: stretch;

  overflow: hidden;

  background: var(--ivory);
  border: 1px solid rgba(58, 36, 24, 0.1);

  box-shadow: var(--shadow-card);
}

.booking-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 22px 26px;

  background: var(--ink);
  color: var(--white);
}

.booking-kicker {
  margin-bottom: 5px;

  color: var(--gold-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.booking-intro strong {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
}

.quick-booking-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr)) 210px;
  align-items: stretch;
}

.booking-field {
  display: flex;
  flex-direction: column;
  justify-content: center;

  min-height: 88px;
  padding: 15px 22px;

  border-right: 1px solid var(--line);
}

.booking-field label {
  margin-bottom: 5px;

  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-field input,
.booking-field select {
  width: 100%;
  padding: 0;

  border: 0;
  outline: 0;

  background: transparent;
  color: var(--ink);

  font-size: 13px;
  font-weight: 600;
}

.booking-field input:focus,
.booking-field select:focus {
  color: var(--gold);
}

/* Keep native select menus legible against the charcoal booking bar. */
.booking-field select {
  color: #f3f1eb;
  background-color: #303338;
}

.booking-field select option {
  color: #f3f1eb;
  background: #303338;
}

.booking-field select option:checked {
  color: #1e2023;
  background: #d8bc88;
}

.quick-booking-form > .button {
  height: 100%;
  border-radius: 0;
}


/* =========================================================
   09. ABOUT
   ========================================================= */

.about-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;

  margin-bottom: 65px;
}

.section-caption {
  max-width: 350px;

  color: var(--muted);
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  line-height: 1.3;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.about-image-wrap {
  position: relative;
}

.about-image-wrap::before {
  content: "";

  position: absolute;
  z-index: -1;

  top: -22px;
  left: -22px;

  width: 75%;
  height: 70%;

  border: 1px solid var(--gold-soft);
}

.about-image-wrap::after {
  content: "";

  position: absolute;
  z-index: -1;

  right: -22px;
  bottom: -22px;

  width: 45%;
  height: 35%;

  background:
    repeating-linear-gradient(
      135deg,
      rgba(58, 36, 24, 0.06) 0,
      rgba(58, 36, 24, 0.06) 1px,
      transparent 1px,
      transparent 7px
    );
}

.about-image {
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow-card);
}

.image-note {
  position: absolute;
  right: 20px;
  bottom: 20px;

  display: flex;
  align-items: center;
  gap: 9px;

  padding: 8px 12px;

  background: var(--ivory);

  color: var(--brown);
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;

  box-shadow: 0 12px 35px rgba(36, 21, 14, 0.13);
}

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

.hand-note {
  display: block;

  color: var(--gold);
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
}

.about-content h2 {
  max-width: 540px;
  font-size: clamp(48px, 5vw, 70px);
}

.about-content p {
  max-width: 540px;
  margin-top: 20px;

  color: var(--muted);
  font-size: 15px;
}

.about-content .lead {
  color: var(--brown);
  font-size: 18px;
  line-height: 1.65;
}

.about-facts {
  display: flex;
  align-items: stretch;

  max-width: 550px;
  margin-top: 40px;

  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fact {
  flex: 1;
  padding: 20px 18px;
}

.fact + .fact {
  border-left: 1px solid var(--line);
}

.fact strong {
  display: block;

  color: var(--ink);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
}

.fact span {
  display: block;
  margin-top: 7px;

  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* =========================================================
   10. ROOMS
   ========================================================= */

.room-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
}

.room-card {
  overflow: hidden;

  background: var(--ivory);
  border: 1px solid rgba(58, 36, 24, 0.1);

  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.room-image-wrap {
  position: relative;
  overflow: hidden;
  background: var(--paper-deep);
}

.room-image {
  aspect-ratio: 1.18 / 1;
  object-fit: cover;

  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.room-card:hover .room-image {
  transform: scale(1.045);
}

.room-tag {
  position: absolute;
  top: 16px;
  left: 16px;

  padding: 7px 11px;

  background: #1D1D1D;
  color: #F4EFE5;

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.room-content {
  padding: 28px;
}

.room-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.room-type {
  display: block;

  margin-bottom: 5px;

  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.room-content h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 600;
  line-height: 0.98;
}

.room-price {
  text-align: right;
  white-space: nowrap;
}

.room-price strong {
  display: block;

  color: var(--ink);
  font-family: var(--serif);
  font-size: 23px;
  font-weight: 600;
}

.room-price span {
  display: block;

  margin-top: 2px;

  color: var(--muted);
  font-size: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.room-content > p {
  min-height: 78px;
  margin-top: 20px;

  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.room-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;

  margin: 18px 0 25px;
}

.room-features span {
  padding: 6px 9px;

  background: var(--paper);
  color: var(--brown);

  font-size: 9px;
  font-weight: 600;
}

.rooms-footnote {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-top: 25px;

  color: var(--muted);
}

.footnote-mark {
  color: var(--gold);
}

.rooms-footnote p {
  font-size: 11px;
}

/* Give the rate note the same considered Cinzel treatment as the travel labels. */
#rooms .rooms-footnote p {
  color: #d8d2c8 !important;
  font-family: "Cinzel", Georgia, serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  letter-spacing: 0.005em;
  line-height: 1.55 !important;
}

#rooms .rooms-footnote .footnote-mark {
  font-size: 16px !important;
}


/* =========================================================
   11. SERVICES
   ========================================================= */

.services-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 100px;
}

.services-intro {
  position: sticky;
  top: 120px;
  align-self: start;
}

.services-intro h2 {
  max-width: 470px;
  font-size: clamp(48px, 5vw, 68px);
}

.services-intro > p {
  max-width: 420px;
  margin-top: 25px;

  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: minmax(280px, auto); 
}

.service-item {
  min-height: 280px;
  padding: 40px 34px;

  border-top: 1px solid var(--line);
}

.service-item:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.service-icon {
  display: block;

  margin-bottom: 20px;

  color: var(--gold);
  font-family: var(--serif);
  font-size: 27px;
}

.service-item h3 {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
}

.service-item p {
  max-width: 250px;
  margin-top: 11px;

  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}


/* =========================================================
   12. AI CONCIERGE
   ========================================================= */

.ai-section {
  padding: 125px 0;
}

.ai-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 90px;
}

.ai-copy {
  position: relative;
  z-index: 2;
}

.ai-copy .eyebrow {
  color: var(--gold-soft);
}

.ai-copy h2 {
  max-width: 570px;

  margin-top: 20px;

  color: var(--ivory);
}

.ai-copy h2 em {
  color: var(--gold-soft);
}

.ai-copy > p {
  max-width: 500px;
  margin-top: 25px;

  color: rgba(255, 253, 248, 0.66);
  font-size: 16px;
}

.ai-points {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 12px 25px;

  margin-top: 28px;
}

.ai-points span {
  display: flex;
  align-items: center;
  gap: 8px;

  color: rgba(255, 253, 248, 0.8);
  font-size: 11px;
}

.ai-points i {
  display: grid;
  place-items: center;

  width: 18px;
  height: 18px;

  border: 1px solid rgba(215, 181, 106, 0.45);
  border-radius: 50%;

  color: var(--gold-soft);

  font-size: 9px;
  font-style: normal;
}

.ai-copy .button {
  margin-top: 35px;
}

.ai-window {
  overflow: hidden;

  border: 1px solid rgba(215, 181, 106, 0.22);

  background: #fbf7ee;
  color: var(--ink);

  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.2);
}

.ai-window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 18px 22px;

  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.ai-status {
  display: flex;
  align-items: center;
  gap: 9px;

  color: var(--brown);
  font-size: 11px;
  font-weight: 700;
}

.ai-status > span {
  width: 7px;
  height: 7px;

  border-radius: 50%;
  background: var(--olive);
}

.ai-window-label {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.ai-messages {
  min-height: 330px;
  padding: 28px;
}

.ai-message {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.message-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;

  width: 34px;
  height: 34px;

  border-radius: 50%;

  background: var(--ink);
  color: var(--gold-soft);

  font-family: var(--serif);
  font-size: 17px;
}

.ai-message p {
  margin-bottom: 7px;

  color: var(--brown);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.2;
}

.ai-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 30px;
  padding-left: 46px;
}

.ai-suggestions button,
.concierge-quick-actions button {
  padding: 9px 12px;

  border: 1px solid var(--line);

  background: transparent;
  color: var(--brown);

  font-size: 10px;
  line-height: 1.3;

  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition);
}

.ai-suggestions button:hover,
.concierge-quick-actions button:hover {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

.ai-input-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin: 0 20px 20px;
  padding: 14px 15px;

  border: 1px solid var(--line);

  background: var(--white);
}

.ai-input-preview span {
  color: var(--muted-light);
  font-size: 11px;
}

.ai-input-preview button {
  display: grid;
  place-items: center;

  width: 31px;
  height: 31px;

  border-radius: 50%;

  background: var(--ink);
  color: var(--white);

  transition:
    background var(--transition),
    transform var(--transition);
}

.ai-input-preview button:hover {
  background: var(--gold);
  transform: translateX(3px);
}

.ai-background-sketch {
  position: absolute;
  inset: 0;

  pointer-events: none;
  opacity: 0.18;
}

.ai-background-sketch::before {
  content: "";

  position: absolute;
  top: 8%;
  right: 4%;

  width: 380px;
  height: 380px;

  border: 1px solid var(--gold-soft);
  border-radius: 47% 53% 48% 52%;
  transform: rotate(18deg);
}

.ai-background-sketch::after {
  content: "";

  position: absolute;
  bottom: 4%;
  left: -50px;

  width: 300px;
  height: 180px;

  border-top: 1px solid var(--gold-soft);
  border-radius: 50%;
  transform: rotate(-14deg);
}


/* =========================================================
   13. COIMBATORE JOURNAL SECTION
   ========================================================= */

.city-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: 100px;
}

.city-copy h2 {
  max-width: 500px;
}

.city-copy > p {
  max-width: 500px;
  margin-top: 20px;

  color: var(--muted);
  font-size: 15px;
}

.city-copy .lead {
  color: var(--brown);
  font-family: var(--serif);
  font-size: 23px;
  line-height: 1.35;
}

.city-journal {
  position: relative;

  min-height: 510px;
}

.journal-card {
  position: absolute;
}

.journal-card-main {
  top: 45px;
  right: 8%;

  display: flex;
  flex-direction: column;
  justify-content: center;

  width: min(100%, 450px);
  min-height: 350px;
  padding: 55px;

  border: 1px solid rgba(58, 36, 24, 0.2);

  background:
    linear-gradient(
      135deg,
      rgba(183, 122, 24, 0.07),
      transparent 55%
    ),
    var(--paper);

  box-shadow: var(--shadow-soft);

  transform: rotate(2.5deg);
}

.journal-card-main::before {
  content: "";

  position: absolute;
  inset: 14px;

  border: 1px dashed rgba(58, 36, 24, 0.16);

  pointer-events: none;
}

.journal-label {
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.journal-card-main h3 {
  margin-top: 25px;

  color: var(--ink);
  font-family: var(--serif);
  font-size: 58px;
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.86;
}

.journal-line {
  display: block;

  width: 65px;
  height: 1px;
  margin: 28px 0 18px;

  background: var(--gold);
}

.journal-card-main p {
  color: var(--muted);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}

.journal-note {
  position: absolute;

  display: flex;
  align-items: center;
  gap: 9px;

  color: var(--brown);
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}

.journal-note span {
  color: var(--gold);
  font-family: var(--sans);
  font-size: 9px;
  font-style: normal;
  font-weight: 700;
}

.journal-note-one {
  top: 40px;
  left: 0;

  transform: rotate(-8deg);
}

.journal-note-two {
  right: 0;
  bottom: 65px;

  transform: rotate(-4deg);
}

.journal-sketch {
  position: absolute;
  left: 12%;
  bottom: 35px;

  width: 110px;
  height: 100px;

  transform: rotate(-12deg);
}

.sketch-circle {
  position: absolute;
  inset: 8px 20px;

  border: 1px solid var(--gold);
  border-radius: 50%;
}

.sketch-line {
  position: absolute;
  top: 50%;
  left: 0;

  width: 100%;
  height: 1px;

  background: var(--gold);

  transform: rotate(18deg);
}

.sketch-line.short {
  top: 68%;
  left: 20%;

  width: 60%;

  transform: rotate(-20deg);
}


/* =========================================================
   14. GALLERY
   ========================================================= */

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-bottom: 24px;
}

.gallery-filter-btn {
  padding: 9px 18px;

  border: 1px solid var(--line);
  border-radius: 999px;

  background: transparent;
  color: var(--muted);

  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;

  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.gallery-filter-btn:hover {
  border-color: var(--gold-soft);
  color: var(--ink);
}

.gallery-filter-btn.is-active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--white);
}

/* Gallery sits on charcoal, so its unselected filters need a light resting state. */
#gallery .gallery-filter-btn {
  color: #e6e0d6;
  border-color: rgba(230, 224, 214, 0.18);
}

#gallery .gallery-filter-btn:hover,
#gallery .gallery-filter-btn:focus-visible {
  color: #f7f4ee;
  border-color: rgba(216, 188, 136, 0.72);
  outline: none;
}

#gallery .gallery-filter-btn.is-active {
  color: #1e2023;
  border-color: #d8bc88;
  background: #d8bc88;
}

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

.gallery-item {
  position: relative;
  overflow: hidden;

  margin: 0;
  aspect-ratio: 4 / 3;

  background: var(--paper-deep);
}

.gallery-item[hidden] {
  display: none;
}

.gallery-item-trigger {
  display: block;

  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;

  background: none;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-item::after {
  content: "";

  position: absolute;
  inset: 0;

  background: linear-gradient(
    180deg,
    transparent 55%,
    rgba(36, 21, 14, 0.25)
  );

  opacity: 0;
  pointer-events: none;

  transition: opacity var(--transition);
}

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

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

.gallery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;

  margin-top: 28px;
}

.gallery-footer p {
  color: var(--muted);
  font-size: 11px;
}

/* ---------- LIGHTBOX ---------- */

.lightbox-modal {
  position: fixed;
  inset: 0;
  z-index: 4000;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity var(--transition),
    visibility var(--transition);
}

.lightbox-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(12, 7, 4, 0.9);
  backdrop-filter: blur(6px);
}

.lightbox-panel {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 100%;
}

.lightbox-image-wrap {
  display: flex;
  align-items: center;
  justify-content: center;

  width: min(1100px, 88vw);
  height: min(78vh, 78vh);
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;

  object-fit: contain;

  border-radius: var(--radius-sm);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);

  opacity: 0;
  transform: scale(0.98);
  transition:
    opacity 250ms ease,
    transform 250ms ease;
}

.lightbox-image.is-loaded {
  opacity: 1;
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 0;
  right: 0;

  display: grid;
  place-items: center;

  width: 44px;
  height: 44px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);
  color: var(--white);

  font-size: 24px;
  font-weight: 300;

  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition);
}

.lightbox-close:hover {
  background: var(--gold-soft);
  color: var(--ink);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  display: grid;
  place-items: center;

  width: 52px;
  height: 52px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);
  color: var(--white);

  font-size: 28px;

  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition);
}

.lightbox-nav:hover {
  background: var(--gold-soft);
  color: var(--ink);
}

.lightbox-prev {
  left: 0;
}

.lightbox-next {
  right: 0;
}

.lightbox-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  color: rgba(255, 255, 255, 0.8);
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.02em;
}

.lightbox-category {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-soft);
}

@media (max-width: 720px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }

  .lightbox-image-wrap {
    width: 94vw;
  }
}


/* =========================================================
   15. FINAL CTA
   ========================================================= */

.final-cta-section {
  position: relative;
  overflow: hidden;

  padding: 90px 0;

  background: var(--ink);
  color: var(--white);
}

.final-cta-section::before {
  content: "";

  position: absolute;
  top: -180px;
  right: -100px;

  width: 430px;
  height: 430px;

  border: 1px solid rgba(215, 181, 106, 0.18);
  border-radius: 50%;
}

.final-cta-section::after {
  content: "";

  position: absolute;
  top: -140px;
  right: -60px;

  width: 350px;
  height: 350px;

  border: 1px solid rgba(215, 181, 106, 0.12);
  border-radius: 50%;
}

.final-cta {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.final-cta-copy .eyebrow {
  color: var(--gold-soft);
}

.final-cta-copy h2 {
  margin-top: 15px;

  color: var(--ivory);
  font-family: var(--serif);
  font-size: clamp(52px, 6vw, 82px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.final-cta-copy p {
  max-width: 460px;
  margin-top: 20px;

  color: rgba(255, 253, 248, 0.65);
}

.final-cta-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}


/* =========================================================
   16. FOOTER
   ========================================================= */

.site-footer {
  background: #281810;
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 1fr 1fr;
  gap: 60px;

  padding: 75px 0 65px;
}

.footer-logo img {
  width: auto;
  max-width: 180px;
  height: 55px;

  object-fit: contain;
}

.footer-brand p {
  margin-top: 20px;

  color: rgba(255, 255, 255, 0.55);
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.3;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
}

.footer-heading {
  margin-bottom: 10px;

  color: var(--gold-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.63);
  font-size: 11px;

  transition: color var(--transition);
}

.footer-column a:hover {
  color: var(--gold-soft);
}

.footer-address address {
  color: rgba(255, 255, 255, 0.63);
  font-size: 11px;
  line-height: 1.9;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  padding: 20px 0;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
  letter-spacing: 0.04em;
}


/* =========================================================
   17. AI MODAL
   ========================================================= */

.concierge-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;

  display: flex;
  align-items: flex-end;
  justify-content: flex-end;

  padding: 30px;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity var(--transition),
    visibility var(--transition);
}

.concierge-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.concierge-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(24, 14, 9, 0.68);

  backdrop-filter: blur(8px);
}

.concierge-panel {
  position: relative;
  z-index: 2;

  display: flex;
  flex-direction: column;

  width: min(450px, 100%);
  max-height: min(720px, calc(100vh - 60px));

  overflow: hidden;

  background: var(--ivory);

  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);

  transform: translateY(30px);

  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.concierge-modal.is-open .concierge-panel {
  transform: translateY(0);
}

.concierge-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  padding: 25px;

  background: var(--ink);
  color: var(--white);
}

.concierge-panel-header h2 {
  margin-top: 4px;

  color: var(--ivory);
  font-family: var(--serif);
  font-size: 36px;
  font-weight: 500;
  line-height: 1;
}

.concierge-close {
  display: grid;
  place-items: center;

  width: 38px;
  height: 38px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;

  background: transparent;
  color: var(--white);

  font-size: 23px;
  font-weight: 300;

  transition:
    background var(--transition),
    color var(--transition);
}

.concierge-close:hover {
  background: var(--gold-soft);
  color: var(--ink);
}

.concierge-chat {
  flex: 1;

  overflow-y: auto;

  min-height: 280px;
  padding: 25px;
}

.chat-message {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

.chat-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;

  width: 34px;
  height: 34px;

  border-radius: 50%;

  background: var(--ink);
  color: var(--gold-soft);

  font-family: var(--serif);
  font-size: 17px;
}

.chat-bubble {
  max-width: 300px;
  padding: 13px 15px;

  background: var(--paper);

  color: var(--brown);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.25;
}

.chat-bubble p + p {
  margin-top: 7px;
}

.concierge-quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;

  padding: 15px 20px;

  border-top: 1px solid var(--line);
}

.concierge-form {
  display: flex;
  align-items: center;
  gap: 8px;

  margin: 0 20px 12px;
  padding: 7px;

  border: 1px solid var(--line);
  background: var(--white);
}

.concierge-form input {
  min-width: 0;
  flex: 1;

  padding: 10px;

  border: 0;
  outline: 0;

  background: transparent;
  color: var(--ink);

  font-size: 12px;
}

.concierge-form input::placeholder {
  color: var(--muted-light);
}

.concierge-form > button {
  display: grid;
  place-items: center;
  flex: 0 0 auto;

  width: 37px;
  height: 37px;

  border-radius: 50%;

  background: var(--ink);
  color: var(--white);

  transition: background var(--transition);
}

.concierge-form > button:hover {
  background: var(--gold);
}

.concierge-disclaimer {
  padding: 0 22px 18px;

  color: var(--muted-light);
  font-size: 8px;
  line-height: 1.5;
  text-align: center;
}


/* =========================================================
   18. MOBILE ACTION BAR
   ========================================================= */

.mobile-action-bar {
  display: none;
}


/* =========================================================
   19. ANIMATIONS
   ========================================================= */

@keyframes conciergeFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

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


/* =========================================================
   20. LARGE DESKTOP
   ========================================================= */

@media (max-width: 1180px) {

  .header-inner {
    width: min(
      calc(100% - 42px),
      var(--container)
    );
  }

  .main-nav {
    gap: 20px;
  }

  .header-phone {
    display: none;
  }

  .hero-container {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 45px;
  }

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

  .room-card-featured {
    grid-column: span 2;
  }

  .services-layout,
  .city-layout {
    gap: 60px;
  }

  .footer-main {
    gap: 35px;
  }
}


/* =========================================================
   21. TABLET
   ========================================================= */

@media (max-width: 900px) {

  .container {
    width: min(
      calc(100% - 42px),
      700px
    );
  }

  .section {
    padding: 90px 0;
  }

  .header-inner {
    min-height: 76px;
  }

  .main-nav {
    position: fixed;
    top: 76px;
    right: 21px;
    left: 21px;

    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;

    padding: 12px;

    border: 1px solid var(--line);

    background: var(--ivory);
    color: var(--ink);

    box-shadow: var(--shadow-card);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);

    transition:
      opacity var(--transition),
      visibility var(--transition),
      transform var(--transition);
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 14px 15px;
  }

  .main-nav a::after {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .hero {
    min-height: 760px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 45px;

    padding-top: 100px;
  }

  .hero-concierge-card {
    width: min(360px, 100%);
    justify-self: start;
  }

  .hero-content h1 {
    font-size: clamp(58px, 11vw, 90px);
  }

  .booking-bar {
    grid-template-columns: 1fr;
  }

  .booking-intro {
    padding: 17px 22px;
  }

  .quick-booking-form {
    grid-template-columns: repeat(3, 1fr);
  }

  .quick-booking-form > .button {
    grid-column: 1 / -1;
    min-height: 60px;
  }

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

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

  .about-image-wrap {
    max-width: 680px;
  }

  .services-layout,
  .ai-layout,
  .city-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .services-intro {
    position: static;
  }

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

  .city-journal {
    min-height: 500px;
  }

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

  .gallery-item-large,
  .gallery-item-wide {
    grid-column: span 2;
  }

  .final-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* =========================================================
   22. MOBILE
   ========================================================= */

@media (max-width: 640px) {

  html {
    scroll-padding-top: 72px;
  }

  body {
    padding-bottom: 70px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .section {
    padding: 75px 0;
  }

  .section-heading h2,
  .about-content h2,
  .services-intro h2,
  .city-copy h2,
  .ai-copy h2 {
    font-size: 48px;
  }


  /* Header */

  .header-inner {
    width: calc(100% - 30px);
    min-height: 70px;
  }

  .brand-logo {
    height: 43px;
    max-width: 150px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .main-nav {
    top: 70px;
    right: 15px;
    left: 15px;
  }


  /* Hero */

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(
        180deg,
        rgba(36, 21, 14, 0.55) 0%,
        rgba(36, 21, 14, 0.64) 42%,
        rgba(36, 21, 14, 0.84) 100%
      );
  }

  .hero-container {
    gap: 38px;
    padding-top: 85px;
    padding-bottom: 70px;
  }

  .hero-content h1 {
    margin-top: 17px;
    font-size: clamp(55px, 16vw, 78px);
    line-height: 0.86;
  }

  .hero-description {
    margin-top: 23px;
    font-size: 14px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-meta {
    gap: 12px;
    margin-top: 35px;
  }

  .hero-meta-item strong {
    font-size: 21px;
  }

  .hero-meta-item span {
    font-size: 8px;
  }

  .hero-concierge-card {
    width: 100%;
    padding: 21px;
  }

  .hero-sketch-left {
    width: 120px;
    height: 120px;
    left: -30px;
    bottom: 30%;
  }

  .hero-sketch-right {
    width: 80px;
    height: 80px;
    right: -15px;
    top: 22%;
  }


  /* Booking */

  .booking-section {
    margin-top: 0;
  }

  .booking-bar {
    box-shadow: 0 12px 35px rgba(36, 21, 14, 0.08);
  }

  .quick-booking-form {
    grid-template-columns: 1fr 1fr;
  }

  .booking-field {
    min-height: 72px;
    padding: 12px 15px;
  }

  .booking-field:nth-child(3) {
    grid-column: 1 / -1;
  }

  .quick-booking-form > .button {
    grid-column: 1 / -1;
  }


  /* About */

  .about-intro {
    margin-bottom: 50px;
  }

  .section-caption {
    font-size: 18px;
  }

  .about-image-wrap::before {
    top: -12px;
    left: -12px;
  }

  .about-image-wrap::after {
    right: -12px;
    bottom: -12px;
  }

  .about-image {
    aspect-ratio: 1 / 1.02;
  }

  .image-note {
    right: 12px;
    bottom: 12px;
  }

  .about-content .lead {
    font-size: 16px;
  }

  .about-content p {
    font-size: 13px;
  }

  .about-facts {
    flex-direction: column;
  }

  .fact + .fact {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .fact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
  }

  .fact strong {
    font-size: 24px;
  }

  .fact span {
    margin-top: 0;
  }


  /* Rooms */

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

  .room-card-featured {
    grid-column: auto;
  }

  .room-content {
    padding: 22px;
  }

  .room-title-row {
    flex-direction: column;
    gap: 15px;
  }

  .room-price {
    text-align: left;
  }

  .room-content > p {
    min-height: 0;
  }

  .room-image {
    aspect-ratio: 1.15 / 1;
  }


  /* Services */

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

  .service-item {
    min-height: auto;
    padding: 25px 0;
  }

  .service-item:nth-child(odd) {
    border-right: 0;
  }


  /* AI */

  .ai-section {
    padding: 80px 0;
  }

  .ai-points {
    grid-template-columns: 1fr;
  }

  .ai-messages {
    min-height: 280px;
    padding: 20px;
  }

  .ai-suggestions {
    padding-left: 0;
  }

  .ai-suggestions button {
    width: 100%;
    text-align: left;
  }


  /* Coimbatore */

  .city-journal {
    min-height: 420px;
  }

  .journal-card-main {
    top: 30px;
    right: 0;

    width: 88%;
    min-height: 310px;
    padding: 40px 30px;
  }

  .journal-card-main h3 {
    font-size: 47px;
  }

  .journal-note-one {
    top: 0;
    left: 0;
  }

  .journal-note-two {
    right: 0;
    bottom: 15px;
  }

  .journal-sketch {
    left: 0;
    bottom: 70px;
  }


  /* Gallery */

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
    gap: 7px;
  }

  .gallery-item-large,
  .gallery-item-wide {
    grid-column: span 2;
  }

  .gallery-footer {
    align-items: flex-start;
    flex-direction: column;
  }


  /* Final CTA */

  .final-cta-section {
    padding: 70px 0;
  }

  .final-cta-copy h2 {
    font-size: 58px;
  }

  .final-cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .final-cta-actions .button {
    width: 100%;
  }


  /* Footer */

  .footer-main {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 60px 0 45px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }


  /* AI modal */

  .concierge-modal {
    align-items: flex-end;
    padding: 0;
  }

  .concierge-panel {
    width: 100%;
    max-height: calc(100vh - 25px);
  }

  .concierge-panel-header {
    padding: 21px;
  }

  .concierge-chat {
    min-height: 250px;
  }


  /* Mobile action bar */

  .mobile-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    height: 70px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    background: var(--ink);

    box-shadow: 0 -12px 35px rgba(36, 21, 14, 0.18);
  }

  .mobile-action-bar a,
  .mobile-action-bar button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3px;

    background: transparent;
    color: rgba(255, 255, 255, 0.72);

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .mobile-action-bar a + *,
  .mobile-action-bar button + a {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-action-bar span {
    color: var(--gold-soft);
    font-size: 18px;
    line-height: 1;
  }
}


/* =========================================================
   23. SMALL MOBILE
   ========================================================= */

@media (max-width: 390px) {

  .hero-content h1 {
    font-size: 53px;
  }

  .hero-meta {
    gap: 8px;
  }

  .hero-meta-divider {
    height: 28px;
  }

  .hero-meta-item strong {
    font-size: 18px;
  }

  .hero-meta-item span {
    font-size: 7px;
  }

  .section-heading h2,
  .about-content h2,
  .services-intro h2,
  .city-copy h2,
  .ai-copy h2 {
    font-size: 43px;
  }

  .journal-card-main h3 {
    font-size: 42px;
  }

  .gallery-grid {
    grid-auto-rows: 135px;
  }
}


/* =========================================================
   24. REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   25. ENHANCED EDITORIAL CONCEPT
   =========================================================
   This block intentionally sits after the original visual
   system so the existing detailed CSS remains intact while
   the approved concept receives a stronger final treatment.

   Core direction:
   - warm ivory editorial canvas
   - real elevation photograph on the right
   - generous left-side typography
   - restrained hand-drawn CSS details
   - floating concierge card
   - compact booking bar
   - responsive, real HTML layout
   ========================================================= */


/* =========================================================
   25.01. EDITORIAL HEADER
   ========================================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  width: 100%;

  background: rgba(255, 253, 248, 0.93);
  color: var(--ink);

  border-bottom: 1px solid rgba(58, 36, 24, 0.08);

  box-shadow: 0 3px 22px rgba(36, 21, 14, 0.035);

  backdrop-filter: blur(14px);

  transition:
    background var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
}


.site-header.scrolled {
  background: rgba(255, 253, 248, 0.98);
  color: var(--ink);

  box-shadow: 0 10px 32px rgba(36, 21, 14, 0.08);
}


.header-inner {
  width: min(
    calc(100% - 64px),
    1380px
  );

  min-height: 82px;
}


.main-nav a {
  color: var(--ink);
}


.header-phone {
  color: var(--brown);
}


.header-cta {
  background: var(--gold);
  color: var(--white);
}


.header-cta:hover {
  background: var(--ink);
}


.menu-toggle {
  color: var(--ink);
}


/* =========================================================
   25.02. EDITORIAL HERO FOUNDATION
   ========================================================= */

.hero-editorial {
  position: relative;

  min-height: 760px;

  display: flex;
  align-items: stretch;

  overflow: hidden;

  padding-top: 82px;

  background:
    radial-gradient(
      circle at 15% 25%,
      rgba(183, 122, 24, 0.045),
      transparent 24%
    ),
    radial-gradient(
      circle at 87% 76%,
      rgba(102, 112, 82, 0.045),
      transparent 23%
    ),
    var(--ivory);

  color: var(--ink);
}


.hero-paper-texture {
  position: absolute;
  inset: 0;

  z-index: 0;

  pointer-events: none;

  opacity: 0.30;

  background-image:
    radial-gradient(
      rgba(58, 36, 24, 0.15) 0.55px,
      transparent 0.65px
    );

  background-size: 8px 8px;
}


.hero-editorial::before {
  content: "";

  position: absolute;

  top: 82px;
  left: 0;

  width: 46%;

  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(183, 122, 24, 0.40),
      transparent
    );
}


.hero-editorial::after {
  content: "";

  position: absolute;

  right: 0;
  bottom: 0;

  width: 46%;
  height: 1px;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(58, 36, 24, 0.18)
    );
}


/* =========================================================
   25.03. HERO GRID
   ========================================================= */

.hero-editorial .hero-container {
  position: relative;
  z-index: 5;

  display: grid;

  grid-template-columns:
    minmax(0, 0.82fr)
    minmax(0, 1.18fr);

  align-items: center;

  gap: clamp(
    35px,
    5.5vw,
    95px
  );

  width: min(
    calc(100% - 64px),
    1380px
  );

  min-height: 650px;

  margin-inline: auto;

  padding-top: 35px;
  padding-bottom: 75px;
}


.hero-editorial .hero-content {
  position: relative;
  z-index: 12;

  max-width: 570px;

  padding:
    20px
    0
    20px
    clamp(0px, 2vw, 32px);
}


.hero-editorial .hero-eyebrow {
  color: var(--gold);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.22em;
}


.hero-editorial .hero-eyebrow::before {
  width: 31px;

  background: var(--gold);
}


/* =========================================================
   25.04. HERO TYPOGRAPHY
   ========================================================= */

.hero-editorial .hero-content h1 {
  max-width: 600px;

  margin:
    25px
    0
    0;

  color: var(--ink);

  font-family: var(--serif);

  font-size:
    clamp(
      66px,
      6.9vw,
      108px
    );

  font-weight: 500;

  letter-spacing: -0.055em;

  line-height: 0.82;
}


.hero-editorial .hero-content h1 span {
  display: inline;

  color: var(--gold);

  font-weight: 500;
}


.hero-editorial .hero-content h1 em {
  display: inline;

  color: var(--brown);

  font-weight: 400;
  font-style: italic;
}


.hero-editorial .hero-description {
  max-width: 480px;

  margin-top: 30px;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.75;
}


/* =========================================================
   25.05. HERO ACTIONS
   ========================================================= */

.hero-editorial .hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 11px;

  margin-top: 29px;
}


.hero-editorial .button {
  min-height: 49px;

  padding:
    0
    20px;

  font-size: 10px;

  letter-spacing: 0.09em;
}


.hero-editorial .button-primary {
  background: var(--gold);

  box-shadow:
    0 8px 22px
    rgba(183, 122, 24, 0.16);
}


.hero-editorial .button-primary:hover {
  background: var(--ink);

  color: var(--white);
}


.hero-editorial .button-ghost {
  border-color: rgba(58, 36, 24, 0.22);

  background:
    rgba(255, 255, 255, 0.35);

  color: var(--ink);
}


.hero-editorial .button-ghost:hover {
  border-color: var(--ink);

  background: var(--ink);

  color: var(--white);
}


/* =========================================================
   25.06. HERO META
   ========================================================= */

.hero-editorial .hero-meta {
  display: flex;
  align-items: center;

  gap: 18px;

  width: fit-content;

  margin-top: 38px;

  padding-top: 16px;

  border-top:
    1px solid
    rgba(58, 36, 24, 0.13);
}


.hero-editorial .hero-meta-item strong {
  color: var(--ink);

  font-family: var(--serif);

  font-size: 24px;
  font-weight: 600;

  line-height: 1;
}


.hero-editorial .hero-meta-item span {
  color: var(--muted);

  font-size: 8px;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}


.hero-editorial .hero-meta-divider {
  width: 1px;
  height: 29px;

  background:
    rgba(58, 36, 24, 0.16);
}


/* =========================================================
   25.07. HERO VISUAL
   ========================================================= */

.hero-editorial .hero-visual {
  position: relative;

  z-index: 10;

  align-self: stretch;

  display: flex;
  align-items: center;
  justify-content: flex-end;

  min-width: 0;

  padding:
    38px
    32px
    38px
    0;
}


.hero-editorial .hero-photo-shadow {
  position: absolute;

  right: 4px;
  bottom: 20px;

  width: 88%;
  height: 88%;

  background:
    rgba(58, 36, 24, 0.10);

  filter: blur(25px);

  transform:
    translate(
      12px,
      12px
    );
}


.hero-editorial .hero-photo-frame {
  position: relative;

  z-index: 3;

  width: min(
    100%,
    720px
  );

  height: 525px;

  overflow: hidden;

  border:
    9px solid
    var(--white);

  background: var(--paper-deep);

  box-shadow:
    0 28px 70px
    rgba(36, 21, 14, 0.17);
}


.hero-editorial .hero-image {
  position: relative;

  inset: auto;

  width: 100%;
  height: 100%;

  object-fit: cover;

  object-position: center;

  transform: none;
}


.hero-editorial .hero-photo-frame:hover .hero-image {
  transform: scale(1.012);
}


.hero-photo-edge {
  position: absolute;

  inset: 9px;

  z-index: 4;

  border:
    1px solid
    rgba(255, 255, 255, 0.78);

  pointer-events: none;
}


.hero-photo-caption {
  position: absolute;

  left: 18px;
  bottom: 18px;

  z-index: 8;

  display: flex;
  align-items: center;

  gap: 11px;

  padding:
    10px
    12px;

  background:
    rgba(
      255,
      253,
      248,
      0.94
    );

  box-shadow:
    0 10px 30px
    rgba(36, 21, 14, 0.12);
}


.caption-number {
  color: var(--gold);

  font-family: var(--serif);

  font-size: 19px;

  font-style: italic;
}


.hero-photo-caption strong {
  display: block;

  color: var(--ink);

  font-size: 8px;

  font-weight: 800;

  letter-spacing: 0.16em;
}


.hero-photo-caption small {
  display: block;

  margin-top: 2px;

  color: var(--muted);

  font-size: 6.5px;

  letter-spacing: 0.12em;
}


/* =========================================================
   25.08. HERO PHOTO ANNOTATIONS
   ========================================================= */

.hero-photo-note {
  position: absolute;

  right: -5px;
  top: 87px;

  z-index: 18;

  display: flex;
  align-items: center;

  gap: 8px;

  color: var(--brown);

  font-family: "Caveat", cursive;

  font-size: 21px;

  transform: rotate(-7deg);
}


.hero-photo-note .note-line {
  width: 38px;
  height: 1px;

  background: var(--gold);

  transform: rotate(-10deg);
}


.hero-written-note {
  position: absolute;

  right: -80px;
  bottom: 3px;

  z-index: 15;

  display: flex;
  flex-direction: column;

  color: var(--gold);

  font-family: "Caveat", cursive;

  font-size: 23px;

  line-height: 0.9;

  transform: rotate(-5deg);
}


.hero-written-note span:last-child {
  padding-left: 21px;
}


/* =========================================================
   25.09. HERO SIDE MARK
   ========================================================= */

.hero-side-mark {
  position: absolute;

  top: 45%;

  right: -1px;

  z-index: 12;

  display: flex;
  flex-direction: column;
  align-items: center;

  gap: 4px;

  color: rgba(58, 36, 24, 0.48);

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 0.16em;

  writing-mode: vertical-rl;

  transform:
    rotate(180deg);
}


.hero-side-mark span:nth-child(2),
.hero-side-mark span:nth-child(4) {
  color: var(--gold);
}


/* =========================================================
   25.10. HERO CONCIERGE CARD
   ========================================================= */

.hero-editorial .hero-concierge-card {
  position: absolute;

  right: -4px;
  bottom: 10px;

  z-index: 30;

  width: 330px;

  padding: 19px;

  border:
    1px solid
    rgba(58, 36, 24, 0.12);

  border-radius: 14px;

  background:
    rgba(
      255,
      253,
      248,
      0.97
    );

  color: var(--ink);

  box-shadow:
    0 22px 55px
    rgba(36, 21, 14, 0.17);

  backdrop-filter: blur(15px);

  animation:
    editorialConciergeFloat
    5.5s
    ease-in-out
    infinite;
}


.hero-editorial .concierge-card-top {
  display: flex;
  align-items: center;

  gap: 11px;
}


.hero-editorial .concierge-icon {
  display: grid;
  place-items: center;

  width: 40px;
  height: 40px;

  border:
    1px solid
    rgba(183, 122, 24, 0.25);

  border-radius: 50%;

  background:
    rgba(183, 122, 24, 0.08);

  color: var(--gold);
}


.hero-editorial .concierge-card-top .concierge-label {
  color: var(--gold);

  font-size: 7px;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}


.hero-editorial .concierge-card-top strong {
  display: block;

  margin-top: 2px;

  color: var(--ink);

  font-family: var(--serif);

  font-size: 24px;

  font-weight: 600;

  line-height: 1;
}


.hero-editorial .hero-concierge-card > p {
  margin-top: 12px;

  color: var(--muted);

  font-size: 9px;

  line-height: 1.55;
}


.hero-editorial .hero-concierge-card .concierge-open {
  color: var(--ink);

  border-top:
    1px solid
    rgba(58, 36, 24, 0.11);
}


.hero-editorial .hero-concierge-card .concierge-open:hover {
  color: var(--gold);
}


@keyframes editorialConciergeFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}


/* =========================================================
   25.11. HERO DOODLES
   ========================================================= */

.hero-doodle {
  position: absolute;

  z-index: 2;

  pointer-events: none;

  color:
    rgba(
      58,
      36,
      24,
      0.32
    );
}


.hero-doodle-palm {
  left: -10px;
  bottom: 50px;

  width: 210px;
  height: 250px;
}


.palm-trunk {
  position: absolute;

  left: 82px;
  bottom: 0;

  width: 2px;
  height: 190px;

  background:
    repeating-linear-gradient(
      8deg,
      transparent 0 10px,
      currentColor 10px 11px
    );

  transform:
    rotate(9deg);
}


.palm-leaf {
  position: absolute;

  left: 76px;
  top: 38px;

  width: 95px;
  height: 1px;

  transform-origin: left center;

  background: currentColor;
}


.palm-leaf::after {
  content: "";

  position: absolute;

  top: -3px;
  left: 25px;

  width: 45px;
  height: 7px;

  border-top:
    1px solid
    currentColor;

  border-radius: 50%;

  transform:
    rotate(-9deg);
}


.palm-leaf-1 {
  transform: rotate(-70deg);
}


.palm-leaf-2 {
  transform: rotate(-43deg);
}


.palm-leaf-3 {
  transform: rotate(-18deg);
}


.palm-leaf-4 {
  transform: rotate(13deg);
}


.palm-leaf-5 {
  transform: rotate(39deg);
}


/* =========================================================
   25.12. HERO STREET DOODLE
   ========================================================= */

.hero-doodle-street {
  left: 145px;
  bottom: 23px;

  width: 220px;
  height: 115px;

  opacity: 0.48;
}


.street-line {
  position: absolute;

  bottom: 16px;

  height: 1px;

  background: currentColor;
}


.street-line-1 {
  left: 0;
  width: 220px;

  transform: rotate(-3deg);
}


.street-line-2 {
  left: 18px;
  bottom: 29px;
  width: 185px;

  transform: rotate(4deg);
}


.street-line-3 {
  left: 40px;
  bottom: 44px;
  width: 155px;

  transform: rotate(-2deg);
}


.street-house {
  position: absolute;

  bottom: 45px;

  border:
    1px solid
    currentColor;

  background:
    rgba(
      255,
      253,
      248,
      0.12
    );
}


.street-house-1 {
  left: 23px;

  width: 48px;
  height: 41px;
}


.street-house-2 {
  left: 81px;

  width: 38px;
  height: 54px;
}


.street-house-3 {
  left: 130px;

  width: 55px;
  height: 35px;
}


.street-house::before {
  content: "";

  position: absolute;

  left: 50%;
  top: -15px;

  width: 29px;
  height: 29px;

  border-left:
    1px solid
    currentColor;

  border-top:
    1px solid
    currentColor;

  transform:
    translateX(-50%)
    rotate(45deg);
}


/* =========================================================
   25.13. HERO SUN DOODLE
   ========================================================= */

.hero-doodle-sun {
  right: 39%;
  top: 112px;

  width: 70px;
  height: 70px;

  border:
    1px solid
    rgba(183, 122, 24, 0.30);

  border-radius: 50%;

  opacity: 0.65;
}


.hero-doodle-sun::before,
.hero-doodle-sun::after {
  content: "";

  position: absolute;

  left: 50%;
  top: -14px;

  width: 1px;
  height: 98px;

  background:
    rgba(183, 122, 24, 0.18);
}


.hero-doodle-sun::before {
  transform:
    translateX(-50%);
}


.hero-doodle-sun::after {
  transform:
    translateX(-50%)
    rotate(90deg);
}


.hero-doodle-sun span {
  position: absolute;

  inset: 14px;

  border:
    1px dashed
    rgba(183, 122, 24, 0.28);

  border-radius: 50%;
}


/* =========================================================
   25.14. HERO ANNOTATIONS
   ========================================================= */

.hero-annotation {
  position: absolute;

  z-index: 8;

  color: var(--brown);

  font-family: "Caveat", cursive;

  pointer-events: none;
}


.hero-annotation-left {
  left: 8.5%;
  top: 34%;

  display: flex;
  align-items: center;

  gap: 7px;

  font-size: 19px;

  transform: rotate(-6deg);
}


.annotation-arrow {
  position: relative;

  display: block;

  width: 46px;
  height: 17px;

  border-top:
    1px solid
    rgba(58, 36, 24, 0.42);

  transform: rotate(-12deg);
}


.annotation-arrow::after {
  content: "";

  position: absolute;

  right: -1px;
  top: -4px;

  width: 7px;
  height: 7px;

  border-top:
    1px solid
    currentColor;

  border-right:
    1px solid
    currentColor;

  transform:
    rotate(34deg);
}


.hero-annotation-right {
  right: 3.5%;
  bottom: 25%;

  display: flex;
  flex-direction: column;

  font-size: 24px;

  line-height: 0.88;

  transform: rotate(-8deg);
}


.hero-annotation-right small {
  margin-top: 6px;

  color: var(--muted);

  font-family: var(--sans);

  font-size: 6px;

  letter-spacing: 0.14em;

  text-transform: uppercase;
}


/* =========================================================
   25.15. HERO BOTTOM LINE
   ========================================================= */

.hero-bottom-line {
  position: absolute;

  right: 0;
  bottom: 0;
  left: 0;

  z-index: 20;

  display: flex;
  align-items: center;
  justify-content: space-between;

  width: min(
    calc(100% - 64px),
    1380px
  );

  min-height: 38px;

  margin-inline: auto;

  border-top:
    1px solid
    rgba(58, 36, 24, 0.10);

  color: var(--muted);

  font-size: 7px;

  font-weight: 700;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}


.hero-bottom-line span:nth-child(2) {
  color: var(--gold);
}


/* =========================================================
   25.16. BOOKING BAR REFINEMENT
   ========================================================= */

.booking-section {
  position: relative;

  z-index: 40;

  margin-top: -46px;
}


.booking-bar {
  position: relative;

  border-radius: 4px;

  box-shadow:
    0 20px 55px
    rgba(36, 21, 14, 0.13);
}


.booking-intro {
  position: relative;

  overflow: hidden;

  background: var(--ink);
}


.booking-intro::after {
  content: "";

  position: absolute;

  right: -35px;
  bottom: -45px;

  width: 105px;
  height: 105px;

  border:
    1px solid
    rgba(215, 181, 106, 0.22);

  border-radius: 50%;
}


.quick-booking-form > .button {
  min-height: 88px;

  border-left:
    1px solid
    rgba(58, 36, 24, 0.08);

  border-radius: 0;
}


.booking-field input,
.booking-field select {
  cursor: pointer;
}


/* =========================================================
   25.17. ABOUT VISUAL REFINEMENT
   ========================================================= */

.about-image-wrap {
  padding: 12px;
}


.about-image-wrap::before {
  top: 0;
  left: 0;

  width: 78%;
  height: 72%;

  border-color:
    rgba(183, 122, 24, 0.45);
}


.about-image-wrap::after {
  right: 0;
  bottom: 0;

  width: 40%;
  height: 31%;
}


.about-image {
  position: relative;

  z-index: 2;

  aspect-ratio: 1.22 / 1;

  object-fit: cover;

  border:
    7px solid
    var(--white);
}


.image-note {
  z-index: 5;

  right: 8px;
  bottom: 7px;

  font-family: "Caveat", cursive;

  font-size: 19px;

  transform: rotate(-2deg);
}


.about-content {
  position: relative;
}


.about-content::before {
  content: "02";

  position: absolute;

  top: -28px;
  right: 10px;

  color:
    rgba(
      183,
      122,
      24,
      0.15
    );

  font-family: var(--serif);

  font-size: 85px;

  font-style: italic;

  line-height: 1;
}


.about-content h2 {
  position: relative;

  z-index: 2;
}


/* =========================================================
   25.18. ROOMS REFINEMENT
   ========================================================= */

.room-grid {
  gap: 24px;
}


.room-card {
  border-color:
    rgba(
      58,
      36,
      24,
      0.11
    );

  background:
    rgba(
      255,
      253,
      248,
      0.88
    );
}


.room-card-featured {
  position: relative;

  transform:
    translateY(-10px);
}


.room-card-featured:hover {
  transform:
    translateY(-17px);
}


.room-image-wrap {
  border-bottom:
    1px solid
    rgba(58, 36, 24, 0.08);
}


.room-image {
  aspect-ratio: 1.30 / 1;
}


.room-content {
  padding: 25px;
}


.room-content h3 {
  font-size: 33px;
}


.room-price strong {
  color: var(--gold);
}


.rooms-footnote {
  display: flex;
  align-items: center;

  gap: 10px;

  margin-top: 27px;

  padding-top: 18px;

  border-top:
    1px solid
    rgba(58, 36, 24, 0.10);
}


.footnote-mark {
  color: var(--gold);

  font-size: 13px;
}


.rooms-footnote p {
  color: var(--muted);

  font-size: 9px;
}


/* =========================================================
   25.19. SERVICES REFINEMENT
   ========================================================= */

.services-layout {
  position: relative;
}


.services-intro {
  position: sticky;

  top: 125px;

  align-self: start;
}


.service-item {
  position: relative;

  min-height: 190px;

  background:
    rgba(
      255,
      253,
      248,
      0.34
    );

  transition:
    background var(--transition),
    transform var(--transition);
}


.service-item:hover {
  background:
    rgba(
     255,
      253,
      248,
      0.72
    );

  transform:
    translateY(-2px);
}


.service-icon {
  display: inline-grid;
  place-items: center;

  width: 36px;
  height: 36px;

  border:
    1px solid
    rgba(183, 122, 24, 0.28);

  border-radius: 50%;

  background:
    rgba(183, 122, 24, 0.05);

  color: var(--gold);
}


/* =========================================================
   25.20. AI SECTION REFINEMENT
   ========================================================= */

.ai-section {
  background:
    linear-gradient(
      120deg,
      var(--ink-deep),
      var(--ink)
    );
}


.ai-background-sketch {
  opacity: 0.16;
}


.ai-copy h2 em {
  color: var(--gold-soft);
}


.ai-points {
  margin-top: 30px;
}


.ai-window {
  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.10
    );

  box-shadow:
    0 35px 85px
    rgba(0, 0, 0, 0.27);
}


.ai-window-header {
  padding-bottom: 16px;

  border-bottom:
    1px solid
    rgba(58, 36, 24, 0.09);
}


.ai-status span {
  background: var(--olive);
}


/* =========================================================
   25.21. COIMBATORE JOURNAL REFINEMENT
   ========================================================= */

.city-section {
  background:
    radial-gradient(
      circle at 82% 45%,
      rgba(183, 122, 24, 0.045),
      transparent 24%
    ),
    var(--ivory);
}


.city-journal {
  position: relative;

  overflow: hidden;

  min-height: 455px;

  border:
    1px solid
    rgba(58, 36, 24, 0.11);

  background:
    linear-gradient(
      145deg,
      #eee3d0,
      #f5ecde
    );
}


.city-journal::before {
  content: "";

  position: absolute;

  inset: 18px;

  border:
    1px dashed
    rgba(58, 36, 24, 0.17);

  pointer-events: none;
}


.journal-card-main {
  box-shadow:
    0 25px 65px
    rgba(36, 21, 14, 0.13);
}


.journal-note {
  font-family: "Caveat", cursive;
}


.journal-sketch {
  opacity: 0.62;
}


/* =========================================================
   25.22. GALLERY REFINEMENT
   ========================================================= */

.gallery-grid {
  gap: 9px;
}


.gallery-item {
  background: var(--paper-deep);

  box-shadow:
    0 8px 25px
    rgba(36, 21, 14, 0.06);
}


.gallery-item::after {
  content: "View photograph";

  padding:
    7px
    10px;

  background:
    rgba(
      255,
      253,
      248,
      0.93
    );

  color: var(--ink);

  font-size: 7px;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}


/* =========================================================
   25.23. FINAL CTA REFINEMENT
   ========================================================= */

.final-cta-section {
  position: relative;

  background: var(--ink);
}


.final-cta {
  position: relative;

  overflow: hidden;

  min-height: 315px;

  padding:
    65px
    70px;

  background:
    linear-gradient(
      105deg,
      #2c1b12,
      #493123
    );

  box-shadow:
    0 28px 70px
    rgba(36, 21, 14, 0.17);
}


.final-cta::after {
  content: "";

  position: absolute;

  right: -90px;
  bottom: -110px;

  width: 300px;
  height: 300px;

  border:
    1px solid
    rgba(215, 181, 106, 0.20);

  border-radius: 50%;
}


.final-cta-copy {
  position: relative;

  z-index: 3;
}


.final-cta-copy h2 {
  max-width: 650px;

  font-family: var(--serif);

  font-size:
    clamp(
      47px,
      5vw,
      72px
    );

  font-weight: 500;

  line-height: 0.92;
}


.final-cta-actions {
  position: relative;

  z-index: 5;
}


/* =========================================================
   25.24. FOOTER REFINEMENT
   ========================================================= */

.site-footer {
  position: relative;

  background:
    #eee4d5;
}


.footer-main {
  position: relative;

  z-index: 4;
}


.footer-logo img {
  width: 190px;
}


.footer-heading {
  color: var(--gold);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.16em;
}


.footer-column a:hover {
  color: var(--gold);
}


/* =========================================================
   25.25. CONCIERGE MODAL REFINEMENT
   ========================================================= */

.concierge-modal {
  z-index: 5000;
}


.concierge-backdrop {
  background:
    rgba(
      36,
      21,
      14,
      0.72
    );

  backdrop-filter: blur(7px);
}


.concierge-panel {
  border:
    1px solid
    rgba(183, 122, 24, 0.20);

  box-shadow:
    0 35px 100px
    rgba(0, 0, 0, 0.30);
}


.concierge-panel-header h2 {
  color: var(--ink);

  font-family: var(--serif);

  font-weight: 500;
}


.chat-avatar {
  background: var(--gold);
}


/* =========================================================
   25.26. FOCUS STATES
   ========================================================= */

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible {
  outline:
    2px solid
    var(--gold);

  outline-offset: 3px;
}


/* =========================================================
   25.27. LARGE DESKTOP
   ========================================================= */

@media (min-width: 1400px) {

  .hero-editorial {
    min-height: 805px;
  }


  .hero-editorial .hero-container {
    min-height: 700px;

    gap: 110px;
  }


  .hero-editorial .hero-photo-frame {
    height: 570px;
  }


  .hero-editorial .hero-content h1 {
    font-size: 110px;
  }


  .hero-editorial .hero-concierge-card {
    right: -14px;
    bottom: 5px;

    width: 350px;
  }


  .hero-doodle-palm {
    width: 235px;
    height: 270px;
  }

}


/* =========================================================
   25.28. MEDIUM DESKTOP
   ========================================================= */

@media (max-width: 1180px) {

  .hero-editorial .hero-container {
    gap: 40px;
  }


  .hero-editorial .hero-content h1 {
    font-size:
      clamp(
        61px,
        7vw,
        86px
      );
  }


  .hero-editorial .hero-photo-frame {
    height: 480px;
  }


  .hero-editorial .hero-concierge-card {
    right: -5px;

    width: 300px;
  }


  .hero-written-note {
    right: -45px;
  }


  .hero-doodle-palm {
    left: -65px;
  }


  .hero-doodle-street {
    left: 70px;
  }


  .main-nav {
    gap: 20px;
  }


  .header-inner {
    gap: 18px;
  }

}


/* =========================================================
   25.29. TABLET LANDSCAPE
   ========================================================= */

@media (max-width: 960px) {

  .hero-editorial {
    min-height: auto;

    padding-top: 82px;
  }


  .hero-editorial .hero-container {
    grid-template-columns: 1fr;

    gap: 30px;

    min-height: auto;

    padding-top: 55px;
    padding-bottom: 110px;
  }


  .hero-editorial .hero-content {
    max-width: 650px;

    padding-left: 10px;
  }


  .hero-editorial .hero-content h1 {
    max-width: 700px;

    font-size:
      clamp(
        70px,
        10vw,
        100px
      );
  }


  .hero-editorial .hero-description {
    max-width: 550px;
  }


  .hero-editorial .hero-visual {
    min-height: 520px;

    padding:
      15px
      35px
      15px
      10px;
  }


  .hero-editorial .hero-photo-frame {
    width: 100%;

    height: 500px;
  }


  .hero-editorial .hero-concierge-card {
    right: 0;
    bottom: -20px;
  }


  .hero-side-mark {
    display: none;
  }


  .hero-written-note {
    right: 5px;
    bottom: -4px;
  }


  .hero-annotation-left {
    left: 12px;
    top: 29%;
  }


  .hero-annotation-right {
    right: 10px;
    bottom: 22%;
  }


  .hero-doodle-palm {
    bottom: 30px;
  }


  .hero-doodle-street {
    left: 100px;
    bottom: 15px;
  }


  .hero-bottom-line {
    width: calc(100% - 42px);
  }


  .booking-section {
    margin-top: -40px;
  }


  .about-grid {
    gap: 55px;
  }


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


  .room-card-featured {
    grid-column: 1 / -1;
  }


  .room-card-featured .room-image {
    aspect-ratio: 1.8 / 1;
  }

}


/* =========================================================
   25.30. TABLET PORTRAIT
   ========================================================= */

@media (max-width: 760px) {

  .header-inner {
    width: calc(100% - 34px);
  }


  .brand-logo {
    height: 45px;
  }


  .main-nav {
    display: none;

    position: absolute;

    top: 76px;
    right: 17px;
    left: 17px;

    flex-direction: column;

    align-items: stretch;

    gap: 0;

    margin: 0;

    padding: 8px;

    background:
      rgba(
        255,
        253,
        248,
        0.99
      );

    color: var(--ink);

    border:
      1px solid
      rgba(58, 36, 24, 0.10);

    box-shadow:
      0 18px 50px
      rgba(36, 21, 14, 0.12);
  }


  .main-nav.open {
    display: flex;
  }


  .main-nav a {
    padding: 13px 12px;

    color: var(--ink);

    border-bottom:
      1px solid
      rgba(58, 36, 24, 0.08);
  }


  .main-nav a:last-child {
    border-bottom: 0;
  }


  .main-nav a::after {
    display: none;
  }


  .header-actions {
    margin-left: auto;
  }


  .header-phone,
  .header-cta {
    display: none;
  }


  .menu-toggle {
    display: block;
  }


  .hero-editorial .hero-container {
    width: calc(100% - 32px);

    padding-top: 45px;
    padding-bottom: 105px;
  }


  .hero-editorial .hero-content {
    padding-left: 0;
  }


  .hero-editorial .hero-content h1 {
    font-size:
      clamp(
        61px,
        15vw,
        86px
      );
  }


  .hero-editorial .hero-meta {
    margin-top: 31px;
  }


  .hero-editorial .hero-visual {
    min-height: 430px;

    padding:
      10px
      16px
      35px
      0;
  }


  .hero-editorial .hero-photo-frame {
    height: 400px;

    border-width: 6px;
  }


  .hero-editorial .hero-concierge-card {
    right: -1px;
    bottom: 0;

    width: min(
      310px,
      90%
    );
  }


  .hero-photo-caption {
    left: 11px;
    bottom: 11px;
  }


  .hero-photo-note {
    right: -7px;
    top: 65px;

    font-size: 18px;
  }


  .hero-written-note {
    right: 8px;
    bottom: -2px;

    font-size: 19px;
  }


  .hero-doodle-palm {
    left: -80px;
    bottom: 55px;

    transform: scale(0.78);
    transform-origin: left bottom;
  }


  .hero-doodle-street {
    left: 30px;
    bottom: 25px;

    transform: scale(0.78);
    transform-origin: left bottom;
  }


  .hero-doodle-sun {
    right: 31%;
    top: 235px;

    transform: scale(0.72);
  }


  .hero-annotation-left {
    display: none;
  }


  .hero-annotation-right {
    right: 4px;
    bottom: 31%;

    font-size: 18px;
  }


  .hero-bottom-line {
    width: calc(100% - 32px);

    min-height: 31px;

    font-size: 6px;
  }


  .hero-bottom-line span:nth-child(2) {
    display: none;
  }


  .booking-section {
    margin-top: -30px;
  }


  .booking-bar {
    grid-template-columns: 1fr;
  }


  .booking-intro {
    min-height: 67px;
  }


  .quick-booking-form {
    grid-template-columns:
      1fr
      1fr;
  }


  .booking-field {
    min-height: 70px;
  }


  .quick-booking-form > .button {
    grid-column: 1 / -1;

    min-height: 58px;
  }


  .about-image-wrap {
    padding: 8px;
  }


  .about-content::before {
    top: -13px;
    right: 0;

    font-size: 62px;
  }


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


  .room-card-featured {
    grid-column: auto;

    transform: none;
  }


  .room-card-featured:hover {
    transform: translateY(-8px);
  }


  .room-card-featured .room-image {
    aspect-ratio: 1.18 / 1;
  }


  .services-intro {
    position: static;
  }


  .service-item {
    min-height: 165px;
  }


  .final-cta {
    padding:
      48px
      35px;
  }


  .footer-main {
    grid-template-columns:
      repeat(
        2,
        1fr
      );
  }

}


/* =========================================================
   25.31. PHONE
   ========================================================= */

@media (max-width: 640px) {

  .site-header {
    background:
      rgba(
        255,
        253,
        248,
        0.97
      );
  }


  .header-inner {
    min-height: 70px;
  }


  .brand-logo {
    height: 43px;

    max-width: 154px;
  }


  .hero-editorial {
    padding-top: 70px;
  }


  .hero-editorial .hero-container {
    width: calc(100% - 28px);

    gap: 15px;

    padding-top: 35px;
    padding-bottom: 105px;
  }


  .hero-editorial .hero-content h1 {
    margin-top: 18px;

    font-size:
      clamp(
        54px,
        15.4vw,
        76px
      );

    letter-spacing: -0.045em;

    line-height: 0.84;
  }


  .hero-editorial .hero-description {
    margin-top: 23px;

    font-size: 12px;

    line-height: 1.65;
  }


  .hero-editorial .hero-actions {
    align-items: stretch;

    flex-direction: column;

    margin-top: 24px;
  }


  .hero-editorial .hero-actions .button {
    width: 100%;
  }


  .hero-editorial .hero-meta {
    justify-content: space-between;

    width: 100%;

    gap: 8px;

    margin-top: 27px;
  }


  .hero-editorial .hero-meta-item strong {
    font-size: 20px;
  }


  .hero-editorial .hero-meta-item span {
    font-size: 7px;
  }


  .hero-editorial .hero-meta-divider {
    height: 25px;
  }


  .hero-editorial .hero-visual {
    min-height: 405px;

    padding:
      0
      7px
      58px
      0;
  }


  .hero-editorial .hero-photo-frame {
    height: 330px;

    border-width: 5px;
  }


  .hero-editorial .hero-concierge-card {
    right: 0;
    bottom: 0;

    width: 94%;

    padding: 14px;
  }


  .hero-editorial .concierge-card-top .concierge-label {
    font-size: 6px;
  }


  .hero-editorial .concierge-card-top strong {
    font-size: 21px;
  }


  .hero-editorial .hero-concierge-card > p {
    margin-top: 9px;

    font-size: 8px;
  }


  .hero-editorial .hero-concierge-card .concierge-open {
    margin-top: 12px;

    padding:
      10px
      0;

    font-size: 8px;
  }


  .hero-photo-caption {
    padding:
      7px
      9px;
  }


  .hero-photo-caption strong {
    font-size: 6.5px;
  }


  .hero-photo-caption small {
    font-size: 5.5px;
  }


  .caption-number {
    font-size: 16px;
  }


  .hero-photo-note {
    top: 38px;

    right: -3px;

    font-size: 16px;
  }


  .hero-written-note {
    display: none;
  }


  .hero-doodle-palm {
    left: -90px;
    bottom: 65px;

    transform: scale(0.60);
  }


  .hero-doodle-street {
    left: 0;
    bottom: 42px;

    transform: scale(0.58);
  }


  .hero-doodle-sun {
    right: 17%;
    top: 190px;

    transform: scale(0.54);
  }


  .hero-annotation-right {
    display: none;
  }


  .hero-bottom-line {
    width: calc(100% - 28px);

    font-size: 5.5px;
  }


  .hero-bottom-line span:last-child {
    display: none;
  }


  .booking-section {
    margin-top: -18px;
  }


  .booking-intro {
    padding:
      15px
      18px;
  }


  .booking-kicker {
    font-size: 7px;
  }


  .booking-intro strong {
    font-size: 21px;
  }


  .quick-booking-form {
    grid-template-columns:
      1fr
      1fr;
  }


  .booking-field {
    min-height: 65px;

    padding:
      10px
      12px;
  }


  .booking-field:nth-child(3) {
    grid-column: 1 / -1;
  }


  .quick-booking-form > .button {
    min-height: 57px;
  }


  .section {
    padding: 78px 0;
  }


  .about-image {
    aspect-ratio: 1 / 0.92;
  }


  .about-content h2 {
    font-size: 48px;
  }


  .room-content {
    padding: 21px;
  }


  .room-content h3 {
    font-size: 29px;
  }


  .service-item {
    min-height: 0;

    padding:
      22px
      0;
  }


  .ai-section {
    padding:
      80px
      0;
  }


  .ai-window {
    transform: none;
  }


  .city-journal {
    min-height: 400px;
  }


  .journal-card-main {
    top: 24px;
    right: 5%;

    width: 87%;

    min-height: 285px;

    padding:
      34px
      25px;
  }


  .journal-card-main h3 {
    font-size: 42px;
  }


  .gallery-grid {
    grid-template-columns:
      1fr
      1fr;

    grid-auto-rows: 145px;
  }


  .gallery-item-large,
  .gallery-item-wide {
    grid-column: span 2;
  }


  .final-cta {
    min-height: 0;

    padding:
      48px
      22px;
  }


  .final-cta-copy h2 {
    font-size: 49px;
  }


  .final-cta-actions {
    width: 100%;

    flex-direction: column;
  }


  .final-cta-actions .button {
    width: 100%;
  }


  .footer-main {
    grid-template-columns: 1fr;

    gap: 32px;

    padding:
      55px
      0
      45px;
  }


  .footer-bottom {
    align-items: flex-start;

    flex-direction: column;

    gap: 6px;
  }


  .mobile-action-bar {
    height: 70px;
  }

}


/* =========================================================
   25.32. SMALL PHONE
   ========================================================= */

@media (max-width: 390px) {

  .hero-editorial .hero-content h1 {
    font-size: 52px;
  }


  .hero-editorial .hero-description {
    font-size: 11px;
  }


  .hero-editorial .hero-photo-frame {
    height: 295px;
  }


  .hero-editorial .hero-visual {
    min-height: 370px;
  }


  .hero-editorial .hero-concierge-card {
    padding: 12px;
  }


  .hero-editorial .concierge-card-top strong {
    font-size: 19px;
  }


  .hero-editorial .hero-concierge-card > p {
    font-size: 7.5px;
  }


  .hero-editorial .hero-meta-item strong {
    font-size: 18px;
  }


  .booking-field {
    min-height: 61px;
  }


  .section-heading h2,
  .about-content h2,
  .services-intro h2,
  .city-copy h2,
  .ai-copy h2 {
    font-size: 43px;
  }


  .final-cta-copy h2 {
    font-size: 44px;
  }

}


/* =========================================================
   25.33. ENHANCED REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .hero-editorial .hero-concierge-card {
    animation: none;
  }


  .hero-editorial .hero-image {
    transition: none;
  }

}


/* ==========================================================
   FROZEN PENCIL ARTWORK — REAL PNG IMPLEMENTATION
   ----------------------------------------------------------
   The concept artwork is NOT a flattened screenshot.
   Every illustration below is an independent transparent PNG
   layer. Text remains live HTML and the hotel photographs remain
   real image assets.
   ========================================================== */

.hero-editorial {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-editorial .hero-container {
  position: relative;
  z-index: 5;
}

.hero-paper-texture {
  z-index: 0;
}

/* Coimbatore artwork lives at the hero edges, leaving the copy and hotel image clear. */
.hero-side-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.hero-side-art img {
  position: absolute;
  display: block;
  max-width: none;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-side-art-textile {
  top: 82px;
  left: 0;
  width: clamp(230px, 22vw, 390px);
  height: calc(100% - 82px);
  object-fit: cover;
  object-position: left center;
  opacity: 0.35;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.94), transparent 100%);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.94), transparent 100%);
}

.hero-side-art-city {
  right: -7vw;
  bottom: -8%;
  width: clamp(480px, 47vw, 820px);
  height: auto;
  opacity: 0.16;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 45%, rgba(0, 0, 0, 0.65) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent 95%);
  -webkit-mask-composite: source-in;
  mask-image: linear-gradient(90deg, transparent 0%, #000 45%, rgba(0, 0, 0, 0.65) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.9), transparent 95%);
  mask-composite: intersect;
}

@media (max-width: 767px) {
  .hero-side-art-textile {
    top: 70px;
    width: 210px;
    height: calc(100% - 70px);
    opacity: 0.20;
  }

  .hero-side-art-city {
    right: -52vw;
    bottom: 0;
    width: 620px;
    opacity: 0.11;
  }
}

.hero-sketch-layer {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.hero-sketch {
  position: absolute;
  display: block;
  width: auto;
  height: auto;
  max-width: none;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  opacity: .88;
  mix-blend-mode: multiply;
}

.hero-sketch-left-scene {
  left: -1.5rem;
  bottom: 2.5rem;
  width: clamp(250px, 25vw, 440px);
  z-index: 1;
}

.hero-sketch-rickshaw {
  left: clamp(150px, 12vw, 250px);
  bottom: 1.5rem;
  width: clamp(115px, 10vw, 190px);
  z-index: 4;
}

.hero-sketch-note-left {
  left: clamp(360px, 29vw, 540px);
  top: clamp(80px, 10vh, 145px);
  width: clamp(150px, 13vw, 235px);
  z-index: 6;
  opacity: .92;
}

.hero-sketch-note-right {
  right: clamp(10px, 2vw, 35px);
  top: clamp(65px, 8vh, 125px);
  width: clamp(170px, 15vw, 270px);
  z-index: 7;
  opacity: .92;
}

.hero-sketch-leaf {
  left: clamp(410px, 33vw, 620px);
  top: clamp(155px, 17vh, 250px);
  width: clamp(65px, 6vw, 105px);
  z-index: 7;
  opacity: .9;
}

.hero-annotation,
.hero-written-note,
.hero-photo-note,
.hero-side-mark,
.hero-bottom-line {
  z-index: 8;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-visual {
  position: relative;
  z-index: 10;
}

.about-grid {
  position: relative;
  isolation: isolate;
}

.about-sketch {
  position: absolute;
  right: -2rem;
  bottom: -1.5rem;
  width: min(48%, 620px);
  z-index: -1;
  pointer-events: none;
  opacity: .78;
}

.about-sketch img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.about-content {
  position: relative;
  z-index: 3;
}

.city-journal {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.coimbatore-sketch-image {
  position: absolute;
  right: -4%;
  bottom: -3%;
  width: 112%;
  max-width: none;
  height: auto;
  z-index: -1;
  opacity: .64;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.journal-card,
.journal-note {
  position: relative;
  z-index: 3;
}

.final-cta-section {
  position: relative;
  overflow: hidden;
}

.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.final-cta-sunset {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.final-cta-sunset img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.final-cta-sunset::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(36,24,17,.68), rgba(36,24,17,.28) 55%, rgba(36,24,17,.12));
  z-index: 1;
}

.cta-sketch-note {
  position: absolute;
  right: clamp(1rem, 6vw, 5rem);
  top: 50%;
  width: clamp(130px, 14vw, 220px);
  height: auto;
  transform: translateY(-50%) rotate(-4deg);
  z-index: 5;
  mix-blend-mode: screen;
  opacity: .96;
  pointer-events: none;
}

.final-cta-copy,
.final-cta-actions {
  position: relative;
  z-index: 6;
}

.site-footer {
  position: relative;
  overflow: hidden;
}

.footer-sketch {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: .58;
}

.footer-sketch img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

.site-footer .container {
  position: relative;
  z-index: 3;
}

/* Keep real PNG art visually subtle and paper-like. */
.hero-sketch-left-scene,
.hero-sketch-rickshaw,
.hero-sketch-note-left,
.hero-sketch-note-right,
.hero-sketch-leaf,
.about-sketch img,
.coimbatore-sketch-image,
.footer-sketch img {
  filter: contrast(.92) saturate(.72);
}

@media (max-width: 1100px) {
  .hero-sketch-left-scene {
    left: -5rem;
    width: 340px;
  }

  .hero-sketch-rickshaw {
    left: 120px;
    width: 145px;
  }

  .hero-sketch-note-left {
    left: 41%;
    width: 180px;
  }

  .hero-sketch-note-right {
    right: -20px;
    width: 205px;
  }

  .hero-sketch-leaf {
    left: 44%;
    width: 78px;
  }

  .about-sketch {
    right: -4rem;
    width: 52%;
  }
}

@media (max-width: 820px) {
  .hero-sketch-layer {
    opacity: .72;
  }

  .hero-sketch-left-scene {
    left: -6rem;
    bottom: 1rem;
    width: 285px;
  }

  .hero-sketch-rickshaw {
    left: 55px;
    bottom: .75rem;
    width: 115px;
  }

  .hero-sketch-note-left {
    left: auto;
    right: 31%;
    top: 92px;
    width: 145px;
  }

  .hero-sketch-note-right {
    right: -35px;
    top: 110px;
    width: 160px;
  }

  .hero-sketch-leaf {
    left: auto;
    right: 28%;
    top: 220px;
    width: 60px;
  }

  .about-sketch {
    right: -5rem;
    bottom: -1rem;
    width: 62%;
    opacity: .5;
  }

  .coimbatore-sketch-image {
    width: 125%;
    right: -12%;
    bottom: 0;
    opacity: .45;
  }

  .cta-sketch-note {
    right: 1rem;
    top: auto;
    bottom: 1rem;
    transform: rotate(-4deg);
    width: 120px;
  }
}

@media (max-width: 560px) {
  .hero-sketch-left-scene {
    left: -8rem;
    bottom: .5rem;
    width: 245px;
    opacity: .58;
  }

  .hero-sketch-rickshaw {
    left: 18px;
    bottom: .35rem;
    width: 92px;
    opacity: .72;
  }

  .hero-sketch-note-left {
    right: 27%;
    top: 86px;
    width: 108px;
    opacity: .72;
  }

  .hero-sketch-note-right {
    right: -46px;
    top: 98px;
    width: 128px;
    opacity: .72;
  }

  .hero-sketch-leaf {
    right: 22%;
    top: 185px;
    width: 46px;
  }

  .about-sketch {
    right: -4rem;
    width: 75%;
    opacity: .38;
  }

  .coimbatore-sketch-image {
    width: 145%;
    right: -24%;
    opacity: .3;
  }

  .cta-sketch-note {
    width: 95px;
    right: .65rem;
    bottom: .65rem;
  }

  .footer-sketch {
    opacity: .35;
  }
}

/* ==========================================================
   ARTWORK IMAGE FAIL-SAFE
   ========================================================== */

.hero-sketch[hidden],
.about-sketch[hidden],
.coimbatore-sketch-image[hidden],
.cta-sketch-note[hidden],
.footer-sketch[hidden] {
  display: none !important;
}

/* =========================================================
   HOTEL VISHAKA PAARK — FINAL ROOM GRID ALIGNMENT FIX
   =========================================================
   All three room cards are intentionally equal-width and equal-height.
   No room is treated as a featured/raised card on desktop.
   ========================================================= */

.room-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch !important;
  gap: 24px !important;
}

.room-card,
.room-card-featured {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  min-height: 0 !important;
  transform: none !important;
}

.room-card:hover,
.room-card-featured:hover {
  transform: translateY(-6px) !important;
}

.room-image-wrap,
.room-card-featured .room-image-wrap {
  flex: 0 0 auto !important;
  width: 100% !important;
}

.room-image,
.room-card-featured .room-image {
  display: block !important;
  width: 100% !important;
  height: 270px !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
}

.room-content,
.room-card-featured .room-content {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  padding: 25px !important;
}

.room-title-row {
  min-height: 66px !important;
}

.room-content > p {
  min-height: 58px !important;
  margin-top: 18px !important;
}

.room-features {
  margin-top: auto !important;
  margin-bottom: 22px !important;
}

.room-content .text-link {
  margin-top: 0 !important;
}

/* Clear charcoal action treatment for room-card details. */
#rooms .room-content .text-link {
  display: inline-flex !important;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(243, 241, 235, 0.22);
  background: #3b3e43;
  color: #f3f1eb !important;
  font-family: "Cinzel", Georgia, serif !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  letter-spacing: 0.025em;
}

#rooms .room-content .text-link span {
  color: #d8bc88;
  font-size: 20px;
  line-height: 1;
}

#rooms .room-content .text-link:hover {
  border-color: #d8bc88;
  background: #474b51;
  color: #fffdf8 !important;
}

@media (max-width: 1100px) {
  .room-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .room-card-featured {
    grid-column: auto !important;
  }

  .room-image,
  .room-card-featured .room-image {
    height: 240px !important;
  }
}

@media (max-width: 720px) {
  .room-grid {
    grid-template-columns: 1fr !important;
  }

  .room-image,
  .room-card-featured .room-image {
    height: auto !important;
    aspect-ratio: 1.25 / 1 !important;
  }

  .room-content,
  .room-card-featured .room-content {
    padding: 22px !important;
  }

  .room-title-row {
    min-height: 0 !important;
  }

  .room-content > p {
    min-height: 0 !important;
  }

  .room-features {
    margin-top: 18px !important;
  }
}


/* =========================================================
   HOTEL VISHAKA PAARK — PRODUCTION TYPOGRAPHY UPGRADE
   =========================================================
   The website uses an editorial hospitality hierarchy:
   large serif headlines, comfortable reading sizes, and
   stronger labels/buttons. These rules intentionally override
   the older compact visual system above.
   ========================================================= */

:root {
  --display-size: clamp(58px, 6.2vw, 92px);
  --section-title-size: clamp(48px, 5.15vw, 74px);
  --body-size: 17px;
  --small-label-size: 12px;
}

body {
  font-size: var(--body-size);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.container {
  width: min(calc(100% - 72px), var(--container));
}

.section {
  padding: 135px 0;
}

.eyebrow,
.booking-kicker,
.booking-field label,
.room-type,
.service-item .service-label,
.concierge-label,
.hero-meta-item span,
.room-price span,
.footer-heading {
  font-size: var(--small-label-size);
}

.eyebrow {
  letter-spacing: 0.16em;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 64px;
}

.section-heading h2,
.about-content h2,
.services-intro h2,
.city-copy h2,
.ai-copy h2 {
  font-size: var(--section-title-size);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.94;
}

.section-heading > p {
  max-width: 650px;
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.7;
}

.section-caption {
  font-size: 23px;
}

/* Header */
.site-header .brand-name,
.site-header .logo-text,
.site-header .site-brand strong {
  font-size: 21px;
}

.main-nav a {
  font-size: 13px;
  letter-spacing: 0.075em;
}

.header-cta,
.site-header .button {
  font-size: 12px;
}

/* Hero */
.hero-container {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 90px;
  padding-top: 115px;
  padding-bottom: 105px;
}

.hero-content {
  max-width: 850px;
}

.hero-content h1 {
  max-width: 820px;
  margin-top: 26px;
  font-size: var(--display-size);
  letter-spacing: -0.06em;
  line-height: 0.87;
}

.hero-description {
  max-width: 620px;
  margin-top: 34px;
  font-size: 19px;
  line-height: 1.75;
}

.hero-actions {
  gap: 14px;
  margin-top: 40px;
}

.button {
  min-height: 56px;
  padding: 0 28px;
  font-size: 12px;
  letter-spacing: 0.095em;
}

.hero-meta {
  gap: 28px;
  margin-top: 64px;
}

.hero-meta-item strong {
  font-size: 29px;
}

.hero-meta-item span {
  font-size: 11px;
  letter-spacing: 0.12em;
}

.hero-concierge-card {
  padding: 32px;
}

.concierge-card-top strong {
  font-size: 31px;
}

.hero-concierge-card > p {
  font-size: 15px;
  line-height: 1.7;
}

.concierge-open {
  font-size: 12px;
}

/* Booking */
.booking-bar {
  grid-template-columns: 220px 1fr;
}

.booking-intro {
  padding: 26px 30px;
}

.booking-intro strong {
  font-size: 28px;
}

.booking-kicker {
  font-size: 11px;
}

.booking-field {
  min-height: 96px;
  padding: 16px 24px;
}

.booking-field label {
  margin-bottom: 7px;
  font-size: 11px;
}

.booking-field input,
.booking-field select {
  font-size: 15px;
}

/* About */
.about-content h2 {
  max-width: 620px;
}

.about-content p {
  font-size: 17px;
  line-height: 1.75;
}

.about-content .lead {
  font-size: 20px;
  line-height: 1.65;
}

.fact strong {
  font-size: 30px;
}

.fact span {
  font-size: 11px;
}

/* Rooms */
.room-grid {
  gap: 28px !important;
}

.room-content {
  padding: 30px !important;
}

.room-type {
  margin-bottom: 7px;
  font-size: 11px;
  letter-spacing: 0.14em;
}

.room-content h3 {
  font-size: 34px;
  line-height: 0.96;
}

.room-price strong {
  font-size: 25px;
}

.room-price span {
  font-size: 10px;
}

.room-content > p {
  margin-top: 22px !important;
  font-size: 15px;
  line-height: 1.7;
}

.room-features span {
  padding: 7px 10px;
  font-size: 10px;
}

.text-link {
  font-size: 14px;
}

/* Services */
.services-layout {
  gap: 110px;
}

.services-intro > p {
  font-size: 17px;
  line-height: 1.75;
}

.service-item {
  min-height: 240px;
  padding: 34px 38px;
}

.service-icon {
  margin-bottom: 22px;
  font-size: 30px;
}

.service-item h3 {
  font-size: 30px;
}

.service-item p {
  max-width: 290px;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.7;
}

/* Gallery */
.gallery-footer p {
  font-size: 14px;
}

/* Testimonials — premium reservation state, no fabricated reviews */
.testimonials-section {
  background:
    linear-gradient(135deg, rgba(183, 122, 24, 0.045), transparent 40%),
    var(--paper);
}

.testimonials-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  align-items: end;
  gap: 70px;
}

.testimonials-heading > p {
  margin: 0;
  padding-bottom: 6px;
  font-size: 24px !important;
  line-height: 1.35 !important;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-card {
  position: relative;
  min-height: 285px;
  padding: 34px 34px 30px;
  border: 1px solid rgba(58, 36, 24, 0.14);
  background: linear-gradient(
  145deg,
  #303338 0%,
  #25282C 55%,
  #1F2226 100%
);
  box-shadow: 0 18px 50px rgba(36, 21, 14, 0.055);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  top: 16px;
  right: 26px;
  color:  #D8BC88;
  font-family: var(--serif);
  font-size: 72px;
  font-weight: 500;
  line-height: 1;
}

.testimonial-placeholder-label {
  color: #D8BC88;;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.testimonial-card blockquote {
  max-width: 390px;
  margin: 36px 0 0;
  color: #F3F1EB;
  font-family: var(--serif);
  font-size: 29px;
  font-style: italic;
  line-height: 1.15;
}

.testimonial-card footer {
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: #BDB8B0;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Location / contact */
.location-copy p,
.contact-copy p,
.location-address,
.contact-details {
  font-size: 17px;
  line-height: 1.75;
}

/* Footer */
.footer-brand p,
.footer-address address,
.footer-column a {
  font-size: 14px;
  line-height: 1.7;
}

.footer-heading {
  letter-spacing: 0.14em;
}

/* =========================================================
   RESPONSIVE TYPOGRAPHY
   ========================================================= */

@media (max-width: 1100px) {
  .hero-container {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 50px;
  }

  .hero-content h1 {
    font-size: clamp(56px, 7vw, 82px);
  }

  .testimonials-heading {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 30px;
  }

  .testimonials-heading > p {
    grid-column: 1 / -1;
    max-width: none !important;
  }

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

  .testimonial-card {
    min-height: 240px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .section {
    padding: 100px 0;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 105px;
    padding-bottom: 75px;
  }

  .hero-content h1 {
    font-size: clamp(54px, 10vw, 76px);
  }

  .hero-description {
    font-size: 17px;
  }

  .booking-bar {
    grid-template-columns: 1fr;
  }

  .booking-intro {
    padding: 24px 26px;
  }

  .quick-booking-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .quick-booking-form > .button {
    min-height: 60px;
    grid-column: 1 / -1;
  }

  .services-layout {
    gap: 55px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .about-content h2,
  .services-intro h2,
  .city-copy h2,
  .ai-copy h2 {
    font-size: clamp(40px, 11vw, 54px);
    line-height: 0.96;
  }

  .section-heading > p {
    font-size: 16px;
  }

  .hero-container {
    padding-top: 92px;
    padding-bottom: 58px;
  }

  .hero-content h1 {
    font-size: clamp(50px, 13vw, 68px);
    letter-spacing: -0.055em;
  }

  .hero-description {
    margin-top: 25px;
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-meta {
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 44px;
  }

  .hero-meta-item strong {
    font-size: 25px;
  }

  .booking-field input,
  .booking-field select {
    font-size: 15px;
  }

  .about-content p,
  .location-copy p,
  .contact-copy p,
  .location-address,
  .contact-details {
    font-size: 16px;
  }

  .about-content .lead {
    font-size: 18px;
  }

  .room-content h3 {
    font-size: 30px;
  }

  .room-price strong {
    font-size: 22px;
  }

  .service-item {
    min-height: 0;
    padding: 28px 24px;
  }

  .service-item h3 {
    font-size: 27px;
  }

  .testimonial-card {
    min-height: 260px;
    padding: 28px 26px 26px;
  }

  .testimonial-card blockquote {
    font-size: 25px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: clamp(46px, 14vw, 61px);
  }

  .hero-meta-divider {
    display: none;
  }

  .quick-booking-form {
    grid-template-columns: 1fr;
  }

  .booking-field {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .testimonial-card blockquote {
    font-size: 23px;
  }
}


/* =========================================================
   26. HOTEL VISHAKA PAARK — SITE-WIDE TYPOGRAPHY FREEZE
   =========================================================
   APPROVED SINGLE FONT:
   Cormorant Garamond

   The entire website intentionally uses one type family.
   Hierarchy is created through size, weight, spacing and
   line-height — not by switching font families.

   FROZEN DESKTOP SIZES:
   - Hero H1: 76px / 600
   - Section H2: 54px / 600
   - H3 / Room titles: 32px / 600
   - Header navigation: 15px / 500
   - Body text: 17px / 400
   - Supporting text: 15px / 400
   - Buttons / CTA: 14px / 600
   - Footer headings: 14px / 600
   - Footer links/contact: 15px / 400
   - Copyright: 13px / 400

   MOBILE SIZES:
   - Hero H1: 48px / 600
   - Section H2: 38px / 600
   - H3 / Room titles: 27px / 600
   - Header navigation: 15px / 500
   - Body text: 16px / 400
   - Supporting text: 14px / 400
   - Buttons / CTA: 14px / 600
   - Footer headings: 14px / 600
   - Footer links/contact: 15px / 400
   - Copyright: 13px / 400
   ========================================================= */

:root {
  --site-font: "Cormorant Garamond", Georgia, serif;
  --serif: var(--site-font) !important;
  --sans: var(--site-font) !important;
}

html,
body,
body * {
  font-family: var(--site-font) !important;
}

body {
  font-size: 17px !important;
  line-height: 1.7 !important;
}

/* HEADER */
.site-header,
.site-header * {
  font-family: var(--site-font) !important;
}

.main-nav a,
.header-phone {
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.2 !important;
}

.header-cta,
.site-header .button,
.menu-toggle {
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

/* HERO */
.hero-editorial .hero-content h1,
.hero-content h1 {
  font-family: var(--site-font) !important;
  font-size: 76px !important;
  font-weight: 600 !important;
  line-height: 0.96 !important;
  letter-spacing: -0.035em !important;
}

.hero-description {
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
}

.hero-eyebrow,
.eyebrow,
.hero-meta-item span,
.room-type,
.room-tag {
  font-family: var(--site-font) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  letter-spacing: 0.12em !important;
}

.hero-meta-item strong {
  font-family: var(--site-font) !important;
  font-size: 25px !important;
  font-weight: 600 !important;
  line-height: 1.1 !important;
}

/* SECTION HEADINGS */
.section-heading h2,
.about-content h2,
.services-intro h2,
.city-copy h2,
.ai-copy h2,
.location-copy h2,
.contact-copy h2 {
  font-family: var(--site-font) !important;
  font-size: 54px !important;
  font-weight: 600 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.025em !important;
}

.section-heading > p,
.about-content p,
.location-copy p,
.contact-copy p,
.services-intro p,
.ai-copy p {
  font-family: var(--site-font) !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
}

/* ROOM TITLES */
.room-content h3,
.room-card h3,
.room-card-featured h3 {
  font-family: var(--site-font) !important;
  font-size: 32px !important;
  font-weight: 600 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.02em !important;
}

.room-content > p {
  font-family: var(--site-font) !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
}

.room-price strong {
  font-family: var(--site-font) !important;
  font-size: 24px !important;
  font-weight: 600 !important;
  line-height: 1.1 !important;
}

.room-price span,
.room-features span,
.rooms-footnote p {
  font-family: var(--site-font) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
}

/* SERVICES */
.service-item h3 {
  font-family: var(--site-font) !important;
  font-size: 30px !important;
  font-weight: 600 !important;
  line-height: 1.08 !important;
}

.service-item p {
  font-family: var(--site-font) !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
}

/* BUTTONS */
.button,
.text-link,
button,
input,
select,
textarea {
  font-family: var(--site-font) !important;
}

.button,
.text-link {
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
}

/* BOOKING */
.booking-field label {
  font-family: var(--site-font) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.08em !important;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  font-family: var(--site-font) !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
}

/* TESTIMONIALS */
.testimonial-card blockquote {
  font-family: var(--site-font) !important;
  font-size: 25px !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
}

.testimonial-card footer,
.testimonial-placeholder-label {
  font-family: var(--site-font) !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  line-height: 1.3 !important;
}

/* CONCIERGE */
.ai-copy h2,
.concierge-panel-header h2 {
  font-family: var(--site-font) !important;
  font-size: 42px !important;
  font-weight: 600 !important;
  line-height: 1.05 !important;
}

.ai-points span,
.ai-window,
.ai-window * {
  font-family: var(--site-font) !important;
}

.ai-points span,
.ai-message p,
.ai-input-preview,
.concierge-form input,
.concierge-quick-actions button,
.chat-bubble {
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}

.concierge-label,
.ai-window-label {
  font-family: var(--site-font) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.12em !important;
}

/* LOCATION / CONTACT */
.location-address,
.contact-details,
.footer-address address {
  font-family: var(--site-font) !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1.7 !important;
}

/* FOOTER */
.site-footer,
.site-footer * {
  font-family: var(--site-font) !important;
}

.footer-brand p {
  font-family: var(--site-font) !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}

.footer-heading {
  font-family: var(--site-font) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.12em !important;
}

.footer-column a,
.footer-address address {
  font-family: var(--site-font) !important;
  font-size: 15px !important;
  font-weight: 400 !important;
  line-height: 1.6 !important;
}

.footer-bottom,
.footer-bottom span {
  font-family: var(--site-font) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
}

/* MOBILE TYPOGRAPHY FREEZE */
@media (max-width: 767px) {
  body {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  .hero-editorial .hero-content h1,
  .hero-content h1 {
    font-size: 48px !important;
    line-height: 0.98 !important;
  }

  .section-heading h2,
  .about-content h2,
  .services-intro h2,
  .city-copy h2,
  .ai-copy h2,
  .location-copy h2,
  .contact-copy h2 {
    font-size: 38px !important;
    line-height: 1.04 !important;
  }

  .room-content h3,
  .room-card h3,
  .room-card-featured h3 {
    font-size: 27px !important;
  }

  .service-item h3 {
    font-size: 27px !important;
  }

  .hero-description,
  .section-heading > p,
  .about-content p,
  .location-copy p,
  .contact-copy p,
  .services-intro p,
  .ai-copy p,
  .room-content > p,
  .service-item p,
  .location-address,
  .contact-details {
    font-size: 16px !important;
  }

  .hero-eyebrow,
  .eyebrow,
  .hero-meta-item span,
  .room-type,
  .room-tag,
  .booking-field label,
  .footer-heading,
  .concierge-label,
  .ai-window-label {
    font-size: 14px !important;
  }

  .button,
  .text-link,
  .header-cta,
  .main-nav a,
  .header-phone {
    font-size: 14px !important;
  }

  .booking-field input,
  .booking-field select,
  .booking-field textarea,
  .ai-points span,
  .ai-message p,
  .ai-input-preview,
  .concierge-form input,
  .concierge-quick-actions button,
  .chat-bubble {
    font-size: 16px !important;
  }

  .testimonial-card blockquote {
    font-size: 23px !important;
  }

  .ai-copy h2,
  .concierge-panel-header h2 {
    font-size: 38px !important;
  }

  .footer-brand p {
    font-size: 16px !important;
  }

  .footer-column a,
  .footer-address address {
    font-size: 15px !important;
  }

  .footer-bottom,
  .footer-bottom span {
    font-size: 13px !important;
  }
}

@media (max-width: 390px) {
  .hero-editorial .hero-content h1,
  .hero-content h1 {
    font-size: 44px !important;
  }

  .section-heading h2,
  .about-content h2,
  .services-intro h2,
  .city-copy h2,
  .ai-copy h2,
  .location-copy h2,
  .contact-copy h2 {
    font-size: 34px !important;
  }
}


/* =========================================================
   27. FOOTER — PREMIUM CONTRAST PALETTE
   =========================================================
   The footer is intentionally darker than the main ivory canvas.
   This creates a clear closing section and restores readable
   contrast for navigation, contact information and address text.
   ========================================================= */

.site-footer {
  background: #2d1d15 !important;
  color: #f6eee3 !important;
}

.site-footer::before,
.site-footer::after {
  opacity: 0 !important;
}

.footer-main {
  border-bottom-color: rgba(246, 238, 227, 0.14) !important;
}

.footer-brand p,
.footer-address address,
.footer-column a,
.footer-bottom,
.footer-bottom span {
  color: #f0e6d9 !important;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: #d3a64a !important;
}

.footer-heading {
  color: #d3a64a !important;
}

.footer-bottom {
  border-top-color: rgba(246, 238, 227, 0.14) !important;
}


/* =========================================================
   28. LOCATION SECTION — FULL-WIDTH MAP
   =========================================================
   The Google Map is intentionally given the full available
   content width. The address/contact information remains in
   a structured row below the map.
   ========================================================= */

.location-section {
  width: 100% !important;
  overflow: hidden !important;
}

.location-section > .container {
  width: 100% !important;
  max-width: 1280px !important;
}

.location-layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
  gap: 34px 48px !important;
  width: 100% !important;
  align-items: stretch !important;
}

.location-copy {
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 100% !important;
  min-width: 0 !important;
}

.location-notes {
  grid-column: 2 !important;
  grid-row: 1 !important;
  width: 100% !important;
  min-width: 0 !important;
}

.location-map-wrap {
  grid-column: 1 / -1 !important;
  grid-row: 2 !important;
  position: relative !important;
  display: block !important;
  width: 100vw !important;
  max-width: none !important;
  min-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  height: 520px !important;
  min-height: 520px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(58, 36, 24, 0.16) !important;
  border-radius: 0 !important;
  background: #e8e0d3 !important;
  box-shadow: 0 20px 55px rgba(36, 21, 14, 0.08) !important;
}

.location-map,
.location-map-wrap iframe,
.location-map-wrap > iframe {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  min-width: 100% !important;
  min-height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  object-fit: cover !important;
}

.location-copy h3 {
  font-family: var(--site-font) !important;
  font-size: 32px !important;
  font-weight: 600 !important;
  line-height: 1.05 !important;
  margin: 14px 0 18px !important;
}

.location-copy address {
  display: block !important;
  margin: 0 0 22px !important;
  font-family: var(--site-font) !important;
  font-size: 17px !important;
  font-style: normal !important;
  line-height: 1.7 !important;
}

.location-contact-list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px 22px !important;
  width: 100% !important;
  margin: 0 0 26px !important;
}

.location-contact-list a {
  font-family: var(--site-font) !important;
  font-size: 15px !important;
  line-height: 1.5 !important;
}

.location-notes {
  padding: 4px 0 0 !important;
}

.location-notes > span {
  display: block !important;
  margin-bottom: 10px !important;
  font-family: var(--site-font) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
}

.location-notes > strong {
  display: block !important;
  margin-bottom: 20px !important;
  font-family: var(--site-font) !important;
  font-size: 25px !important;
  font-weight: 600 !important;
  line-height: 1.15 !important;
}

.location-notes ul {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.location-notes li {
  position: relative !important;
  margin: 0 !important;
  padding: 11px 0 11px 22px !important;
  border-bottom: 1px solid rgba(58, 36, 24, 0.12) !important;
  font-family: var(--site-font) !important;
  font-size: 17px !important;
  line-height: 1.5 !important;
}

.location-notes li::before {
  content: "•" !important;
  position: absolute !important;
  left: 0 !important;
  top: 10px !important;
  font-size: 18px !important;
}

@media (max-width: 767px) {
  .location-section > .container {
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
  }

  .location-layout {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 28px !important;
  }

  .location-copy {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .location-notes {
    grid-column: 1 !important;
    grid-row: 2 !important;
  }

  .location-map-wrap {
    grid-column: 1 !important;
    grid-row: 3 !important;
    height: 420px !important;
    min-height: 420px !important;
  }

  .location-copy h3 {
    font-size: 27px !important;
  }

  .location-copy address {
    font-size: 16px !important;
  }

  .location-contact-list {
    flex-direction: column !important;
    gap: 7px !important;
  }

  .location-notes > strong {
    font-size: 21px !important;
  }

  .location-notes li {
    font-size: 16px !important;
  }
}

@media (max-width: 390px) {
  .location-map-wrap {
    height: 360px !important;
    min-height: 360px !important;
  }
}

/* =========================================================
   29. LOCATION SECTION — REMOVE EMPTY SPACE BELOW MAP
   =========================================================
   The location map is the final visual element of the section.
   Remove the section's bottom padding so no large empty band
   appears immediately underneath the full-width map.
   ========================================================= */

.location-section {
  padding-bottom: 0 !important;
}

.location-section .location-layout {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.location-section .location-map-wrap {
  margin-bottom: 0 !important;
}

@media (max-width: 767px) {
  .location-section {
    padding-bottom: 0 !important;
  }
}

/* =========================================================
   30. LOCATION + COIMBATORE — EDITORIAL ILLUSTRATION LAYOUT
   ========================================================= */

.location-section {
  padding: 72px 0 0 !important;
  background: #f7f0e2 !important;
}

.location-section > .container {
  width: min(calc(100% - 128px), 1400px) !important;
  max-width: none !important;
}

.location-heading {
  display: block !important;
  max-width: none !important;
  margin-bottom: 34px !important;
}

.location-heading h2 {
  margin-top: 18px !important;
  font-size: clamp(48px, 5vw, 72px) !important;
  line-height: 0.9 !important;
}

.location-heading p {
  max-width: 390px !important;
  margin: 14px 0 0 !important;
  font-size: 16px !important;
  line-height: 1.35 !important;
}

.location-layout {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.95fr) minmax(0, 1.45fr) !important;
  gap: 0 30px !important;
  align-items: start !important;
  min-height: 500px !important;
}

.location-copy {
  grid-column: 1 !important;
  grid-row: 1 !important;
  padding: 0 30px 16px 4px !important;
  border-right: 1px solid rgba(58, 36, 24, 0.2) !important;
}

.location-copy .location-pin {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 30px !important;
  height: 38px !important;
  color: var(--gold) !important;
  font-size: 28px !important;
  line-height: 1 !important;
}

.location-copy h3 {
  margin: 12px 0 10px !important;
  font-size: 30px !important;
  line-height: 1 !important;
}

.location-copy address {
  margin-bottom: 20px !important;
  font-size: 16px !important;
  line-height: 1.35 !important;
}

.location-contact-list {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 6px 15px !important;
  margin-bottom: 22px !important;
}

.location-contact-list a {
  color: var(--muted) !important;
  font-size: 13px !important;
  line-height: 1.3 !important;
}

.location-copy .button {
  padding: 13px 22px !important;
  font-size: 13px !important;
}

.location-notes {
  grid-column: 2 !important;
  grid-row: 1 !important;
  padding: 0 20px 10px 0 !important;
}

.location-notes > span {
  margin-bottom: 10px !important;
  color: var(--gold) !important;
  font-size: 12px !important;
  letter-spacing: 0.15em !important;
}

.location-notes > strong {
  margin-bottom: 16px !important;
  font-size: 24px !important;
  line-height: 1.05 !important;
}

.location-notes li {
  display: flex !important;
  justify-content: space-between !important;
  gap: 14px !important;
  padding: 12px 0 !important;
  font-size: 15px !important;
  line-height: 1.25 !important;
}

.location-notes li::before {
  content: "" !important;
  display: none !important;
}

.location-distance {
  flex: 0 0 auto !important;
  color: var(--muted) !important;
  font-size: 13px !important;
  white-space: nowrap !important;
}

.location-map-wrap {
  grid-column: 3 !important;
  grid-row: 1 !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  height: 520px !important;
  min-height: 520px !important;
  margin: -220px 0 0 !important;
  border: 0 !important;
  background: url("assets/images/coimbatore/location-city-art.png") right bottom / auto 100% no-repeat !important;
  box-shadow: none !important;
}

.location-map-wrap iframe,
.location-map {
  display: none !important;
}

.location-google-map {
  position: relative !important;
  width: 100% !important;
  height: 400px !important;
  margin-top: -190px !important;
  overflow: hidden !important;
  border: 1px solid rgba(183, 122, 24, 0.24) !important;
  background: #eadfca !important;
  box-shadow: 0 14px 34px rgba(58, 36, 24, 0.08) !important;
}

.location-google-map iframe {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  filter: sepia(0.28) saturate(0.62) contrast(0.88) brightness(1.08) !important;
}

.location-google-map::after {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  border: 8px solid rgba(247, 240, 226, 0.18) !important;
  box-shadow: inset 0 0 48px rgba(58, 36, 24, 0.1) !important;
  pointer-events: none !important;
}

.location-travel-snapshot {
  display: grid !important;
  grid-template-columns: 1.2fr repeat(3, 1fr) 1.05fr !important;
  align-items: center !important;
  gap: 0 !important;
  margin-top: 24px !important;
  padding: 25px 0 !important;
  border-top: 1px solid rgba(183, 122, 24, 0.28) !important;
  border-bottom: 1px solid rgba(183, 122, 24, 0.28) !important;
}

.location-travel-intro,
.location-travel-fact,
.location-travel-note {
  min-height: 55px !important;
  padding: 0 22px !important;
}

.location-travel-intro {
  padding-left: 0 !important;
}

.location-travel-intro .eyebrow {
  font-size: 11px !important;
}

.location-travel-intro strong {
  display: block !important;
  margin-top: 7px !important;
  font-size: 25px !important;
  font-weight: 500 !important;
  line-height: 0.9 !important;
}

.location-travel-intro em {
  color: var(--brown-soft) !important;
  font-weight: 400 !important;
}

.location-travel-fact,
.location-travel-note {
  display: flex !important;
  align-items: center !important;
  border-left: 1px solid rgba(58, 36, 24, 0.14) !important;
}

.location-travel-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 31px !important;
  height: 31px !important;
  flex: 0 0 31px !important;
  border: 1px solid rgba(183, 122, 24, 0.4) !important;
  border-radius: 50% !important;
  color: var(--gold) !important;
  font-size: 15px !important;
}

.location-travel-fact strong,
.location-travel-fact span,
.location-travel-note span,
.location-travel-note strong {
  display: block !important;
}

.location-travel-fact strong {
  color: #34363a !important;
  font-size: 19px !important;
  font-weight: 600 !important;
  line-height: 1.05 !important;
}

.location-travel-fact div span {
  margin-top: 3px !important;
  color: var(--muted) !important;
  font-size: 13px !important;
  line-height: 1.1 !important;
}

/* Travel labels: a stronger, architectural Cinzel treatment on the light palette. */
#location .location-travel-fact strong {
  color: #303338 !important;
  font-family: "Cinzel", Georgia, serif !important;
  font-size: 22px !important;
  font-weight: 600 !important;
  letter-spacing: -0.025em;
  line-height: 1.2 !important;
}

#location .location-travel-fact div span {
  color: #62656a !important;
  font-family: "Cinzel", Georgia, serif !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  letter-spacing: 0.01em;
}

.location-travel-note {
  display: block !important;
  padding-right: 0 !important;
}

.location-travel-note span {
  color: var(--gold) !important;
  font-size: 11px !important;
  letter-spacing: 0.13em !important;
}

.location-travel-note strong {
  margin-top: 6px !important;
  font-size: 18px !important;
  line-height: 0.95 !important;
}

.coimbatore-explore {
  position: relative !important;
  overflow: hidden !important;
  padding: 48px max(64px, calc((100vw - 1400px) / 2)) 0 !important;
  background: #f7f0e2 !important;
}

.coimbatore-explore-heading {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: end !important;
  gap: 40px !important;
  padding-bottom: 22px !important;
  min-height: 148px !important;
}

.coimbatore-explore-heading h2 {
  margin-top: 17px !important;
  font-size: clamp(44px, 4.4vw, 64px) !important;
  font-weight: 600 !important;
  line-height: 0.9 !important;
}

.coimbatore-explore-heading p {
  max-width: 460px !important;
  margin-top: 8px !important;
  color: var(--muted) !important;
  font-size: 16px !important;
  line-height: 1.25 !important;
}

.coimbatore-explore-note {
  padding-bottom: 5px !important;
  color: var(--brown-soft) !important;
  text-align: right !important;
}

.coimbatore-explore-note span,
.coimbatore-explore-note em {
  display: block !important;
}

.coimbatore-explore-note span {
  font-size: 13px !important;
  letter-spacing: 0.1em !important;
}

.coimbatore-explore-note em {
  font-size: 23px !important;
  line-height: 1 !important;
}

.coimbatore-city-art {
  display: none !important;
}

.coimbatore-attractions {
  display: grid !important;
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  border-top: 1px solid rgba(58, 36, 24, 0.17) !important;
}

.coimbatore-attraction-card {
  min-width: 0 !important;
  padding: 12px 14px 20px !important;
  border-right: 1px solid rgba(58, 36, 24, 0.17) !important;
}

.coimbatore-attraction-card:first-child {
  border-left: 1px solid rgba(58, 36, 24, 0.17) !important;
}

.coimbatore-attraction-art {
  height: 106px !important;
  margin-bottom: 8px !important;
}

.coimbatore-attraction-art img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  object-position: center bottom !important;
  mix-blend-mode: multiply !important;
}

.coimbatore-attraction-card h3 {
  min-height: 38px !important;
  font-size: 16px !important;
  line-height: 1.05 !important;
}

.coimbatore-attraction-card p {
  min-height: 48px !important;
  margin-top: 7px !important;
  color: var(--muted) !important;
  font-size: 13px !important;
  line-height: 1.25 !important;
}

.coimbatore-distance {
  display: block !important;
  margin-top: 8px !important;
  color: var(--gold) !important;
  font-size: 12px !important;
  line-height: 1.2 !important;
}

.coimbatore-explore-footer {
  margin-top: 2px !important;
  margin-right: max(-100vw, min(-64px, calc((1400px - 100vw) / 2))) !important;
  margin-bottom: 0 !important;
  margin-left: max(-100vw, min(-64px, calc((1400px - 100vw) / 2))) !important;
}

.coimbatore-footer-art {
  width: 100% !important;
  height: 170px !important;
}

.coimbatore-footer-art img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center bottom !important;
  mix-blend-mode: multiply !important;
}

.coimbatore-footer-note {
  display: none !important;
}

@media (max-width: 900px) {
  .location-section > .container {
    width: min(calc(100% - 40px), 760px) !important;
  }

  .location-layout {
    position: relative !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 28px !important;
    min-height: 360px !important;
  }

  .location-copy {
    grid-column: 1 !important;
    border-right: 0 !important;
    padding-right: 10px !important;
  }

  .location-notes {
    grid-column: 2 !important;
    padding-right: 0 !important;
  }

  .location-map-wrap {
    position: absolute !important;
    z-index: 0 !important;
    top: -205px !important;
    left: 40% !important;
    right: 0 !important;
    width: auto !important;
    height: 360px !important;
    min-height: 360px !important;
    margin: 0 !important;
    pointer-events: none !important;
    background-position: right bottom !important;
  }

  .location-google-map {
    height: 260px !important;
  }

  .location-travel-snapshot {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    row-gap: 20px !important;
  }

  .location-travel-intro,
  .location-travel-note {
    grid-column: 1 / -1 !important;
  }

  .location-travel-intro,
  .location-travel-fact,
  .location-travel-note {
    padding-inline: 16px !important;
  }

  .location-travel-intro {
    padding-left: 0 !important;
  }

  .location-travel-note {
    border-left: 0 !important;
    padding-left: 0 !important;
  }

  .location-copy,
  .location-notes {
    position: relative !important;
    z-index: 1 !important;
  }

  .coimbatore-explore {
    padding-inline: 20px !important;
  }

  .coimbatore-attractions {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }

  .coimbatore-explore-footer {
    margin-inline: -20px !important;
  }
}

@media (max-width: 600px) {
  .location-section {
    padding-top: 54px !important;
  }

  .location-section > .container {
    width: min(calc(100% - 32px), 520px) !important;
  }

  .location-heading,
  .coimbatore-explore-heading {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .location-heading h2,
  .coimbatore-explore-heading h2 {
    font-size: 42px !important;
  }

  .location-layout {
    grid-template-columns: 1fr !important;
  }

  .location-copy,
  .location-notes,
  .location-map-wrap {
    grid-column: 1 !important;
  }

  .location-copy {
    grid-row: 1 !important;
    padding-right: 0 !important;
  }

  .location-notes {
    grid-row: 2 !important;
    padding-right: 0 !important;
  }

  .location-map-wrap {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    width: 100% !important;
    height: 240px !important;
    min-height: 240px !important;
    margin-top: 0 !important;
  }

  .location-google-map {
    height: 220px !important;
    margin-top: 22px !important;
  }

  .location-travel-snapshot {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .location-travel-fact {
    border-left: 0 !important;
    border-top: 1px solid rgba(58, 36, 24, 0.12) !important;
    padding: 14px 0 0 !important;
  }

  .coimbatore-explore {
    padding-top: 54px !important;
  }

  .coimbatore-explore-note {
    display: none !important;
  }

  .coimbatore-attractions {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .coimbatore-attraction-card:nth-child(2n) {
    border-right: 0 !important;
  }

  .coimbatore-attraction-card h3,
  .coimbatore-attraction-card p {
    min-height: 0 !important;
  }

  .coimbatore-footer-art {
    height: 115px !important;
  }
}

/* Final testimonials heading scale override. */
.testimonials-heading > p {
  grid-column: 1 / -1;
  align-self: center;
  max-width: none !important;
  margin-top: 0 !important;
  color: var(--brown-soft) !important;
  font-family: var(--site-font) !important;
  font-size: clamp(20px, 2vw, 28px) !important;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.25 !important;
  text-align: left;
  text-wrap: balance;
}

@media (max-width: 767px) {
  .testimonials-heading > p {
    grid-column: 1 / -1;
    align-self: start;
    max-width: 100% !important;
    margin-top: 18px !important;
    font-size: clamp(18px, 5vw, 21px) !important;
  }
}

/* Reservation enquiry modal */
.reservation-modal {
  position: fixed;
  inset: 0;
  z-index: 5100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
}

.reservation-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.reservation-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(36, 21, 14, 0.74);
  backdrop-filter: blur(8px);
}

.reservation-panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: min(760px, calc(100vh - 48px));
  overflow-y: auto;
  background: var(--ivory);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.3);
  transform: translateY(22px);
  transition: transform var(--transition);
}

.reservation-modal.is-open .reservation-panel {
  transform: translateY(0);
}

.reservation-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 30px;
  background: var(--ink);
  color: var(--white);
}

.reservation-header h2 {
  margin-top: 7px;
  color: var(--ivory);
  font-family: var(--site-font);
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
}

.reservation-close {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: transparent;
  color: var(--white);
  font-size: 24px;
}

.reservation-form {
  padding: 28px 30px 30px;
}

.reservation-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px 16px;
}

.reservation-fields label {
  display: grid;
  gap: 7px;
  color: var(--brown);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.reservation-fields input,
.reservation-fields select,
.reservation-fields textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  outline: none;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  font-weight: 400;
  resize: vertical;
}

.reservation-fields input:focus,
.reservation-fields select:focus,
.reservation-fields textarea:focus {
  border-color: var(--gold);
}

.reservation-field-wide {
  grid-column: 1 / -1;
}

.reservation-submit {
  margin-top: 24px;
}

.reservation-breakdown {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(183, 122, 24, 0.28);
  background: #fbf7ee;
}

.reservation-breakdown-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.reservation-breakdown-heading strong {
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
}

.reservation-breakdown-heading span {
  color: var(--muted);
  font-size: 14px;
}

.reservation-breakdown-lines {
  display: grid;
  gap: 9px;
  margin-top: 13px;
}

.reservation-breakdown-lines > div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 15px;
}

.reservation-breakdown-lines strong {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
}

.reservation-breakdown-lines .reservation-total {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 18px;
}

.reservation-breakdown-lines .reservation-total strong {
  color: var(--gold);
  font-size: 22px;
}

.reservation-send-options {
  padding: 0 30px 30px;
}

.reservation-send-options p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.reservation-send-options > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

@media (max-width: 640px) {
  .reservation-modal {
    align-items: end;
    padding: 0;
  }

  .reservation-panel {
    max-height: calc(100vh - 18px);
  }

  .reservation-header,
  .reservation-form,
  .reservation-send-options {
    padding-inline: 20px;
  }

  .reservation-header h2 {
    font-size: 34px;
  }

  .reservation-fields {
    grid-template-columns: 1fr;
  }

  .reservation-field-wide {
    grid-column: auto;
  }

  .reservation-submit,
  .reservation-send-options .button {
    width: 100%;
  }

  .reservation-breakdown-heading {
    display: grid;
    gap: 4px;
  }
}


/* =========================================================
   32. HVP DARK CHARCOAL VISUAL UPGRADE — FINAL CONTRAST PASS
   Palette inspired by the approved charcoal reference:
   #1e2023 / #47484c / #4c4e51 / #1e1f22
   ========================================================= */
:root {
  --ink: #f3f1eb;
  --ink-deep: #ffffff;
  --brown: #d7d1c7;
  --brown-soft: #b9b4ad;

  --gold: #c29a58;
  --gold-soft: #d8bc88;
  --gold-pale: #ead9b8;

  --olive: #8b9a86;
  --olive-soft: #aab5a5;

  --paper: #25272a;
  --paper-deep: #303236;
  --ivory: #1e2023;
  --white: #ffffff;

  --muted: #c1bdb6;
  --muted-light: #9f9c97;

  --line: rgba(255, 255, 255, 0.14);
  --line-light: rgba(255, 255, 255, 0.16);

  --shadow-soft: 0 18px 55px rgba(0, 0, 0, 0.24);
  --shadow-card: 0 22px 70px rgba(0, 0, 0, 0.34);

  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Cormorant Garamond", Georgia, serif;
}

html,
body {
  background: #1e2023;
  color: #f3f1eb;
}

body {
  font-weight: 500;
}

/* ---------- Global light surfaces become charcoal/slate ---------- */
.section-paper,
.booking-bar,
.room-card,
.ai-window,
.ai-window-header,
.ai-input-preview,
.concierge-panel,
.concierge-form,
.image-note,
.journal-card-main {
  background: #25272a;
  color: #f3f1eb;
}

.section-paper {
  background:
    linear-gradient(135deg, rgba(194, 154, 88, 0.055), transparent 35%),
    #25272a;
}

/* ---------- Global typography contrast ---------- */
.section-heading h2,
.about-content h2,
.services-intro h2,
.city-copy h2,
.ai-copy h2,
.room-content h3,
.journal-card-main h3,
.final-cta-copy h2 {
  color: #f3f1eb;
  font-weight: 600;
}

.section-heading h2 em,
.about-content h2 em,
.services-intro h2 em,
.city-copy h2 em,
.ai-copy h2 em {
  color: #d8bc88;
  font-weight: 500;
}

.section-heading > p,
.about-content p,
.services-intro > p,
.city-copy > p,
.gallery-footer p,
.room-content > p,
.service-item p,
.rooms-footnote,
.section-caption,
.journal-card-main p {
  color: #c1bdb6;
  font-weight: 500;
}

.about-content .lead,
.city-copy .lead,
.journal-note,
.image-note,
.hand-note {
  color: #d7d1c7;
  font-weight: 500;
}

/* ---------- Header ---------- */
.site-header {
  color: #f3f1eb;
  background: rgba(30, 32, 35, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
}

.site-header.scrolled {
  background: rgba(30, 32, 35, 0.97);
  color: #f3f1eb;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.28);
}

.main-nav a,
.header-phone {
  color: #f3f1eb;
  opacity: 1;
  font-weight: 600;
}

.main-nav a:hover,
.header-phone:hover {
  color: #d8b06a;
  opacity: 1;
}

.header-cta {
  background: #4c4e51;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.header-cta:hover {
  background: #c29a58;
  color: #1e2023;
}

/* ---------- Hero ---------- */
.hero {
  background: #1e2023;
  color: #f3f1eb;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(20, 21, 23, 0.88) 0%, rgba(20, 21, 23, 0.64) 40%, rgba(20, 21, 23, 0.18) 72%, rgba(20, 21, 23, 0.46) 100%),
    linear-gradient(180deg, rgba(20, 21, 23, 0.45), transparent 35%, rgba(20, 21, 23, 0.46));
}

.hero-content h1 {
  color: #f7f4ee;
  font-weight: 600;
}

.hero-content h1 span {
  color: #d8bc88;
  font-weight: 500;
}

.hero-description {
  color: rgba(247, 244, 238, 0.84);
  font-weight: 500;
}

.hero-meta-item strong,
.hero-meta-item span {
  color: #f7f4ee;
}

.hero-meta-item span {
  color: rgba(247, 244, 238, 0.72);
}

.hero-concierge-card {
  border-color: rgba(216, 188, 136, 0.30);
  background: rgba(30, 32, 35, 0.78);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.32);
}

.concierge-label,
.concierge-icon,
.hero-eyebrow {
  color: #d8bc88;
}

.concierge-card-top strong,
.concierge-open {
  color: #f3f1eb;
}

.hero-sketch-left,
.hero-sketch-right {
  border-color: rgba(216, 188, 136, 0.42);
}

/* ---------- Buttons ---------- */
.button-primary,
.button-dark {
  background: #4c4e51;
  color: #ffffff;
}

.button-primary:hover,
.button-dark:hover {
  background: #c29a58;
  color: #1e2023;
}

.button-light {
  background: #f3f1eb;
  color: #1e2023;
}

.button-light:hover {
  background: #d8bc88;
  color: #1e2023;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.035);
  color: #f3f1eb;
}

.button-ghost:hover {
  border-color: #f3f1eb;
  background: #f3f1eb;
  color: #1e2023;
}

.button-whatsapp {
  background: #66745f;
  color: #ffffff;
}

/* ---------- Booking bar ---------- */
.booking-bar {
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow: var(--shadow-card);
}

.booking-intro {
  background: #1e1f22;
  color: #f3f1eb;
}

.booking-field {
  border-right-color: rgba(255, 255, 255, 0.13);
}

.booking-field label {
  color: #aaa69f;
  font-weight: 700;
}

.booking-field input,
.booking-field select {
  color: #f3f1eb;
  font-weight: 600;
}

/* ---------- Cards / room section ---------- */
.room-card {
  border-color: rgba(255, 255, 255, 0.12);
}

.room-image-wrap,
.gallery-item {
  background: #303236;
}

.room-content h3,
.room-price strong,
.fact strong,
.service-item h3 {
  color: #f3f1eb;
  font-weight: 600;
}

.room-content > p,
.room-price span,
.fact span,
.service-item p,
.rooms-footnote {
  color: #c1bdb6;
}

.room-features span {
  background: #303236;
  color: #e0dbd2;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.room-tag,
.room-type,
.service-icon,
.journal-label,
.hand-note,
.note-line {
  color: #d8bc88;
}

/* ---------- Services / journal ---------- */
.service-item,
.about-facts,
.fact + .fact {
  border-color: rgba(255, 255, 255, 0.13);
}

.about-image-wrap::after {
  opacity: 0.35;
}

.about-image-wrap::before {
  border-color: rgba(194, 154, 88, 0.48);
}

.journal-card-main {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(135deg, rgba(194, 154, 88, 0.08), transparent 55%),
    #25272a;
}

.journal-card-main::before {
  border-color: rgba(255, 255, 255, 0.11);
}

/* ---------- AI Concierge ---------- */
.ai-section,
.section-dark {
  background: #1e1f22;
}

.ai-window {
  border-color: rgba(216, 188, 136, 0.25);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.32);
}

.ai-window-header {
  background: #25272a;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.ai-status,
.ai-message p,
.ai-suggestions button,
.concierge-quick-actions button {
  color: #d7d1c7;
}

.ai-suggestions button,
.concierge-quick-actions button,
.ai-input-preview,
.concierge-form {
  border-color: rgba(255, 255, 255, 0.14);
  background: #303236;
}

.ai-suggestions button:hover,
.concierge-quick-actions button:hover {
  background: #c29a58;
  border-color: #c29a58;
  color: #1e2023;
}

.ai-input-preview span {
  color: #aaa69f;
}

/* ---------- Gallery ---------- */
.gallery-item::after {
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.44));
}

/* ---------- Location / Coimbatore ---------- */
.location-section,
.location-wrap,
.coimbatore-explore {
  background: #25272a;
  color: #f3f1eb;
}

.location-section h2,
.location-section h3,
.coimbatore-explore h2,
.coimbatore-explore h3 {
  color: #f3f1eb;
  font-weight: 600;
}

.location-section p,
.location-section li,
.coimbatore-explore p {
  color: #c1bdb6;
  font-weight: 500;
}

.location-distance,
.coimbatore-distance,
.coimbatore-explore-note,
.coimbatore-footer-note {
  color: #d8bc88 !important;
}

.coimbatore-explore {
  border-top-color: rgba(255, 255, 255, 0.13);
}

.coimbatore-attraction-card {
  border-right-color: rgba(255, 255, 255, 0.14);
}

/* Keep the frozen pencil artwork legible on the dark palette. */
.coimbatore-city-art img,
.coimbatore-attraction-art img,
.coimbatore-footer-art img {
  mix-blend-mode: screen;
  opacity: 0.86;
}

/* ---------- Final CTA ---------- */
.final-cta-section {
  background: #1e1f22;
}

.final-cta-copy h2,
.final-cta-copy p {
  color: #f3f1eb;
}

.final-cta-copy p {
  color: #c1bdb6;
}

/* ---------- Footer ---------- */
.site-footer {
  background: #17181a;
  color: #f3f1eb;
}

.footer-brand p,
.footer-column a,
.footer-address address {
  color: #c1bdb6;
}

.footer-column a:hover {
  color: #d8bc88;
}

.footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.11);
  color: #9f9c97;
}

/* ---------- Concierge modal ---------- */
.concierge-backdrop {
  background: rgba(10, 11, 12, 0.76);
}

.concierge-panel {
  background: #25272a;
}

.concierge-panel-header {
  background: #1e1f22;
  color: #f3f1eb;
}

.concierge-panel-header h2,
.concierge-close,
.chat-bubble,
.concierge-form input {
  color: #f3f1eb;
}

.chat-bubble {
  background: #303236;
}

.concierge-form {
  background: #1e2023;
}

.concierge-form input::placeholder {
  color: #8f8c87;
}

/* ---------- Form / modal surfaces ---------- */
input,
select,
textarea {
  color-scheme: dark;
}

/* ---------- Mobile contrast ---------- */
@media (max-width: 767px) {
  .site-header,
  .site-header.scrolled {
    background: rgba(30, 32, 35, 0.98);
  }

  .main-nav {
    background: #1e2023;
    border-color: rgba(255, 255, 255, 0.12);
  }

  .main-nav a {
    color: #f3f1eb;
  }

  .coimbatore-attraction-card,
  .coimbatore-attraction-card:first-child,
  .coimbatore-attraction-card:last-child {
    border-right-color: rgba(255, 255, 255, 0.14);
  }
}

/* =========================================================
   99. FINAL HVP CHARCOAL THEME — CONTRAST CORRECTION
   ========================================================= */

/* One font family across the website */
:root {
  --ink: #1e2023;
  --ink-deep: #101114;
  --brown: #d4cec4;
  --brown-soft: #bdb5aa;
  --gold: #c29a58;
  --gold-soft: #d8bc88;
  --gold-pale: #ead7b0;
  --olive: #66745f;
  --olive-soft: #899783;
  --paper: #2d3034;
  --paper-deep: #24262a;
  --ivory: #f3f1eb;
  --white: #ffffff;
  --muted: #b7b2aa;
  --muted-light: #96918a;
  --line: rgba(255, 255, 255, 0.13);
  --line-light: rgba(255, 255, 255, 0.16);
  --shadow-soft: 0 18px 55px rgba(0, 0, 0, 0.22);
  --shadow-card: 0 22px 70px rgba(0, 0, 0, 0.30);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Cormorant Garamond", Georgia, serif;
}

html,
body {
  background: #1e2023 !important;
  color: #f3f1eb !important;
}

body,
button,
input,
select,
textarea {
  font-family: var(--serif) !important;
  font-weight: 500;
}

/* Dark overall site surfaces */
.section-paper {
  background:
    linear-gradient(135deg, rgba(194, 154, 88, 0.035), transparent 35%),
    #1e2023 !important;
  color: #f3f1eb !important;
}

.section-dark {
  background: #17181a !important;
  color: #f3f1eb !important;
}

.section-paper .section-heading h2,
.section-paper .about-content h2,
.section-paper .services-intro h2,
.section-paper .city-copy h2,
.section-paper .section-caption,
.section-paper .about-content p,
.section-paper .services-intro > p,
.section-paper .city-copy > p,
.section-paper .section-heading > p {
  color: #f3f1eb !important;
}

.section-paper .section-heading h2 em,
.section-paper .about-content h2 em,
.section-paper .services-intro h2 em,
.section-paper .city-copy h2 em {
  color: #d8bc88 !important;
}

.section-paper .section-heading > p,
.section-paper .about-content p,
.section-paper .services-intro > p,
.section-paper .city-copy > p,
.section-paper .section-caption {
  color: #bdb8b0 !important;
  font-weight: 500 !important;
}

/* Header */
.site-header {
  color: #f3f1eb !important;
}

.site-header.scrolled {
  background: rgba(30, 32, 35, 0.97) !important;
  color: #f3f1eb !important;
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.28) !important;
}

.main-nav a,
.header-phone {
  color: #f3f1eb !important;
  opacity: 1 !important;
  font-weight: 600 !important;
}

.main-nav a:hover {
  color: #d8bc88 !important;
}

.header-cta {
  background: #4c4e51 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
}

.header-cta:hover {
  background: #c29a58 !important;
  color: #1e2023 !important;
}

/* Hero */
.hero {
  background: #1e2023 !important;
  color: #f7f4ee !important;
}

.hero-content h1 {
  color: #f7f4ee !important;
  font-weight: 600 !important;
}

.hero-content h1 span {
  color: #d8bc88 !important;
  font-weight: 500 !important;
}

.hero-description {
  color: rgba(247, 244, 238, 0.88) !important;
  font-weight: 500 !important;
}

/* Buttons */
.button-primary,
.button-dark {
  background: #4c4e51 !important;
  color: #ffffff !important;
  font-weight: 700 !important;
}

.button-primary:hover,
.button-dark:hover {
  background: #c29a58 !important;
  color: #1e2023 !important;
}

.button-light {
  background: #f3f1eb !important;
  color: #1e2023 !important;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.42) !important;
  color: #f3f1eb !important;
}

.button-whatsapp {
  background: #66745f !important;
  color: #ffffff !important;
}

/* Booking */
.booking-bar {
  background: #2d3034 !important;
  border-color: rgba(255, 255, 255, 0.13) !important;
}

.booking-intro {
  background: #101114 !important;
  color: #f3f1eb !important;
}

.booking-field {
  border-right-color: rgba(255, 255, 255, 0.13) !important;
}

.booking-field label {
  color: #bdb8b0 !important;
  font-weight: 700 !important;
}

.booking-field input,
.booking-field select {
  color: #f3f1eb !important;
  font-weight: 600 !important;
}

/* About / Rooms / Services */
.about-content h2,
.room-content h3,
.room-price strong,
.fact strong,
.service-item h3 {
  color: #f3f1eb !important;
  font-weight: 600 !important;
}

.about-content p,
.room-content > p,
.room-price span,
.fact span,
.service-item p,
.rooms-footnote {
  color: #bdb8b0 !important;
  font-weight: 500 !important;
}

.about-image-wrap::before {
  border-color: rgba(194, 154, 88, 0.50) !important;
}

.room-card {
  background: #24262a !important;
  border-color: rgba(255, 255, 255, 0.12) !important;
}

.room-image-wrap,
.gallery-item {
  background: #303236 !important;
}

.room-features span {
  background: #303236 !important;
  color: #e0dbd2 !important;
  border-color: rgba(255, 255, 255, 0.10) !important;
}

.service-item,
.about-facts,
.fact + .fact {
  border-color: rgba(255, 255, 255, 0.13) !important;
}

/* Journal */
.journal-card-main {
  background:
    linear-gradient(135deg, rgba(194, 154, 88, 0.08), transparent 55%),
    #25272a !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
}

.journal-card-main h3 {
  color: #f3f1eb !important;
}

.journal-card-main p {
  color: #bdb8b0 !important;
}

/* AI */
.ai-section,
.ai-section.section-dark {
  background: #17181a !important;
  color: #f3f1eb !important;
}

.ai-copy h2 {
  color: #f3f1eb !important;
  font-weight: 600 !important;
}

.ai-copy h2 em {
  color: #d8bc88 !important;
}

.ai-copy > p,
.ai-points span {
  color: #bdb8b0 !important;
}

.ai-window {
  background: #24262a !important;
  border-color: rgba(216, 188, 136, 0.25) !important;
}

.ai-window-header {
  background: #2d3034 !important;
  border-bottom-color: rgba(255, 255, 255, 0.12) !important;
}

.ai-message p {
  color: #e4dfd7 !important;
}

.ai-suggestions button,
.concierge-quick-actions button {
  background: #303236 !important;
  color: #d7d1c7 !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
}

/* =========================================================
   LOCATION — LIGHT EDITORIAL ZONE FOR FROZEN ARTWORK
   ========================================================= */

.location-section {
  background: #ebe3d5 !important;
  color: #1e2023 !important;
}

.location-section .container,
.location-wrap {
  color: #1e2023 !important;
}

.location-section h2,
.location-section h3,
.location-section strong {
  color: #1e2023 !important;
  font-weight: 600 !important;
}

.location-section p,
.location-section li {
  color: #47484c !important;
  font-weight: 500 !important;
}

.location-section .eyebrow,
.location-notes > span,
.location-distance {
  color: #9a6e2f !important;
}

.location-section .button,
.location-section .button-dark {
  background: #47484c !important;
  color: #ffffff !important;
}

.location-section .button:hover {
  background: #c29a58 !important;
  color: #1e2023 !important;
}

.location-notes li {
  color: #47484c !important;
  border-color: rgba(30, 32, 35, 0.16) !important;
}

.location-distance {
  font-weight: 600 !important;
}

.coimbatore-explore {
  background: #ebe3d5 !important;
  color: #1e2023 !important;
  border-top-color: rgba(30, 32, 35, 0.15) !important;
}

.coimbatore-explore h2,
.coimbatore-explore h3 {
  color: #1e2023 !important;
  font-weight: 600 !important;
}

.coimbatore-explore p {
  color: #47484c !important;
  font-weight: 500 !important;
}

.coimbatore-explore-note,
.coimbatore-footer-note,
.coimbatore-distance {
  color: #9a6e2f !important;
}

.coimbatore-attraction-card {
  border-right-color: rgba(30, 32, 35, 0.15) !important;
}

/* Keep the frozen artwork natural on its light paper background. */
.coimbatore-city-art img,
.coimbatore-attraction-art img,
.coimbatore-footer-art img {
  mix-blend-mode: multiply !important;
  opacity: 0.94 !important;
}

/* Final CTA */
.final-cta-section {
  background: #1e1f22 !important;
}

.final-cta-copy h2 {
  color: #f3f1eb !important;
  font-weight: 600 !important;
}

.final-cta-copy p {
  color: #c1bdb6 !important;
  font-weight: 500 !important;
}

/* Footer */
.site-footer {
  background: #101114 !important;
  color: #f3f1eb !important;
}

.footer-brand p,
.footer-column a,
.footer-address address {
  color: #bdb8b0 !important;
  font-weight: 500 !important;
}

.footer-column a:hover {
  color: #d8bc88 !important;
}

.footer-bottom {
  color: #96918a !important;
}

/* Concierge modal */
.concierge-panel {
  background: #24262a !important;
}

.concierge-panel-header {
  background: #1e1f22 !important;
  color: #f3f1eb !important;
}

.concierge-panel-header h2 {
  color: #f3f1eb !important;
  font-weight: 600 !important;
}

.chat-bubble {
  background: #303236 !important;
  color: #f3f1eb !important;
}

.concierge-form {
  background: #1e2023 !important;
  border-color: rgba(255, 255, 255, 0.14) !important;
}

.concierge-form input {
  color: #f3f1eb !important;
}

/* Mobile */
@media (max-width: 767px) {
  .site-header,
  .site-header.scrolled {
    background: rgba(30, 32, 35, 0.98) !important;
    color: #f3f1eb !important;
  }

  .main-nav {
    background: #1e2023 !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
  }

  .main-nav a {
    color: #f3f1eb !important;
  }

  .location-section,
  .coimbatore-explore {
    background: #ebe3d5 !important;
  }

  .coimbatore-attraction-card,
  .coimbatore-attraction-card:first-child,
  .coimbatore-attraction-card:last-child {
    border-right-color: rgba(30, 32, 35, 0.15) !important;
  }
}


/* =========================================================
   100. FINAL VISUAL POLISH — LOCATION + HEADER LOGO
   ========================================================= */

/*
   The frozen Coimbatore artwork has a warm paper field close to
   #FAF3E4. Matching the section to that paper removes the visible
   rectangular image boundary.
*/
.location-section,
.coimbatore-explore {
  background: #FAF3E4 !important;
  color: #1E2023 !important;
}

/* Location heading: force readable dark contrast */
.location-section .location-heading,
.location-section .location-heading h2,
.location-section .location-heading h2 span,
.location-section .location-heading h2 strong {
  color: #1E2023 !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.location-section .location-heading h2 em,
.location-section .location-heading h2 i {
  color: #C29A58 !important;
  opacity: 1 !important;
}

/* Location supporting copy */
.location-section .location-heading p,
.location-section .location-copy p,
.location-section .location-copy,
.location-section .location-notes,
.location-section .location-notes li {
  color: #47484C !important;
  opacity: 1 !important;
}

.location-section .location-notes li {
  border-color: rgba(30, 32, 35, 0.16) !important;
}

.location-section .location-notes > span,
.location-section .location-notes .location-distance,
.location-section .location-distance {
  color: #946A2E !important;
  font-weight: 600 !important;
}

/* Location title / sub-title hierarchy */
.location-section .location-copy h3,
.location-section .location-notes h3,
.location-section .location-travel-intro h3 {
  color: #1E2023 !important;
  opacity: 1 !important;
}

.location-section .location-travel-intro,
.location-section .location-travel-fact,
.location-section .location-travel-note {
  color: #47484C !important;
}

/* Explore Coimbatore */
.coimbatore-explore .coimbatore-explore-heading h2,
.coimbatore-explore .coimbatore-explore-heading h2 span,
.coimbatore-explore .coimbatore-explore-heading h2 strong {
  color: #1E2023 !important;
  opacity: 1 !important;
}

.coimbatore-explore .coimbatore-explore-heading h2 em,
.coimbatore-explore .coimbatore-explore-heading h2 i {
  color: #C29A58 !important;
}

.coimbatore-explore .coimbatore-explore-heading p,
.coimbatore-explore .coimbatore-attraction-card p {
  color: #47484C !important;
  opacity: 1 !important;
}

.coimbatore-explore .coimbatore-attraction-card h3 {
  color: #1E2023 !important;
  opacity: 1 !important;
}

.coimbatore-explore .coimbatore-distance,
.coimbatore-explore .coimbatore-explore-note,
.coimbatore-explore .coimbatore-footer-note {
  color: #946A2E !important;
}

.coimbatore-attraction-card {
  border-right-color: rgba(30, 32, 35, 0.15) !important;
}

/* Artwork: no white/cream mismatch from the parent section */
.coimbatore-city-art,
.coimbatore-explore-footer {
  background: #FAF3E4 !important;
}

.coimbatore-city-art img,
.coimbatore-attraction-art img,
.coimbatore-footer-art img {
  mix-blend-mode: multiply !important;
  opacity: 1 !important;
}

/*
   Header logo:
   The supplied original PNG contains a white rectangle. The preferred
   solution is the transparent logo asset. These rules make the image
   container itself disappear visually and prevent any extra border.
*/
.site-header .brand {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

.site-header .brand-logo {
  border: 0 !important;
  box-shadow: none !important;
  outline: 0 !important;
}

/*
   If the transparent logo file is used, this preserves its original
   gold artwork cleanly on the charcoal header.
*/
.site-header .brand-logo[src$="logo-dark.png"] {
  background: transparent !important;
  mix-blend-mode: normal !important;
}

/* Header remains consistently charcoal */
.site-header,
.site-header.scrolled {
  background: #1E2023 !important;
  color: #F3F1EB !important;
}

.site-header::before,
.site-header::after {
  background: transparent !important;
}

/* Stronger but elegant header typography */
.site-header .main-nav a,
.site-header .header-phone {
  color: #F3F1EB !important;
  font-weight: 600 !important;
}

.site-header .main-nav a:hover,
.site-header .header-phone:hover {
  color: #D8BC88 !important;
}

/* Final CTA: remove every legacy brown surface */
.final-cta-section,
.final-cta {
  background: #1E2023 !important;
  color: #F3F1EB !important;
}

.final-cta {
  background-image:
    radial-gradient(circle at 85% 50%, rgba(194,154,88,0.08), transparent 28%),
    linear-gradient(120deg, #1E2023 0%, #292C30 52%, #1E2023 100%) !important;
}

.final-cta-copy h2 {
  color: #F3F1EB !important;
}

.final-cta-copy p {
  color: #C1BDB6 !important;
}

.final-cta .eyebrow {
  color: #D8BC88 !important;
}

/* Mobile consistency */
@media (max-width: 767px) {
  .location-section,
  .coimbatore-explore {
    background: #FAF3E4 !important;
  }

  .site-header,
  .site-header.scrolled {
    background: #1E2023 !important;
  }

  .site-header .brand-logo {
    background: transparent !important;
  }
}


/* =========================================================
   103. HERO CONCIERGE + HERO FACT LABEL CONTRAST FIX
   ========================================================= */
.hero .hero-concierge-card,
.hero-editorial .hero-concierge-card,
.hero-concierge-card { background:#1E2023 !important; background-image:linear-gradient(135deg,#1E2023 0%,#292C30 100%) !important; color:#F3F1EB !important; border:1px solid rgba(216,188,136,.22) !important; box-shadow:0 24px 65px rgba(0,0,0,.40),0 0 0 1px rgba(255,255,255,.025) inset !important; }
.hero .hero-concierge-card .concierge-label,
.hero-editorial .hero-concierge-card .concierge-label,
.hero-concierge-card .concierge-label { color:#D8BC88 !important; opacity:1 !important; font-weight:600 !important; }
.hero .hero-concierge-card .concierge-icon,
.hero-editorial .hero-concierge-card .concierge-icon,
.hero-concierge-card .concierge-icon { background:rgba(194,154,88,.08) !important; border-color:rgba(216,188,136,.45) !important; color:#D8BC88 !important; }
.hero .hero-concierge-card .concierge-card-top strong,
.hero-editorial .hero-concierge-card .concierge-card-top strong,
.hero-concierge-card .concierge-card-top strong { color:#F3F1EB !important; opacity:1 !important; font-weight:600 !important; }
.hero .hero-concierge-card > p,
.hero-editorial .hero-concierge-card > p,
.hero-concierge-card > p { color:#BDB8B0 !important; opacity:1 !important; font-weight:500 !important; }
.hero .hero-concierge-card .concierge-open,
.hero-editorial .hero-concierge-card .concierge-open,
.hero-concierge-card .concierge-open { color:#F3F1EB !important; border-top-color:rgba(255,255,255,.14) !important; font-weight:600 !important; }
.hero .hero-concierge-card .concierge-open span,
.hero-editorial .hero-concierge-card .concierge-open span,
.hero-concierge-card .concierge-open span { color:#D8BC88 !important; }

.hero .about-facts,
.hero-editorial .about-facts,
.about-facts { background:transparent !important; background-image:none !important; color:#F3F1EB !important; border-top:1px solid rgba(243,241,235,.24) !important; border-bottom:0 !important; }
.hero .about-facts .fact strong,
.hero-editorial .about-facts .fact strong,
.about-facts .fact strong { background:transparent !important; background-color:transparent !important; color:#F3F1EB !important; font-weight:600 !important; text-shadow:none !important; }
.hero .about-facts .fact span,
.hero-editorial .about-facts .fact span,
.about-facts .fact span { background:transparent !important; background-color:transparent !important; color:#BDB8B0 !important; font-weight:600 !important; text-shadow:none !important; }
.hero .about-facts .fact + .fact,
.hero-editorial .about-facts .fact + .fact,
.about-facts .fact + .fact { border-left:1px solid rgba(243,241,235,.20) !important; border-top:0 !important; }
.hero .about-facts .fact::before,
.hero .about-facts .fact::after,
.hero-editorial .about-facts .fact::before,
.hero-editorial .about-facts .fact::after,
.about-facts .fact::before,
.about-facts .fact::after { background:transparent !important; content:none !important; }

@media (max-width:767px) {
  .hero .hero-concierge-card,.hero-editorial .hero-concierge-card,.hero-concierge-card { background:#1E2023 !important; }
  .hero .about-facts,.hero-editorial .about-facts,.about-facts { border-top-color:rgba(243,241,235,.22) !important; }
}


/* =========================================================
   104. SERVICES — CHARCOAL / IVORY / CHAMPAGNE PALETTE
   ========================================================= */

#services {
  background: #1E2023 !important;
  color: #F3F1EB !important;
}

#services .container,
#services .services-layout,
#services .services-intro {
  color: #F3F1EB !important;
}

#services .services-intro h2 {
  color: #F3F1EB !important;
  font-weight: 600 !important;
}

#services .services-intro h2 em {
  color: #D8BC88 !important;
  font-weight: 500 !important;
}

#services .services-intro > p {
  color: #BDB8B0 !important;
  font-weight: 500 !important;
  line-height: 1.75 !important;
}

#services .services-grid {
  background: #1E2023 !important;
}

#services .service-item {
  min-height: 220px !important;
  background: #25282C !important;
  color: #F3F1EB !important;
  border-top: 1px solid rgba(243, 241, 235, 0.12) !important;
  border-right: 1px solid rgba(243, 241, 235, 0.12) !important;
  transition:
    background 300ms ease,
    border-color 300ms ease,
    transform 300ms ease !important;
}

#services .service-item:nth-child(2n) {
  background: #292C30 !important;
}

#services .service-item:hover {
  background: #303338 !important;
  border-color: rgba(216, 188, 136, 0.24) !important;
}

#services .service-icon {
  width: 58px !important;
  height: 58px !important;
  display: grid !important;
  place-items: center !important;
  margin-bottom: 20px !important;
  color: #D8BC88 !important;
  font-size: 0 !important;
  line-height: 1 !important;
}

#services .service-icon img {
  display: block !important;
  width: 58px !important;
  height: 58px !important;
  object-fit: contain !important;
  object-position: center !important;
  background: transparent !important;
  mix-blend-mode: screen !important;
  opacity: 0.94 !important;
  filter: sepia(0.10) saturate(0.72) brightness(1.12) !important;
}

#services .service-icon:not(:has(img)) {
  color: #D8BC88 !important;
  font-family: var(--serif) !important;
  font-size: 27px !important;
}

#services .service-item h3 {
  color: #F3F1EB !important;
  font-weight: 600 !important;
  font-size: 28px !important;
  line-height: 1.05 !important;
}

#services .service-item p {
  color: #BDB8B0 !important;
  font-weight: 500 !important;
  line-height: 1.7 !important;
}

#services .service-item:nth-child(4n + 1) {
  border-top-color: rgba(216, 188, 136, 0.18) !important;
}

@media (max-width: 767px) {
  #services {
    background: #1E2023 !important;
  }

  #services .service-item,
  #services .service-item:nth-child(2n) {
    background: #25282C !important;
    border-color: rgba(243, 241, 235, 0.12) !important;
  }

  #services .service-item:hover {
    background: #303338 !important;
  }

  #services .service-icon {
    width: 52px !important;
    height: 52px !important;
  }

  #services .service-icon img {
    width: 52px !important;
    height: 52px !important;
  }

  #services .service-item h3 {
    font-size: 25px !important;
  }
}


/* =========================================================
   105. ABOUT IMAGE — PROPERLY CONTAINED INSIDE FRAME
   ========================================================= */

#about .about-image-wrap {
  position: relative !important;
  width: 100% !important;
  padding: 12px !important;
  box-sizing: border-box !important;
  overflow: visible !important;
  background: #1E2023 !important;
  border: 1px solid rgba(216, 188, 136, 0.34) !important;
}

#about .about-image-wrap::before {
  content: "" !important;
  position: absolute !important;
  z-index: 0 !important;
  inset: 0 !important;
  width: auto !important;
  height: auto !important;
  border: 1px solid rgba(216, 188, 136, 0.22) !important;
  pointer-events: none !important;
}

#about .about-image-wrap::after {
  content: none !important;
}

#about .about-image {
  position: relative !important;
  z-index: 2 !important;
  display: block !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 1.22 / 1 !important;
  object-fit: cover !important;
  object-position: center !important;
  box-sizing: border-box !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.28) !important;
}

#about .about-image-wrap .image-note {
  z-index: 5 !important;
}

@media (max-width: 767px) {
  #about .about-image-wrap {
    padding: 8px !important;
  }

  #about .about-image {
    aspect-ratio: 1.15 / 1 !important;
  }
}


/* =========================================================
   106. HERO STATS — FINAL CONTRAST / NO HIGHLIGHT
   ========================================================= */

.hero-editorial .hero-meta,
.hero .hero-meta,
.hero-meta {
  display: flex !important;
  align-items: flex-start !important;
  width: 100% !important;
  margin-top: 28px !important;
  padding-top: 22px !important;
  gap: 28px !important;
  background: transparent !important;
  background-color: transparent !important;
  border-top: 1px solid rgba(243, 241, 235, 0.22) !important;
  box-shadow: none !important;
}

.hero-editorial .hero-meta-item,
.hero .hero-meta-item,
.hero-meta-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  min-width: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
}

.hero-editorial .hero-meta-item strong,
.hero .hero-meta-item strong,
.hero-meta-item strong {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  color: #F3F1EB !important;
  font-family: var(--site-font) !important;
  font-size: 25px !important;
  font-weight: 600 !important;
  line-height: 1.1 !important;
  letter-spacing: 0 !important;
  text-shadow: none !important;
  box-shadow: none !important;
}

.hero-editorial .hero-meta-item span,
.hero .hero-meta-item span,
.hero-meta-item span {
  display: block !important;
  margin: 7px 0 0 !important;
  padding: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  color: #BDB8B0 !important;
  font-family: var(--site-font) !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  line-height: 1.25 !important;
  letter-spacing: 0.13em !important;
  text-transform: uppercase !important;
  text-shadow: none !important;
  box-shadow: none !important;
}

.hero-editorial .hero-meta-divider,
.hero .hero-meta-divider,
.hero-meta-divider {
  flex: 0 0 1px !important;
  width: 1px !important;
  height: 42px !important;
  margin: 0 2px !important;
  background: rgba(243, 241, 235, 0.20) !important;
  border: 0 !important;
  opacity: 1 !important;
}

/* Kill any inherited text-selection/highlight treatment on these stats. */
.hero-editorial .hero-meta *,
.hero .hero-meta *,
.hero-meta * {
  text-decoration: none !important;
  text-shadow: none !important;
}

.hero-editorial .hero-meta-item strong::before,
.hero-editorial .hero-meta-item strong::after,
.hero-editorial .hero-meta-item span::before,
.hero-editorial .hero-meta-item span::after,
.hero .hero-meta-item strong::before,
.hero .hero-meta-item strong::after,
.hero .hero-meta-item span::before,
.hero .hero-meta-item span::after {
  content: none !important;
  background: transparent !important;
}

@media (max-width: 767px) {
  .hero-editorial .hero-meta,
  .hero .hero-meta,
  .hero-meta {
    margin-top: 22px !important;
    padding-top: 17px !important;
    gap: 18px !important;
  }

  .hero-editorial .hero-meta-item strong,
  .hero .hero-meta-item strong,
  .hero-meta-item strong {
    font-size: 21px !important;
  }

  .hero-editorial .hero-meta-item span,
  .hero .hero-meta-item span,
  .hero-meta-item span {
    font-size: 11px !important;
    letter-spacing: 0.10em !important;
  }

  .hero-editorial .hero-meta-divider,
  .hero .hero-meta-divider,
  .hero-meta-divider {
    height: 35px !important;
  }
}


/* =========================================================
   107. GLOBAL SECTION SEPARATORS — PREMIUM EDITORIAL
   =========================================================
   One subtle 1px separator after each major website section.
   No heavy boxes and no internal-card borders are affected.
   ========================================================= */

#home,
#booking,
#about,
#rooms,
#services,
#ask-vishaka,
#gallery,
#testimonials,
#location,
#contact {
  position: relative !important;
  border-bottom: 1px solid rgba(243, 241, 235, 0.14) !important;
}

/* Delicate gold handoff between Rooms and Essential Comfort. */
#rooms::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: 2;
  width: min(calc(100% - 120px), 1380px);
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(216, 188, 136, 0.16) 20%,
    rgba(216, 188, 136, 0.38) 50%,
    rgba(216, 188, 136, 0.16) 80%,
    transparent 100%
  );
  pointer-events: none;
}

/* Light/paper sections need a dark separator for visibility. */
#booking,
#about,
#rooms,
#location {
  border-bottom-color: rgba(30, 32, 35, 0.14) !important;
}

/* Keep the separators visually clean at section edges. */
#home,
#booking,
#about,
#rooms,
#services,
#ask-vishaka,
#gallery,
#testimonials,
#location,
#contact {
  box-shadow: none !important;
}

/* The Coimbatore artwork subsection is intentionally not given
   another global separator because it already has its own divider. */
#location .coimbatore-explore {
  border-bottom: 0 !important;
}

/* Mobile: retain the same hairline treatment without adding weight. */
@media (max-width: 767px) {
  #rooms::after {
    width: calc(100% - 40px);
  }

  #home,
  #booking,
  #about,
  #rooms,
  #services,
  #ask-vishaka,
  #gallery,
  #testimonials,
  #location,
  #contact {
    border-bottom-width: 1px !important;
  }

  #booking,
  #about,
  #rooms,
  #location {
    border-bottom-color: rgba(30, 32, 35, 0.13) !important;
  }
}



/* =========================================================
   29. FROZEN FOOTER — HOTEL VISHAKA PAARK
   =========================================================
   Final footer treatment: dark charcoal, ivory type,
   champagne accents, larger readable navigation, and
   compact social links. Existing site styles remain intact.
   ========================================================= */

.site-footer {
  background: #1e2023 !important;
  color: #f3f1eb !important;
  border-top: 1px solid rgba(243, 241, 235, 0.16) !important;
}

.site-footer::before,
.site-footer::after {
  display: none !important;
}

.site-footer .footer-main {
  grid-template-columns: minmax(210px, 1.35fr) repeat(4, minmax(150px, 1fr)) !important;
  gap: 48px !important;
  padding: 72px 0 58px !important;
  border-bottom: 1px solid rgba(243, 241, 235, 0.14) !important;
}

.site-footer .footer-brand {
  align-self: start !important;
}

.site-footer .footer-logo {
  display: inline-flex !important;
  align-items: center !important;
  margin-bottom: 24px !important;
}

.site-footer .footer-logo img {
  display: block !important;
  width: auto !important;
  max-width: 190px !important;
  height: auto !important;
  max-height: 72px !important;
  object-fit: contain !important;
}

.site-footer .footer-brand p,
.site-footer .footer-brand-address,
.site-footer .footer-address address,
.site-footer .footer-column a,
.site-footer .footer-bottom,
.site-footer .footer-bottom span {
  color: #d8d4cc !important;
  font-size: 16px !important;
  line-height: 1.7 !important;
  font-weight: 400 !important;
}

.site-footer .footer-brand p {
  margin: 0 0 22px !important;
}

.site-footer .footer-brand-address {
  margin: 0 !important;
  max-width: 235px !important;
}

.site-footer .footer-column {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 10px !important;
}

.site-footer .footer-heading {
  display: block !important;
  margin: 0 0 12px !important;
  color: #d3a64a !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  letter-spacing: 0.13em !important;
  font-weight: 600 !important;
}

.site-footer .footer-column a {
  display: inline-block !important;
  width: fit-content !important;
  color: #d8d4cc !important;
  font-size: 16px !important;
  line-height: 1.55 !important;
  text-decoration: none !important;
  transition: color 180ms ease, transform 180ms ease !important;
}

.site-footer .footer-column a:hover,
.site-footer .footer-column a:focus-visible {
  color: #d3a64a !important;
  transform: translateX(2px) !important;
}

.site-footer .footer-contact-column > a {
  overflow-wrap: anywhere !important;
}

.site-footer .footer-socials {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 18px !important;
}

.site-footer .footer-social-link {
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(243, 241, 235, 0.28) !important;
  border-radius: 50% !important;
  color: #f3f1eb !important;
  background: transparent !important;
  transform: none !important;
}

.site-footer .footer-social-link:hover,
.site-footer .footer-social-link:focus-visible {
  color: #1e2023 !important;
  background: #d3a64a !important;
  border-color: #d3a64a !important;
  transform: translateY(-2px) !important;
}

.site-footer .footer-social-link svg,
.site-footer .footer-social-link img {
  width: 25px !important;
  height: 25px !important;
  display: block !important;
  max-width: 25px !important;
  max-height: 25px !important;
  object-fit: contain !important;
  object-position: center !important;
  margin: 0 auto !important;
}
.site-footer .footer-social-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.site-footer .footer-social-link img {
  flex: 0 0 24px !important;
}

.site-footer .footer-social-tripadvisor span {
  font-size: 11px !important;
  line-height: 1 !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
}

.site-footer .footer-bottom {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  padding: 22px 0 !important;
  border-top: 0 !important;
  color: #aaa69f !important;
}

.site-footer .footer-bottom span {
  color: #aaa69f !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.site-footer a:focus-visible {
  outline: 2px solid #d3a64a !important;
  outline-offset: 4px !important;
}

@media (max-width: 1180px) {
  .site-footer .footer-main {
    grid-template-columns: repeat(3, minmax(150px, 1fr)) !important;
    gap: 42px 32px !important;
  }

  .site-footer .footer-brand {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 760px) {
  .site-footer .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 38px 26px !important;
    padding: 54px 0 42px !important;
  }

  .site-footer .footer-brand {
    grid-column: 1 / -1 !important;
  }

  .site-footer .footer-logo img {
    max-width: 165px !important;
    max-height: 62px !important;
  }

  .site-footer .footer-brand p,
  .site-footer .footer-brand-address,
  .site-footer .footer-column a,
  .site-footer .footer-address address {
    font-size: 15px !important;
  }

  .site-footer .footer-heading {
    font-size: 14px !important;
  }

  .site-footer .footer-bottom {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 8px !important;
    padding: 18px 0 26px !important;
  }

  .site-footer .footer-bottom span {
    font-size: 13px !important;
  }
}

@media (max-width: 480px) {
  .site-footer .footer-main {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .site-footer .footer-brand {
    grid-column: auto !important;
  }
}


/* =========================================================
   30. FOOTER SUPPORT PAGES
   ========================================================= */

.footer-page { min-height: 100vh; background: #1e2023; color: #f3f1eb; padding: 56px 0 90px; }
.footer-page-inner { max-width: 920px; }
.footer-page-back { display: inline-block; color: #d3a64a; text-decoration: none; margin-bottom: 72px; font-size: 15px; }
.footer-page .eyebrow { display: block; margin-bottom: 16px; color: #d3a64a; letter-spacing: .12em; text-transform: uppercase; }
.footer-page h1 { margin: 0 0 20px; font-size: clamp(44px, 7vw, 72px); line-height: 1; font-weight: 600; }
.footer-page-intro { max-width: 720px; margin: 0 0 48px; color: #bdb8b0; font-size: 18px; line-height: 1.7; }
.footer-page-list { display: grid; gap: 16px; }
.footer-page-list article { padding: 28px 30px; border: 1px solid rgba(243,241,235,.15); background: #25282c; }
.footer-page-list h2 { margin: 0 0 10px; font-size: 25px; font-weight: 600; }
.footer-page-list p, .footer-page-note { margin: 0; color: #c8c3bb; font-size: 16px; line-height: 1.7; }
.footer-page-cta { display: inline-flex; margin-bottom: 24px; }
@media (max-width: 600px) { .footer-page { padding: 34px 0 70px; } .footer-page-back { margin-bottom: 50px; } .footer-page-list article { padding: 22px; } .footer-page-intro { font-size: 16px; } }

/* =========================================================
   31. FROZEN FOOTER — LIVE WEATHER + LEGAL DISCLOSURE
   ========================================================= */

.site-footer .footer-weather-card {
  width: min(100%, 250px);
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(243, 241, 235, 0.14);
  background: rgba(243, 241, 235, 0.045);
  border-radius: 2px;
}

.site-footer .footer-weather-label {
  display: block;
  margin-bottom: 7px;
  color: #d3a64a;
  font-size: 11px;
  line-height: 1.35;
  letter-spacing: 0.13em;
  font-weight: 600;
}

.site-footer .footer-weather-card strong {
  display: block;
  margin-bottom: 3px;
  color: #f3f1eb;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 600;
}

.site-footer .footer-weather-card span:not(.footer-weather-label) {
  display: block;
  color: #bdb8b0;
  font-size: 13px;
  line-height: 1.55;
}

.site-footer .footer-weather-card [data-footer-weather-extra] {
  margin-top: 2px;
  color: #8f8b84 !important;
  font-size: 11px !important;
}

.site-footer .footer-legal-note {
  max-width: 1050px;
  margin: 0 auto;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(246, 238, 227, 0.10);
  color: #8f8b84;
  font-size: 12px;
  line-height: 1.7;
}

.reservation-header-note {
  margin: 8px 0 0;
  color: #bdb8b0;
  font-size: 14px;
  line-height: 1.5;
}

.reservation-form label small {
  display: block;
  margin-top: 5px;
  color: #8f8b84;
  font-size: 12px;
  line-height: 1.4;
  font-weight: 400;
}

.footer-page-disclaimer {
  margin-top: 34px;
  padding: 18px 20px;
  border: 1px solid rgba(243, 241, 235, 0.12);
  background: rgba(243, 241, 235, 0.035);
  color: #9f9a92;
  font-size: 13px;
  line-height: 1.7;
}

.footer-page-copyright {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(243, 241, 235, 0.12);
  color: #7f7b75;
  font-size: 12px;
  line-height: 1.6;
}

.footer-page .footer-page-list article a {
  color: #d3a64a;
  text-decoration: none;
}

.footer-page .footer-page-list article a:hover,
.footer-page .footer-page-list article a:focus-visible {
  text-decoration: underline;
}

.weather-live-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.weather-live-stat {
  padding: 22px;
  border: 1px solid rgba(243, 241, 235, 0.13);
  background: #25282c;
}

.weather-live-stat span {
  display: block;
  margin-bottom: 8px;
  color: #8f8b84;
  font-size: 11px;
  line-height: 1.3;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}

.weather-live-stat strong {
  display: block;
  color: #f3f1eb;
  font-size: 25px;
  line-height: 1.2;
  font-weight: 600;
}

.weather-forecast-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 10px;
}

.weather-forecast-card {
  padding: 18px 14px;
  border: 1px solid rgba(243, 241, 235, 0.12);
  background: #25282c;
}

.weather-forecast-card span,
.weather-forecast-card small {
  display: block;
  color: #9f9a92;
  font-size: 12px;
  line-height: 1.45;
}

.weather-forecast-card strong {
  display: block;
  margin: 8px 0 5px;
  color: #f3f1eb;
  font-size: 21px;
  line-height: 1.2;
}

.weather-source-note {
  margin-top: 16px;
  color: #7f7b75;
  font-size: 12px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .weather-live-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .weather-forecast-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .site-footer .footer-weather-card { width: 100%; }
  .site-footer .footer-legal-note { font-size: 11px; }
  .weather-live-grid { grid-template-columns: 1fr 1fr; }
  .weather-forecast-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .reservation-header-note { font-size: 13px; }
}/* =========================================================
   HEADER PHONE NUMBER — FINAL
   ========================================================= */

.site-header .header-phone {
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.2px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.site-header .header-phone .phone-icon {
  font-family: Arial, sans-serif;
  font-size: 11px;
  margin-right: 5px;
}

.site-header .header-phone:hover {
  text-decoration: none;
}/* =========================================================
   FOOTER SOCIAL ICONS — FINAL SIZE
   ========================================================= */

.site-footer .footer-social-link svg,
.site-footer .footer-social-link img {
  width: 28px !important;
  height: 28px !important;
  max-width: 28px !important;
  max-height: 28px !important;
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  margin: 0 auto !important;
}

/* Tripadvisor PNG needs a little more visual scale */
.site-footer .footer-social-tripadvisor img {
  width: 38px !important;
  height: 38px !important;
  max-width: 38px !important;
  max-height: 38px !important;
  object-fit: contain !important;
  object-position: center !important;
  display: block !important;
  margin: 0 auto !important;
}/* =========================================================
   SERVICES — 13 FACILITIES
   Hotel Vishaka Paark
   ========================================================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-grid .service-item {
  min-height: 255px;
  padding: 34px 38px;
}

.services-grid .service-item:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.services-grid .service-item:nth-child(even) {
  border-right: 0;
}

.services-grid .service-item h3 {
  max-width: 290px;
  line-height: 1.05;
}

.services-grid .service-item p {
  max-width: 310px;
  margin-top: 15px;
  line-height: 1.75;
}


/* Keep the final single card visually balanced */
.services-grid .service-item:last-child {
  border-bottom: 0;
}


/* =========================================================
   SERVICE ICON PLACEHOLDERS
   Temporary visual normalization.
   Professional unified icons will replace these next.
   ========================================================= */

.services-grid .service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 54px;
  height: 54px;

  margin-bottom: 22px;

  border: 1px solid rgba(183, 122, 24, 0.42);
  border-radius: 50%;

  background: rgba(183, 122, 24, 0.025);

  color: var(--gold);
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;

  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform var(--transition);
}

.services-grid .service-item:hover .service-icon {
  background: rgba(183, 122, 24, 0.08);
  border-color: var(--gold);
  color: var(--gold-soft);
  transform: translateY(-2px);
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .services-grid .service-item {
    min-height: 245px;
    padding: 30px 28px;
  }

  .services-grid .service-item h3 {
    font-size: 28px;
  }

  .services-grid .service-item p {
    max-width: 100%;
    font-size: 14px;
  }
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 640px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-grid .service-item {
    min-height: auto;
    padding: 30px 0;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line);
  }

  .services-grid .service-item:last-child {
    border-bottom: 0;
  }

  .services-grid .service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    font-size: 24px;
  }

  .services-grid .service-item h3 {
    font-size: 27px;
  }

  .services-grid .service-item p {
    margin-top: 12px;
    font-size: 14px;
    line-height: 1.7;
  }
}/* =========================================================
   HOTEL VISHAKA PAARK
   SERVICES — FINAL CORRECT STRUCTURE
   INTRO FIRST / FACILITIES BELOW
   NO SLIDER
   ========================================================= */

#services .services-layout {
  display: block !important;

  width: 100% !important;
  max-width: 100% !important;

  margin: 0 !important;
}


/* ---------------------------------------------------------
   INTRO MUST OCCUPY ITS OWN ROW
   --------------------------------------------------------- */

#services .services-intro {
  position: static !important;

  display: block !important;

  width: 100% !important;
  max-width: 760px !important;

  margin: 0 0 55px 0 !important;

  align-self: auto !important;
}


/* Heading */

#services .services-intro h2 {
  margin-top: 20px !important;

  max-width: 700px !important;
}


/* Description */

#services .services-intro > p {
  display: block !important;

  width: 100% !important;
  max-width: 620px !important;

  margin-top: 25px !important;

  position: static !important;
}


/* ---------------------------------------------------------
   FACILITIES — FULL WIDTH
   --------------------------------------------------------- */

#services .services-grid {
  display: grid !important;

  grid-template-columns:
    repeat(5, minmax(0, 1fr)) !important;

  grid-template-rows:
    repeat(3, auto) !important;

  width: 100% !important;
  max-width: 100% !important;

  margin: 0 !important;
  padding: 0 !important;

  gap: 0 !important;

  overflow: visible !important;

  position: static !important;

  flex: none !important;
}


/* ---------------------------------------------------------
   FACILITY CARDS
   --------------------------------------------------------- */

#services .service-item {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;

  width: auto !important;
  min-width: 0 !important;

  height: auto !important;
  min-height: 310px !important;

  margin: 0 !important;
  padding: 28px 24px 32px !important;
  box-sizing: border-box !important;

  overflow: visible !important;

  border-top: 1px solid var(--line) !important;
  border-right: 1px solid var(--line) !important;
  border-bottom: 0 !important;
  border-left: 0 !important;

  background: transparent !important;
}


/* First column of every row */

#services .service-item:nth-child(5n + 1) {
  border-left:
    1px solid var(--line) !important;
}


/* Final row bottom border */

#services .service-item:nth-child(n + 11) {
  border-bottom:
    1px solid var(--line) !important;
}

/* The incomplete final grid row needs its exposed card edges closed as well. */
#services .service-item:nth-child(9),
#services .service-item:nth-child(10) {
  border-bottom: 1px solid var(--line) !important;
}


/* ---------------------------------------------------------
   ICON
   --------------------------------------------------------- */

#services .service-icon {
  display: inline-flex !important;

  align-items: center !important;
  justify-content: center !important;

  width: 56px !important;
  height: 56px !important;

  min-width: 56px !important;
  min-height: 56px !important;

  max-width: 56px !important;
  max-height: 56px !important;

  margin: 0 0 21px 0 !important;
  padding: 0 !important;

  border: 1px solid
    rgba(183, 122, 24, 0.42) !important;

  border-radius: 50% !important;

  background: transparent !important;

  color: var(--gold) !important;

  font-family: var(--serif) !important;

  font-size: 23px !important;

  line-height: 1 !important;

  position: static !important;

  transform: none !important;
}


/* ---------------------------------------------------------
   TITLE
   --------------------------------------------------------- */

#services .service-item h3 {
  display: block !important;

  max-width: 235px !important;

  margin: 0 !important;

  color: var(--ivory) !important;

  font-family: var(--serif) !important;

  font-size: 26px !important;

  font-weight: 500 !important;

  line-height: 1.08 !important;
}


/* ---------------------------------------------------------
   DESCRIPTION
   --------------------------------------------------------- */

#services .service-item p {
  display: block !important;

  max-width: 235px !important;

  margin-top: 13px !important;

  color:
    rgba(255, 255, 255, 0.62) !important;

  font-family: "Cinzel", Georgia, serif !important;

  font-size: 15px !important;

  font-weight: 500 !important;

  line-height: 1.68 !important;

  position: static !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  #services .services-grid {
    grid-template-columns:
      repeat(3, minmax(0, 1fr)) !important;
  }


  #services .service-item {
    height: 270px !important;

    min-height: 270px !important;

    padding: 30px 26px !important;
  }


  #services .service-item:nth-child(5n + 1) {
    border-left: 0 !important;
  }


  #services .service-item:nth-child(3n + 1) {
    border-left:
      1px solid var(--line) !important;
  }


  #services .service-item:nth-child(n + 11) {
    border-bottom: 0 !important;
  }


  #services .service-item:nth-child(n + 10) {
    border-bottom:
      1px solid var(--line) !important;
  }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  #services .services-intro {
    max-width: 100% !important;

    margin-bottom: 40px !important;
  }


  #services .services-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr)) !important;
  }


  #services .service-item {
    height: auto !important;

    min-height: 245px !important;

    padding: 26px 20px !important;
  }


  #services .service-item:nth-child(3n + 1) {
    border-left: 0 !important;
  }


  #services .service-item:nth-child(2n + 1) {
    border-left:
      1px solid var(--line) !important;
  }


  #services .service-item:nth-child(n + 10) {
    border-bottom: 0 !important;
  }


  #services .service-item:nth-child(n + 12) {
    border-bottom:
      1px solid var(--line) !important;
  }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

  #services .services-grid {
    grid-template-columns: 1fr !important;
  }


  #services .service-item {
    height: auto !important;

    min-height: 0 !important;

    padding: 28px 22px !important;

    border-left:
      1px solid var(--line) !important;

    border-right:
      1px solid var(--line) !important;

    border-bottom:
      1px solid var(--line) !important;
  }
/* =========================================================
   HOTEL VISHAKA PAARK
   SERVICE ICONS — PREMIUM PNG TREATMENT
   ========================================================= */

#services .services-grid .service-icon {
  width: 76px !important;
  height: 76px !important;

  min-width: 76px !important;
  min-height: 76px !important;

  max-width: 76px !important;
  max-height: 76px !important;

  display: flex !important;

  align-items: center !important;
  justify-content: center !important;

  margin: 0 0 22px 0 !important;

  padding: 0 !important;

  border: 0 !important;

  border-radius: 50% !important;

  background: transparent !important;

  overflow: visible !important;

  line-height: 0 !important;
}


/* Actual PNG */

#services .services-grid .service-icon img {
  display: block !important;

  width: 76px !important;
  height: 76px !important;

  min-width: 76px !important;
  min-height: 76px !important;

  max-width: 76px !important;
  max-height: 76px !important;

  object-fit: contain !important;

  object-position: center !important;

  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;

  background: transparent !important;
}


/* ---------------------------------------------------------
   SUBTLE HOVER
   --------------------------------------------------------- */

#services .service-item:hover .service-icon img {
  transform: scale(1.04);

  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}


/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */

@media (max-width: 700px) {

  #services .services-grid .service-icon {
    width: 68px !important;
    height: 68px !important;

    min-width: 68px !important;
    min-height: 68px !important;

    max-width: 68px !important;
    max-height: 68px !important;
  }


  #services .services-grid .service-icon img {
    width: 68px !important;
    height: 68px !important;

    min-width: 68px !important;
    min-height: 68px !important;

    max-width: 68px !important;
    max-height: 68px !important;
  }

}
}

/* Quiet visual handoff from About to the following section. */
#about {
  position: relative;
}

#about::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: min(calc(100% - 120px), 1380px);
  height: 1px;
  margin: 0 auto;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(216, 188, 136, 0.16) 20%,
    rgba(216, 188, 136, 0.38) 50%,
    rgba(216, 188, 136, 0.16) 80%,
    transparent 100%
  );
  pointer-events: none;
}

@media (max-width: 767px) {
  #about::after {
    width: calc(100% - 40px);
  }
}

.site-header .header-phone,
.location-contact-list a[href^="tel:"],
.site-footer .footer-contact-column a[href^="tel:"] {
  font-family: "EB Garamond", Garamond, "Times New Roman", serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.05em !important;
}

/* =========================================================
   HARD OVERRIDE: PERFECT FOOTER SOCIAL ICON CENTERING
   ========================================================= */
.site-footer .footer-socials {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 18px !important;
}

.site-footer a.footer-social-link {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  min-height: 40px !important;
  max-width: 40px !important;
  max-height: 40px !important;
  padding: 0 !important;
  margin: 0 !important;
  border-radius: 50% !important;
  border: 1px solid rgba(243, 241, 235, 0.28) !important;
  background: transparent !important;
  color: #f3f1eb !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  text-decoration: none !important;
  transition: all 0.2s ease !important;
}

.site-footer a.footer-social-link svg {
  display: block !important;
  position: static !important;
  margin: 0 !important;
  padding: 0 !important;
  fill: currentColor !important;
  flex-shrink: 0 !important;
  transform: none !important;
}

/* Individual proportional sizes centered precisely */
.site-footer a.footer-social-facebook svg {
  width: 17px !important;
  height: 17px !important;
}

.site-footer a.footer-social-instagram svg {
  width: 18px !important;
  height: 18px !important;
}

.site-footer a.footer-social-tripadvisor svg {
  width: 21px !important;
  height: 21px !important;
}

.site-footer a.footer-social-link:hover {
  background: #d3a64a !important;
  border-color: #d3a64a !important;
  color: #1e2023 !important;
  transform: translateY(-2px) !important;
}
