/*
  OBhula design layer
  Deodar-forest green, tin-roof red and Alegreya type, with an aipan-inspired border as the one signature detail.
  Loaded after every page stylesheet. Remove the <link> to modern.css to return to the original look.
*/

:root {
  --deodar: #1f4a3a;
  --deodar-deep: #14332a;
  --deodar-night: #0e241d;
  --roof: #b42a25;
  --roof-dark: #8f1f1b;
  --slate: #26302c;
  --lichen: #56625d;
  --mist: #f1f4f2;
  --line: #dde3df;
  --line-strong: #c5cfca;
  --radius-card: 14px;
  --radius-control: 8px;
  --page-gutter: 32px;
  --aipan: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='12' viewBox='0 0 32 12'%3E%3Crect width='32' height='12' fill='%23b42a25'/%3E%3Cpath d='M8 1.5 12.5 6 8 10.5 3.5 6z' fill='none' stroke='%23fff' stroke-width='1.2'/%3E%3Ccircle cx='8' cy='6' r='1.2' fill='%23fff'/%3E%3Ccircle cx='24' cy='3' r='.9' fill='%23fff'/%3E%3Ccircle cx='24' cy='9' r='.9' fill='%23fff'/%3E%3Ccircle cx='21' cy='6' r='.9' fill='%23fff'/%3E%3Ccircle cx='27' cy='6' r='.9' fill='%23fff'/%3E%3C/svg%3E");

  /* Remap the original theme tokens so every page stylesheet picks up the new palette and type. */
  --primary-color: var(--deodar);
  --primary-light: #2b6450;
  --primary-dark: var(--deodar-deep);
  --secondary-color: var(--roof);
  --accent-color: var(--roof);
  --accent-light: #c8443e;
  --accent-dark: var(--roof-dark);
  --theme-accent: var(--deodar);
  --blue-primary: var(--deodar);
  --blue-dark: var(--deodar-deep);
  --color-text-primary: var(--slate);
  --color-text-secondary: var(--lichen);
  --color-text-muted: #6b7772;
  --theme-text: var(--slate);
  --theme-text-light: var(--lichen);
  --theme-text-muted: #6b7772;
  --color-background-secondary: var(--mist);
  --color-background-tertiary: #e6ebe8;
  --color-surface-accent: var(--mist);
  --color-border-primary: var(--line);
  --theme-border: var(--line);
  --color-backdrop-dark: rgba(20, 51, 42, 0.97);
  --focus-ring-color: rgba(31, 74, 58, 0.2);
  --font-family-base: "Alegreya Sans", "Segoe UI", system-ui, sans-serif;
  --font-family-heading: "Alegreya", Georgia, "Times New Roman", serif;
  --theme-font-body: var(--font-family-base);
  --theme-font-heading: var(--font-family-heading);
  --line-height-base: 1.65;
  --line-height-heading: 1.12;
  --shadow-sm: none;
  --shadow-md: none;
  --shadow-lg: none;
  --shadow-xl: 0 12px 32px rgba(20, 51, 42, 0.14);
  --shadow-2xl: 0 12px 32px rgba(20, 51, 42, 0.14);
}

/* ------------------------------------------------------------------ base */

