:root {
  --green: #123d31;
  --ink: #141a18;
  --muted: #26342f;
  --page: #fff8f3;
  --header: #f7f0eb;
  --line: #eadfd7;
  --accent: #cf4c2f;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  background: var(--page);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  padding: 0 7.8%;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 240, 235, 0.96);
  backdrop-filter: blur(12px);
}

.brand {
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 2vw, 1.6rem);
  font-weight: 700;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  margin-right: 48px;
}

.site-nav a {
  position: relative;
  padding: 23px 0 21px;
  color: #3b413f;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a.active {
  color: var(--green);
}

.site-nav a.active::after {
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  height: 2px;
  background: var(--accent);
  content: "";
}

/* Header Actions and Mobile Toggle styling */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--green);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, background-color 0.35s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Nav Overlay Backdrop */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 26, 24, 0.25);
  backdrop-filter: blur(4px);
  z-index: 85;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.nav-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

/* Body Scroll Prevention */
body.no-scroll {
  overflow: hidden;
}

.book-button,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.book-button {
  min-height: 33px;
  padding: 0 23px;
  color: #ffffff;
  background: var(--green);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.book-button:hover,
.primary-button:hover {
  background: #0d3127;
}

.hero-section {
  position: relative;
  display: grid;
  min-height: calc(100vh - 66px);
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(rgba(7, 34, 43, 0.34), rgba(7, 34, 43, 0.42)),
    url("hotel.png") center / cover no-repeat;
}

.hero-section::after {
  position: absolute;
  inset: 0;
  background: rgba(10, 27, 31, 0.12);
  backdrop-filter: blur(2.2px);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 40px));
  margin-top: 12px;
  color: #ffffff;
  text-align: center;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}

.hero-content h1 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.1;
}

.hero-content p {
  margin: 28px auto 0;
  max-width: 760px;
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  font-weight: 500;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 38px;
}

.primary-button,
.secondary-button {
  min-width: 196px;
  min-height: 52px;
  padding: 0 28px;
  font-size: 0.98rem;
  text-shadow: none;
}

.primary-button {
  color: #ffffff;
  background: var(--green);
}

.secondary-button {
  border: 2px solid rgba(255, 255, 255, 0.95);
  color: #ffffff;
  background: rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.secondary-button:hover {
  background: rgba(255, 255, 255, 0.22);
}

.rooms-split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: #111c18;
}

.room-panel {
  position: relative;
  display: block;
  min-height: 560px;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}

.room-panel + .room-panel {
  border-left: 1px solid rgba(255, 255, 255, 0.55);
}

.room-panel img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms ease, filter 600ms ease;
}

.room-panel-suite img {
  object-position: center;
}

.room-panel-comfort img {
  object-position: center 58%;
}

.room-panel::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.38) 46%, rgba(0, 0, 0, 0.7) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0.08));
  content: "";
}

.room-panel:hover img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.room-panel-content {
  position: absolute;
  right: 7%;
  bottom: 36px;
  left: 7%;
  display: grid;
  justify-items: start;
}

.room-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.05;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.room-copy {
  max-width: 560px;
  margin-top: 18px;
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.room-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  min-height: 43px;
  margin-top: 26px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background 220ms ease, border-color 220ms ease;
}

.room-panel:hover .room-button {
  border-color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.24);
}

.refuge-section {
  display: grid;
  grid-template-columns: minmax(380px, 1fr) minmax(390px, 0.96fr);
  gap: clamp(44px, 5.8vw, 64px);
  align-items: start;
  min-height: calc(100vh - 66px);
  padding: 52px 7.8% 84px;
  background: var(--page);
}

.image-panel {
  position: relative;
  width: 100%;
  max-width: 544px;
}

.image-panel img {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: min(58vw, 520px);
  min-height: 500px;
  border-radius: 10px;
  object-fit: cover;
  object-position: center top;
  box-shadow: 0 24px 45px rgba(37, 28, 18, 0.12);
}

.image-shadow {
  position: absolute;
  right: -32px;
  bottom: -32px;
  z-index: 1;
  width: 44%;
  height: 38%;
  border-radius: 7px;
  background: #e6ded4;
  box-shadow: 0 14px 24px rgba(78, 58, 39, 0.14);
}

