/* ============================
   FONTS
   ============================ */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/jost-92zatbhpnqw73otd4g.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/jost-92zatbhpnqw73odd4iyl.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3yuba.woff2')
    format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/roboto-kfo7cnqeu92fr1me7ksn66agldtyluama3-ubgee.woff2')
    format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Hind';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/hind-5au69_a8oxmidgl4ba.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC,
    U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212,
    U+2215, U+FEFF, U+FFFD;
}

/* ============================
   CSS VARIABLES
   ============================ */
:root {
  --color-primary: #232323;
  --color-accent: #644222;
  --color-bg-light: #f7f5f1;
  --color-white: #ffffff;
  --color-text: #6e6e6e;
  --color-black: #000000;

  --font-heading: 'Jost', Sans-serif;
  --font-body: 'Roboto', Sans-serif;
  --font-small: 'Hind', Sans-serif;

  --container-max: 1140px;
  --section-padding: 4%;
}

/* ============================
   SCROLLBAR
   ============================ */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--color-bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #4a3019;
}

/* ============================
   RESET & BASE
   ============================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  color: var(--color-accent);
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* ============================
   SKIP LINK
   ============================ */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 8px 16px;
  z-index: 1000;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 0;
}

/* ============================
   CONTAINER
   ============================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 5%;
}

/* ============================
   HEADER DISCLAIMER BAR
   ============================ */
.header-disclaimer {
  background: var(--color-primary);
  text-align: center;
  padding: 8px 20px;
}
.header-disclaimer p {
  font-family: var(--font-small);
  font-size: 12px;
  color: var(--color-bg-light);
  margin: 0;
}
.header-disclaimer em {
  font-style: italic;
}

/* ============================
   HEADER MAIN
   ============================ */
.site-header {
  background: var(--color-white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 95;
  min-height: 80px;
}
.header-inner {
  max-width: 1214px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 80px;
}

/* ============================
   LOGO
   ============================ */
.header-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  width: 200px;
}
.header-logo img {
  width: 50px;
  height: 71px;
  object-fit: contain;
}
.header-logo .site-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--color-primary);
  line-height: 1.2;
}

/* ============================
   NAVIGATION
   ============================ */
.site-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
}
.site-nav ul li a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-primary);
  padding: 4px 10px;
  display: block;
  transition: color 0.2s;
}
.site-nav ul li a:hover,
.site-nav ul li a.active {
  color: var(--color-accent);
}

/* Burger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: all 0.3s;
}
.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.69);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
  max-width: 80%;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 90px;
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.hero-desc {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-white);
  max-width: 60%;
  margin: 0 auto;
  line-height: 1.6;
}

/* Inner page hero (smaller) */
.hero--inner {
  min-height: 44vh;
}
.hero--inner .hero-content {
  max-width: 70%;
}
.hero--inner .hero-title {
  font-size: 90px;
}

/* ============================
   DISCLAIMER BAR (below hero)
   ============================ */
.disclaimer-bar {
  background: var(--color-primary);
  padding: 13px 20px;
  text-align: center;
}
.disclaimer-bar p {
  font-family: var(--font-small);
  font-size: 12px;
  color: var(--color-bg-light);
  margin: 0;
  font-style: italic;
}

/* ============================
   SECTIONS
   ============================ */
.section {
  padding: var(--section-padding) 0;
}
.section--light {
  background: var(--color-bg-light);
}
.section--white {
  background: var(--color-white);
}
.section--pattern {
  background-image: url('../images/pattern-swirl.png');
  background-position: center center;
  background-size: cover;
}

.section-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.1;
}
.section-subtitle {
  font-size: 15px;
  color: var(--color-text);
  text-align: center;
  margin-bottom: 32px;
}
.section-text {
  font-size: 15px;
  color: var(--color-text);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* ============================
   CONTENT SPLIT (2-column)
   ============================ */
.content-split {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  padding: var(--section-padding) 0;
}
.content-split .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}
.content-text {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4% 0;
}
.content-image {
  flex: 1 1 50%;
  min-height: 300px;
  background-size: cover;
  background-position: center center;
}
.content-text .section-label {
  text-align: left;
}
.content-text .section-title {
  text-align: left;
}
.content-text .section-text {
  text-align: left;
  margin: 0 0 24px 0;
}