body {
  font-family: var(--font-family-base);
  font-size: 1.0625rem;
  color: var(--slate);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
.section-title {
  font-family: var(--font-family-heading);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: var(--line-height-heading);
}

h4,
h5,
h6 {
  font-family: var(--font-family-base);
  font-weight: 700;
}

p {
  text-wrap: pretty;
}

:focus-visible {
  outline: 2px solid var(--roof);
  outline-offset: 3px;
}

::selection {
  background: #cfe1d8;
  color: var(--deodar-deep);
}

.container {
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

/* Content is visible immediately; the only entrance motion left is the hero headline. */
.fade-in,
.fade-in.visible {
  opacity: 1;
  transform: none;
  transition: none;
}

button:hover {
  transform: none;
}

/* ------------------------------------------------------------------ header */

.header {
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}

header {
  padding: 10px var(--page-gutter);
  gap: 24px;
}

.page-post header,
.page-blog header,
.page-not-found header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.logo {
  margin-left: 0;
}

.logo img {
  height: 56px;
}

.nav {
  margin-right: 28px;
}

.nav-menu {
  gap: 28px;
}

.nav-link {
  color: var(--slate);
  font-size: 1rem;
  font-weight: 500;
}

.nav-link::after {
  height: 2px;
  bottom: -6px;
  background: var(--roof);
}

.nav-link:hover,
.nav-link[aria-current="page"] {
  color: var(--deodar);
}

.submenu {
  border: 0;
  border-radius: 10px;
}

.submenu .nav-link,
.submenu .nav-link:hover {
  color: #fff;
}

.book-btn {
  background: var(--roof);
  border-radius: var(--radius-control);
  box-shadow: none;
  font-weight: 700;
  padding: 10px 20px;
}

.book-btn:hover {
  background: var(--roof-dark);
  box-shadow: none;
  transform: none;
}

/* ------------------------------------------------------------------ buttons */

.btn-primary,
.btn-secondary,
.btn-white,
.btn-outline-white,
.action-btn,
.form-submit,
.whatsapp-btn,
.contact-action,
.social-link-btn {
  border-radius: var(--radius-control);
  box-shadow: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.btn-primary,
.btn-secondary,
.btn-white,
.btn-outline-white,
.action-btn {
  font-size: 1.05rem;
  padding: 14px 28px;
}

.btn-primary,
.action-btn,
.form-submit {
  background: var(--roof);
  border: 0;
  color: #fff;
}

.btn-primary:hover,
.action-btn:hover,
.form-submit:hover {
  background: var(--roof-dark);
  box-shadow: none;
  color: #fff;
  transform: none;
}

.btn-secondary {
  background: transparent;
  border: 1.5px solid var(--deodar);
  color: var(--deodar);
}

.btn-secondary:hover {
  background: var(--deodar);
  border-color: var(--deodar);
  color: #fff;
}

.hero .btn-secondary,
.cta .btn-secondary,
.cta-section .btn-secondary,
.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.75);
  color: #fff;
}

.hero .btn-secondary:hover,
.cta .btn-secondary:hover,
.cta-section .btn-secondary:hover,
.btn-outline-white:hover {
  background: #fff;
  border-color: #fff;
  color: var(--deodar-deep);
}

.btn-white {
  background: #fff;
  color: var(--deodar-deep);
}

.btn-white:hover {
  background: var(--mist);
  box-shadow: none;
  transform: none;
}

.whatsapp-btn:hover,
.contact-action:hover,
.social-link-btn:hover {
  box-shadow: none;
  transform: none;
}

/* ------------------------------------------------------------------ home hero */

.hero {
  align-items: flex-end;
  justify-content: flex-start;
  text-align: left;
}

.hero > .container {
  width: 100%;
}

.hero .hero-content {
  margin: 0;
  max-width: 780px;
  padding: 0 0 clamp(64px, 12vh, 120px);
}

.hero::before,
.hero-slide::before {
  background: linear-gradient(
    to top,
    rgba(10, 28, 21, 0.84) 0%,
    rgba(10, 28, 21, 0.48) 42%,
    rgba(10, 28, 21, 0.14) 75%,
    rgba(10, 28, 21, 0.06) 100%
  );
}

.page-index .hero h1:first-of-type {
  font-family: var(--font-family-base);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  opacity: 0.92;
  text-shadow: none;
}

.page-index .hero h1:nth-of-type(2) {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.02;
  margin-bottom: 22px;
  max-width: 12ch;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.25);
}

.hero p {
  font-size: 1.25rem;
  max-width: 52ch;
}

.page-index .hero p {
  margin-bottom: 34px;
}

.hero-cta {
  gap: 14px;
  justify-content: flex-start;
}

/* ------------------------------------------------------------------ page headers */

.page-header,
.page-hero,
.story-hero,
.hero-contact {
  align-items: flex-end;
  color: #fff;
  display: flex;
  height: auto;
  justify-content: flex-start;
  margin-top: 0;
  min-height: clamp(380px, 58vh, 560px);
  overflow: hidden;
  padding: 150px 0 72px;
  position: relative;
  text-align: left;
}

.page-destination-guide .hero,
.page-things-to-do .hero {
  height: auto;
  margin-top: 0;
  min-height: clamp(380px, 58vh, 560px);
  padding: 150px 0 72px;
}

