:root {
  color-scheme: only light;
  --brand-green: #154233;
  --brand-green-dark: #0c2b22;
  --brand-gold: #b8802f;
  --brand-copper: #a56847;
  --brand-copper-light: #c98458;
  --brand-umber: #3b2922;
  --brand-umber-dark: #241812;
  --brand-taupe: #756052;
  --paper: #f7f1e6;
  --paper-deep: #e5d2bd;
  --ink: #221b14;
  --shadow: 0 22px 52px rgba(11, 21, 18, 0.28);
  --hh-rounded: "VAG Rounded", "VAG Round", "Nunito Sans", "Trebuchet MS", Arial, sans-serif;
  --hh-heavy: "Arial Black", "VAG Rounded", "VAG Round", Arial, sans-serif;
  --eh-heading-font: "Times New Roman", Times, serif;
  --eh-body-font: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  color-scheme: only light;
  background: #d8c1a0;
}

body {
  color: var(--ink);
  font-family: var(--hh-rounded);
  overflow-x: hidden;
  background:
    radial-gradient(circle at 28% 12%, rgba(255, 255, 255, 0.28), transparent 26rem),
    linear-gradient(180deg, #d8c1a0 0%, #b79a75 100%);
}

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

.phone-shell {
  width: min(100vw, 540px);
  min-height: 100svh;
  margin: 0 auto;
  padding: max(22px, env(safe-area-inset-top)) 18px max(22px, env(safe-area-inset-bottom));
  display: grid;
  place-items: center;
}

.folder-cover {
  width: 100%;
  min-height: min(760px, calc(100svh - 44px));
  display: grid;
  grid-template-columns: 22px 1fr;
  filter: drop-shadow(0 16px 32px rgba(18, 25, 21, 0.24));
}

.folder-spine {
  border-radius: 10px 0 0 10px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.24), transparent 46%),
    linear-gradient(180deg, #d28a5c 0%, #b46d4b 52%, #8a5641 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.32);
}

.folder-face {
  position: relative;
  overflow: hidden;
  min-height: inherit;
  padding: 46px 34px 34px;
  border-radius: 0 10px 10px 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.035), transparent 22px),
    #f3eee4;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(78, 58, 36, 0.14);
}

.folder-face::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(76, 57, 35, 0.14);
  border-radius: 0 7px 7px 0;
  pointer-events: none;
}

.brand {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 16px;
  margin: 24px 0 62px;
  text-align: center;
}

.brand img {
  width: min(64%, 228px);
  max-height: 118px;
  object-fit: contain;
  opacity: 0.96;
}

.brand p {
  margin: 0;
  color: #263d34;
  font-family: var(--hh-rounded);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.folder-menu {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(56, 45, 32, 0.22);
}

.folder-tab {
  min-height: auto;
  padding: 18px 4px 16px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(56, 45, 32, 0.22);
  background: transparent;
}

.folder-tab:active {
  background: rgba(184, 128, 47, 0.08);
}

.folder-tab strong {
  display: block;
  color: #151514;
  font-family: var(--hh-rounded);
  font-size: clamp(1.05rem, 4.35vw, 1.38rem);
  line-height: 1.1;
  font-weight: 700;
}

.folder-tab small {
  display: block;
  margin-top: 5px;
  color: rgba(34, 27, 20, 0.6);
  font-family: var(--hh-rounded);
  font-size: 0.7rem;
  line-height: 1.35;
}

.tab-number {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: start center;
  padding-top: 3px;
  color: #7c5b2e;
  background: transparent;
  font-family: var(--hh-rounded);
  font-size: 0.94rem;
  font-style: italic;
  letter-spacing: 0;
}

.cover-footer {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 34px;
  left: 34px;
  color: rgba(34, 27, 20, 0.5);
  font-family: var(--hh-rounded);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.document-page {
  min-height: 100svh;
  background: #d9c2a6;
}

.document-topbar,
.document-actions {
  width: min(100vw, 900px);
  margin: 0 auto;
}

.document-topbar {
  min-height: 66px;
  padding: max(10px, env(safe-area-inset-top)) 12px 9px;
  display: grid;
  grid-template-columns: 42px minmax(68px, 112px) minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: #fff;
  background: var(--brand-umber-dark);
  box-shadow: 0 12px 30px rgba(46, 28, 20, 0.22);
}

.document-topbar a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-family: var(--hh-rounded);
  font-size: 2rem;
  line-height: 1;
}

.document-topbar img {
  width: 100%;
  max-height: 42px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.document-topbar span {
  justify-self: end;
  font-family: var(--hh-rounded);
  font-size: clamp(0.6rem, 2.15vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: right;
  text-transform: uppercase;
}

.document-stage {
  width: min(100vw, 900px);
  margin: 0 auto;
  padding: 12px 8px 18px;
}

.typed-page {
  position: relative;
  width: min(100%, 620px);
  min-height: 920px;
  margin: 0 auto 16px;
  padding: 54px 34px 76px;
  overflow: hidden;
  border-radius: 4px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(11, 21, 18, 0.22);
  color: #0b1820;
  font-family: var(--hh-rounded);
}

.typed-page::before,
.typed-page::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 14px;
  pointer-events: none;
}

.typed-page::before {
  left: 0;
  background: linear-gradient(90deg, rgba(97, 111, 76, 0.22), transparent);
}

.typed-page::after {
  right: 0;
  background: linear-gradient(270deg, rgba(21, 66, 51, 0.18), transparent);
}

.menu-page-head {
  position: relative;
  z-index: 1;
  min-height: 88px;
  margin-bottom: 8px;
  text-align: center;
}

.menu-page-head h1 {
  width: fit-content;
  margin: 0 auto;
  font-size: clamp(1rem, 3.8vw, 1.35rem);
  font-family: var(--hh-rounded);
  font-weight: 700;
  line-height: 1.16;
  text-decoration: underline;
}

.menu-page-head span.menu-page-head__meta,
.menu-page-head p.menu-page-head__meta {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 4px auto 0 !important;
  padding: 4px 8px !important;
  border: 1px solid rgba(165, 104, 71, 0.28) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.35) !important;
  color: #7d462e !important;
  font-size: 0.88rem !important;
  font-family: var(--hh-rounded) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  letter-spacing: 0.06em !important;
  text-decoration: none !important;
  box-shadow: none !important;
  min-width: 0 !important;
}

.page-kicker {
  margin: -8px 0 26px;
  font-size: clamp(1.3rem, 5.7vw, 2rem);
  font-family: var(--hh-rounded);
  font-weight: 700;
  line-height: 1.16;
}

.typed-section {
  position: relative;
  z-index: 1;
  margin: 0 0 24px;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  align-items: start;
  gap: 14px;
  margin-bottom: 4px;
}

.typed-section h2,
.typed-section h3 {
  margin: 0;
  width: fit-content;
  font-family: var(--hh-rounded);
  font-weight: 700;
  line-height: 1.12;
  text-decoration: underline;
}

.typed-section h2 {
  font-size: clamp(1.12rem, 5vw, 1.74rem);
}

.typed-section h3 {
  margin-top: 8px;
  font-size: clamp(1rem, 4vw, 1.25rem);
}

.section-note,
.section-foot {
  margin: 7px 0 0;
  font-size: clamp(0.75rem, 3vw, 0.98rem);
  font-family: var(--hh-rounded);
  font-weight: 400;
  line-height: 1.32;
}

.price-label {
  font-size: clamp(1.05rem, 4.4vw, 1.55rem);
  font-family: var(--hh-rounded);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.typed-list {
  display: grid;
  gap: 7px;
}

.typed-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 88px;
  gap: 12px;
  align-items: start;
}

.item-copy strong,
.item-price {
  font-size: clamp(0.86rem, 3.6vw, 1.26rem);
  font-family: var(--hh-rounded);
  font-weight: 700;
  line-height: 1.18;
}

.item-copy {
  min-width: 0;
}

.item-copy p {
  margin: 3px 0 0;
  font-size: clamp(0.7rem, 2.9vw, 0.96rem);
  font-family: var(--hh-rounded);
  font-weight: 400;
  line-height: 1.32;
}

.item-price {
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}

.menu-page-foot {
  position: absolute;
  right: 28px;
  bottom: 24px;
  left: 28px;
  z-index: 1;
  font-size: clamp(0.58rem, 2.3vw, 0.78rem);
  font-family: var(--hh-rounded);
  font-weight: 400;
  line-height: 1.28;
  text-align: center;
}

.loading-note {
  width: min(100%, 620px);
  margin: 18px auto;
  padding: 24px;
  border-radius: 14px;
  color: var(--brand-green-dark);
  background: rgba(255, 255, 255, 0.76);
  font-family: var(--hh-rounded);
  text-align: center;
}

.service-page {
  position: relative;
  width: min(100%, 620px);
  min-height: 920px;
  margin: 0 auto 16px;
  padding: 78px 48px 68px;
  overflow: hidden;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(11, 21, 18, 0.22);
  color: #06101a;
  font-family: var(--hh-rounded);
}

.service-cover {
  padding-top: 74px;
  text-align: center;
}

.service-logo {
  display: block;
  width: min(56%, 300px);
  margin: 0 auto 76px;
}

.service-title {
  margin: 0 0 38px;
  font-size: clamp(1.72rem, 8.2vw, 4.05rem);
  font-family: var(--hh-heavy);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  white-space: nowrap;
}

.service-subtitle {
  margin: 0 0 22px;
  font-size: clamp(1.45rem, 6vw, 2.4rem);
  font-family: var(--hh-rounded);
  font-weight: 700;
  letter-spacing: 0;
}

.service-number-table {
  width: min(68%, 360px);
  margin: 0 auto 34px;
  display: grid;
  gap: 8px;
  text-align: left;
  font-size: clamp(1rem, 4.1vw, 1.46rem);
  font-family: var(--hh-rounded);
  line-height: 1.18;
}

.service-number-table div {
  display: grid;
  grid-template-columns: 1fr 70px;
  gap: 18px;
  align-items: baseline;
}

.service-number-table strong {
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.room-dialing {
  width: min(68%, 360px);
  margin: 0 auto 50px;
  text-align: left;
  font-size: clamp(1rem, 4vw, 1.42rem);
  font-family: var(--hh-rounded);
  font-weight: 400;
  line-height: 1.32;
}

.service-divider {
  position: relative;
  width: min(46%, 260px);
  height: 22px;
  margin: 0 auto 44px;
}

.service-divider::before,
.service-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 18px);
  border-top: 1px solid rgba(5, 11, 18, 0.72);
}

.service-divider::before {
  left: 0;
}

.service-divider::after {
  right: 0;
}

.service-divider span,
.service-divider::marker {
  display: none;
}