/* ============================
   FEATURES GRID (icon boxes)
   ============================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.feature-card {
  padding: 8%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
  background: var(--color-white);
}
.feature-icon {
  font-size: 21px;
  color: var(--color-primary);
  fill: var(--color-primary);
  margin-bottom: 15px;
}
.feature-icon svg {
  width: 24px;
  height: 24px;
}
.feature-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.feature-desc {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.6;
}

/* ============================
   AMENITIES GRID
   ============================ */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 32px 0;
}
.amenity-card {
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s;
}
.amenity-card:hover {
  box-shadow: 10px 10px 0 0 var(--color-accent);
}
.amenity-image {
  min-height: 30vh;
  background-size: cover;
  background-position: center center;
}
.amenity-content {
  padding: 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.amenity-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.amenity-desc {
  font-size: 15px;
  color: var(--color-text);
}

/* ============================
   COMMITMENT SPLIT (image + text)
   ============================ */
.commitment-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background: var(--color-bg-light);
  gap: 0;
}
.commitment-image {
  flex: 1 1 50%;
  min-height: 400px;
  background-size: cover;
  background-position: center center;
}
.commitment-content {
  flex: 1 1 50%;
  padding: 4%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.commitment-content .section-label {
  text-align: left;
}
.commitment-content .section-title {
  text-align: left;
}
.commitment-content .section-text {
  text-align: left;
  margin: 0;
}

/* ============================
   DESTINATIONS GRID
   ============================ */
.destinations-section {
  padding: var(--section-padding) 0;
}
.destinations-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 32px;
}
.destination-card {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  transition: box-shadow 0.3s;
}
.destination-card:hover {
  box-shadow: 10px 10px 0 0 var(--color-accent);
}
.destination-image {
  flex: 1 1 50%;
  min-height: 30vh;
  background-size: cover;
  background-position: center center;
}
.destination-content {
  flex: 1 1 50%;
  padding: 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.destination-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--color-primary);
  margin-bottom: 12px;
}
.destination-title a {
  color: inherit;
  text-decoration: none;
}
.destination-title a:hover {
  color: var(--color-accent);
}
.destination-desc {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.6;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 32px 0;
}
.testimonial {
  border-left: 3px solid var(--color-accent);
  padding: 20px;
  background: var(--color-white);
}
.testimonial-text {
  font-size: 15px;
  color: var(--color-primary);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}
.testimonial-text::before {
  content: '\201C';
}
.testimonial-text::after {
  content: '\201D';
}
.testimonial-author {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 14px;
}

/* ============================
   CTA SPLIT
   ============================ */
.cta-section {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  padding: var(--section-padding) 0;
  gap: 0;
}
.cta-section .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0;
  align-items: stretch;
}
.cta-content {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 40px 0 0;
}
.cta-image {
  flex: 1 1 50%;
  min-height: 40vh;
  background-size: cover;
  background-position: center center;
}
.cta-content .section-label {
  text-align: left;
}
.cta-content .section-title {
  text-align: left;
}
.cta-content .section-text {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
}

/* ============================
   HOTEL LISTING CARDS
   ============================ */
.hotel-listing {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  padding: var(--section-padding) 0;
}
.hotel-listing .container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: stretch;
}
.hotel-info {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4% 0;
}
.hotel-image {
  flex: 1 1 50%;
  min-height: 300px;
  background-size: cover;
  background-position: center center;
}
.hotel-label {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-accent);
  font-size: 15px;
  margin-bottom: 8px;
}
.hotel-name {
  font-family: var(--font-heading);
  font-size: 60px;
  font-weight: 700;
  text-transform: capitalize;
  color: var(--color-primary);
  line-height: 1.1;
  margin-bottom: 16px;
}
.hotel-desc {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 24px;
}
.btn-primary {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 28px;
  text-decoration: none;
  transition:
    background 0.2s,
    box-shadow 0.2s;
  align-self: flex-start;
}
.btn-primary:hover {
  background: #4a3019;
  color: var(--color-white);
}

/* Alternating image/text */
.hotel-listing--reverse .container {
  flex-direction: row-reverse;
}

/* ============================
   OUR STORY PAGE SECTIONS
   ============================ */
.story-commitment {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  background: var(--color-bg-light);
}
.story-commitment-image {
  flex: 1 1 50%;
  min-height: 65vh;
  background-size: cover;
  background-position: center center;
}
.story-commitment-content {
  flex: 1 1 50%;
  padding: 4%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-commitment-content .section-label {
  text-align: left;
}
.story-commitment-content .section-title {
  text-align: left;
}
.story-commitment-content .section-text {
  text-align: left;
  margin: 0;
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: var(--color-accent);
  padding: 4% 0;
}
.footer-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 5%;
  text-align: center;
}
.footer-title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-bg-light);
  margin-bottom: 12px;
}
.footer-text {
  font-size: 15px;
  color: var(--color-bg-light);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-disclaimer {
  border-radius: 15px;
  padding: 4%;
  margin-bottom: 24px;
  background-color: rgba(0, 0, 0, 0.74);
  background-image: url('../images/hotel-facade.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
.footer-disclaimer-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-bg-light);
  margin-bottom: 12px;
}
.footer-disclaimer-text {
  font-size: 15px;
  color: var(--color-bg-light);
  line-height: 1.7;
}
.footer-disclaimer-text a {
  color: var(--color-white);
  text-decoration: underline;
}
.footer-contact-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-bg-light);
  margin: 24px 0 8px;
}
.footer-contact-text {
  font-size: 15px;
  color: var(--color-bg-light);
  line-height: 1.7;
  margin-bottom: 20px;
}
.footer-contact-text a {
  color: var(--color-white);
  text-decoration: underline;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.footer-nav a {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-bg-light);
  font-size: 15px;
  text-decoration: none;
  position: relative;
}
.footer-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-bg-light);
  transition: width 0.2s;
}
.footer-nav a:hover::after {
  width: 100%;
}
.footer-nav a:hover {
  color: var(--color-bg-light);
}
.footer-copyright {
  font-size: 15px;
  color: var(--color-bg-light);
  margin-top: 8px;
}