.hero::after,
.page-header::after,
.page-hero::after,
.story-hero::after,
.hero-contact::after {
  background: var(--aipan) repeat-x;
  background-size: auto 12px;
  bottom: 0;
  content: "";
  height: 12px;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 3;
}

.page-header > .container,
.story-hero > .container,
.hero-contact > .container {
  width: 100%;
}

.page-header-content,
.page-hero-content,
.story-hero-content,
.hero-contact .hero-content,
.page-destination-guide .hero .hero-content,
.page-things-to-do .hero .hero-content {
  margin: 0 auto;
  max-width: 1200px;
  padding: 0 var(--page-gutter);
  position: relative;
  text-align: left;
  width: 100%;
  z-index: 2;
}

.container > .page-header-content,
.container > .story-hero-content,
.hero-contact .container > .hero-content,
.page-destination-guide .container > .hero-content,
.page-things-to-do .container > .hero-content {
  padding: 0;
}

.page-header h1,
.page-hero h1,
.story-hero h1,
.hero-contact h1,
.page-destination-guide .hero h1,
.page-things-to-do .hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.05;
  margin-bottom: 14px;
  max-width: 18ch;
}

.page-header p,
.page-hero p,
.story-hero p,
.hero-contact p,
.page-destination-guide .hero p,
.page-things-to-do .hero p {
  font-size: 1.2rem;
  margin: 0;
  max-width: 56ch;
  opacity: 0.92;
}

.page-accommodation .page-header {
  background:
    linear-gradient(
      to top,
      rgba(10, 28, 21, 0.86) 0%,
      rgba(10, 28, 21, 0.4) 55%,
      rgba(10, 28, 21, 0.12) 100%
    ),
    url("/assets/images/b1.avif") center / cover;
}

.page-facilities-amenities .page-header,
.page-faq .page-header {
  background: var(--deodar-deep);
}

.page-facilities-amenities .page-header::before,
.page-faq .page-header::before {
  opacity: 0.22;
}

.story-hero {
  background:
    linear-gradient(
      to top,
      rgba(10, 28, 21, 0.86) 0%,
      rgba(10, 28, 21, 0.4) 55%,
      rgba(10, 28, 21, 0.12) 100%
    ),
    url("/assets/images/b1.avif") center / cover;
}

.story-hero::before {
  display: none;
}

.page-hero::before,
.hero-contact::before {
  background: linear-gradient(
    to top,
    rgba(10, 28, 21, 0.86) 0%,
    rgba(10, 28, 21, 0.4) 55%,
    rgba(10, 28, 21, 0.12) 100%
  );
}

.hero-contact {
  background: url("/assets/images/eka-hotelpage-title.avif") center / cover;
}

.page-destination-guide .hero {
  background: url("/assets/images/b3.avif") center / cover;
}

.page-things-to-do .hero-bg::after {
  background: linear-gradient(
    to top,
    rgba(10, 28, 21, 0.86) 0%,
    rgba(10, 28, 21, 0.35) 60%,
    rgba(10, 28, 21, 0.1) 100%
  );
  content: "";
  inset: 0;
  position: absolute;
}

.breadcrumb,
.breadcrumb a {
  color: rgba(255, 255, 255, 0.85);
}

.gallery-header {
  background: var(--mist);
  margin-top: 0;
  padding: 150px 0 56px;
  text-align: left;
}

.gallery-header h1 {
  color: var(--slate);
  font-size: clamp(2.25rem, 4.5vw, 3.5rem);
}

.gallery-header p {
  margin: 0;
  max-width: 60ch;
}

/* ------------------------------------------------------------------ sections */

.section-title {
  color: var(--slate);
  font-size: clamp(2rem, 3.6vw, 2.85rem);
  margin-bottom: 44px;
  max-width: 24ch;
  text-align: left;
}

.section-title::after {
  display: none;
}

.mission .section-title,
.cta .section-title,
.cta-section .section-title,
.booking-section .section-title,
.quick-actions .section-title,
.mission h3,
.mission-text h3,
.action-card h3,
.contact-info h3,
.contact-info h4,
.contact-item-content h4,
.contact-social-section h4 {
  color: #fff;
}

.testimonials > .section-title {
  margin: 0 auto 44px;
  max-width: 1200px;
  padding: 0 var(--page-gutter);
}