.content-panel {
  max-width: 544px;
  padding-top: 26px;
}

.content-panel h1 {
  margin: 0 0 40px;
  color: #090909;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.9rem, 2.35vw, 2.5rem);
  font-weight: 700;
  line-height: 1.18;
}

.content-panel p {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.17rem);
  line-height: 1.55;
}

.feature-list {
  display: grid;
  gap: 20px;
  margin: 34px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid #cfc7bf;
  list-style: none;
}

.feature-list li {
  position: relative;
  padding-left: 36px;
  color: #0e0f0f;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
}

.feature-list li::before {
  position: absolute;
  left: 2px;
  top: 50%;
  width: 20px;
  height: 20px;
  transform: translateY(-50%);
  border: 2px solid #0c4136;
  border-radius: 50%;
  content: "";
}

.feature-list li::after {
  position: absolute;
  left: 9px;
  top: 50%;
  width: 8px;
  height: 4px;
  transform: translateY(-65%) rotate(-45deg);
  border-bottom: 2px solid #0c4136;
  border-left: 2px solid #0c4136;
  content: "";
}

.experience-section {
  padding: 72px 7.8% 84px;
  background:
    radial-gradient(circle at 12% 18%, rgba(201, 242, 223, 0.28), transparent 28%),
    linear-gradient(180deg, #f6eee7 0%, #fff8f3 100%);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-heading p {
  margin: 0 0 12px;
  color: #9a442f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: #080908;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.1;
}

.section-heading::after {
  display: block;
  width: 80px;
  height: 3px;
  margin: 26px auto 0;
  background: #a34632;
  content: "";
}

.experience-grid {
  display: grid;
  grid-template-columns: 2.05fr 1fr;
  gap: 24px;
  max-width: 1152px;
  margin: 0 auto;
}

.experience-card {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 520px;
  border-radius: 10px;
  background: #13231e;
  box-shadow: 0 22px 44px rgba(45, 33, 24, 0.13);
  isolation: isolate;
}

.experience-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.experience-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(6, 12, 11, 0.76) 0%, rgba(6, 12, 11, 0.32) 46%, rgba(6, 12, 11, 0.12) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06) 0%, rgba(0, 0, 0, 0.5) 100%);
  content: "";
}

.experience-card:hover img {
  filter: saturate(1.08);
  transform: scale(1.045);
}

.card-food {
  min-height: 520px;
}

.card-trekking {
  min-height: 520px;
}

.card-culture {
  grid-column: 1 / -1;
  min-height: 560px;
}

.card-culture::before {
  background:
    linear-gradient(90deg, rgba(6, 12, 11, 0.78) 0%, rgba(6, 12, 11, 0.28) 55%, rgba(6, 12, 11, 0.48) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.52) 100%);
}

.card-content {
  position: absolute;
  left: clamp(24px, 3vw, 34px);
  right: clamp(24px, 3vw, 34px);
  bottom: clamp(24px, 3vw, 34px);
  display: grid;
  gap: 8px;
  color: #ffffff;
}

.eyebrow {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  font-weight: 700;
  line-height: 1.08;
}

.card-copy {
  max-width: 440px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}

.learn-more {
  position: absolute;
  right: 34px;
  bottom: 36px;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
}

.learn-more::after {
  display: inline-block;
  width: 22px;
  height: 10px;
  margin-left: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: skewX(-20deg) translateY(-1px);
  content: "";
}

.gastronomy-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(520px, 1.18fr);
  gap: clamp(54px, 8vw, 108px);
  align-items: center;
  padding: 56px 7.8%;
  background: #fff8f3;
}

.gastronomy-copy {
  max-width: 470px;
}

.gastronomy-copy h2 {
  margin: 0;
  color: #211d19;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(3.1rem, 5vw, 4.4rem);
  font-style: italic;
  font-weight: 400;
  line-height: 0.95;
}

.gastronomy-copy p {
  margin: 52px 0 60px;
  color: #34423e;
  font-size: clamp(1.05rem, 1.45vw, 1.28rem);
  font-weight: 400;
  line-height: 1.55;
}