/* ============================
   COOKIE BANNER
   ============================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-primary);
  color: var(--color-white);
  padding: 16px 24px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}
.cookie-banner.hidden {
  display: none;
}
.cookie-text {
  font-size: 13px;
  line-height: 1.5;
  flex: 1 1 300px;
}
.cookie-text a {
  color: var(--color-accent);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.cookie-accept {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-accept:hover {
  background: #4a3019;
}
.cookie-reject {
  background: transparent;
  color: var(--color-white);
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  border: 1px solid var(--color-white);
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ============================
   CONTACT FORM
   ============================ */
.contact-form {
  max-width: 640px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 20px;
}
.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-primary);
  font-size: 14px;
  margin-bottom: 6px;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-primary);
  border: 1px solid #ccc;
  background: var(--color-white);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus,
.form-textarea:focus {
  border-color: var(--color-accent);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-error {
  display: none;
  color: #c00;
  font-size: 13px;
  margin-top: 4px;
}
.form-honeypot {
  display: none;
}
.form-submit {
  background: var(--color-accent);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 40px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.form-submit:hover {
  background: #4a3019;
}
.form-notice {
  font-size: 12px;
  color: var(--color-text);
  margin-top: 12px;
  font-style: italic;
}
.form-success,
.form-failure {
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 16px;
  display: none;
}
.form-success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-failure {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ============================
   POLICY PAGES
   ============================ */
.policy-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4% 5%;
}
.policy-content h2 {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 32px 0 12px;
}
.policy-content h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 24px 0 8px;
}
.policy-content p {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 16px;
}
.policy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.policy-content ul li {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 6px;
}
.policy-content a {
  color: var(--color-accent);
  text-decoration: underline;
}

/* ============================
   404 PAGE
   ============================ */
.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
}
.error-code {
  font-family: var(--font-heading);
  font-size: 120px;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}
.error-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 16px 0 8px;
}
.error-text {
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 32px;
  max-width: 480px;
}
.btn-home {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 14px 36px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-home:hover {
  background: #4a3019;
  color: var(--color-white);
}

/* Focus visible */
:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hotel-name {
    font-size: 40px;
  }
  .section-title {
    font-size: 40px;
  }
  .destinations-section .container {
    flex-direction: column;
  }
  .cta-section .container {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: 60vh;
  }
  .hero--inner {
    min-height: 20vh;
  }
  .hero-title {
    font-size: 35px;
  }
  .hero-content {
    max-width: 90%;
  }
  .hero-desc {
    max-width: 100%;
    font-size: 15px;
  }
  .hero--inner .hero-content {
    max-width: 90%;
  }
  .hero--inner .hero-title {
    font-size: 35px;
  }

  .section-title {
    font-size: 30px;
  }
  .hotel-name {
    font-size: 30px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .content-split .container,
  .hotel-listing .container {
    flex-direction: column;
  }
  .content-text,
  .content-image,
  .hotel-info,
  .hotel-image {
    flex: 1 1 100%;
  }
  .hotel-image {
    min-height: 24vh;
  }
  .content-image {
    min-height: 24vh;
  }

  .commitment-image {
    min-height: 36vh;
    flex: 1 1 100%;
  }
  .commitment-content {
    flex: 1 1 100%;
    padding: 10%;
  }
  .story-commitment-image {
    min-height: 36vh;
    flex: 1 1 100%;
  }
  .story-commitment-content {
    flex: 1 1 100%;
    padding: 10%;
  }

  .destination-image {
    flex: 1 1 100%;
    min-height: 24vh;
  }
  .destination-content {
    flex: 1 1 100%;
  }
  .cta-content {
    flex: 1 1 100%;
    padding: 0 0 24px 0;
  }
  .cta-image {
    flex: 1 1 100%;
    min-height: 30vh;
  }

  .nav-toggle {
    display: flex;
  }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 200;
  }
  .site-nav.open {
    display: block;
  }
  .site-nav ul {
    flex-direction: column;
    padding: 8px 0;
  }
  .site-nav ul li a {
    padding: 10px 20px;
    font-size: 16px;
  }
  .site-nav ul li a:hover,
  .site-nav ul li a.active {
    background: var(--color-bg-light);
    color: var(--color-accent);
  }
  .header-inner {
    position: relative;
    flex-wrap: wrap;
  }
  .header-logo {
    width: auto;
  }

  .footer-disclaimer {
    background-attachment: scroll;
  }
}