.amenity-card,
.facility-card,
.why-choose-card,
.service-card,
.activity-card,
.contact-card,
.season-card,
.social-card,
.distance-card,
.location-highlight,
.numbers-grid,
.faq-intro,
.introduction-content,
.cta,
.cta-section,
.travel-card-header {
  text-align: left;
}

.faq-intro,
.introduction-content,
.cta-content,
.cta-content p {
  margin-left: 0;
}

.faq-intro p,
.introduction-description {
  max-width: 68ch;
}

.cta-buttons {
  justify-content: flex-start;
}

.cta-section,
.travel-card-header {
  background: var(--deodar-deep);
}

.introduction-subtitle {
  font-family: var(--font-family-heading);
}

/* Decorative emoji badges inside card grids: the headings carry the meaning on their own. */
.amenity-icon,
.why-choose-icon,
.facility-icon,
.location-highlight-icon,
.service-icon,
.activity-icon,
.value-icon,
.action-icon,
.booking-option-icon,
.food-highlight-icon,
.season-icon,
.travel-icon,
.feature-category-icon {
  display: none;
}

/* Small markers that sit beside contact details and lists stay, as quiet tiles. */
.feature-icon,
.feature-icon-small,
.room-amenity-icon,
.contact-icon,
.contact-item-icon,
.direction-icon,
.tip-icon,
.detail-icon {
  background: var(--mist);
  border-radius: 8px;
  box-shadow: none;
  color: var(--deodar);
}

.contact-card .contact-icon {
  height: 56px;
  margin: 0 0 20px;
  width: 56px;
}

.contact-info .contact-icon,
.contact-info .contact-item-icon {
  background: rgba(255, 255, 255, 0.1);
}

/* ------------------------------------------------------------------ cards */

.amenity-card,
.property-card,
.room-card,
.experience-card,
.attraction-card,
.activity-card,
.category-card,
.contact-card,
.distance-card,
.facility-card,
.room-feature-card,
.room-showcase-card,
.season-card,
.service-card,
.social-card,
.travel-card,
.value-card,
.why-choose-card,
.feature-category,
.location-highlight,
.blog-card,
.lead-form,
.testimonial-content-box,
.connection-item,
.location-info,
.train-schedule,
.food-highlight,
.detail-item,
.directions-list li,
.tips-list li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: none;
}

.amenity-card:hover,
.property-card:hover,
.room-card:hover,
.experience-card:hover,
.attraction-card:hover,
.activity-card:hover,
.category-card:hover,
.contact-card:hover,
.distance-card:hover,
.facility-card:hover,
.room-feature-card:hover,
.room-showcase-card:hover,
.season-card:hover,
.service-card:hover,
.social-card:hover,
.travel-card:hover,
.value-card:hover,
.why-choose-card:hover,
.blog-card:hover,
.faq-item:hover {
  border-color: var(--line-strong);
  box-shadow: none;
  transform: none;
}

.activity-card::before,
.facility-card::before {
  display: none;
}

.property-card,
.room-card,
.experience-card,
.attraction-card,
.blog-card {
  overflow: hidden;
}