.gastronomy-links {
  display: grid;
  gap: 22px;
}

.gastronomy-links a {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 16px;
  color: #052f29;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.gastronomy-links span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid #d8cfc5;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  color: #102f29;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

.gastronomy-image img {
  display: block;
  width: 100%;
  height: min(36vw, 465px);
  min-height: 360px;
  border-radius: 28px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 22px 48px rgba(53, 38, 28, 0.12);
}

.day-section {
  position: relative;
  overflow: hidden;
  padding: 88px 7.8% 132px;
  background: #fbf2ea;
}

.day-heading {
  max-width: 920px;
  margin: 0 auto 92px;
  text-align: center;
}

.day-heading p {
  margin: 0 0 18px;
  color: #07382f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.46em;
  text-transform: uppercase;
}

.day-heading h2 {
  margin: 0;
  color: #211d19;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.6rem, 4.8vw, 4rem);
  font-weight: 600;
  line-height: 0.95;
}

.day-timeline {
  position: relative;
  display: grid;
  gap: 150px;
  max-width: 1160px;
  margin: 0 auto;
}

.day-timeline::before {
  position: absolute;
  top: 12px;
  bottom: 12px;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: #eadfd7;
  content: "";
}

.day-moment {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(52px, 8vw, 96px);
  align-items: center;
}

.day-copy {
  max-width: 520px;
  text-align: center;
}

.day-moment:not(.day-moment-reverse) .day-copy {
  justify-self: end;
}

.day-moment-reverse .day-copy {
  justify-self: start;
  text-align: left;
}

.day-time {
  margin: 0 0 14px;
  color: #a3452f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.day-copy h3 {
  margin: 0 0 24px;
  color: #0d0d0c;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.05;
}

.day-copy p:not(.day-time) {
  margin: 0;
  color: #3a4440;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.55;
}

.day-image {
  position: relative;
  margin: 0;
  border-radius: 14px;
}

.day-image::before {
  position: absolute;
  inset: -20px -20px 20px 20px;
  z-index: 0;
  border-radius: 16px;
  background: #e6ddd3;
  transform: rotate(-2.5deg);
  content: "";
}

.day-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 288px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 32px rgba(60, 43, 32, 0.14);
}

.day-moment-reverse .day-image::before {
  inset: -20px 20px 20px -20px;
  transform: rotate(2.5deg);
}

.testimonials-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(260px, 1fr) minmax(260px, 1fr);
  gap: clamp(32px, 4.8vw, 64px);
  align-items: center;
  padding: 116px 7.8% 150px;
  background: #fff8f3;
}

.testimonials-intro {
  max-width: 340px;
}

.testimonials-intro p {
  margin: 0 0 14px;
  color: #062f28;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.testimonials-intro h2 {
  margin: 0;
  color: #080908;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.95rem, 2.65vw, 2.55rem);
  font-weight: 600;
  line-height: 1.18;
}

.rating-stars {
  margin-top: 42px;
  color: #a3452f;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  line-height: 1;
}

.review-card {
  min-height: 292px;
  padding: 40px;
  border-radius: 14px;
  background: #eee5dc;
}

.review-card blockquote {
  margin: 0;
  color: #111311;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.48;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.reviewer img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: none;
}

.reviewer strong,
.reviewer span {
  display: block;
}

.reviewer strong {
  color: #0a0d0b;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0;
}

.reviewer span {
  margin-top: 3px;
  color: #43514d;
  font-size: 0.75rem;
  line-height: 1.3;
}

.site-footer {
  background: #f2e8df;
  border-top: 1px solid #e4d8ce;
  color: #062f28;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 2.1fr) minmax(120px, 0.85fr) minmax(120px, 0.85fr) minmax(240px, 1.2fr);
  gap: clamp(40px, 6vw, 84px);
  padding: 92px 7.8% 56px;
}

.footer-brand h2 {
  margin: 0 0 44px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
  line-height: 1;
}

.footer-brand p {
  max-width: 450px;
  margin: 0;
  color: #30403b;
  font-size: clamp(1.05rem, 1.45vw, 1.24rem);
  font-style: italic;
  line-height: 1.55;
}

