   /* GUHESHWORI HOMESTAY — MAIN STYLESHEET
   Palette: Stone #f5f0eb | Forest #7A1414 | Ochre/Text #C9A34E
            Cream #faf8f4 | Charcoal #1e1e1e | Warm Grey #6b6560
   Fonts:   Cormorant Garamond (display) + DM Sans (body) */

   /* ---- CSS Variables ---- */
   :root {
     --forest: #7A1414;
     --ochre: #9E1B1B;
     --text: #C9A34E;
     --stone: #f5f0eb;
     --cream: #faf8f4;
     --charcoal: #1e1e1e;
     --warm-grey: #6b6560;
     --border: #e2dbd3;
     --white: #ffffff;

     --font-display: 'Cormorant Garamond', Georgia, serif;
     --font-body: 'DM Sans', system-ui, sans-serif;

     --max-w: 1160px;
     --gutter: clamp(20px, 5vw, 80px);

     --radius-sm: 4px;
     --radius-md: 8px;
   }

   /* ---- Reset ---- */
   *,
   *::before,
   *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
   }

   html {
     scroll-behavior: smooth;
   }

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

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

   button {
     cursor: pointer;
     font-family: var(--font-body);
   }

   ul,
   ol {
     list-style: none;
   }

   /* ---- Base ---- */
   body {
     font-family: var(--font-body);
     font-size: 16px;
     line-height: 1.75;
     color: var(--charcoal);
     background: var(--cream);
     -webkit-font-smoothing: antialiased;
   }

   /* ASTRA OVERRIDES */

   /* Nuke any Astra-rendered header elements so only our .site-header shows */
   #ast-desktop-header,
   #ast-mobile-header,
   .ast-primary-header-bar,
   .ast-above-header-bar,
   .ast-below-header-bar,
   .ast-mobile-menu-trigger,
   .ast-mobile-header-wrap,
   .ast-main-header-bar,
   .ast-header-break-point .main-header-bar {
     display: none !important;
   }

   .ast-container {
     max-width: var(--max-w) !important;
   }

   #page {
     background: var(--cream);
   }

   .site-content {
     padding: 0 !important;
   }

   .ast-article-post,
   .entry-content {
     max-width: 100% !important;
     padding: 0 !important;
   }

   .entry-header {
     display: none;
   }

   /* keep Astra footer background controlled by gh-footer */
   #colophon {
     background: var(--forest) !important;
     border-top: none !important;
   }

   /* HEADER */
   .site-header {
     position: sticky;
     top: 0;
     width: 100%;
     z-index: 999;
     background: var(--white);
     border-bottom: 1px solid var(--border);
     transition: box-shadow 0.3s ease;
   }

   .site-header.scrolled {
     box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
   }

   /* Inner row */
   .gh-header-inner {
     max-width: var(--max-w);
     margin: 0 auto;
     padding: 0 var(--gutter);
     height: 70px;
     display: flex;
     align-items: center;
     gap: 32px;
   }

   /* Logo */
   .site-branding {
     flex-shrink: 0;
   }

   .site-logo {
     height: 60px;
     width: auto;
     display: block;
   }

   .site-logo-text {
     font-family: var(--font-display);
     font-size: 20px;
     font-weight: 500;
     color: var(--forest);
   }

   /* Desktop nav */
   .main-navigation {
     flex: 1;
     display: flex;
     justify-content: center;
   }

   .main-header-menu {
     display: flex;
     align-items: center;
     gap: 8px;
   }

   .main-header-menu .menu-item a {
     font-family: var(--font-body);
     font-size: 12px;
     font-weight: 500;
     letter-spacing: 0.07em;
     text-transform: uppercase;
     color: var(--charcoal);
     padding: 6px 10px;
     position: relative;
     transition: color 0.2s;
   }

   .main-header-menu .menu-item a::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 10px;
     width: 0;
     height: 1px;
     background: var(--ochre);
     transition: width 0.25s ease;
   }

   .main-header-menu .menu-item a:hover,
   .main-header-menu .current-menu-item>a {
     color: var(--ochre);
   }

   .main-header-menu .menu-item a:hover::after,
   .main-header-menu .current-menu-item>a::after {
     width: calc(100% - 20px);
   }

   /* Book now CTA — desktop */
   .gh-header-cta {
     flex-shrink: 0;
     font-size: 11px !important;
     padding: 9px 20px !important;
     white-space: nowrap;
   }

   /* ---- Hamburger button ---- */
   .gh-nav-toggle {
     display: none;
     /* hidden on desktop */
     flex-direction: column;
     justify-content: center;
     gap: 5px;
     width: 40px;
     height: 40px;
     padding: 8px;
     background: none;
     border: none;
     flex-shrink: 0;
     margin-left: auto;
   }

   .gh-nav-toggle__bar {
     display: block;
     width: 22px;
     height: 1.5px;
     background: var(--charcoal);
     border-radius: 2px;
     transition: transform 0.25s ease, opacity 0.25s ease;
     transform-origin: center;
   }

   /* X state */
   .gh-nav-toggle.open .gh-nav-toggle__bar:nth-child(1) {
     transform: translateY(6.5px) rotate(45deg);
   }

   .gh-nav-toggle.open .gh-nav-toggle__bar:nth-child(2) {
     opacity: 0;
     transform: scaleX(0);
   }

   .gh-nav-toggle.open .gh-nav-toggle__bar:nth-child(3) {
     transform: translateY(-6.5px) rotate(-45deg);
   }

   /* ---- Mobile drawer ---- */
   .gh-mobile-nav {
     visibility: hidden;
     opacity: 0;
     pointer-events: none;
     display: flex !important;
     flex-direction: column;
     /* shown only when .open */
     position: fixed;
     inset: 70px 0 0 0;
     /* starts below header */
     background: var(--white);
     z-index: 998;
     padding: 32px var(--gutter) 40px;
     overflow-y: auto;
     border-top: 1px solid var(--border);
     /* slide in from top */
     transform: translateY(-10px);
     opacity: 0;
     transition: transform 0.25s ease, opacity 0.25s ease;
   }

   .gh-mobile-nav.open {
     visibility: visible;
     opacity: 1;
     pointer-events: auto;
     flex-direction: column;
     gap: 0;
     transform: translateY(0);
     opacity: 1;
   }

   .gh-mobile-nav__list {
     display: flex;
     flex-direction: column;
     gap: 0;
     margin-bottom: 32px;
   }

   .gh-mobile-nav__list li {
     border-bottom: 1px solid var(--border);
   }

   .gh-mobile-nav__link {
     display: block;
     font-family: var(--font-body);
     font-size: 15px;
     font-weight: 500;
     letter-spacing: 0.05em;
     text-transform: uppercase;
     color: var(--charcoal);
     padding: 18px 0;
     transition: color 0.2s, padding-left 0.2s;
   }

   .gh-mobile-nav__link:hover {
     color: var(--ochre);
     padding-left: 8px;
   }

   .gh-mobile-nav__cta {
     width: 100%;
     justify-content: center;
     padding: 14px !important;
     font-size: 13px !important;
   }

   /* UTILITY */
   .gh-container {
     max-width: var(--max-w);
     margin: 0 auto;
     padding-left: var(--gutter);
     padding-right: var(--gutter);
   }

   .gh-section {
     padding: 80px 0;
     background-color: var(--cream);
   }

   .gh-section--sm {
     padding: 50px 0;
   }

   .gh-label {
     display: inline-block;
     font-family: var(--font-body);
     font-size: 11px;
     font-weight: 500;
     letter-spacing: 0.14em;
     text-transform: uppercase;
     color: var(--text);
     margin-bottom: 14px;
   }

   .gh-heading {
     font-family: var(--font-display);
     font-weight: 400;
     color: var(--forest);
     line-height: 1.15;
   }

   .gh-heading--lg {
     font-size: clamp(2rem, 4vw, 3.2rem);
   }

   .gh-heading--md {
     font-size: clamp(1.6rem, 3vw, 2.4rem);
   }

   .gh-heading--sm {
     font-size: clamp(1.2rem, 2vw, 1.6rem);
   }

   .gh-body {
     font-family: var(--font-body);
     font-size: 15px;
     color: var(--warm-grey);
     line-height: 1.8;
     font-weight: 300;
   }

   .gh-btn {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     font-family: var(--font-body);
     font-size: 12px;
     font-weight: 500;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     padding: 14px 32px;
     border: 1.5px solid var(--forest);
     background: transparent;
     color: var(--forest);
     border-radius: var(--radius-sm);
     transition: background 0.2s, color 0.2s;
   }

   .gh-btn:hover {
     background: var(--forest);
     color: var(--white);
   }

   .gh-btn--fill {
     background: var(--forest);
     color: var(--white);
   }

   .gh-btn--fill:hover {
     background: var(--stone);
     border-color: var(--stone);
     color: var(--forest);
   }

   .gh-divider {
     width: 40px;
     height: 1px;
     background: var(--ochre);
     margin: 18px 0;
   }

   /* HERO */
   .gh-hero {
     position: relative;
     height: 100svh;
     min-height: 580px;
     display: flex;
     align-items: flex-end;
     overflow: hidden;
   }

   .gh-hero__bg {
     position: absolute;
     inset: 0;
     background-image: url('https://images.unsplash.com/photo-1544735716-392fe2489ffa?w=1600&q=80');
     background-size: cover;
     background-position: center 40%;
     transform: scale(1.04);
     transition: transform 8s ease-out;
   }

   .gh-hero__bg.loaded {
     transform: scale(1);
   }

   .gh-hero__overlay {
     position: absolute;
     inset: 0;
     z-index: 1;
     background: rgba(0, 0, 0, 0.65);
     /* background: linear-gradient(to top, rgba(20, 28, 20, .78) 0%, rgba(20, 28, 20, .18) 60%, transparent 100%); */
   }

   .gh-hero__content {
     position: relative;
     z-index: 2;
     padding: 0 var(--gutter) 70px;
     max-width: var(--max-w);
     margin: 0 auto;
     width: 100%;
   }

   .gh-hero__label {
     font-size: 11px;
     font-weight: 500;
     letter-spacing: 0.18em;
     text-transform: uppercase;
     color: white;
     display: flex;
     align-items: center;
     gap: 12px;
     margin-bottom: 18px;
   }

   .gh-hero__label::before {
     content: '';
     display: block;
     width: 30px;
     height: 1px;
     background: var(--text);
   }

   .gh-hero h1 {
     font-family: var(--font-display);
     font-size: clamp(3rem, 7vw, 6.5rem);
     font-weight: 300;
     color: var(--text);
     line-height: 1.06;
     max-width: 700px;
     margin-bottom: 28px;
   }

   .gh-hero h1 em {
     font-style: italic;
     color: var(--text);
   }

   .gh-hero__sub {
     font-size: 14px;
     color: white;
     font-weight: 300;
     max-width: 400px;
     line-height: 1.7;
     margin-bottom: 40px;
   }

   .gh-hero__cta {
     display: flex;
     gap: 14px;
     flex-wrap: wrap;
   }

   .gh-hero__cta .gh-btn {
     color: var(--white);
     border-color: rgba(255, 255, 255, 0.5);
   }

   .gh-hero__cta .gh-btn:hover {
     background: var(--white);
     color: var(--forest);
     border-color: var(--white);
   }

   .gh-hero__cta .gh-btn--fill {
     background: var(--ochre);
     border-color: var(--ochre);
     color: var(--white);
   }

   .gh-hero__cta .gh-btn--fill:hover {
     background: #b07e2e;
     border-color: #b07e2e;
   }

   .gh-hero__scroll {
     position: absolute;
     right: var(--gutter);
     bottom: 70px;
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 8px;
     color: rgba(255, 255, 255, 0.5);
     font-size: 10px;
     letter-spacing: 0.14em;
     text-transform: uppercase;
     writing-mode: vertical-rl;
     z-index: 2;
   }

   .gh-hero__scroll::after {
     content: '';
     display: block;
     width: 1px;
     height: 50px;
     background: rgba(255, 255, 255, 0.3);
     animation: scrollLine 1.8s ease-in-out infinite;
   }

   @keyframes scrollLine {

     0%,
     100% {
       opacity: 0.3;
       transform: scaleY(0.5);
       transform-origin: top;
     }

     50% {
       opacity: 0.8;
       transform: scaleY(1);
     }
   }

   /* INTRO STATS STRIP */
   .gh-intro {
     background: var(--cream);
     padding: 60px 0;
     overflow-x: auto;
   }

   .gh-intro__inner {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 40px;
     min-width: 500px;
   }

   .gh-intro__stat {
     text-align: center;
     flex: 1;
     position: relative;
   }

   .gh-intro__stat:not(:last-child)::after {
     content: '';
     position: absolute;
     right: -20px;
     top: 50%;
     transform: translateY(-50%);
     width: 1px;
     height: 60px;
     background: var(--border);
   }

   .gh-intro__stat strong {
     display: block;
     font-family: var(--font-display);
     font-size: 3rem;
     color: var(--text);
   }

   .gh-intro__stat span {
     font-size: 12px;
     letter-spacing: 0.1em;
     text-transform: uppercase;
     color: var(--warm-grey);
   }

   /* ABOUT */
   .gh-about__grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
   }

   .gh-about__images {
     position: relative;
     height: 520px;
   }

   .gh-about__img-main {
     position: absolute;
     top: 0;
     left: 0;
     width: 75%;
     height: 85%;
     border-radius: var(--radius-md);
     overflow: hidden;
   }

   .gh-about__img-main img {
     width: 100%;
     height: 100%;
     object-fit: cover;
   }

   .gh-about__img-accent {
     position: absolute;
     bottom: 0;
     right: 0;
     width: 52%;
     height: 52%;
     border-radius: var(--radius-md);
     overflow: hidden;
     border: 6px solid var(--cream);
   }

   .gh-about__img-accent img {
     width: 100%;
     height: 100%;
     object-fit: cover;
   }

   .gh-about__badge {
     position: absolute;
     top: 50%;
     left: 60%;
     transform: translate(-50%, -50%);
     background: var(--ochre);
     color: var(--white);
     width: 90px;
     height: 90px;
     border-radius: 50%;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     text-align: center;
     font-family: var(--font-display);
     font-size: 11px;
     letter-spacing: 0.05em;
     border: 4px solid var(--cream);
     z-index: 2;
   }

   .gh-about__badge strong {
     font-size: 28px;
     font-weight: 400;
     line-height: 1;
     display: block;
   }

   /* FEATURES */
   .gh-features__grid {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 0;
     border: 1px solid var(--border);
     border-radius: var(--radius-md);
     overflow: hidden;
   }

   .gh-feature {
     padding: 40px 28px;
     border-right: 1px solid var(--border);
     transition: background 0.2s;
   }

   .gh-feature:last-child {
     border-right: none;
   }

   .gh-feature:hover {
     background: var(--stone);
   }

   .gh-feature__icon {
     width: 44px;
     height: 44px;
     margin-bottom: 20px;
     color: var(--ochre);
   }

   .gh-feature h4 {
     font-family: var(--font-display);
     font-size: 1.2rem;
     font-weight: 500;
     color: var(--forest);
     margin-bottom: 10px;
   }

   .gh-feature p {
     font-size: 13px;
     color: var(--warm-grey);
     line-height: 1.7;
     font-weight: 300;
   }

   /* ROOMS */
   .gh-rooms__grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 28px;
   }

   .gh-room-card {
     background: var(--white);
     border-radius: var(--radius-md);
     overflow: hidden;
     border: 1px solid var(--border);
     transition: transform 0.25s, box-shadow 0.25s;
   }

   .gh-room-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 12px 40px rgba(44, 62, 45, .10);
   }

   .gh-room-card__img {
     aspect-ratio: 4/3;
     overflow: hidden;
   }

   .gh-room-card__img img {
     width: 100%;
     height: 100%;
     object-fit: contain;
     transition: transform 0.4s ease;
   }

   .gh-room-card:hover .gh-room-card__img img {
     transform: scale(0.74);
   }

   .gh-room-card__body {
     padding: 24px 22px 20px;
   }

   .gh-room-card__type {
     font-size: 10px;
     letter-spacing: 0.14em;
     text-transform: uppercase;
     color: var(--ochre);
     font-weight: 500;
     margin-bottom: 8px;
   }

   .gh-room-card__name {
     font-family: var(--font-display);
     font-size: 1.35rem;
     font-weight: 500;
     color: var(--forest);
     margin-bottom: 10px;
   }

   .gh-room-card__desc {
     font-size: 13px;
     color: var(--warm-grey);
     line-height: 1.7;
     margin-bottom: 18px;
     font-weight: 300;
   }

   .gh-room-card__meta {
     display: flex;
     gap: 16px;
     flex-wrap: wrap;
     padding-top: 16px;
     border-top: 1px solid var(--border);
     font-size: 12px;
     color: var(--warm-grey);
   }

   .gh-room-card__meta span {
     display: flex;
     align-items: center;
     gap: 5px;
   }

   .gh-room-card__price {
     display: flex;
     align-items: baseline;
     gap: 4px;
     margin-top: 16px;
   }

   .gh-room-card__price strong {
     font-family: var(--font-display);
     font-size: 1.7rem;
     font-weight: 400;
     color: var(--forest);
   }

   .gh-room-card__price small {
     font-size: 12px;
     color: var(--warm-grey);
   }

   /* PAGE HERO (inner page banners) */
   .gh-page-hero {
     background: var(--forest);
     padding: 100px 0 70px;
     text-align: center;
     position: relative;
     overflow: hidden;
   }

   .gh-page-hero::before {
     content: '';
     position: absolute;
     inset: 0;
     background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4z'/%3E%3C/g%3E%3C/svg%3E");
   }

   .gh-page-hero .gh-label {
     color: rgba(255, 255, 255, 0.5);
   }

   .gh-page-hero .gh-heading {
     color: var(--white);
   }

   .gh-page-hero .gh-body {
     color: rgba(255, 255, 255, 0.6);
     max-width: 520px;
     margin: 0 auto;
   }

   .gh-page-hero .gh-divider {
     background: rgba(255, 255, 255, 0.25);
     margin: 18px auto;
   }

   /* GALLERY     */
   .gh-gallery__grid {
     columns: 3;
     gap: 16px;
   }

   .gh-gallery__item {
     break-inside: avoid;
     margin-bottom: 16px;
     border-radius: var(--radius-sm);
     overflow: hidden;
   }

   .gh-gallery__item img {
     width: 100%;
     display: block;
     transition: transform 0.35s ease;
   }

   .gh-gallery__item:hover img {
     transform: scale(1.03);
   }

   /* EXPERIENCES */
   .gh-exp__grid {
     display: grid;
     grid-template-columns: repeat(2, 1fr);
     gap: 2px;
     background: var(--border);
     border-radius: var(--radius-md);
     overflow: hidden;
   }

   .gh-exp-item {
     background: var(--white);
     padding: 48px 40px;
     display: flex;
     gap: 28px;
     align-items: flex-start;
     transition: background 0.2s;
   }

   .gh-exp-item:hover {
     background: var(--stone);
   }

   .gh-exp-item__num {
     font-family: var(--font-display);
     font-size: 3rem;
     font-weight: 300;
     color: var(--border);
     line-height: 1;
     min-width: 44px;
   }

   .gh-exp-item h4 {
     font-family: var(--font-display);
     font-size: 1.3rem;
     font-weight: 500;
     color: var(--forest);
     margin-bottom: 8px;
   }

   .gh-exp-item p {
     font-size: 13px;
     color: var(--warm-grey);
     line-height: 1.7;
     font-weight: 300;
   }

   /* GETTING AROUND */
   .gh-getting-around {
     background: var(--cream);
   }

   .gh-center {
     text-align: center;
     margin-bottom: 40px;
   }

   .gh-nearby-row {
     display: flex;
     justify-content: center;
     gap: 20px;
     flex-wrap: wrap;
   }

   .gh-nearby-card {
     background: var(--white);
     border: 1px solid var(--border);
     padding: 18px 22px;
     border-radius: var(--radius-md);
     min-width: 140px;
     text-align: center;
     transition: transform 0.25s ease, box-shadow 0.25s ease;
   }

   .gh-nearby-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
   }

   .gh-distance {
     display: block;
     font-family: var(--font-display);
     font-size: 22px;
     color: var(--forest);
     font-weight: 600;
   }

   .gh-place {
     display: block;
     font-size: 13px;
     color: var(--warm-grey);
     margin-top: 6px;
   }

   /* TESTIMONIALS */
   .gh-testimonials {
     background: var(--stone);
   }

   .gh-testimonials__grid {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 24px;
   }

   .gh-testi-card {
     background: var(--white);
     border-radius: var(--radius-md);
     padding: 32px 28px;
     border: 1px solid var(--border);
   }

   .gh-testi-card__stars {
     color: var(--ochre);
     font-size: 14px;
     letter-spacing: 2px;
     margin-bottom: 16px;
   }

   .gh-testi-card__text {
     font-size: 14px;
     color: var(--warm-grey);
     line-height: 1.8;
     font-weight: 300;
     margin-bottom: 20px;
   }

   .gh-testi-card__author {
     display: flex;
     align-items: center;
     gap: 12px;
     padding-top: 18px;
     border-top: 1px solid var(--border);
   }

   .gh-testi-card__avatar {
     width: 40px;
     height: 40px;
     border-radius: 50%;
     background: var(--forest);
     color: var(--white);
     display: flex;
     align-items: center;
     justify-content: center;
     font-family: var(--font-display);
     font-size: 16px;
     flex-shrink: 0;
   }

   .gh-testi-card__name {
     font-weight: 500;
     font-size: 14px;
     color: var(--charcoal);
   }

   .gh-testi-card__country {
     font-size: 12px;
     color: var(--warm-grey);
   }

   /* CTA BAND */
   .gh-cta-band {
     background: var(--ochre);
     padding: 70px 0;
     text-align: center;
   }

   .gh-cta-band .gh-heading {
     color: var(--white);
     margin-bottom: 10px;
   }

   .gh-cta-band .gh-body {
     color: rgba(255, 255, 255, 0.8);
     margin-bottom: 32px;
   }

   .gh-cta-band .gh-btn {
     background: var(--text);
     border-color: var(--white);
     color: var(--white);
   }

   .gh-cta-band .gh-btn:hover {
     background: var(--forest);
     color: var(--ochre);
   }

   /* CONTACT & MAP */
   .gh-map-section {
     background: var(--stone);
     padding: 100px 0 60px;
   }

   .gh-map-wrapper {
     display: grid;
     grid-template-columns: 1.3fr 1fr;
     gap: 40px;
     align-items: center;
   }

   .gh-map iframe {
     width: 100%;
     height: 420px;
     border-radius: var(--radius-md);
     border: 2px solid var(--text);
   }

   .gh-contact-card {
     width: 100%;
     max-width: 420px;
     margin-left: auto;
     background: var(--white);
     padding: 30px;
     border-radius: var(--radius-md);
     border: 1px solid var(--border);
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
   }

   .gh-contact-card h2 {
     line-height: 1.3;
   }

   .gh-contact-row {
     display: flex;
     gap: 14px;
     margin-bottom: 18px;
     align-items: flex-start;
   }

   .gh-icon {
     width: 26px;
     height: 26px;
     background: var(--cream);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: var(--forest);
     flex-shrink: 0;
   }

   .gh-contact-label {
     font-size: 11px;
     letter-spacing: 0.08em;
     text-transform: uppercase;
     color: var(--warm-grey);
     margin-bottom: 4px;
   }

   .gh-contact-value {
     font-size: 14px;
     color: var(--charcoal);
   }

   /* FOOTER */
   .gh-footer {
     background: var(--forest);
     color: rgba(255, 255, 255, 0.7);
     padding: 70px 0 0;
   }

   .gh-footer__grid {
     display: grid;
     grid-template-columns: 2fr 2fr 2fr;
     gap: 48px;
     padding-bottom: 50px;
   }

   .gh-footer__brand .gh-heading--sm {
     color: var(--white);
     margin-bottom: 14px;
     font-size: 1.5rem;
   }

   .gh-footer__desc {
     font-size: 13px;
     line-height: 1.8;
     font-weight: 300;
     color: rgba(255, 255, 255, 0.55);
     max-width: 280px;
     margin-bottom: 24px;
   }

   .gh-footer__socials {
     display: flex;
     gap: 12px;
   }

   .gh-footer__social {
     width: 36px;
     height: 36px;
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: rgba(255, 255, 255, 0.6);
     font-size: 14px;
     transition: all 0.2s;
   }

   .gh-footer__social:hover {
     background: var(--ochre);
     border-color: var(--ochre);
     color: var(--white);
   }

   .gh-footer__col h5 {
     font-family: var(--font-body);
     font-size: 11px;
     letter-spacing: 0.12em;
     text-transform: uppercase;
     font-weight: 500;
     color: rgba(255, 255, 255, 0.4);
     margin-bottom: 18px;
   }

   .gh-footer__links {
     display: flex;
     flex-direction: column;
     gap: 10px;
   }

   .gh-footer__links a {
     font-size: 13px;
     color: rgba(255, 255, 255, 0.65);
     transition: color 0.2s;
     font-weight: 300;
   }

   .gh-footer__links a:hover {
     color: var(--white);
   }

   .gh-footer__bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.1);
     padding: 22px 0;
     display: flex;
     justify-content: space-between;
     align-items: center;
     font-size: 12px;
     color: rgba(255, 255, 255, 0.35);
   }

   /* ANIMATIONS */
   .gh-reveal {
     opacity: 0;
     transform: translateY(24px);
     transition: opacity 0.65s ease, transform 0.65s ease;
   }

   .gh-reveal.visible {
     opacity: 1;
     transform: none;
   }

   .gh-reveal--delay-1 {
     transition-delay: 0.1s;
   }

   .gh-reveal--delay-2 {
     transition-delay: 0.2s;
   }

   .gh-reveal--delay-3 {
     transition-delay: 0.3s;
   }

   /* RESPONSIVE — TABLET  (≤900px) */
   @media (max-width: 900px) {

     /* Header — show hamburger, hide desktop nav & CTA */
     .main-navigation {
       display: none !important;
     }

     .gh-header-cta {
       display: none !important;
     }

     .gh-nav-toggle {
       display: flex !important;
     }

     /* Layouts */
     .gh-about__grid {
       grid-template-columns: 1fr;
     }

     .gh-about__images {
       height: 380px;
     }

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

     .gh-feature:nth-child(2) {
       border-right: none;
     }

     .gh-feature:nth-child(3),
     .gh-feature:nth-child(4) {
       border-top: 1px solid var(--border);
     }

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

     .gh-exp__grid {
       grid-template-columns: 1fr;
     }

     .gh-testimonials__grid {
       grid-template-columns: 1fr 1fr;
     }

     .gh-footer__grid {
       grid-template-columns: 1fr 1fr;
     }

     .gh-gallery__grid {
       columns: 2;
     }

     .gh-map-wrapper {
       grid-template-columns: 1fr;
     }

     .gh-contact-card {
       margin: 20px auto 0;
     }

     .gh-map iframe {
       height: 300px;
     }
   }

   /* RESPONSIVE — MOBILE  (≤600px) */
   @media (max-width: 600px) {

     /* Header height */
     .gh-header-inner {
       height: 60px;
       gap: 12px;
     }

     .site-logo {
       height: 48px;
     }

     /* General spacing */
     .gh-section {
       padding: 55px 0;
     }

     .gh-section--sm {
       padding: 36px 0;
     }

     /* Intro strip — allow horizontal scroll on small phones */
     .gh-intro__inner {
       min-width: 400px;
       gap: 20px;
     }

     /* Features — single column */
     .gh-features__grid {
       grid-template-columns: 1fr;
       border-radius: var(--radius-sm);
     }

     .gh-feature {
       border-right: none;
       border-bottom: 1px solid var(--border);
     }

     .gh-feature:last-child {
       border-bottom: none;
     }

     /* Rooms, testimonials, gallery — single column */
     .gh-rooms__grid {
       grid-template-columns: 1fr;
     }

     .gh-testimonials__grid {
       grid-template-columns: 1fr;
     }

     .gh-gallery__grid {
       columns: 1;
     }

     /* Footer — single column */
     .gh-footer__grid {
       grid-template-columns: 1fr;
       gap: 32px;
     }

     /* Experiences */
     .gh-exp-item {
       padding: 28px 20px;
       gap: 16px;
     }

     /* About badge */
     .gh-about__badge {
       width: 70px;
       height: 70px;
     }

     .gh-about__badge strong {
       font-size: 22px;
     }

     /* Hero text */
     .gh-hero__content {
       padding-bottom: 48px;
     }

     .gh-hero__scroll {
       display: none;
     }
   }