.property-badge,
.room-badge,
.room-feature-badge,
.room-showcase-badge,
.category-badge {
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  color: var(--deodar-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 5px 12px;
}

.property-title,
.room-title,
.attraction-title,
.experience-content h4 {
  color: var(--slate);
  font-family: var(--font-family-heading);
  font-weight: 600;
}

.experience-content h4 {
  font-size: 1.3rem;
}

.property-features li::before,
.room-features li::before,
.feature-list li::before,
.activity-features li::before,
.room-feature-list li::before,
.service-features li::before {
  color: var(--deodar);
  font-weight: 700;
}

.mission-features li::before {
  color: #a9d6c1;
}

.about-image,
.about-image-slide img,
.activities-image,
.features-image,
.food-image,
.location-image,
.mission-image,
.story-image,
.map-container,
.mapouter,
.gmap_canvas,
.gallery-item {
  border-radius: var(--radius-card);
  box-shadow: none;
  overflow: hidden;
}

/* ------------------------------------------------------------------ numbers band */

.numbers {
  background: var(--mist);
  color: var(--slate);
}

.numbers-grid {
  gap: 32px 0;
}

.number-item {
  border-left: 1px solid var(--line-strong);
  padding: 6px 28px;
}

.number-value {
  color: var(--deodar);
  font-family: var(--font-family-heading);
  font-size: clamp(2.75rem, 4.5vw, 3.75rem);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}

.number-label {
  color: var(--lichen);
  font-size: 1rem;
  opacity: 1;
}

/* ------------------------------------------------------------------ testimonials */

.testimonials {
  background: var(--mist);
}

.testimonial-image {
  border-radius: var(--radius-card);
  overflow: hidden;
}

.testimonial-image::before {
  display: none;
}

.testimonial-image-slide img {
  border-radius: var(--radius-card);
  clip-path: none;
}

.testimonial-content-box {
  padding: clamp(28px, 4vw, 56px);
}

.testimonial-quote {
  color: var(--slate);
  font-family: var(--font-family-heading);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-style: italic;
  line-height: 1.5;
}

.testimonial-divider {
  background: var(--roof);
  height: 2px;
  width: 40px;
}

.author-avatar {
  background: var(--deodar);
  color: #fff;
}

.author-info h4 {
  color: var(--slate);
}

.nav-dot {
  background: var(--line-strong);
}

.nav-dot.active {
  background: var(--roof);
}

/* ------------------------------------------------------------------ FAQ */

.faq {
  background: #fff;
}

.faq-container {
  margin-left: 0;
  margin-right: auto;
  max-width: 860px;
}

.faq-item {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
  margin: 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-question {
  background: transparent;
  color: var(--slate);
  font-size: 1.15rem;
  font-weight: 700;
  gap: 24px;
  padding: 22px 0;
}

.faq-question:hover {
  background: transparent;
  color: var(--deodar);
}

.faq-answer,
.faq-item.active .faq-answer {
  padding-left: 0;
  padding-right: 48px;
}

.faq-item.active .faq-answer {
  padding-bottom: 24px;
}

.faq-icon {
  color: var(--roof);
  font-size: 1.6rem;
  font-weight: 400;
}

/* ------------------------------------------------------------------ contact & forms */

.contact-info {
  background: var(--deodar-deep);
  border-radius: var(--radius-card);
}

.contact-social-link {
  background: rgba(255, 255, 255, 0.1);
}

.contact-social-link:hover {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: none;
  transform: none;
}

.lead-form h3 {
  color: var(--slate);
  font-size: 1.75rem;
}

.form-group label {
  color: var(--slate);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  color: var(--slate);
  font-size: 1rem;
  padding: 12px 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--deodar);
  box-shadow: 0 0 0 3px rgba(31, 74, 58, 0.16);
  outline: none;
}

.form-submit {
  font-size: 1.05rem;
  padding: 15px 28px;
}

/* ------------------------------------------------------------------ gallery */

.filter-btn {
  border: 1px solid var(--line-strong);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--deodar);
  border-color: var(--deodar);
  color: #fff;
}

/* ------------------------------------------------------------------ blog listing */

.blog-page-title {
  color: var(--slate);
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  margin-bottom: 40px;
  max-width: 26ch;
  text-align: left;
}

.blog-card {
  position: relative;
}

.blog-card img {
  height: 210px;
  object-fit: cover;
}

.blog-card-content {
  padding: 20px 22px 24px;
}

.blog-card h3 {
  color: var(--slate);
  font-family: var(--font-family-heading);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 8px;
}

.blog-card p {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  color: var(--lichen);
  display: -webkit-box;
  font-size: 0.98rem;
  overflow: hidden;
}

.read-more {
  color: var(--roof);
  font-weight: 700;
  margin-top: 14px;
}

.read-more:hover {
  color: var(--roof-dark);
}

/* The whole card opens the post. */
.read-more::after {
  content: "";
  inset: 0;
  position: absolute;
}

.blog-card:hover h3 {
  color: var(--deodar);
}

#load-more-btn {
  background: transparent;
  border: 1.5px solid var(--deodar);
  border-radius: var(--radius-control);
  color: var(--deodar);
  font-weight: 700;
  margin: 48px 0 0;
  padding: 12px 28px;
}

#load-more-btn:hover {
  background: var(--deodar);
  box-shadow: none;
  color: #fff;
  transform: none;
}

/* ------------------------------------------------------------------ blog post */

.page-post article {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  max-width: 760px;
  padding: 0;
}

.page-post figure {
  box-shadow: none;
  margin: 0 0 32px;
}