.footer-social {
  display: flex;
  gap: 30px;
  margin-top: 48px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1.5px solid #d4c8be;
  border-radius: 50%;
  color: #123d31;
  font-size: 1.05rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-icon:hover {
  background-color: #123d31;
  border-color: #123d31;
  color: #ffffff;
  transform: translateY(-2.5px);
  box-shadow: 0 4px 10px rgba(18, 61, 49, 0.15);
}

.footer-column,
.footer-inspiration {
  display: grid;
  align-content: start;
}

.footer-column h3,
.footer-inspiration h3 {
  margin: 0 0 40px;
  color: #082f29;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.46em;
  text-transform: uppercase;
}

.footer-column a {
  width: fit-content;
  margin-bottom: 24px;
  color: #1c2c27;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column a:hover,
.footer-legal a:hover {
  color: #9a442f;
}

.footer-inspiration p {
  max-width: 280px;
  margin: 0 0 46px;
  color: #31423d;
  font-size: 0.86rem;
  font-style: italic;
  line-height: 1.55;
}

.footer-form {
  max-width: 270px;
}

.footer-form label {
  display: block;
  color: #64716c;
  font-size: 0.9rem;
  font-style: italic;
}

.email-line {
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #aaa096;
}

.email-line input {
  width: 100%;
  height: 38px;
  border: 0;
  outline: 0;
  color: #123d31;
  background: transparent;
  font: inherit;
}

.email-line button {
  position: relative;
  width: 34px;
  height: 38px;
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.email-line button::before {
  position: absolute;
  right: 4px;
  top: 18px;
  width: 18px;
  height: 2px;
  background: #07382f;
  content: "";
}

.email-line button::after {
  position: absolute;
  right: 4px;
  top: 13px;
  width: 10px;
  height: 10px;
  transform: rotate(-45deg);
  border-right: 2px solid #07382f;
  border-bottom: 2px solid #07382f;
  content: "";
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 7.8%;
  padding: 24px 0;
  border-top: 1px solid #e4d8ce;
}

.footer-bottom p {
  margin: 0;
  color: #55635e;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.footer-legal {
  display: flex;
  gap: 36px;
}

.footer-legal a {
  color: #55635e;
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}

.footer-legal a:hover {
  color: var(--accent);
}

@media (max-width: 980px) {
  .rooms-split-section {
    grid-template-columns: 1fr;
  }

  .room-panel,
  .rooms-split-section {
    min-height: 460px;
  }

  .room-panel + .room-panel {
    border-top: 1px solid rgba(255, 255, 255, 0.55);
    border-left: 0;
  }

  .refuge-section {
    grid-template-columns: 1fr;
    gap: 46px;
    padding-top: 38px;
  }

  .image-panel,
  .content-panel {
    max-width: none;
  }

  .content-panel {
    padding-top: 0;
  }

  .image-panel img {
    height: auto;
    min-height: 0;
    aspect-ratio: 544 / 520;
    max-height: 680px;
  }

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

  .experience-card,
  .card-food,
  .card-trekking,
  .card-culture {
    min-height: 520px;
  }

  .card-culture {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-inspiration {
    grid-column: 1 / -1;
  }

  .gastronomy-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .gastronomy-copy {
    max-width: 680px;
  }

  .gastronomy-image img {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .day-heading {
    margin-bottom: 66px;
  }

  .day-timeline {
    gap: 92px;
  }

  .day-timeline::before {
    left: 0;
  }

  .day-moment,
  .day-moment-reverse {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-left: 26px;
  }

  .day-moment-reverse .day-image {
    order: 2;
  }

  .day-moment-reverse .day-copy {
    order: 1;
  }

  .day-copy,
  .day-moment:not(.day-moment-reverse) .day-copy,
  .day-moment-reverse .day-copy {
    justify-self: stretch;
    max-width: 680px;
    text-align: left;
  }

  .testimonials-section {
    grid-template-columns: 1fr;
    padding-top: 82px;
    padding-bottom: 92px;
  }

  .testimonials-intro {
    max-width: 620px;
  }

  .review-card {
    min-height: auto;
  }
}

@media (max-width: 850px) {
  .site-header {
    flex-wrap: nowrap;
    gap: 0;
    padding: 0 24px;
    height: 70px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(320px, 100vw);
    background: rgba(247, 240, 235, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: -10px 0 30px rgba(18, 61, 49, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 80px 40px;
    z-index: 90;
    margin: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(100%);
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    position: relative;
    padding: 12px 0;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    color: var(--green);
  }

  .site-nav a.active::after {
    bottom: 0;
    left: 35%;
    right: 35%;
    height: 2px;
    background: var(--accent);
  }

  .hero-section {
    min-height: calc(100vh - 70px);
  }

  .experience-section {
    padding-top: 58px;
  }

  .refuge-section {
    min-height: auto;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding-top: 70px;
    padding-bottom: 36px;
  }

  .footer-brand,
  .footer-inspiration {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
  }

  .gastronomy-section {
    padding-top: 48px;
    padding-bottom: 58px;
  }

  .day-section {
    padding-top: 70px;
    padding-bottom: 90px;
  }

  .day-image img {
    height: 320px;
  }

  .testimonials-section {
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .site-header {
    justify-content: space-between;
    padding-inline: 18px;
  }

  .brand {
    width: auto;
    text-align: left;
  }

  .book-button {
    width: auto;
  }

  .hero-section {
    min-height: calc(100vh - 70px);
  }

  .hero-content {
    width: min(100% - 28px, 520px);
  }

  .hero-actions {
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
  }

  .primary-button,
  .secondary-button {
    width: min(270px, 100%);
  }

  .room-panel,
  .rooms-split-section {
    min-height: 390px;
  }

  .room-panel-content {
    right: 24px;
    bottom: 28px;
    left: 24px;
  }

  .room-button {
    min-width: 154px;
  }

  .experience-section {
    padding: 48px 20px 58px;
  }

  .refuge-section {
    padding: 28px 20px 58px;
  }

  .image-shadow {
    right: -12px;
    bottom: -18px;
  }

  .content-panel h1 {
    margin-bottom: 26px;
  }

  .content-panel p {
    margin-bottom: 24px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .experience-grid {
    gap: 16px;
  }

  .experience-card,
  .card-food,
  .card-trekking,
  .card-culture {
    min-height: 420px;
  }

  .card-copy {
    display: none;
  }

  .learn-more {
    left: 24px;
    right: auto;
    bottom: 24px;
    transform: translateY(34px);
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 42px 24px;
    padding: 58px 20px 32px;
  }

  .footer-brand h2 {
    margin-bottom: 28px;
  }

  .footer-social {
    margin-top: 34px;
  }

  .footer-column h3,
  .footer-inspiration h3 {
    margin-bottom: 24px;
  }

  .footer-bottom {
    margin: 0 20px;
    padding: 20px 0;
  }

  .footer-bottom p,
  .footer-legal a {
    letter-spacing: 0.24em;
  }

  .footer-legal {
    gap: 28px;
  }

  .gastronomy-section {
    padding: 42px 20px 52px;
  }

  .gastronomy-copy h2 {
    font-size: clamp(2.75rem, 14vw, 3.5rem);
  }

  .gastronomy-copy p {
    margin: 34px 0 42px;
  }

  .gastronomy-links a {
    gap: 14px;
    letter-spacing: 0.16em;
  }

  .gastronomy-image img {
    border-radius: 18px;
  }

  .day-section {
    padding: 56px 20px 72px;
  }

  .day-heading {
    margin-bottom: 48px;
  }

  .day-heading p {
    letter-spacing: 0.28em;
  }

  .day-heading h2 {
    font-size: clamp(2.2rem, 10vw, 2.9rem);
  }

  .day-moment,
  .day-moment-reverse {
    padding-left: 20px;
  }

  .day-time {
    letter-spacing: 0.18em;
  }

  .day-image::before,
  .day-moment-reverse .day-image::before {
    inset: -12px -12px 12px 12px;
  }

  .day-image img {
    height: 230px;
  }

  .testimonials-section {
    padding: 58px 20px 70px;
  }

  .rating-stars {
    margin-top: 28px;
    font-size: 1.35rem;
  }

  .review-card {
    padding: 28px;
  }

  .reviewer img {
    width: 50px;
    height: 50px;
  }
}

/* ==========================================================================
   Booking Page Styles
   ========================================================================== */
.booking-page {
  background: var(--page);
}

.booking-main {
  padding: 60px 7.8% 120px;
  max-width: 1400px;
  margin: 0 auto;
}

.booking-hero {
  margin-bottom: 50px;
  text-align: center;
}

.booking-title-area {
  max-width: 700px;
  margin: 0 auto;
}

.booking-title-area .eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.booking-title-area h1 {
  margin: 0 0 16px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
}

.booking-title-area p {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.55;
  margin: 0;
}

.booking-wrapper {
  position: relative;
  min-height: 600px;
}

.booking-container {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: start;
  transition: opacity 0.4s ease;
}

/* Left Column: Summary Card */
.booking-summary-column {
  position: sticky;
  top: 100px;
  z-index: 5;
}

.booking-summary-card {
  background: #eee5dc;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(37, 28, 18, 0.08);
}

.summary-image-wrapper {
  position: relative;
  height: 230px;
  overflow: hidden;
}

.summary-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.booking-summary-card:hover .summary-image-wrapper img {
  transform: scale(1.03);
}

.summary-room-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 16px;
  background: rgba(18, 61, 49, 0.92);
  backdrop-filter: blur(8px);
  border-radius: 30px;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.summary-details {
  padding: 36px 32px;
}

.summary-details h3 {
  margin: 0 0 10px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.summary-room-rate {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.summary-room-rate .price-num {
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 800;
}

.summary-divider {
  height: 1px;
  background: #d8cfc5;
  margin: 24px 0;
}

.summary-row-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.summary-row-grid.second-row {
  margin-top: 18px;
}

.summary-meta-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.meta-label {
  color: #727f7b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.meta-value {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.price-breakdown {
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.94rem;
}

.price-row.total-row {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px dashed #c4b9ad;
  color: var(--green);
  font-size: 1.15rem;
  font-weight: 800;
}

.price-row.total-row span:last-child {
  color: var(--accent);
  font-size: 1.45rem;
}

/* Right Column: Form Card */
.booking-form-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 24px 50px rgba(37, 28, 18, 0.06);
}

.booking-form-card h2 {
  margin: 0 0 8px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
}

.form-intro {
  color: #64716c;
  font-size: 0.96rem;
  line-height: 1.5;
  margin: 0 0 36px;
}

.booking-form {
  display: grid;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
}

.form-row.split-row {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-group input,
.form-group select,
.form-group textarea {
  height: 48px;
  padding: 0 16px;
  background: #fdfbf9;
  border: 1px solid #d8cfc5;
  border-radius: 8px;
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.form-group textarea {
  height: auto;
  padding: 16px;
  resize: vertical;
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
  background: #fbf8f5;
  border-color: #c4b5a6;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: #ffffff;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(18, 61, 49, 0.08);
}

/* Submit Button Custom Premium Look */
.booking-submit-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 12px;
  background: var(--green);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: "Inter", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(18, 61, 49, 0.15);
}

.booking-submit-btn:hover {
  background: #0d3127;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(18, 61, 49, 0.22);
}

.booking-submit-btn:active {
  transform: translateY(0);
}

.booking-submit-btn .btn-spinner {
  display: none;
  width: 22px;
  height: 22px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.8s ease-in-out infinite;
}

.booking-submit-btn.submitting .btn-text {
  display: none;
}

.booking-submit-btn.submitting .btn-spinner {
  display: block;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success Card */
.booking-success-card {
  max-width: 680px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 60px 48px;
  text-align: center;
  box-shadow: 0 30px 60px rgba(37, 28, 18, 0.08);
}

.success-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background: rgba(18, 61, 49, 0.1);
  color: var(--green);
  border-radius: 50%;
  font-size: 2rem;
  margin-bottom: 28px;
  animation: scaleIn 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.success-eyebrow {
  display: block;
  color: var(--accent);
  font-family: "Lora", Georgia, serif;
  font-style: italic;
  font-size: 1.45rem;
  margin-bottom: 12px;
  letter-spacing: 0.04em;
}

.booking-success-card h2 {
  margin: 0 0 32px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 700;
}

.success-booking-ref {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  background: #fdfbf9;
  border: 1px solid var(--line);
  border-radius: 10px;
  max-width: 320px;
  margin: 0 auto 36px;
}

.success-booking-ref span {
  color: #727f7b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.success-booking-ref strong {
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.success-details-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
  background: #fbf8f5;
  border-radius: 12px;
  padding: 24px;
}

.success-summary-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.success-summary-item span {
  color: #727f7b;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.success-summary-item strong {
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.success-letter {
  margin-top: 40px;
  text-align: left;
  font-family: "Lora", Georgia, serif;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
  border-left: 2px solid var(--line);
  padding-left: 24px;
}

.success-letter p {
  margin: 0 0 18px;
}

.success-closing {
  font-style: italic;
  color: var(--green);
}

.success-signature {
  margin-top: 24px;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--green);
  line-height: 1.3;
}

.success-signature span {
  font-family: "Inter", Arial, sans-serif;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #727f7b;
}

.success-return-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  min-width: 200px;
  margin-top: 42px;
  background: var(--green);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 700;
  transition: background 0.3s ease, transform 0.2s ease;
  box-shadow: 0 6px 15px rgba(18, 61, 49, 0.12);
}

.success-return-btn:hover {
  background: #0d3127;
  transform: translateY(-1px);
}

@keyframes scaleIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Header customization for booking home return */
.book-button.return-home {
  background: transparent;
  color: var(--green);
  border: 1px solid var(--green);
}

.book-button.return-home:hover {
  background: var(--green);
  color: #ffffff;
}

/* ==========================================================================
   Booking Page Responsiveness
   ========================================================================== */
@media (max-width: 1080px) {
  .booking-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .booking-summary-column {
    position: static;
  }
}

@media (max-width: 768px) {
  .booking-main {
    padding-top: 40px;
    padding-bottom: 80px;
  }

  .booking-form-card {
    padding: 32px 24px;
  }

  .booking-success-card {
    padding: 40px 24px;
  }

  .success-details-summary {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .form-row.split-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .booking-hero {
    margin-bottom: 32px;
  }
}

/* ==========================================================================
   Contact Page Styling
   ========================================================================== */

.contact-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.contact-main {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 7.8%;
  overflow: hidden;
  background-color: #071512; /* Fallback */
}

/* Background image for contact page main content */
.contact-hero-backdrop {
  position: absolute;
  inset: 0;
  background-image: url("assets/day-sunrise-peaks.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(12px) brightness(0.38) saturate(0.9);
  transform: scale(1.05); /* Avoid white edges from blur */
  z-index: 1;
}

.contact-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

/* Left Panel: Info Panel */
.contact-info-panel {
  background-color: #0d231e; /* Deep rich forest green */
  padding: 64px 48px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 580px;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-eyebrow {
  color: #b89060; /* Sleek elegant gold color */
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}

.contact-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 54px;
}

.contact-details-list {
  display: grid;
  gap: 36px;
  margin-bottom: 54px;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.detail-icon {
  color: #b89060; /* Elegant gold icon */
  flex-shrink: 0;
  margin-top: 2px;
}

.detail-content {
  display: grid;
  gap: 6px;
}

.detail-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-value {
  margin: 0;
  font-size: 0.96rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  font-weight: 500;
}

.detail-value a {
  color: inherit;
  transition: color 200ms ease;
}

.detail-value a:hover {
  color: #b89060;
}

.contact-social-row {
  display: flex;
  gap: 24px;
  align-items: center;
}

.contact-social-link {
  color: rgba(255, 255, 255, 0.6);
  transition: color 200ms ease, transform 200ms ease;
}

.contact-social-link:hover {
  color: #b89060;
  transform: translateY(-2px);
}

/* Right Panel: Form Panel */
.contact-form-panel {
  background-color: #fffbf7; /* Warm clean white */
  padding: 64px 54px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 2.8vw, 2.3rem);
  color: var(--ink);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 44px;
}

.inquiry-form {
  display: grid;
  gap: 32px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-label {
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.underline-input {
  width: 100%;
  border: 0;
  border-bottom: 1.5px solid #d4c8be;
  background: transparent;
  padding: 8px 0 10px;
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--ink);
  outline: none;
  transition: border-color 260ms ease;
}

.underline-input::placeholder {
  color: #c0b4a8;
  font-style: italic;
  font-size: 0.88rem;
}

.underline-input:focus {
  border-bottom-color: #b89060; /* Match elegant gold */
}

.textarea-input {
  resize: none;
}

/* Gold Button style */
.submit-inquiry-btn {
  background-color: #b89060; /* Matches concept exactly */
  color: #ffffff;
  border: none;
  border-radius: 4px;
  padding: 16px 32px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 220ms ease, transform 200ms ease, box-shadow 220ms ease;
  margin-top: 12px;
  width: 100%;
}

.submit-inquiry-btn:hover {
  background-color: #9e7647;
  box-shadow: 0 4px 12px rgba(184, 144, 96, 0.28);
}

.submit-inquiry-btn:active {
  transform: scale(0.985);
}

/* Responsive Overrides */
@media (max-width: 900px) {
  .contact-card {
    grid-template-columns: 1fr;
  }
  
  .contact-info-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    min-height: auto;
    padding: 48px;
  }
  
  .contact-details-list {
    margin-bottom: 38px;
  }
}

@media (max-width: 560px) {
  .contact-main {
    padding: 40px 20px;
  }
  
  .contact-info-panel {
    padding: 38px 24px;
  }
  
  .contact-form-panel {
    padding: 44px 24px;
  }
  
  .contact-title {
    margin-bottom: 38px;
  }
  
  .form-title {
    margin-bottom: 32px;
  }
  
  .inquiry-form {
    gap: 26px;
  }
}

/* ==========================================================================
   Location & Journey Section Styles
   ========================================================================== */
.location-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(48px, 6vw, 96px);
  padding: 100px 7.8%;
  background: #f7f0eb;
  border-top: 1px solid var(--line);
}

.location-content h2 {
  margin: 0 0 12px;
  color: #9a442f;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.location-content h3 {
  margin: 0 0 28px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.3vw, 2.85rem);
  font-weight: 700;
  line-height: 1.1;
}

.location-text {
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
  line-height: 1.6;
}

.location-text p {
  margin: 0 0 24px;
}

.tourism-quote {
  font-style: italic;
  font-family: "Lora", Georgia, serif;
  border-left: 2px solid var(--accent);
  padding-left: 20px;
  margin: 28px 0;
  color: var(--green);
  font-size: 1.05rem;
}

.history-box {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  margin-top: 36px;
  box-shadow: 0 10px 24px rgba(37, 28, 18, 0.02);
}

.history-box h4 {
  margin: 0 0 16px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.history-box p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--muted);
}

/* Right Column: Travel Panel */
.journey-panel {
  background: #eee5dc;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 44px;
  box-shadow: 0 15px 35px rgba(37, 28, 18, 0.05);
}

.journey-panel h3 {
  margin: 0 0 28px;
  color: var(--green);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 700;
}

.journey-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 32px;
}

.journey-meta span {
  color: #727f7b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-meta strong {
  color: var(--accent);
  font-size: 1.28rem;
  font-weight: 800;
}

.route-options {
  display: grid;
  gap: 24px;
}

.route-option {
  display: flex;
  gap: 16px;
  align-items: start;
}

.route-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--green);
  color: #ffffff;
  border-radius: 50%;
  font-size: 0.8rem;
  font-weight: 800;
  flex: 0 0 auto;
}

.route-details h5 {
  margin: 0 0 6px;
  color: var(--green);
  font-size: 0.98rem;
  font-weight: 700;
}

.route-details p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
}

/* Responsiveness */
@media (max-width: 980px) {
  .location-section {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 70px;
    padding-bottom: 70px;
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .journey-panel {
    padding: 32px 20px;
  }
}