.service-divider {
  background:
    radial-gradient(circle at 50% 50%, #050b12 0 3px, transparent 3.5px),
    radial-gradient(circle at calc(50% - 10px) 50%, transparent 0 4px, #050b12 4px 5px, transparent 5.5px),
    radial-gradient(circle at calc(50% + 10px) 50%, transparent 0 4px, #050b12 4px 5px, transparent 5.5px);
}

.emergency-title {
  margin: 0 auto 24px;
  width: min(68%, 360px);
  text-align: left;
  font-size: clamp(1.45rem, 5.6vw, 2.1rem);
  font-family: var(--hh-rounded);
  font-weight: 700;
  line-height: 1.1;
}

.service-cover p {
  width: min(68%, 360px);
  margin: 0 auto 10px;
  text-align: left;
  font-size: clamp(0.98rem, 3.9vw, 1.34rem);
  font-family: var(--hh-rounded);
  font-weight: 400;
  line-height: 1.32;
}

.service-cover .emergency-gap {
  margin-top: 30px;
}

.service-group {
  margin: 0 0 28px;
}

.service-letter {
  margin: 0 0 2px;
  color: #0b1820;
  font-family: "Monotype Corsiva", "Lucida Calligraphy", "Apple Chancery", cursive;
  font-size: clamp(3.7rem, 14vw, 5.8rem);
  font-weight: 400;
  line-height: 0.82;
}

.service-entry {
  margin: 0 0 24px;
}

.service-entry h2 {
  margin: 0 0 4px;
  font-size: clamp(1.16rem, 4.8vw, 1.72rem);
  font-family: var(--hh-rounded);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.12;
}

.service-entry p,
.service-entry li {
  margin: 0;
  font-size: clamp(0.94rem, 3.55vw, 1.25rem);
  font-family: var(--hh-rounded);
  font-weight: 400;
  line-height: 1.34;
}

.service-entry .service-dial {
  margin-top: 3px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.service-entry ul {
  margin: 4px 0 0 26px;
  padding: 0;
}

.service-entry li {
  padding-left: 4px;
}

.service-page-no {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  font-size: clamp(0.82rem, 2.6vw, 1rem);
  font-family: var(--hh-rounded);
  font-weight: 700;
  text-align: center;
}

.dining-page {
  position: relative;
  width: min(100%, 620px);
  min-height: 920px;
  margin: 0 auto 16px;
  padding: 86px 38px 68px;
  overflow: hidden;
  border-radius: 2px;
  background:
    linear-gradient(90deg, rgba(112, 101, 65, 0.16), transparent 4%, transparent 96%, rgba(35, 82, 83, 0.14)),
    #fff;
  box-shadow: 0 16px 38px rgba(11, 21, 18, 0.22);
  color: #07141f;
  font-family: var(--hh-rounded);
}

.dining-page-head {
  position: relative;
  z-index: 1;
  min-height: 70px;
  margin: 0 0 10px;
  text-align: center;
}

.dining-page-head h1,
.dining-page-head p {
  width: fit-content;
  margin: 0 auto;
  font-size: clamp(0.92rem, 3.35vw, 1.2rem);
  font-family: var(--hh-rounded);
  font-weight: 700;
  line-height: 1.16;
  text-decoration: underline;
}

.dining-page-head p {
  margin-top: 2px;
}

.dining-kicker {
  position: relative;
  z-index: 1;
  margin: -8px 0 24px;
  font-size: clamp(1.22rem, 5.2vw, 1.82rem);
  font-family: var(--hh-rounded);
  font-weight: 700;
  line-height: 1.16;
}

.dining-section {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
}

.dining-section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  gap: 14px;
  align-items: start;
  margin: 0 0 2px;
}

.dining-section h2,
.dining-section h3 {
  width: fit-content;
  margin: 0;
  font-family: var(--hh-rounded);
  font-weight: 700;
  line-height: 1.12;
  text-decoration: underline;
}

.dining-section h2 {
  font-size: clamp(1.02rem, 4.45vw, 1.48rem);
}

.dining-section h3 {
  margin-top: 6px;
  font-size: clamp(0.9rem, 3.8vw, 1.15rem);
}

.dining-price-label {
  font-size: clamp(1rem, 4.3vw, 1.48rem);
  font-family: var(--hh-rounded);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.dining-section-note,
.dining-section-foot {
  margin: 6px 0 0;
  font-size: clamp(0.68rem, 2.75vw, 0.9rem);
  font-family: var(--hh-rounded);
  font-weight: 400;
  line-height: 1.32;
}

.dining-list {
  display: grid;
  gap: 4px;
}

.dining-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px;
  gap: 14px;
  align-items: start;
}

.dining-item-copy strong,
.dining-price {
  font-size: clamp(0.78rem, 3.2vw, 1.06rem);
  font-family: var(--hh-rounded);
  font-weight: 700;
  line-height: 1.18;
}

.dining-item-copy {
  min-width: 0;
}

.dining-item-copy p {
  margin: 2px 0 0;
  font-size: clamp(0.62rem, 2.58vw, 0.82rem);
  font-family: var(--hh-rounded);
  font-weight: 400;
  line-height: 1.32;
}

.dining-price {
  font-variant-numeric: tabular-nums;
  text-align: right;
  white-space: nowrap;
}

.dining-page-foot {
  position: absolute;
  right: 28px;
  bottom: 22px;
  left: 28px;
  z-index: 1;
  font-size: clamp(0.55rem, 2.15vw, 0.72rem);
  font-family: var(--hh-rounded);
  font-weight: 400;
  line-height: 1.28;
  text-align: center;
}

/* In-Room Dining digital menu page */

body.in-room-dining-page {
  --ird-forest: #07382f;
  --ird-ink: #17342d;
  --ird-paper: #fbf7ee;
  --ird-sand: #eadcc7;
  --ird-copper: #a56847;
  --ird-header: #fbf7ee;
  --ird-line: #d8ccba;
  --ird-display: var(--eh-heading-font, Georgia, "Times New Roman", serif);
  --ird-body: "Avenir Next", "Segoe UI", Arial, Helvetica, sans-serif;
  color: var(--ird-ink);
  background: var(--ird-paper);
  font-family: var(--ird-body);
}

body.in-room-dining-page .document-topbar {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  width: 100%;
  max-width: none;
  min-height: 58px;
  padding: max(8px, env(safe-area-inset-top)) max(14px, env(safe-area-inset-right)) 8px max(14px, env(safe-area-inset-left));
  grid-template-columns: 38px minmax(72px, 112px) minmax(0, 1fr);
  gap: 12px;
  color: var(--ird-ink);
  background: var(--ird-header);
  border-bottom: 1px solid rgba(165, 104, 71, 0.22);
  box-shadow: 0 8px 18px rgba(46, 28, 20, 0.08);
}

body.in-room-dining-page .document-topbar a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(165, 104, 71, 0.34);
  background: rgba(165, 104, 71, 0.08);
  color: var(--ird-copper);
  font-family: var(--ird-body);
  font-size: 1.9rem;
}

body.in-room-dining-page .document-topbar img {
  max-height: 38px;
  filter: none;
}

body.in-room-dining-page .document-topbar span {
  font-family: var(--ird-body);
  font-size: clamp(0.64rem, 2.3vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--ird-ink);
}

body.in-room-dining-page .document-stage {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

body.in-room-dining-page .ird-menu {
  width: 100%;
  min-height: 100svh;
  padding: 30px max(16px, env(safe-area-inset-right)) 64px max(16px, env(safe-area-inset-left));
  background:
    radial-gradient(circle at 100% 0%, rgba(165, 104, 71, 0.08), transparent 26rem),
    linear-gradient(180deg, var(--ird-paper) 0%, #f5ecdf 100%);
}

body.in-room-dining-page .ird-masthead,
body.in-room-dining-page .ird-menu-nav,
body.in-room-dining-page .ird-meal-period {
  width: min(100%, 1040px);
  margin-right: auto;
  margin-left: auto;
}

body.in-room-dining-page .ird-masthead {
  padding: 18px 0 22px;
  text-align: center;
}

body.in-room-dining-page .ird-masthead__eyebrow {
  margin: 0 0 10px;
  color: var(--ird-copper);
  font-family: var(--ird-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

body.in-room-dining-page .ird-masthead__title {
  margin: 0;
  color: var(--ird-forest);
  font-family: var(--ird-display);
  font-size: clamp(2.125rem, 10vw, 3.625rem);
  font-weight: 400;
  line-height: 0.96;
}

body.in-room-dining-page .ird-masthead__rule {
  display: block;
  width: min(180px, 42vw);
  margin: 20px auto 0;
  border-top: 1px solid var(--ird-line);
}

body.in-room-dining-page .ird-menu-nav {
  position: sticky;
  position: -webkit-sticky;
  top: calc(58px + env(safe-area-inset-top));
  left: 0;
  right: 0;
  z-index: 18;
  display: flex;
  gap: 8px;
  margin-bottom: 26px;
  padding: 10px 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  background: color-mix(in srgb, var(--ird-paper) 92%, transparent);
  backdrop-filter: blur(12px);
}

body.in-room-dining-page .ird-menu-nav::-webkit-scrollbar {
  display: none;
}

body.in-room-dining-page .ird-menu-nav a {
  flex: 0 0 auto;
  padding: 8px 14px;
  border: 1px solid var(--ird-line);
  border-radius: 999px;
  color: var(--ird-ink);
  background: rgba(255, 255, 255, 0.28);
  font-family: var(--ird-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

body.in-room-dining-page .ird-menu-nav a:focus-visible {
  outline: 2px solid var(--ird-copper);
  outline-offset: 3px;
}

body.in-room-dining-page .ird-meal-period {
  position: relative;
  overflow: visible;
  margin-bottom: 28px;
  padding: 30px 0 36px;
  border-top: 1px solid var(--ird-line);
  scroll-margin-top: 118px;
}

body.in-room-dining-page .ird-meal-period__head,
body.in-room-dining-page .ird-menu-source,
body.in-room-dining-page .ird-menu-note {
  position: relative;
}

body.in-room-dining-page .ird-meal-period__head {
  position: sticky;
  position: -webkit-sticky;
  top: var(--ird-meal-period-head-top, calc(58px + env(safe-area-inset-top) + 64px));
  z-index: 12;
  background: rgba(251, 247, 238, 0.35);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 10px rgba(11, 21, 18, 0.05);
  border-bottom: 1px solid rgba(245, 236, 223, 0.3);
  padding: 12px 0 10px;
  margin: 0;
}

body.in-room-dining-page .ird-meal-period__head + .ird-menu-source {
  padding-top: 20px;
}

body.in-room-dining-page .ird-meal-period__title-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
  min-width: 0;
}

body.in-room-dining-page .ird-meal-period__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
}

body.in-room-dining-page .ird-meal-period__meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 4px 0 0;
  padding: 4px 10px;
  border: 1px solid rgba(165, 104, 71, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #7d462e;
  font-size: clamp(0.82rem, 3vw, 0.92rem);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

body.in-room-dining-page .ird-meal-period__ext {
  margin-left: auto;
  color: var(--ird-forest);
  font-family: var(--ird-display);
  font-size: clamp(1rem, 3.2vw, 1.1rem);
  font-weight: 400;
  line-height: 1.1;
  white-space: nowrap;
}

body.in-room-dining-page .ird-menu-source {
  padding-top: 12px;
}

body.in-room-dining-page .ird-menu-section {
  scroll-margin-top: 180px;
}

body.in-room-dining-page .ird-meal-period__title {
  margin: 0;
  color: var(--ird-forest);
  font-family: var(--ird-display);
  font-size: clamp(1.75rem, 7.2vw, 2.45rem);
  font-weight: 400;
  line-height: 1;
}

body.in-room-dining-page .ird-meal-period__meta {
  display: inline-flex;
  margin: 4px 0 0;
  padding: 7px 12px;
  border: 1px solid rgba(165, 104, 71, 0.34);
  border-radius: 999px;
  color: var(--ird-copper);
  background: rgba(255, 255, 255, 0.34);
  font-family: var(--ird-body);
  font-size: clamp(0.8rem, 3.2vw, 0.96rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

body.in-room-dining-page .ird-menu-source + .ird-menu-source {
  margin-top: 12px;
  padding-top: 8px;
  border-top: 1px solid rgba(216, 204, 186, 0.72);
}

body.in-room-dining-page .ird-menu-source__head {
  margin-bottom: 8px;
  color: rgba(23, 52, 45, 0.74);
}

body.in-room-dining-page .ird-menu-source__head p,
body.in-room-dining-page .ird-menu-source__head h3 {
  margin: 0;
  font-family: var(--ird-body);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
  white-space: pre-line;
}

body.in-room-dining-page .ird-menu-source__head p {
  margin-bottom: 4px;
  color: var(--ird-copper);
  letter-spacing: 0.08em;
}

body.in-room-dining-page .ird-menu-section {
  margin-bottom: 12px;
}

body.in-room-dining-page .ird-menu-section__head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 8px;
  align-items: start;
  margin-bottom: 8px;
  padding-bottom: 2px;
  border-bottom: 1px solid var(--ird-line);
}

body.in-room-dining-page .ird-menu-section__title {
  margin: 0;
  color: var(--ird-forest);
  font-family: var(--ird-display);
  font-size: clamp(1.3125rem, 5.7vw, 2rem);
  font-weight: 400;
  line-height: 1.08;
}

body.in-room-dining-page .ird-menu-section__subtitle,
body.in-room-dining-page .ird-menu-section__note,
body.in-room-dining-page .ird-menu-section__foot {
  margin: 2px 0 0;
  color: rgba(23, 52, 45, 0.76);
  font-family: var(--ird-body);
  font-size: clamp(0.78rem, 3.1vw, 0.92rem);
  line-height: 1.45;
  white-space: pre-line;
}

body.in-room-dining-page .ird-menu-section__subtitle {
  color: var(--ird-copper);
  font-weight: 700;
}

body.in-room-dining-page .ird-menu-section__price-label {
  color: var(--ird-copper);
  font-family: var(--ird-body);
  font-size: clamp(0.9rem, 3.7vw, 1.06rem);
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

body.in-room-dining-page .ird-menu-list {
  display: grid;
  gap: 8px;
}

body.in-room-dining-page .ird-menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 8px;
  align-items: baseline;
}

body.in-room-dining-page .ird-menu-item__copy {
  min-width: 0;
}

body.in-room-dining-page .ird-menu-item__name {
  margin: 0;
  color: #152e29;
  font-family: var(--ird-body);
  font-size: clamp(0.875rem, 3.9vw, 1rem);
  font-weight: 800;
  line-height: 1.28;
}

body.in-room-dining-page .ird-menu-item__description {
  margin: 2px 0 0;
  color: rgba(23, 52, 45, 0.76);
  font-family: var(--ird-body);
  font-size: clamp(0.75rem, 3.35vw, 0.9rem);
  font-weight: 400;
  line-height: 1.42;
  white-space: pre-line;
}

body.in-room-dining-page .ird-menu-item__price {
  color: var(--ird-copper);
  font-family: var(--ird-body);
  font-size: clamp(0.875rem, 3.7vw, 1rem);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1.28;
  text-align: right;
  white-space: nowrap;
}

body.in-room-dining-page .ird-menu-note {
  margin: 18px 0 0;
  padding-top: 8px;
  border-top: 1px solid var(--ird-line);
  color: rgba(23, 52, 45, 0.68);
  font-family: var(--ird-body);
  font-size: clamp(0.76rem, 3.2vw, 0.9rem);
  line-height: 1.45;
  text-align: center;
}

@media (prefers-reduced-motion: no-preference) {
  body.in-room-dining-page {
    scroll-behavior: smooth;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.in-room-dining-page {
    scroll-behavior: auto;
  }
}

@media (min-width: 700px) {
  body.in-room-dining-page .ird-menu {
    padding: 44px 32px 86px;
  }

  body.in-room-dining-page .ird-masthead {
    padding-top: 26px;
    padding-bottom: 30px;
  }

  body.in-room-dining-page .ird-menu-nav {
    justify-content: center;
    margin-bottom: 34px;
  }

  body.in-room-dining-page .ird-menu-nav a {
    padding: 9px 18px;
  }

  body.in-room-dining-page .ird-meal-period {
    padding: 44px 24px 50px;
  }

  body.in-room-dining-page .ird-meal-period__head {
    top: var(--ird-meal-period-head-top, calc(58px + env(safe-area-inset-top) + 74px));
  }

  body.in-room-dining-page .ird-meal-period__head {
    padding-top: 12px;
    padding-bottom: 10px;
  }

  body.in-room-dining-page .ird-meal-period__meta {
    margin-top: 8px;
  }

  body.in-room-dining-page .ird-menu-section {
    margin-bottom: 16px;
  }

  body.in-room-dining-page .ird-menu-list {
    gap: 10px;
  }

  body.in-room-dining-page .ird-menu-item {
    gap: 12px;
  }
}

@media (min-width: 1024px) {
  body.in-room-dining-page .ird-menu {
    padding-top: 56px;
  }

  body.in-room-dining-page .ird-meal-period {
    padding-right: 54px;
    padding-left: 54px;
  }

  body.in-room-dining-page .ird-menu-item__name,
  body.in-room-dining-page .ird-menu-item__price {
    font-size: 1.02rem;
  }

  body.in-room-dining-page .ird-menu-item__description {
    font-size: 0.92rem;
  }
}

@media (max-width: 460px) {
  body.in-room-dining-page .document-topbar {
    padding: max(8px, env(safe-area-inset-top)) 10px 8px 10px;
    grid-template-columns: 36px minmax(60px, 98px) minmax(0, 1fr);
  }

  body.in-room-dining-page .ird-menu {
    padding: 24px max(12px, env(safe-area-inset-right)) 64px max(12px, env(safe-area-inset-left));
  }

  body.in-room-dining-page .ird-menu-nav {
    margin-bottom: 22px;
    gap: 6px;
  }
}

@media (max-width: 380px) {
  body.in-room-dining-page .ird-menu-item {
    gap: 10px;
  }

  body.in-room-dining-page .ird-menu-item__name,
  body.in-room-dining-page .ird-menu-item__price {
    font-size: 0.86rem;
  }

  body.in-room-dining-page .ird-menu-item__description {
    font-size: 0.74rem;
  }
}

.telephone-page {
  position: relative;
  width: min(100%, 620px);
  min-height: 920px;
  margin: 0 auto 16px;
  padding: 76px 58px 72px;
  overflow: hidden;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(11, 21, 18, 0.22);
  color: #050b12;
  font-family: var(--hh-rounded);
}

.telephone-cover {
  min-height: 920px;
}

.telephone-cover-word {
  position: absolute;
  left: 52px;
  top: 92px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: var(--hh-heavy);
  font-size: clamp(3.6rem, 16vw, 6.4rem);
  font-weight: 900;
  letter-spacing: 0.07em;
  line-height: 0.86;
}

.telephone-cover-icon {
  position: absolute;
  left: 146px;
  top: 230px;
  width: 390px;
  height: auto;
}

.telephone-cover-icon img {
  display: block;
  width: 100%;
  height: auto;
}

.telephone-cover h1 {
  position: absolute;
  left: 112px;
  right: 38px;
  bottom: 72px;
  margin: 0;
  font-family: "Monotype Corsiva", "Lucida Calligraphy", cursive;
  font-size: clamp(4rem, 17vw, 7rem);
  font-weight: 900;
  line-height: 0.85;
}

.telephone-script-title,
.telephone-emergency {
  margin: 0;
  font-family: "Monotype Corsiva", "Lucida Calligraphy", cursive;
  font-weight: 400;
}

.telephone-script-title {
  font-size: clamp(2.6rem, 11vw, 4.4rem);
  color: rgba(5, 11, 18, 0.56);
  margin-bottom: 36px;
}

.telephone-services-table {
  width: 74%;
  margin: 0 0 46px;
  display: grid;
  gap: 10px;
  font-size: clamp(1rem, 4vw, 1.42rem);
  font-family: var(--hh-rounded);
  font-weight: 400;
  line-height: 1.16;
}

.telephone-services-table div {
  display: grid;
  grid-template-columns: 1fr 70px;
}

.telephone-services-table span:last-child {
  font-variant-numeric: tabular-nums;
  text-align: right;
}

.telephone-room-dial,
.telephone-copy,
.telephone-steps,
.telephone-assistance {
  margin: 0 0 24px;
  font-size: clamp(0.95rem, 3.8vw, 1.28rem);
  font-family: var(--hh-rounded);
  font-weight: 400;
  line-height: 1.34;
}

.telephone-emergency {
  margin: 112px 0 28px;
  font-size: clamp(2.1rem, 8.6vw, 4.05rem);
  white-space: nowrap;
}

.telephone-main-heading {
  margin: 0 0 24px;
  font-size: clamp(1.28rem, 5vw, 2rem);
  font-family: var(--hh-rounded);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.14;
}

.telephone-steps {
  padding-left: 28px;
}

.telephone-steps li {
  margin-bottom: 10px;
  padding-left: 18px;
}

.telephone-assistance {
  margin-top: 44px;
}

.telephone-table-header {
  display: grid;
  grid-template-columns: 1fr 110px 110px 1.3fr;
  gap: 12px;
  padding: 12px 0 16px;
  border-top: 2px solid #111;
  border-bottom: 2px solid #111;
  text-align: center;
  font-size: clamp(1rem, 3.8vw, 1.55rem);
  font-family: var(--hh-rounded);
  font-weight: 700;
  line-height: 1.05;
}

.telephone-table-header em {
  display: block;
  margin-top: 8px;
  font-size: clamp(0.62rem, 2.4vw, 0.9rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
}

.telephone-country-list {
  display: grid;
}

.telephone-country {
  padding: 12px 0 10px;
  border-bottom: 1.5px solid #222;
}

.telephone-country-head,
.telephone-city-row {
  display: grid;
  grid-template-columns: 1fr 110px 110px 1.3fr;
  gap: 12px;
  align-items: baseline;
}

.telephone-country-head {
  font-size: clamp(1rem, 4vw, 1.5rem);
  font-family: var(--hh-rounded);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.12;
}

.telephone-country-head strong:nth-child(2),
.telephone-city-row span:nth-child(2) {
  text-align: center;
}

.telephone-country-head strong:nth-child(3) {
  grid-column: 4;
  text-align: center;
}

.telephone-city-row {
  margin-top: 7px;
  font-size: clamp(0.86rem, 3.3vw, 1.18rem);
  font-family: var(--hh-rounded);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
  line-height: 1.18;
}

.domestic-title {
  margin: 0 0 26px;
  font-size: clamp(1.5rem, 5.8vw, 2.15rem);
  font-family: var(--hh-heavy);
  font-weight: 900;
  line-height: 1.12;
}

.domestic-subtitle {
  margin: 0 0 36px;
  font-size: clamp(1.3rem, 5vw, 1.9rem);
  font-family: var(--hh-rounded);
  font-weight: 700;
  line-height: 1.14;
}

.domestic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
}

.domestic-column {
  display: grid;
  gap: 17px;
  font-size: clamp(0.88rem, 3.2vw, 1.17rem);
  font-family: var(--hh-rounded);
  font-weight: 400;
  font-variant-numeric: tabular-nums;
}

.domestic-column > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 56px;
  gap: 18px;
}

.domestic-head {
  margin-bottom: 4px;
  font-weight: 700;
}

.telephone-page-no {
  position: absolute;
  right: 0;
  bottom: 26px;
  left: 0;
  font-size: clamp(0.82rem, 2.6vw, 1rem);
  font-family: var(--hh-rounded);
  font-weight: 700;
  text-align: center;
}

.experience-empty-page {
  width: min(100%, 620px);
  min-height: 920px;
  margin: 0 auto 16px;
  padding: 78px 48px 68px;
  border-radius: 2px;
  background: #fff;
  box-shadow: 0 16px 38px rgba(11, 21, 18, 0.22);
  color: #06101a;
  font-family: var(--hh-rounded);
}

.experience-empty-page h1 {
  margin: 0;
  font-family: var(--hh-heavy);
  font-size: clamp(1.5rem, 5.8vw, 2.15rem);
  line-height: 1.12;
}

.document-actions {
  width: min(100vw, 900px);
  padding: 10px 12px max(10px, env(safe-area-inset-bottom));
  background: rgba(12, 43, 34, 0.96);
  color: #fff;
  font-family: var(--hh-rounded);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.document-actions a {
  display: inline-flex;
  min-height: 38px;
  padding: 0 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  font-family: var(--hh-rounded);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Experience Hotel Himalaya page */

body.experience-hotel-page {
  --eh-cream: #f4eee3;
  --eh-ivory: #fffaf0;
  --eh-green: #123d31;
  --eh-green-deep: #09271f;
  --eh-copper: #9b5b3f;
  --eh-burgundy: #672d2d;
  --eh-header: rgba(251, 247, 238, 0.96);
  --eh-ink: #1d1b17;
  --eh-muted: #6b6257;
  --eh-line: rgba(29, 27, 23, 0.16);
  min-height: 100svh;
  color: var(--eh-ink);
  background: var(--eh-cream);
  font-family: var(--eh-body-font);
}

body.experience-hotel-page a {
  color: inherit;
}

body.experience-hotel-page main {
  background: var(--eh-cream);
}

.experience-header {
  position: sticky;
  top: 0;
  z-index: 20;
  min-height: 58px;
  padding: max(8px, env(safe-area-inset-top)) 14px 8px;
  display: grid;
  grid-template-columns: 38px 86px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: var(--eh-ink);
  background: var(--eh-header);
  border-bottom: 1px solid rgba(155, 91, 63, 0.22);
  box-shadow: 0 8px 18px rgba(46, 28, 20, 0.08);
  backdrop-filter: blur(10px);
}

.experience-header a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(155, 91, 63, 0.3);
  border-radius: 50%;
  background: rgba(155, 91, 63, 0.08);
  color: var(--eh-copper);
  font-family: var(--eh-body-font);
  font-size: 1.9rem;
  line-height: 1;
  text-decoration: none;
}

.experience-header img {
  width: 100%;
  max-height: 38px;
  object-fit: contain;
  filter: none;
}

.experience-header span {
  justify-self: end;
  font-family: var(--eh-body-font);
  font-size: clamp(0.62rem, 2.3vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
  color: var(--eh-ink);
}

.eh-hero {
  position: relative;
  min-height: clamp(500px, 92svh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #3b2922;
}

.eh-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.eh-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(0deg, rgba(47, 33, 28, 0.7), rgba(47, 33, 28, 0));
}

.eh-hero-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 880px);
  padding: 0 22px max(34px, env(safe-area-inset-bottom));
  color: #fff;
}

.eh-eyebrow,
.eh-kicker {
  margin: 0;
  color: var(--eh-copper);
  font-family: var(--eh-body-font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eh-hero-copy .eh-eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.eh-hero h1 {
  margin: 10px 0 8px;
  font-family: var(--eh-heading-font);
  font-size: clamp(2.7rem, 13vw, 6.6rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.035em;
}

.eh-hero-copy p:not(.eh-eyebrow) {
  margin: 0;
  font-family: var(--eh-heading-font);
  font-size: clamp(1.05rem, 4.8vw, 1.8rem);
  line-height: 1.18;
}

.eh-scroll-cue {
  display: inline-block;
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-family: var(--eh-body-font);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.eh-section-nav {
  position: sticky;
  top: 58px;
  z-index: 16;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  padding: 10px 14px;
  border-bottom: 1px solid var(--eh-line);
  background: rgba(244, 238, 227, 0.94);
  backdrop-filter: blur(10px);
  scrollbar-width: none;
}

.eh-section-nav::-webkit-scrollbar {
  display: none;
}

.eh-section-nav a {
  flex: 0 0 auto;
  padding: 8px 12px;
  border: 1px solid rgba(18, 61, 49, 0.16);
  border-radius: 999px;
  color: var(--eh-green-deep);
  font-family: var(--eh-body-font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.eh-section {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 62px 20px;
  scroll-margin-top: 112px;
}

.eh-soft-section {
  width: 100%;
  max-width: none;
  padding-right: max(20px, calc((100vw - 980px) / 2));
  padding-left: max(20px, calc((100vw - 980px) / 2));
  background: var(--eh-ivory);
}

.eh-section-intro {
  max-width: 720px;
  margin-bottom: 26px;
}

.eh-section h2,
.eh-venue-list h3,
.eh-subtitle {
  font-family: var(--eh-heading-font);
  font-weight: 400;
}

.eh-section h2 {
  margin: 8px 0 12px;
  color: var(--eh-green-deep);
  font-size: clamp(2.1rem, 9vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
}

.eh-section-intro > p:not(.eh-kicker),
.eh-venue-list p,
.eh-heritage-copy {
  color: var(--eh-muted);
  font-family: var(--eh-body-font);
  font-size: clamp(0.98rem, 3.7vw, 1.08rem);
  line-height: 1.62;
}

.eh-feature-image,
.eh-gallery figure,
.eh-heritage-grid figure {
  margin: 0;
  overflow: hidden;
  background: transparent;
}

.eh-feature-image img,
.eh-gallery img,
.eh-heritage-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: none;
  opacity: 1;
  mix-blend-mode: normal;
}

.eh-feature-image img {
  height: auto;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  isolation: isolate;
}

.eh-feature-image {
  height: auto;
  border-top: 1px solid var(--eh-line);
  border-bottom: 1px solid var(--eh-line);
}

.eh-pool-image {
  height: auto;
}

.eh-venue-list {
  margin-top: 24px;
  border-top: 1px solid var(--eh-line);
}

.eh-venue-list article {
  padding: 22px 0;
  border-bottom: 1px solid var(--eh-line);
}

.eh-venue-list h3 {
  margin: 0 0 8px;
  color: var(--eh-burgundy);
  font-size: clamp(1.45rem, 5.6vw, 2.15rem);
  line-height: 1.08;
}

.eh-venue-list p {
  margin: 0;
}

.eh-facility-list {
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--eh-line);
  list-style: none;
}

.eh-facility-list li {
  padding: 15px 0;
  border-bottom: 1px solid var(--eh-line);
  color: var(--eh-green-deep);
  font-family: var(--eh-body-font);
  font-size: 0.96rem;
  font-weight: 700;
}

.eh-gallery {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(86vw, 620px);
  gap: 14px;
  overflow-x: auto;
  margin: 6px -20px 28px;
  padding: 0 20px 14px;
  scroll-snap-type: x mandatory;
}

.eh-gallery figure {
  height: clamp(250px, 62vw, 420px);
  scroll-snap-align: center;
}

.eh-stats {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--eh-line);
  border-bottom: 1px solid var(--eh-line);
}

.eh-stats div {
  padding: 20px 0;
}

.eh-stats div + div {
  border-top: 1px solid var(--eh-line);
}

.eh-stats strong {
  display: block;
  color: var(--eh-green-deep);
  font-family: var(--eh-heading-font);
  font-size: clamp(2rem, 8vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
}

.eh-stats span {
  display: block;
  margin-top: 6px;
  color: var(--eh-muted);
  font-family: var(--eh-body-font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eh-event-details {
  margin-top: 22px;
  border-bottom: 1px solid var(--eh-line);
  font-family: var(--eh-body-font);
}

.eh-event-details summary {
  cursor: pointer;
  padding: 18px 0;
  color: var(--eh-green-deep);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.eh-event-details ul {
  margin: 0;
  padding: 0 0 20px;
  list-style: none;
}

.eh-event-details li {
  padding: 9px 0;
  border-top: 1px solid rgba(29, 27, 23, 0.09);
  color: var(--eh-muted);
  line-height: 1.42;
}

.eh-heritage-section {
  background:
    linear-gradient(180deg, rgba(103, 45, 45, 0.06), transparent 220px),
    var(--eh-cream);
}

.eh-subtitle {
  margin: -2px 0 0;
  color: var(--eh-burgundy);
  font-size: clamp(1.35rem, 5vw, 2rem);
  line-height: 1.14;
}

.eh-heritage-grid {
  display: grid;
  gap: 14px;
}

.eh-heritage-grid figure {
  height: clamp(255px, 64vw, 460px);
}

.eh-heritage-copy {
  max-width: 780px;
  margin: 24px 0 0;
  color: #4e443b;
}

.eh-destination-list {
  border-top: 1px solid var(--eh-line);
}

.eh-destination-list p {
  margin: 0;
  padding: 16px 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  border-bottom: 1px solid var(--eh-line);
  color: var(--eh-green-deep);
  font-family: var(--eh-body-font);
  line-height: 1.35;
}

.eh-destination-list strong {
  color: var(--eh-copper);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.experience-around-layout {
  display: grid;
  gap: 34px;
}

.experience-around-list {
  min-width: 0;
}

.experience-location-panel {
  min-width: 0;
}

.experience-location-label {
  margin: 0 0 4px;
  color: #111;
  font-family: var(--eh-heading-font);
  font-size: clamp(2.35rem, 4.8vw, 3.35rem);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.experience-location-map {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 4px 0 0;
}

.experience-location-map__image {
  display: block;
  width: 100%;
  height: auto;
}

.experience-location-map__marker {
  position: absolute;
  z-index: 1;
  max-width: 25%;
  color: #24211e;
  font-family: var(--eh-body-font);
  font-size: clamp(0.54rem, 1.05vw, 0.78rem);
  font-weight: 500;
  line-height: 1.08;
  pointer-events: none;
  text-wrap: balance;
}

.experience-location-map__marker small {
  font-size: 0.88em;
}

.experience-location-map__marker--hotel {
  max-width: 24%;
  color: var(--eh-burgundy);
  font-size: clamp(0.62rem, 1.2vw, 0.88rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  left: 62.5%;
  top: 51.8%;
  transform: translate(8%, -50%);
}

.experience-location-map__marker--secondary {
  color: rgba(36, 33, 30, 0.86);
  font-size: clamp(0.46rem, 0.92vw, 0.68rem);
  font-weight: 500;
}

.experience-location-map__marker--swayambhunath {
  left: 3.5%;
  top: 12.5%;
  transform: translateY(-10%);
}

.experience-location-map__marker--kathmandu {
  left: 29.6%;
  top: 13%;
  transform: translate(0, -6%);
}

.experience-location-map__marker--pashupatinath {
  left: 82.8%;
  top: 11.8%;
  transform: translate(4%, 0);
}

.experience-location-map__marker--airport {
  left: 84.2%;
  top: 22.6%;
  transform: translate(4%, 0);
}

.experience-location-map__marker--patan {
  left: 66.2%;
  top: 84.4%;
  transform: translate(-50%, 0);
}

.experience-location-map__marker--cafe {
  left: 79.3%;
  top: 76.9%;
  transform: translate(5%, 0);
}

.experience-location-map__marker--museum {
  left: 80.3%;
  top: 91%;
  transform: translate(5%, 0);
}

.experience-location-map__marker--bangla {
  left: 72.6%;
  top: 67.6%;
  transform: translate(5%, -50%);
}

.experience-location-map__marker--maithighar {
  left: 47.2%;
  top: 10.8%;
  transform: translate(-45%, -20%);
  text-align: center;
}

.experience-location-map__marker--kupandole {
  left: 51.2%;
  top: 53.8%;
  transform: translate(-50%, -50%) rotate(67deg);
  transform-origin: center;
}

.experience-location-map__marker--ashok {
  left: 45.8%;
  top: 76.8%;
  transform: translate(-100%, -50%) rotate(-72deg);
  transform-origin: center;
  text-align: center;
}

.experience-location-map__marker--shukra {
  left: 54.7%;
  top: 71.2%;
  transform: translate(-24%, -50%) scale(0.66);
  text-align: center;
}

.experience-location-map__marker--teku {
  left: 20%;
  top: 21.6%;
  transform: translate(-5%, -50%);
}

.experience-location-map__marker--thapathali {
  left: 42.7%;
  top: 30%;
  transform: translate(0, -50%);
}

.experience-location-map__marker--tinkune {
  left: 75%;
  top: 32.8%;
  transform: translate(-50%, -50%);
}

.experience-location-map__marker--jwagal {
  left: 56.5%;
  top: 49.2%;
  transform: translate(4%, -50%);
}

.experience-location-map__marker--kandevatasthan {
  left: 40.4%;
  top: 44.5%;
  transform: translate(-100%, -50%);
}

.experience-location-map__marker--maitidevi {
  left: 74.2%;
  top: 14.9%;
  transform: translate(-50%, -2%);
  text-align: center;
}

.experience-location-map__marker--koteshwor {
  left: 76.8%;
  top: 38.7%;
  transform: translate(-16%, -50%);
}

.experience-location-map__marker--patandhoka {
  left: 63.7%;
  top: 62.2%;
  transform: translate(0, -50%);
}

.experience-location-map__marker--jawalakhel {
  left: 36.5%;
  top: 85.5%;
  transform: translate(-100%, -50%);
}

.experience-location-map__marker--satyamohan {
  left: 55.1%;
  top: 82.4%;
  transform: translate(-14%, -50%) rotate(9deg);
  transform-origin: left center;
}

.experience-location-map__north {
  position: absolute;
  left: 79.2%;
  top: 4.4%;
  z-index: 2;
  width: clamp(24px, 4.6vw, 44px);
  height: clamp(32px, 6vw, 58px);
  pointer-events: none;
}

.experience-location-map__north::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: clamp(13px, 2.2vw, 21px) solid transparent;
  border-right: clamp(13px, 2.2vw, 21px) solid transparent;
  border-bottom: clamp(18px, 3vw, 30px) solid #111;
}

.experience-location-map__north span {
  position: absolute;
  left: 50%;
  top: clamp(16px, 2.8vw, 27px);
  transform: translateX(-50%);
  display: grid;
  width: clamp(17px, 3vw, 28px);
  height: clamp(17px, 3vw, 28px);
  place-items: center;
  background: #111;
  color: #fff;
  font-family: var(--eh-body-font);
  font-size: clamp(0.62rem, 1.5vw, 1rem);
  font-weight: 800;
  line-height: 1;
}

.eh-brand-ending {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 20px 20px 70px;
  text-align: center;
}

.eh-brand-ending span {
  display: block;
  width: 90px;
  margin: 0 auto 28px;
  border-top: 1px solid var(--eh-line);
}

.eh-brand-ending img {
  width: min(210px, 56vw);
  height: auto;
}

@media (prefers-reduced-motion: no-preference) {
  body.experience-hotel-page {
    scroll-behavior: smooth;
  }
}

@media (min-width: 700px) {
  .eh-hero-copy {
    padding-right: 46px;
    padding-left: 46px;
  }

  .eh-section {
    padding: 84px 36px;
  }

  .eh-soft-section {
    padding-right: max(36px, calc((100vw - 980px) / 2));
    padding-left: max(36px, calc((100vw - 980px) / 2));
  }

  .eh-venue-list article {
    display: grid;
    grid-template-columns: minmax(180px, 0.38fr) 1fr;
    gap: 34px;
  }

  .eh-facility-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 42px;
  }

  .eh-stats {
    grid-template-columns: 1fr 1fr;
  }

  .eh-stats div + div {
    border-top: 0;
    border-left: 1px solid var(--eh-line);
    padding-left: 28px;
  }

  .eh-heritage-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .experience-around-layout {
    grid-template-columns: 0.78fr 1.22fr;
    gap: 36px;
    align-items: start;
  }

  .experience-location-label {
    margin-top: 2px;
  }
}

@media (min-width: 1040px) {
  .eh-hero {
    min-height: 760px;
  }

  .eh-hero-copy {
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .experience-around-layout {
    gap: 28px;
  }

  .experience-location-map {
    max-width: 100%;
    padding: 6px;
  }

  .experience-location-map__marker {
    max-width: 32%;
    font-size: clamp(0.46rem, 2.15vw, 0.62rem);
    line-height: 1.05;
  }

  .experience-location-map__marker--hotel {
    max-width: 30%;
    font-size: clamp(0.56rem, 2.7vw, 0.72rem);
    left: 62.5%;
    top: 51.8%;
  }

  .experience-location-map__marker--mobile-hidden {
    display: none;
  }

  .experience-location-map__marker--swayambhunath {
    left: 3.5%;
    top: 12.5%;
  }

  .experience-location-map__marker--kathmandu {
    left: 29.6%;
    top: 13%;
  }

  .experience-location-map__marker--pashupatinath {
    left: 82.8%;
    top: 11.8%;
  }

  .experience-location-map__marker--airport {
    left: 84.2%;
    top: 22.6%;
  }

  .experience-location-map__marker--patan {
    left: 66.2%;
    top: 84.4%;
  }

  .experience-location-map__marker--cafe {
    left: 79.3%;
    top: 76.9%;
  }

  .experience-location-map__north {
    left: 79.2%;
    top: 4.4%;
    transform: scale(0.78);
    transform-origin: top center;
  }

  .experience-location-map__marker--museum,
  .experience-location-map__marker--bangla {
    display: none;
  }
}

@media (min-width: 700px) {
  .phone-shell {
    padding-block: 32px;
  }

  .folder-cover {
    max-width: 590px;
  }

  .typed-page {
    padding-inline: 44px;
  }

  .service-page {
    padding-inline: 54px;
  }

  .dining-page {
    padding-inline: 46px;
  }

  .telephone-page {
    padding-inline: 64px;
  }
}

@media (max-width: 420px) {
  .service-page {
    padding: 58px 30px 62px;
    min-height: 850px;
  }

  .service-logo {
    margin-bottom: 58px;
  }

  .service-title {
    letter-spacing: -0.07em;
  }

  .service-number-table,
  .room-dialing,
  .emergency-title,
  .service-cover p {
    width: 76%;
  }

  .dining-page {
    min-height: 860px;
    padding: 72px 28px 62px;
  }

  .dining-section-head,
  .dining-item {
    grid-template-columns: minmax(0, 1fr) 72px;
    gap: 10px;
  }

  .telephone-page {
    min-height: 860px;
    padding: 58px 34px 62px;
  }

  .telephone-cover-word {
    left: 34px;
    top: 68px;
  }

  .telephone-cover-icon {
    left: 106px;
    top: 305px;
    width: 335px;
    transform: none;
    transform-origin: top left;
  }

  .telephone-cover h1 {
    left: 96px;
    bottom: 76px;
  }

  .telephone-services-table {
    width: 82%;
  }

  .telephone-emergency {
    margin-top: 92px;
    transform: scaleX(0.86);
    transform-origin: left center;
  }

  .telephone-table-header,
  .telephone-country-head,
  .telephone-city-row {
    grid-template-columns: 1fr 58px 58px 1.05fr;
    gap: 6px;
  }

  .domestic-grid {
    gap: 24px;
  }

  .domestic-column {
    gap: 13px;
  }

  .domestic-column > div {
    grid-template-columns: minmax(0, 1fr) 42px;
    gap: 8px;
  }
}

/* Service Directory and Telephone Directory digital guide pages */

body.service-directory-page,
body.telephone-directory-page {
  --guide-forest: #07382f;
  --guide-ink: #17342d;
  --guide-paper: #fbf7ee;
  --guide-sand: #eadcc7;
  --guide-copper: #a56847;
  --guide-line: #d8ccba;
  --guide-soft-green: #e7eee9;
  --guide-safety: #8d3f3f;
  --guide-header: #fbf7ee;
  --guide-body: "Avenir Next", "Segoe UI", Arial, Helvetica, sans-serif;
  --guide-display: "Arial Black", "Avenir Next", "Segoe UI", Arial, sans-serif;
  --guide-script: "Monotype Corsiva", "Brush Script MT", cursive;
  background: var(--guide-paper);
  color: var(--guide-ink);
  font-family: var(--guide-body);
}

body.service-directory-page .document-topbar,
body.telephone-directory-page .document-topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  width: 100%;
  min-height: 58px;
  padding: max(8px, env(safe-area-inset-top)) 14px 8px;
  color: var(--guide-ink);
  background: var(--guide-header);
  border-bottom: 1px solid rgba(165, 104, 71, 0.22);
  box-shadow: 0 8px 18px rgba(46, 28, 20, 0.08);
  backdrop-filter: blur(10px);
}

body.service-directory-page .document-stage:first-of-type,
body.telephone-directory-page .document-stage:first-of-type {
  padding-top: calc(58px + env(safe-area-inset-top));
}

body.service-directory-page .document-topbar a,
body.telephone-directory-page .document-topbar a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(165, 104, 71, 0.34);
  background: rgba(165, 104, 71, 0.08);
  color: var(--guide-copper);
}

body.service-directory-page .document-topbar img,
body.telephone-directory-page .document-topbar img {
  max-height: 38px;
  filter: none;
}

body.service-directory-page .document-topbar span,
body.telephone-directory-page .document-topbar span {
  font-family: var(--guide-body);
  font-size: clamp(0.64rem, 2.2vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--guide-ink);
}

body.service-directory-page .document-stage,
body.telephone-directory-page .document-stage {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: var(--guide-paper);
}

body.service-directory-page .guide-shell,
body.telephone-directory-page .guide-shell {
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 58px) clamp(16px, 4vw, 46px) clamp(54px, 7vw, 86px);
}

body.service-directory-page .guide-masthead,
body.telephone-directory-page .guide-masthead {
  padding: clamp(12px, 3vw, 28px) 0 clamp(24px, 5vw, 44px);
  border-bottom: 1px solid var(--guide-line);
}

body.service-directory-page .guide-masthead__eyebrow,
body.telephone-directory-page .guide-masthead__eyebrow,
body.service-directory-page .guide-section-head p,
body.telephone-directory-page .guide-section-head p,
body.telephone-directory-page .telephone-search label {
  margin: 0 0 10px;
  color: var(--guide-copper);
  font-family: var(--guide-body);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

body.service-directory-page .guide-masthead h1,
body.telephone-directory-page .guide-masthead h1 {
  margin: 0;
  color: var(--guide-forest);
  font-family: var(--guide-display);
  font-size: clamp(2.05rem, 8vw, 3.45rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

body.service-directory-page .guide-masthead__intro,
body.telephone-directory-page .guide-masthead__intro {
  max-width: 660px;
  margin: 16px 0 0;
  color: rgba(23, 52, 45, 0.72);
  font-size: clamp(0.96rem, 2.6vw, 1.1rem);
  line-height: 1.65;
}

body.service-directory-page .guide-section-head,
body.telephone-directory-page .guide-section-head {
  margin: 0 0 18px;
}

body.service-directory-page .guide-section-head h2,
body.telephone-directory-page .guide-section-head h2 {
  margin: 0;
  color: var(--guide-forest);
  font-family: var(--guide-display);
  font-size: clamp(1.42rem, 5vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

body.service-directory-page .service-quick,
body.service-directory-page .service-important,
body.service-directory-page .service-letter-section,
body.service-directory-page .service-safety-chapter,
body.telephone-directory-page .telephone-guest-extensions,
body.telephone-directory-page .telephone-idd-guide,
body.telephone-directory-page .telephone-international,
body.telephone-directory-page .telephone-domestic {
  padding: clamp(28px, 5vw, 50px) 0;
  border-bottom: 1px solid var(--guide-line);
}

body.service-directory-page .guide-number-list,
body.telephone-directory-page .guide-number-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--guide-line);
}

body.service-directory-page .guide-number-list > div,
body.telephone-directory-page .guide-number-list > div,
body.telephone-directory-page .telephone-domestic-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 18px;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid rgba(216, 204, 186, 0.72);
  font-size: clamp(0.93rem, 2.6vw, 1rem);
  line-height: 1.4;
}

body.service-directory-page .guide-number-list b,
body.telephone-directory-page .guide-number-list b,
body.telephone-directory-page .telephone-domestic-list b {
  color: var(--guide-copper);
  font-weight: 850;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

body.service-directory-page .service-important {
  display: grid;
  gap: 22px;
}

body.service-directory-page .service-important .guide-section-head {
  margin-bottom: 0;
}

body.service-directory-page .service-important__room {
  padding: 20px 0;
  border-top: 1px solid var(--guide-line);
}

body.service-directory-page .service-room-dialing,
body.service-directory-page .service-emergency {
  padding: 20px 0;
  border-top: 1px solid var(--guide-line);
}

body.service-directory-page .service-emergency {
  border-left: 3px solid var(--guide-safety);
  padding-left: 18px;
}

body.service-directory-page .service-emergency h2,
body.service-directory-page .service-emergency h3 {
  margin: 0 0 12px;
  color: var(--guide-safety);
  font-family: var(--guide-display);
  font-size: clamp(1.45rem, 5vw, 2.15rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

body.service-directory-page .service-room-dialing p,
body.service-directory-page .service-important__room,
body.service-directory-page .service-emergency p,
body.service-directory-page .guide-entry p,
body.telephone-directory-page .telephone-room-dial-guide,
body.telephone-directory-page .telephone-emergency-guide,
body.telephone-directory-page .telephone-room-dial-guide p,
body.telephone-directory-page .telephone-emergency-guide p,
body.telephone-directory-page .telephone-idd-guide p {
  margin: 0 0 10px;
  color: rgba(23, 52, 45, 0.86);
  font-size: clamp(0.92rem, 2.75vw, 1.03rem);
  line-height: 1.58;
  white-space: pre-line;
}

body.service-directory-page .service-az-nav,
body.telephone-directory-page .telephone-guide-nav {
  position: sticky;
  top: 58px;
  z-index: 20;
  display: flex;
  gap: 8px;
  margin-inline: calc(clamp(16px, 4vw, 46px) * -1);
  padding: 10px clamp(16px, 4vw, 46px);
  overflow-x: auto;
  background: rgba(251, 247, 238, 0.94);
  border-bottom: 1px solid var(--guide-line);
  -webkit-overflow-scrolling: touch;
  backdrop-filter: blur(10px);
}

body.service-directory-page .service-az-nav a,
body.telephone-directory-page .telephone-guide-nav a {
  flex: 0 0 auto;
  min-width: 38px;
  padding: 8px 12px;
  border: 1px solid var(--guide-line);
  border-radius: 999px;
  color: var(--guide-forest);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.03em;
  text-decoration: none;
}

body.service-directory-page .service-az-nav a:focus-visible,
body.telephone-directory-page .telephone-guide-nav a:focus-visible,
body.telephone-directory-page .telephone-search input:focus-visible,
body.telephone-directory-page .telephone-search button:focus-visible,
body.telephone-directory-page .telephone-country-details summary:focus-visible {
  outline: 3px solid rgba(165, 104, 71, 0.38);
  outline-offset: 3px;
}

body.service-directory-page .service-letter-section {
  position: relative;
  scroll-margin-top: 124px;
}

body.service-directory-page .service-letter-section__letter {
  position: absolute;
  top: 18px;
  right: 0;
  z-index: 0;
  color: rgba(7, 56, 47, 0.055);
  font-family: var(--guide-script);
  font-size: clamp(4.4rem, 22vw, 11rem);
  line-height: 0.8;
  pointer-events: none;
}

body.service-directory-page .guide-entry {
  position: relative;
  z-index: 1;
  padding: 18px 0;
  border-bottom: 1px solid rgba(216, 204, 186, 0.64);
}

body.service-directory-page .guide-entry:last-child {
  border-bottom: 0;
}

body.service-directory-page .guide-entry h3 {
  margin: 0 0 8px;
  color: var(--guide-forest);
  font-family: var(--guide-display);
  font-size: clamp(1rem, 3.4vw, 1.15rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

body.service-directory-page .guide-entry ul,
body.telephone-directory-page .telephone-idd-guide ol {
  margin: 8px 0 0;
  padding-left: 1.2rem;
  color: rgba(23, 52, 45, 0.86);
  font-size: clamp(0.92rem, 2.75vw, 1.03rem);
  line-height: 1.58;
}

body.service-directory-page .service-guide-entry__dial {
  color: var(--guide-copper);
  font-weight: 850;
}

body.service-directory-page .service-safety-chapter {
  padding: clamp(30px, 5vw, 52px) clamp(16px, 4vw, 34px);
  margin: clamp(22px, 4vw, 36px) 0;
  border: 1px solid rgba(141, 63, 63, 0.2);
  border-left: 4px solid var(--guide-safety);
  background: rgba(141, 63, 63, 0.035);
}

body.service-directory-page .service-safety-chapter .guide-entry h3 {
  color: var(--guide-safety);
}

body.service-directory-page .service-lounges-section .guide-section-head {
  position: relative;
  z-index: 1;
}

body.telephone-directory-page .telephone-cover-guide {
  display: grid;
  gap: 28px;
  align-items: center;
  min-height: clamp(420px, 82vh, 640px);
  padding: clamp(34px, 8vw, 74px) 0 clamp(28px, 5vw, 54px);
  border-bottom: 1px solid var(--guide-line);
}

body.telephone-directory-page .telephone-cover-guide__text {
  display: grid;
  gap: 10px;
}

body.telephone-directory-page .telephone-cover-guide__word {
  color: var(--guide-forest);
  font-family: var(--guide-display);
  font-size: clamp(3.1rem, 18vw, 7.8rem);
  font-weight: 900;
  line-height: 0.85;
  letter-spacing: -0.08em;
}

body.telephone-directory-page .telephone-cover-guide__script {
  color: #111;
  font-family: var(--guide-script);
  font-size: clamp(3.05rem, 14vw, 7.1rem);
  line-height: 0.9;
}

body.telephone-directory-page .telephone-cover-guide__image {
  width: min(72vw, 370px);
  justify-self: center;
  opacity: 0.96;
}

body.telephone-directory-page .telephone-guest-extensions,
body.telephone-directory-page .telephone-international,
body.telephone-directory-page .telephone-domestic,
body.telephone-directory-page .telephone-idd-guide {
  scroll-margin-top: 124px;
}

body.telephone-directory-page .telephone-room-dial-guide,
body.telephone-directory-page .telephone-emergency-guide {
  margin-top: 24px;
  padding: 18px 0;
  border-top: 1px solid var(--guide-line);
}

body.telephone-directory-page .telephone-emergency-guide {
  border-left: 3px solid var(--guide-safety);
  padding-left: 18px;
}

body.telephone-directory-page .telephone-emergency-guide h2,
body.telephone-directory-page .telephone-emergency-guide h3,
body.telephone-directory-page .telephone-idd-guide h3,
body.telephone-directory-page .telephone-idd-guide h2 {
  margin: 0 0 12px;
  color: var(--guide-forest);
  font-family: var(--guide-display);
  font-size: clamp(1.4rem, 5vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -0.035em;
}

body.telephone-directory-page .telephone-emergency-guide h2 {
  color: var(--guide-safety);
}

body.telephone-directory-page .telephone-search {
  margin: 22px 0 18px;
}

body.telephone-directory-page .telephone-search label {
  display: block;
  margin-bottom: 0;
}

body.telephone-directory-page .telephone-search__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  margin-top: 10px;
}

body.telephone-directory-page .telephone-search input,
body.telephone-directory-page .telephone-search button {
  min-height: 44px;
  border: 1px solid var(--guide-line);
  border-radius: 999px;
  font-family: var(--guide-body);
  font-size: 0.95rem;
}

body.telephone-directory-page .telephone-search input {
  width: 100%;
  padding: 0 16px;
  background: #fffdf8;
  color: var(--guide-ink);
}

body.telephone-directory-page .telephone-search button {
  padding: 0 18px;
  background: var(--guide-copper);
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

body.telephone-directory-page .telephone-country-details-list {
  display: grid;
  gap: 12px;
}

body.telephone-directory-page .telephone-country-details {
  border-top: 1px solid var(--guide-line);
  padding: 0;
}

body.telephone-directory-page .telephone-country-details[hidden] {
  display: none;
}

body.telephone-directory-page .telephone-country-details summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content minmax(92px, auto);
  gap: 14px;
  align-items: baseline;
  padding: 16px 0 12px;
  color: var(--guide-ink);
  cursor: pointer;
  list-style: none;
}

body.telephone-directory-page .telephone-country-details summary::-webkit-details-marker {
  display: none;
}

body.telephone-directory-page .telephone-country-details summary strong {
  color: var(--guide-forest);
  font-family: var(--guide-display);
  font-size: clamp(1rem, 3.5vw, 1.18rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

body.telephone-directory-page .telephone-country-details__code,
body.telephone-directory-page .telephone-country-details__time {
  color: var(--guide-copper);
  font-weight: 850;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

body.telephone-directory-page .telephone-city-list {
  display: grid;
  gap: 0;
  padding: 0 0 14px;
}

body.telephone-directory-page .telephone-city-list > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 14px;
  padding: 7px 0;
  color: rgba(23, 52, 45, 0.84);
  font-size: clamp(0.9rem, 2.6vw, 0.98rem);
  line-height: 1.35;
}

body.telephone-directory-page .telephone-city-list b {
  color: var(--guide-ink);
  font-weight: 750;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

body.telephone-directory-page .telephone-domestic-list {
  display: grid;
  gap: 0 42px;
}

@media (min-width: 760px) {
  body.service-directory-page .service-important {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: start;
  }

  body.service-directory-page .service-important .guide-section-head {
    grid-column: 1 / -1;
  }

  body.service-directory-page .guide-number-list.service-quick__list,
  body.telephone-directory-page .guide-number-list.telephone-extension-list {
    grid-template-columns: 1fr 1fr;
    column-gap: 38px;
  }

  body.telephone-directory-page .telephone-cover-guide {
    grid-template-columns: 1fr 0.78fr;
  }

  body.telephone-directory-page .telephone-cover-guide__image {
    width: min(34vw, 420px);
  }

  body.telephone-directory-page .telephone-domestic-list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  body.service-directory-page .guide-shell,
  body.telephone-directory-page .guide-shell {
    padding-inline: 16px;
  }

  body.telephone-directory-page .telephone-country-details summary {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }

  body.telephone-directory-page .telephone-country-details__code,
  body.telephone-directory-page .telephone-country-details__time {
    white-space: normal;
  }

  body.telephone-directory-page .telephone-search__row {
    grid-template-columns: 1fr;
  }

  body.telephone-directory-page .telephone-search button {
    justify-self: start;
  }
}

/* Directory pages: align Service/Telephone UI with In-Room Dining */

body.service-directory-page,
body.telephone-directory-page {
  --guide-forest: #07382f;
  --guide-ink: #17342d;
  --guide-paper: #fbf7ee;
  --guide-sand: #eadcc7;
  --guide-copper: #a56847;
  --guide-line: #d8ccba;
  --guide-soft-green: #e7eee9;
  --guide-safety: #8d3f3f;
  --guide-header: #fbf7ee;
  --guide-body: "Avenir Next", "Segoe UI", Arial, Helvetica, sans-serif;
  --guide-display: Georgia, "Times New Roman", serif;
  background: var(--guide-paper);
}

body.service-directory-page .guide-shell,
body.telephone-directory-page .guide-shell {
  width: 100%;
  max-width: none;
  min-height: 100svh;
  margin: 0;
  padding: 30px max(16px, env(safe-area-inset-right)) 64px max(16px, env(safe-area-inset-left));
  background:
    radial-gradient(circle at 100% 0%, rgba(165, 104, 71, 0.08), transparent 26rem),
    linear-gradient(180deg, var(--guide-paper) 0%, #f5ecdf 100%);
}

body.service-directory-page .guide-masthead,
body.service-directory-page .service-quick,
body.service-directory-page .service-important,
body.service-directory-page .service-az-nav,
body.service-directory-page .service-letter-section,
body.service-directory-page .service-safety-chapter,
body.telephone-directory-page .telephone-cover-guide,
body.telephone-directory-page .telephone-guide-nav,
body.telephone-directory-page .telephone-guest-extensions,
body.telephone-directory-page .telephone-international,
body.telephone-directory-page .telephone-domestic {
  width: min(100%, 1040px);
  margin-right: auto;
  margin-left: auto;
}

body.service-directory-page .guide-masthead {
  padding: 18px 0 22px;
  border-bottom: 0;
  text-align: center;
}

body.service-directory-page .guide-masthead::after,
body.telephone-directory-page .telephone-cover-guide::after {
  content: "";
  display: block;
  width: min(180px, 42vw);
  margin: 20px auto 0;
  border-top: 1px solid var(--guide-line);
}

body.service-directory-page .guide-masthead__eyebrow,
body.telephone-directory-page .guide-section-head p,
body.service-directory-page .guide-section-head p,
body.telephone-directory-page .telephone-search label {
  color: var(--guide-copper);
  font-family: var(--guide-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

body.service-directory-page .guide-masthead h1 {
  color: var(--guide-forest);
  font-family: var(--guide-display);
  font-size: clamp(2.125rem, 10vw, 3.625rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

body.service-directory-page .guide-masthead__intro {
  max-width: 560px;
  margin: 14px auto 0;
  color: rgba(23, 52, 45, 0.74);
  font-family: var(--guide-body);
  font-size: clamp(0.86rem, 3.25vw, 1rem);
  line-height: 1.5;
}

body.service-directory-page .service-az-nav,
body.telephone-directory-page .telephone-guide-nav {
  top: calc(58px + env(safe-area-inset-top));
  justify-content: flex-start;
  margin-top: 0;
  margin-bottom: 26px;
  margin-inline: auto;
  padding: 12px 0;
  border-bottom: 0;
  background:
    linear-gradient(90deg, var(--guide-paper), rgba(251, 247, 238, 0.92) 12%, rgba(251, 247, 238, 0.92) 88%, var(--guide-paper));
  backdrop-filter: blur(8px);
  scrollbar-width: none;
}

body.service-directory-page .service-az-nav::-webkit-scrollbar,
body.telephone-directory-page .telephone-guide-nav::-webkit-scrollbar {
  display: none;
}

body.service-directory-page .service-az-nav a,
body.telephone-directory-page .telephone-guide-nav a {
  min-width: auto;
  padding: 8px 14px;
  border: 1px solid var(--guide-line);
  border-radius: 999px;
  color: var(--guide-ink);
  background: rgba(255, 255, 255, 0.28);
  font-family: var(--guide-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

body.service-directory-page .service-quick,
body.service-directory-page .service-important,
body.service-directory-page .service-letter-section,
body.service-directory-page .service-safety-chapter,
body.telephone-directory-page .telephone-guest-extensions,
body.telephone-directory-page .telephone-international,
body.telephone-directory-page .telephone-domestic {
  margin-bottom: 28px;
  padding: 30px 0 36px;
  border-top: 1px solid var(--guide-line);
  border-bottom: 0;
}

body.service-directory-page .guide-section-head,
body.telephone-directory-page .guide-section-head {
  margin-bottom: 22px;
}

body.service-directory-page .guide-section-head h2,
body.telephone-directory-page .guide-section-head h2 {
  color: var(--guide-forest);
  font-family: var(--guide-display);
  font-size: clamp(1.75rem, 7.2vw, 2.45rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.035em;
}

body.service-directory-page .guide-number-list,
body.telephone-directory-page .guide-number-list,
body.telephone-directory-page .telephone-domestic-list {
  border-top: 1px solid rgba(216, 204, 186, 0.72);
}

body.service-directory-page .guide-number-list > div,
body.telephone-directory-page .guide-number-list > div,
body.telephone-directory-page .telephone-domestic-list > div {
  padding: 11px 0;
  border-bottom: 1px solid rgba(216, 204, 186, 0.72);
  font-family: var(--guide-body);
  font-size: clamp(0.9rem, 3.35vw, 1rem);
  line-height: 1.4;
}

body.service-directory-page .guide-number-list b,
body.telephone-directory-page .guide-number-list b,
body.telephone-directory-page .telephone-domestic-list b,
body.telephone-directory-page .telephone-country-details__code,
body.telephone-directory-page .telephone-country-details__time {
  color: var(--guide-copper);
  font-family: var(--guide-body);
  font-weight: 800;
}

body.service-directory-page .service-letter-section {
  scroll-margin-top: 118px;
}

body.service-directory-page .service-letter-section__letter {
  display: none;
}

body.service-directory-page .guide-entry {
  padding: 14px 0;
  border-bottom: 1px solid rgba(216, 204, 186, 0.62);
}

body.service-directory-page .guide-entry h3 {
  margin-bottom: 5px;
  color: #152e29;
  font-family: var(--guide-body);
  font-size: clamp(0.9rem, 3.65vw, 1.02rem);
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0;
}

body.service-directory-page .guide-entry p,
body.service-directory-page .guide-entry ul,
body.service-directory-page .service-important__room,
body.service-directory-page .service-emergency p,
body.telephone-directory-page .telephone-room-dial-guide,
body.telephone-directory-page .telephone-emergency-guide,
body.telephone-directory-page .telephone-idd-guide p,
body.telephone-directory-page .telephone-idd-guide ol {
  color: rgba(23, 52, 45, 0.76);
  font-family: var(--guide-body);
  font-size: clamp(0.8rem, 3.35vw, 0.94rem);
  font-weight: 400;
  line-height: 1.45;
}

body.service-directory-page .service-guide-entry__dial {
  margin-top: 5px;
  color: var(--guide-copper);
  font-weight: 800;
}

body.service-directory-page .service-safety-chapter {
  border-right: 0;
  border-bottom: 0;
  border-left: 3px solid rgba(141, 63, 63, 0.45);
  background: rgba(141, 63, 63, 0.035);
}

body.service-directory-page .service-emergency h3,
body.telephone-directory-page .telephone-emergency-guide h3,
body.telephone-directory-page .telephone-idd-guide h3 {
  font-family: var(--guide-display);
  font-weight: 400;
}

body.telephone-directory-page .telephone-cover-guide {
  display: grid;
  min-height: auto;
  padding: 18px 0 22px;
  border-bottom: 0;
  text-align: center;
}

body.telephone-directory-page .telephone-cover-guide__text {
  order: 2;
}

body.telephone-directory-page .telephone-cover-guide__word {
  color: var(--guide-forest);
  font-family: var(--guide-display);
  font-size: clamp(2.125rem, 10vw, 3.625rem);
  font-weight: 400;
  line-height: 0.96;
  letter-spacing: -0.04em;
}

body.telephone-directory-page .telephone-cover-guide__script {
  color: var(--guide-forest);
  font-family: var(--guide-display);
  font-size: clamp(2.125rem, 10vw, 3.625rem);
  font-weight: 400;
  line-height: 0.96;
}

body.telephone-directory-page .telephone-cover-guide__image {
  order: 1;
  width: min(135px, 34vw);
  margin-bottom: 14px;
  opacity: 0.9;
}

body.telephone-directory-page .telephone-country-details summary {
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 6px 14px;
  padding: 15px 0 11px;
}

body.telephone-directory-page .telephone-country-details__time {
  grid-column: 1 / -1;
  font-size: clamp(0.78rem, 3.1vw, 0.92rem);
}

body.telephone-directory-page .telephone-country-details summary strong {
  color: #152e29;
  font-family: var(--guide-body);
  font-size: clamp(0.92rem, 3.65vw, 1.02rem);
  font-weight: 800;
  letter-spacing: 0;
}

body.telephone-directory-page .telephone-city-list > div {
  font-size: clamp(0.78rem, 3.25vw, 0.92rem);
}

@media (min-width: 700px) {
  body.service-directory-page .guide-shell,
  body.telephone-directory-page .guide-shell {
    padding: 44px 32px 86px;
  }

  body.service-directory-page .guide-masthead,
  body.telephone-directory-page .telephone-cover-guide {
    padding-top: 26px;
    padding-bottom: 30px;
  }

  body.service-directory-page .service-az-nav,
  body.telephone-directory-page .telephone-guide-nav {
    justify-content: center;
    margin-bottom: 34px;
  }

  body.service-directory-page .service-quick,
  body.service-directory-page .service-important,
  body.service-directory-page .service-letter-section,
  body.service-directory-page .service-safety-chapter,
  body.telephone-directory-page .telephone-guest-extensions,
  body.telephone-directory-page .telephone-international,
  body.telephone-directory-page .telephone-domestic {
    padding: 44px 24px 50px;
  }

  body.telephone-directory-page .telephone-country-details summary {
    grid-template-columns: minmax(0, 1fr) max-content minmax(120px, auto);
  }

  body.telephone-directory-page .telephone-country-details__time {
    grid-column: auto;
  }
}

@media (min-width: 1024px) {
  body.service-directory-page .guide-shell,
  body.telephone-directory-page .guide-shell {
    padding-top: 56px;
  }

  body.service-directory-page .service-quick,
  body.service-directory-page .service-important,
  body.service-directory-page .service-letter-section,
  body.service-directory-page .service-safety-chapter,
  body.telephone-directory-page .telephone-guest-extensions,
  body.telephone-directory-page .telephone-international,
  body.telephone-directory-page .telephone-domestic {
    padding-right: 54px;
    padding-left: 54px;
  }
}

@media (max-width: 380px) {
  body.service-directory-page .guide-number-list > div,
  body.telephone-directory-page .guide-number-list > div,
  body.telephone-directory-page .telephone-domestic-list > div {
    gap: 10px;
    font-size: 0.86rem;
  }
}

/* Mobile correction for combined Service & Telephone guide */

html:has(body.service-directory-page),
html:has(body.telephone-directory-page),
body.service-directory-page,
body.telephone-directory-page {
  width: 100%;
  min-width: 100%;
  overflow-x: hidden;
  background: var(--guide-paper) !important;
}

body.service-directory-page.document-page,
body.telephone-directory-page.document-page {
  background: var(--guide-paper) !important;
}

body.service-directory-page .document-topbar,
body.telephone-directory-page .document-topbar,
body.service-directory-page .document-stage,
body.telephone-directory-page .document-stage,
body.service-directory-page .guide-shell,
body.telephone-directory-page .guide-shell {
  width: 100% !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
}

body.service-directory-page .document-topbar,
body.telephone-directory-page .document-topbar {
  grid-template-columns: 36px minmax(56px, 96px) minmax(0, 1fr);
  gap: 8px;
  padding-right: max(10px, env(safe-area-inset-right));
  padding-left: max(10px, env(safe-area-inset-left));
  box-shadow:
    100vw 0 0 var(--guide-header),
    -100vw 0 0 var(--guide-header),
    0 1px 0 rgba(255, 255, 255, 0.08);
}

body.service-directory-page .document-topbar a,
body.telephone-directory-page .document-topbar a {
  width: 32px;
  height: 32px;
  font-size: 1.65rem;
}

body.service-directory-page .document-topbar img,
body.telephone-directory-page .document-topbar img {
  max-height: 31px;
}

body.service-directory-page .document-topbar span,
body.telephone-directory-page .document-topbar span {
  max-width: 138px;
  font-size: clamp(0.52rem, 2.45vw, 0.68rem);
  line-height: 1.08;
}

body.service-directory-page .guide-shell,
body.telephone-directory-page .guide-shell {
  padding-right: max(16px, env(safe-area-inset-right));
  padding-left: max(16px, env(safe-area-inset-left));
}

body.telephone-directory-page .telephone-cover-guide {
  min-height: 0 !important;
}

body.telephone-directory-page .telephone-cover-guide__image {
  width: min(126px, 32vw) !important;
  max-width: 126px !important;
  height: auto !important;
  margin: 0 auto 14px !important;
  object-fit: contain !important;
}

body.telephone-directory-page .telephone-cover-guide__text {
  display: block;
}

body.telephone-directory-page .telephone-cover-guide__word,
body.telephone-directory-page .telephone-cover-guide__script {
  display: inline;
  font-size: clamp(1.9rem, 8.7vw, 3rem) !important;
  line-height: 1.04 !important;
}

body.telephone-directory-page .telephone-guide-nav a {
  max-width: none;
  white-space: nowrap;
}

body.service-directory-page .service-az-nav,
body.telephone-directory-page .telephone-guide-nav {
  padding-right: max(16px, env(safe-area-inset-right));
  padding-left: max(16px, env(safe-area-inset-left));
}

@media (max-width: 520px) {
  body.service-directory-page .guide-shell,
  body.telephone-directory-page .guide-shell {
    padding-top: 24px;
  }

  body.service-directory-page .guide-masthead,
  body.telephone-directory-page .telephone-cover-guide {
    padding-top: 14px;
  }

  body.service-directory-page .service-quick,
  body.service-directory-page .service-important,
  body.service-directory-page .service-letter-section,
  body.service-directory-page .service-safety-chapter,
  body.telephone-directory-page .telephone-guest-extensions,
  body.telephone-directory-page .telephone-international,
  body.telephone-directory-page .telephone-domestic {
    padding-top: 28px;
    padding-bottom: 32px;
  }

  body.service-directory-page .guide-entry {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  body.telephone-directory-page .telephone-country-details summary {
    grid-template-columns: minmax(0, 1fr) max-content;
  }
}

/* Final mobile corrections: Telephone cover */

body.service-directory-page .service-guide,
body.telephone-directory-page .telephone-guide {
  overflow: visible !important;
}

body.telephone-directory-page .telephone-cover-guide {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 14px !important;
  align-items: center !important;
  justify-items: center !important;
  overflow: hidden !important;
  padding: 18px 0 26px !important;
  text-align: center !important;
}

body.telephone-directory-page .telephone-cover-guide__text {
  order: 1 !important;
  width: 100% !important;
  min-width: 0 !important;
  display: grid !important;
  justify-items: center !important;
  gap: 6px !important;
}

body.telephone-directory-page .telephone-cover-guide__title {
  width: 100% !important;
  margin: 0 !important;
  display: grid !important;
  justify-items: center !important;
  gap: 0 !important;
}

body.telephone-directory-page .telephone-cover-guide__word,
body.telephone-directory-page .telephone-cover-guide__script {
  display: block !important;
  max-width: 100% !important;
  overflow-wrap: normal !important;
  white-space: nowrap !important;
  color: var(--guide-forest) !important;
  font-family: var(--guide-display) !important;
  font-weight: 400 !important;
  line-height: 0.98 !important;
  letter-spacing: -0.035em !important;
}

body.telephone-directory-page .telephone-cover-guide__word {
  font-size: clamp(2rem, 10vw, 3.45rem) !important;
}

body.telephone-directory-page .telephone-cover-guide__script {
  margin-top: 2px !important;
  font-size: clamp(1.45rem, 7.2vw, 2.55rem) !important;
}

body.telephone-directory-page .telephone-cover-guide__figure {
  order: 2 !important;
  width: min(74vw, 250px) !important;
  margin: 8px auto 0 !important;
  display: grid !important;
  place-items: center !important;
}

body.telephone-directory-page .telephone-cover-guide__image {
  width: 100% !important;
  max-width: 250px !important;
  height: auto !important;
  max-height: 230px !important;
  display: block !important;
  object-fit: contain !important;
}

body.telephone-directory-page .telephone-cover-guide::after {
  order: 3 !important;
  margin-top: 14px !important;
}

@media (max-width: 390px) {
  body.telephone-directory-page .telephone-cover-guide__figure {
    width: min(68vw, 220px) !important;
  }

  body.telephone-directory-page .telephone-cover-guide__image {
    max-width: 220px !important;
    max-height: 210px !important;
  }
}

/* Final directory nav reset: same behavior as In-Room Dining */

body.service-directory-page .guide-menu-nav,
body.telephone-directory-page .guide-menu-nav {
  position: sticky !important;
  position: -webkit-sticky !important;
  top: calc(58px + env(safe-area-inset-top)) !important;
  left: auto !important;
  z-index: 18 !important;
  width: min(100%, 1040px) !important;
  max-width: 1040px !important;
  margin: 0 auto 26px !important;
  padding: 10px 0 !important;
  display: flex !important;
  gap: 8px !important;
  justify-content: flex-start !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  overscroll-behavior-x: contain !important;
  scrollbar-width: none !important;
  background: color-mix(in srgb, var(--guide-paper) 94%, transparent) !important;
  border: 0 !important;
  box-shadow: none !important;
  backdrop-filter: blur(12px) !important;
  transform: none !important;
}

body.service-directory-page .guide-menu-nav::-webkit-scrollbar,
body.telephone-directory-page .guide-menu-nav::-webkit-scrollbar {
  display: none !important;
}

body.service-directory-page .guide-menu-nav a,
body.telephone-directory-page .guide-menu-nav a {
  flex: 0 0 auto !important;
  min-width: auto !important;
  padding: 8px 14px !important;
  border: 1px solid var(--guide-line) !important;
  border-radius: 999px !important;
  color: var(--guide-ink) !important;
  background: rgba(255, 255, 255, 0.28) !important;
  font-family: var(--guide-body) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  letter-spacing: 0.06em !important;
  white-space: nowrap !important;
}

body.service-directory-page .service-az-nav a {
  min-width: 38px !important;
  text-align: center !important;
}

body.service-directory-page .service-letter-section,
body.telephone-directory-page .telephone-guest-extensions,
body.telephone-directory-page .telephone-international,
body.telephone-directory-page .telephone-domestic {
  scroll-margin-top: 118px !important;
}

@media (min-width: 700px) {
  body.service-directory-page .guide-menu-nav,
  body.telephone-directory-page .guide-menu-nav {
    justify-content: center !important;
    margin-bottom: 34px !important;
  }

  body.service-directory-page .guide-menu-nav a,
  body.telephone-directory-page .guide-menu-nav a {
    padding: 9px 18px !important;
  }
}

/* Section-scoped pinned tabs for combined Service & Telephone page */

body.service-directory-page .guide-menu-nav-spacer,
body.telephone-directory-page .guide-menu-nav-spacer {
  display: block;
  height: 0;
}

body.service-directory-page .guide-menu-nav.guide-menu-nav--pinned,
body.telephone-directory-page .guide-menu-nav.guide-menu-nav--pinned {
  position: fixed !important;
  top: var(--guide-nav-top, 58px) !important;
  left: var(--guide-nav-left, 0) !important;
  z-index: 19 !important;
  width: var(--guide-nav-width, 100vw) !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 10px max(16px, env(safe-area-inset-right)) 10px max(16px, env(safe-area-inset-left)) !important;
  background: color-mix(in srgb, var(--guide-paper) 96%, white 4%) !important;
  border-bottom: 1px solid rgba(216, 204, 186, 0.72) !important;
  box-shadow: 0 8px 16px rgba(23, 52, 45, 0.045) !important;
  backdrop-filter: blur(12px) !important;
}