.page-post figure img {
  border-radius: var(--radius-card);
  width: 100%;
}

.page-post #blog-article h1 {
  color: var(--slate);
  font-family: var(--font-family-heading);
  font-size: clamp(2.25rem, 5vw, 3.4rem);
  letter-spacing: -0.015em;
  line-height: 1.08;
  margin-bottom: 16px;
}

.meta-info {
  border-bottom: 1px solid var(--line);
  color: var(--lichen);
  font-size: 0.95rem;
  margin-bottom: 36px;
  padding-bottom: 20px;
}

.meta-info svg {
  color: var(--lichen);
}

.article-content {
  color: #2e3833;
  font-size: 1.2rem;
  line-height: 1.75;
}

.article-content h2,
.article-content h3 {
  color: var(--slate);
  font-family: var(--font-family-heading);
  font-weight: 600;
  line-height: 1.2;
}

.article-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 2.2em 0 0.6em;
}

.article-content h3 {
  font-size: 1.45rem;
  margin: 1.8em 0 0.5em;
}

.article-content h4 {
  color: var(--slate);
  font-size: 1.15rem;
  margin: 1.5em 0 0.4em;
}

.article-content p {
  margin-bottom: 1.1em;
}

.article-content ul,
.article-content ol {
  margin-bottom: 1.2em;
  padding-left: 1.3em;
}

.article-content li {
  margin-bottom: 0.45em;
}

.article-content a {
  color: var(--deodar);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.article-content blockquote {
  border-left: 3px solid var(--roof);
  color: var(--lichen);
}

.article-content table {
  border-collapse: collapse;
  font-size: 1rem;
  margin: 1.5em 0;
  width: 100%;
}

.article-content td,
.article-content th {
  border: 1px solid var(--line);
  padding: 10px 12px;
  text-align: left;
}

/* ------------------------------------------------------------------ footer */

footer {
  background: var(--deodar-deep);
  color: rgba(255, 255, 255, 0.8);
}

footer::before {
  background: var(--aipan) repeat-x;
  background-size: auto 12px;
  content: "";
  display: block;
  height: 12px;
}

.footer-main-link,
.footer-contact-info,
.social-links,
.footer-bottom {
  background: transparent;
}

.footer-main-link {
  padding: 72px 0 24px;
}

.footer-section h3 {
  color: #fff;
  font-family: var(--font-family-heading);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.footer-link a {
  color: rgba(255, 255, 255, 0.75);
  padding: 5px 0;
}

.footer-link a:hover {
  color: #fff;
  padding-left: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-contact-info {
  padding: 8px 0;
  text-align: left;
}

.footer-contact-info .container {
  background: linear-gradient(
      rgba(255, 255, 255, 0.14),
      rgba(255, 255, 255, 0.14)
    )
    var(--page-gutter) 0 / calc(100% - 2 * var(--page-gutter)) 1px no-repeat;
  padding-top: 28px;
}

.footer-contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 4px;
}

.social-links {
  gap: 10px;
  justify-content: flex-start;
  margin: 0 auto;
  max-width: 1200px;
  padding: 16px var(--page-gutter) 8px;
}

.social-link {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
}

.social-link:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: none;
}

.footer-quick-links {
  color: rgba(255, 255, 255, 0.6);
  margin: 0 auto;
  max-width: 1200px;
  padding: 12px var(--page-gutter) 28px;
  text-align: left;
}

.footer-bottom {
  background: var(--deodar-night);
  color: rgba(255, 255, 255, 0.65);
  padding: 18px 0;
  text-align: left;
}

.footer-bottom p {
  font-size: 0.9rem;
}

/* ------------------------------------------------------------------ floating actions */

.floating-whatsapp {
  box-shadow: 0 8px 20px rgba(14, 36, 29, 0.22);
  height: 52px;
  width: 52px;
}

.floating-whatsapp:hover {
  transform: none;
}

.back-to-top {
  background: #fff;
  border: 1px solid var(--line-strong);
  box-shadow: none;
  color: var(--slate);
  height: 44px;
  width: 44px;
}

.back-to-top:hover {
  background: var(--mist);
  color: var(--slate);
  transform: none;
}

/* ------------------------------------------------------------------ refinements */

/* Form controls and buttons don't inherit the page font by default. */
button,
input,
select,
textarea {
  font-family: inherit;
}

/* Line the header up with the 1200px content column. */
header {
  padding-left: max(
    var(--page-gutter),
    calc((100% - 1200px) / 2 + var(--page-gutter))
  );
  padding-right: max(
    var(--page-gutter),
    calc((100% - 1200px) / 2 + var(--page-gutter))
  );
}

.booking-content,
.booking-option,
.connection-item,
.facilities-intro,
.food-highlight,
.intro-content,
.quick-actions,
.section-subtitle,
.text-center {
  text-align: left;
}

.booking-content,
.facilities-intro,
.intro-content,
.section-subtitle {
  margin-left: 0;
  max-width: 68ch;
}

.quick-actions .section-title {
  color: #fff !important;
}

.story-highlight {
  color: inherit;
}

/* Collapsed answers stay fully hidden. */
.faq-answer {
  padding-bottom: 0;
  padding-top: 0;
}

.faq-item.active .faq-answer {
  max-height: 480px;
  padding-bottom: 24px;
}

.article-content ul,
.article-content ol {
  list-style-position: outside;
}

.article-content li > p {
  margin-bottom: 0.35em;
}

@media (min-width: 769px) {
  .nav-menu li {
    position: relative;
  }

  .submenu {
    background: var(--color-backdrop-dark);
    box-shadow: var(--shadow-xl);
    left: 0;
    list-style: none;
    margin: 0;
    min-width: 200px;
    opacity: 0;
    padding: 8px 0;
    position: absolute;
    top: 100%;
    transform: translateY(-6px);
    transition:
      opacity 0.2s ease,
      transform 0.2s ease,
      visibility 0.2s;
    visibility: hidden;
    z-index: 1000;
  }

  .nav-menu li:hover > .submenu,
  .nav-menu li:focus-within > .submenu {
    opacity: 1;
    transform: none;
    visibility: visible;
  }

  .submenu .nav-link {
    display: block;
    font-size: 0.95rem;
    padding: 8px 20px;
    white-space: nowrap;
  }

  .submenu .nav-link::after {
    display: none;
  }
}

/* Destination guide intro paragraphs were centred with their own rule. */
.page-destination-guide .container > .fade-in {
  margin-left: 0;
  max-width: none;
  text-align: left;
}

/* These paragraphs are centred by inline style attributes, so the overrides need !important. */
.page-destination-guide .container > p,
.page-destination-guide .container > .fade-in > p {
  margin-left: 0 !important;
  max-width: 68ch !important;
  text-align: left !important;
}

/* ------------------------------------------------------------------ responsive */

@media (min-width: 769px) {
  .nav-link[aria-current="page"]::after {
    width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --page-gutter: 20px;
  }

  .logo img {
    height: 48px;
  }

  .nav-link {
    font-size: 1.05rem;
  }

  .hero .hero-content {
    padding-bottom: 56px;
  }

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

  .hero-cta a {
    text-align: center;
  }

  .page-destination-guide .hero,
  .page-things-to-do .hero {
    min-height: 320px;
    padding: 120px 0 48px;
  }

  .property-content,
  .room-content {
    padding: 24px;
  }

  .nav-menu {
    align-items: stretch;
    background: #fff;
  }

  .nav-menu > li {
    width: 100%;
  }

  .nav-link {
    border-bottom: 1px solid var(--line);
    display: block;
    font-size: 1.15rem;
    padding: 16px var(--page-gutter);
    text-align: left;
    width: 100%;
  }

  .submenu .nav-link {
    color: var(--lichen);
    font-size: 1rem;
    padding-left: calc(var(--page-gutter) + 16px);
  }

  .page-index .hero h1:nth-of-type(2) {
    font-size: clamp(2.5rem, 11vw, 3.25rem);
  }

  .hero p {
    font-size: 1.1rem;
  }

  .page-header,
  .page-hero,
  .story-hero,
  .hero-contact {
    min-height: 320px;
    padding: 120px 0 48px;
  }

  .section-title {
    margin-bottom: 32px;
  }

  .number-item {
    padding: 4px 16px;
  }

  .faq-answer,
  .faq-item.active .faq-answer {
    padding-right: 0;
  }

  .footer-content {
    gap: 28px;
    grid-template-columns: 1fr !important;
  }

  .footer-main-link {
    padding-top: 56px;
  }
}
