/*
Theme Name: Atelier Kandy 2026
Theme URI: https://escondite.lk/atelier-kandy/
Author: Kasun Weeraratna
Description: Dynamic Atelier Kandy WordPress theme rebuilt from the original Berghotel theme, database, uploads and new design. Includes fixed menus, inner pages, map/contact, rooms, attractions, destinations, gallery, events and blog templates.
Version: 2.0.0
Text Domain: atelier-kandy
*/

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }

.rooms-grid {
  display: flex;
  justify-content: center;
}

.rooms-grid > :last-child {
  justify-self: center;
}

:root {
  --ivory:      #F6F0E7;
  --cream:      #EDE4D4;
  --parchment:  #D9CDB8;
  --burg:       #6B1E28;
  --burg-dk:    #4E1520;
  --gold:       #B8882A;
  --gold-lt:    #D4A94E;
  --forest:     #1E3529;
  --forest-lt:  #2A4A38;
  --char:       #181410;
  --text:       #2A2018;
  --text-m:     #5C4E42;
  --text-lt:    #8C7D72;
  --white:      #FFFFFF;
  --nav-h:      80px;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--ivory);
  color: var(--text);
  overflow-x: hidden;
}

/* ── NAVIGATION ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  transition: background 0.5s, box-shadow 0.5s, height 0.4s;
}
#nav.solid {
  background: rgba(246,240,231,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  height: 68px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-decoration: none;
}
.nav-logo .nl1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 500;
  color: white;
  letter-spacing: 0.04em;
  transition: color 0.4s;
}
.nav-logo .nl2 {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
  transition: color 0.4s;
}
#nav.solid .nl1 { color: var(--burg); }
#nav.solid .nl2 { color: var(--text-lt); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}
.nav-menu a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.3s;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}
.nav-menu a:hover { color: var(--gold-lt); border-bottom-color: var(--gold-lt); }
#nav.solid .nav-menu a { color: var(--text-m); }
#nav.solid .nav-menu a:hover { color: var(--burg); border-bottom-color: var(--burg); }

.nav-book {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: white;
  border: 1px solid rgba(255,255,255,0.45);
  padding: 0.6rem 1.6rem;
  text-decoration: none;
  transition: all 0.3s;
}
.nav-book:hover { background: var(--gold); border-color: var(--gold); }
#nav.solid .nav-book { color: var(--burg); border-color: var(--burg); }
#nav.solid .nav-book:hover { background: var(--burg); color: white; }

.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 22px; height: 1.5px; background: white; transition: background 0.3s; }
#nav.solid .nav-hamburger span { background: var(--text); }

/* Mobile nav drawer */
#mob-nav {
  position: fixed;
  top: 0; right: -100%;
  width: min(320px, 90vw);
  height: 100vh;
  background: var(--forest);
  z-index: 950;
  transition: right 0.4s cubic-bezier(.77,0,.18,1);
  padding: 5rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
#mob-nav.open { right: 0; }
#mob-nav a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.3s;
}
#mob-nav a:hover { color: var(--gold-lt); }
#mob-nav .mob-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  font-size: 1.5rem;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  background: none; border: none;
}
#mob-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 940;
}
#mob-overlay.open { display: block; }

/* ── HERO ── */
.hero {
  height: 100svh;
  min-height: 640px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8vh;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(10,5,2,0.35) 0%,
    rgba(10,5,2,0.1)  40%,
    rgba(10,5,2,0.65) 100%
  );
}
.hero-body {
  position: relative; z-index: 2;
  width: 100%;
  padding: 0 4rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: flex-end;
  gap: 3rem;
}
.hero-txt {
  max-width: 800px;
}
.hero-kicker {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-lt);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}
.hero-kicker::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold-lt);
}
.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.8rem, 8.5vw, 7.5rem);
  font-weight: 300;
  color: white;
  line-height: 0.93;
  letter-spacing: -0.015em;
  margin-bottom: 2rem;
}
.hero-h1 em { font-style: italic; color: var(--gold-lt); }
.hero-tagline {
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.8rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-fill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  background: var(--burg);
  padding: 0.85rem 2rem;
  text-decoration: none;
  border: 1px solid var(--burg);
  transition: all 0.3s;
}
.btn-fill:hover { background: var(--burg-dk); border-color: var(--burg-dk); }
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: white;
  border: 1px solid rgba(255,255,255,0.4);
  padding: 0.85rem 2rem;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-ghost:hover { border-color: white; background: rgba(255,255,255,0.07); }

.hero-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding-bottom: 0.5rem;
}
.hero-slide-counter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}
.hero-dots { display: flex; flex-direction: column; gap: 6px; }
.hero-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  border: none;
  padding: 0;
}
.hero-dot.active { background: var(--gold-lt); transform: scale(1.4); }
.scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center;
  gap: 6px;
}
.scroll-cue span {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.scroll-cue-line {
  width: 1px; height: 48px;
  background: rgba(255,255,255,0.15);
  position: relative; overflow: hidden;
}
.scroll-cue-line::after {
  content: '';
  position: absolute;
  top: -100%; width: 100%; height: 100%;
  background: var(--gold-lt);
  animation: drip 1.8s ease infinite;
}
@keyframes drip { to { top: 200%; } }

/* ── INTRO BAND ── */
.intro-band {
  background: var(--burg);
  padding: 1.6rem 4rem;
  display: flex;
  gap: 4rem;
  align-items: center;
  overflow-x: auto;
}
.band-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.band-ico { font-size: 1.1rem; color: var(--gold-lt); }
.band-lbl {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}
.band-sep {
  width: 1px; height: 24px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ── SHARED TYPOGRAPHY ── */
.tag {
  font-size: 0.63rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}
.tag::before { content: ''; display: inline-block; width: 28px; height: 1px; background: var(--gold); }
.tag.centered { justify-content: center; }
.tag.centered::before { display: none; }
.tag.light { color: var(--gold-lt); }
.tag.light::before { background: var(--gold-lt); }

.headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--text);
}
.headline em { font-style: italic; color: var(--burg); }
.headline.light { color: white; }
.headline.light em { color: var(--gold-lt); }

.body-text {
  font-size: 0.9rem;
  line-height: 1.95;
  color: var(--text-m);
  font-weight: 300;
}
.body-text.light { color: rgba(255,255,255,0.6); }

/* ── ABOUT ── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.about-img-wrap {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}
.about-img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.about-img-wrap:hover img { transform: scale(1.04); }
.about-img-badge {
  position: absolute;
  bottom: 2.5rem; right: -1px;
  background: var(--burg);
  color: white;
  padding: 1.4rem 2rem;
  z-index: 2;
  text-align: center;
}
.badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  display: block;
  line-height: 1;
}
.badge-lbl {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-top: 4px;
}
.about-content {
  background: var(--char);
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-content .body-text { margin: 1.5rem 0 2rem; }
.about-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 1rem;
}
.stat { text-align: left; }
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.stat-l {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 6px;
  display: block;
}

/* ── GALLERY STRIP ── */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(5,1fr);
  height: 280px;
}
.gs-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gs-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10,5,2,0.2);
  transition: background 0.4s;
}
.gs-item:hover::after { background: rgba(10,5,2,0); }
.gs-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.gs-item:hover img { transform: scale(1.08); }

/* ── ROOMS ── */
.rooms {
  padding: 8rem 4rem;
  background: var(--ivory);
}
.sec-head { text-align: center; margin-bottom: 5rem; }
.sec-head .headline { margin-bottom: 1.2rem; }
.sec-head .body-text { max-width: 540px; margin: 0 auto; }

.rooms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5rem;
  /*max-width: 1100px;*/
  max-width: 1300px;
  margin: 0 auto;
}
.room-card {
  position: relative;
  background: white;
  overflow: hidden;
  box-shadow: 0 2px 30px rgba(0,0,0,0.05);
}
.room-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.room-card:hover .room-img { transform: scale(1.04); }
.room-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,5,2,0.92) 0%, rgba(10,5,2,0.3) 60%, transparent 100%);
  padding: 4rem 2rem 2rem;
  transform: translateY(40px);
  transition: transform 0.45s cubic-bezier(.4,0,.2,1);
}
.room-card:hover .room-overlay { transform: translateY(0); }
.room-kind {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 0.4rem;
}
.room-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: white;
  margin-bottom: 1rem;
}
.room-amen {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}
.room-amen span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.room-amen span::before { content: '◆'; font-size: 0.4rem; color: var(--gold-lt); }
.room-cta {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  transition: opacity 0.3s 0.1s;
  border-bottom: 1px solid rgba(212,169,78,0.3);
  padding-bottom: 2px;
}
.room-card:hover .room-cta { opacity: 1; }
.room-cta:hover { color: white; border-bottom-color: white; }

.rooms-note {
  text-align: center;
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid var(--parchment);
  color: var(--text-lt);
  font-size: 0.85rem;
  line-height: 1.9;
}
.rooms-note a { color: var(--burg); text-decoration: none; }

/* ── EXPERIENCE SPLIT ── */
.xp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.xp-img {
  position: relative;
  min-height: 560px;
  overflow: hidden;
}
.xp-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.xp-img-veil {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,5,2,0.75), rgba(10,5,2,0.1));
}
.xp-img-quote {
  position: absolute;
  bottom: 2.5rem; left: 2.5rem; right: 2.5rem;
  z-index: 2;
}
.xp-img-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.6rem;
  font-weight: 300;
  color: white;
  line-height: 1.4;
}
.xp-img-quote cite {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-lt);
  display: block;
  margin-top: 0.8rem;
}
.xp-content {
  background: var(--forest);
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.xp-content .body-text { margin: 1.5rem 0 2rem; }
.xp-items { margin: 2.5rem 0; display: flex; flex-direction: column; gap: 1.2rem; }
.xp-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem;
  border: 1px solid rgba(255,255,255,0.08);
  transition: border-color 0.3s;
}
.xp-item:hover { border-color: rgba(212,169,78,0.4); }
.xp-item-icon {
  font-size: 1.1rem;
  color: var(--gold-lt);
  margin-top: 2px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}
.xp-item-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: white;
  margin-bottom: 0.3rem;
}
.xp-item-body {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

/* ── ATTRACTIONS ── */
.attractions {
  padding: 8rem 4rem;
  background: var(--cream);
}
.attract-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.attract-card {
  background: white;
  padding: 2rem;
  border-left: 3px solid var(--cream);
  transition: border-color 0.3s, transform 0.3s;
  cursor: default;
}
.attract-card:hover {
  border-left-color: var(--burg);
  transform: translateX(4px);
}
.attract-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--parchment);
  display: block;
  line-height: 1;
  margin-bottom: 0.7rem;
}
.attract-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.6rem;
}
.attract-desc { font-size: 0.8rem; color: var(--text-lt); line-height: 1.75; }

/* ── DISTANCES ── */
.dist-bar {
  background: var(--burg);
  padding: 2rem 4rem;
  display: flex;
  gap: 5rem;
  align-items: center;
  justify-content: center;
}
.dist-item { text-align: center; }
.dist-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: white;
  line-height: 1;
}
.dist-unit {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.5);
  margin-left: 2px;
}
.dist-lbl {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}
.dist-sep { width: 1px; height: 50px; background: rgba(255,255,255,0.15); }

/* ── DESTINATIONS ── */
.destinations {
  padding: 8rem 4rem;
  background: var(--ivory);
}
.dest-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.dest-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
}
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: brightness(0.8);
}
.dest-card:hover img { transform: scale(1.06); filter: brightness(0.9); }
.dest-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1.5rem 1.5rem;
  background: linear-gradient(to top, rgba(10,5,2,0.85), transparent);
}
.dest-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: white;
  margin-bottom: 0.3rem;
}
.dest-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

/* ── CONTACT ── */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--char);
}
.contact-panel {
  padding: 7rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-panel .headline { margin-bottom: 3rem; }
.contact-fields { display: flex; flex-direction: column; gap: 2rem; }
.cf-label {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
  display: block;
}
.cf-value {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}
.cf-value a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.3s;
}
.cf-value a:hover { color: var(--gold-lt); }
.socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 3rem;
}
.soc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.45);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: all 0.3s;
}
.soc-btn:hover { border-color: var(--gold); color: var(--gold); }
.contact-map {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.contact-map iframe {
  width: 100%; height: 100%;
  border: none;
  filter: grayscale(25%) contrast(1.05) brightness(0.95);
}

/* ── FOOTER ── */
footer {
  background: #0C0A08;
  padding: 6rem 4rem 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.ft-brand {}
.ft-logo-txt {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  color: white;
  display: block;
  margin-bottom: 0.4rem;
}
.ft-logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.5rem;
}
.ft-brand p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.85;
  max-width: 280px;
}
.ft-col h4 {
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.8rem;
}
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.ft-col a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.3s;
}
.ft-col a:hover { color: rgba(255,255,255,0.75); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.15);
}

/* ── FADE-UP ANIMATION ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .dest-grid { grid-template-columns: repeat(2,1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .ft-brand { grid-column: 1/-1; }
}
@media (max-width: 860px) {
  #nav { padding: 0 1.5rem; }
  .nav-menu, .nav-book { display: none; }
  .nav-hamburger { display: flex; }

  .hero-body { grid-template-columns: 1fr; padding: 0 1.5rem; }
  .hero-side { display: none; }
  .hero-h1 { font-size: clamp(3rem, 12vw, 5rem); }

  .intro-band { padding: 1.2rem 2rem; }

  .about { grid-template-columns: 1fr; }
  .about-img-wrap { min-height: 350px; }
  .about-content { padding: 4rem 2rem; }
  .about-stats { grid-template-columns: repeat(3,1fr); }

  .gallery-strip { grid-template-columns: repeat(3,1fr); height: 200px; }
  .gs-item:nth-child(4), .gs-item:nth-child(5) { display: none; }

  .rooms { padding: 5rem 1.5rem; }
  .rooms-grid { grid-template-columns: 1fr; }

  .xp-split { grid-template-columns: 1fr; }
  .xp-img { min-height: 300px; }
  .xp-content { padding: 4rem 2rem; }

  .attractions { padding: 5rem 1.5rem; }
  .attract-grid { grid-template-columns: 1fr 1fr; }

  .dist-bar { flex-wrap: wrap; gap: 2rem; padding: 2rem; justify-content: flex-start; }
  .dist-sep { display: none; }

  .destinations { padding: 5rem 1.5rem; }

  .contact { grid-template-columns: 1fr; }
  .contact-map { min-height: 300px; }
  .contact-panel { padding: 4rem 2rem; }

  footer { padding: 4rem 1.5rem 2rem; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (max-width: 540px) {
  .attract-grid { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
}

/* WordPress dynamic fixes */
a.attract-card { display:block; text-decoration:none; color:inherit; }
a.attract-card:hover { color:inherit; }
.nav-menu .menu-item { list-style:none; }
.nav-menu .sub-menu { position:absolute; display:none; background:rgba(24,20,16,.96); padding:1rem; min-width:220px; list-style:none; }
.nav-menu .menu-item:hover > .sub-menu { display:block; }
.nav-menu .sub-menu a { display:block; padding:.45rem 0; color:rgba(255,255,255,.78); }
#nav.solid .nav-menu .sub-menu a { color:rgba(255,255,255,.78); }
.custom-logo { max-height:54px; width:auto; }
#nav.solid .custom-logo { max-height:46px; }
.page-hero { min-height:430px; display:flex; align-items:flex-end; position:relative; overflow:hidden; background-size:cover; background-position:center; padding:9rem 4rem 5rem; }
.page-hero:before { content:''; position:absolute; inset:0; background:linear-gradient(to bottom,rgba(10,5,2,.35),rgba(10,5,2,.78)); }
.page-hero .detail { position:relative; z-index:2; max-width:980px; }
.page-hero h1 { font-family:'Cormorant Garamond',serif; font-size:clamp(3rem,7vw,6rem); font-weight:300; color:#fff; line-height:.98; }
.page-hero span { display:block; margin-top:1rem; color:var(--gold-lt); font-size:.7rem; letter-spacing:.28em; text-transform:uppercase; }
.content-wrap { background:var(--ivory); padding:6rem 4rem; }
.content-inner { max-width:1100px; margin:0 auto; }
.content-prose { font-size:.95rem; line-height:1.9; color:var(--text-m); }
.content-prose h1,.content-prose h2,.content-prose h3,.content-prose h4 { font-family:'Cormorant Garamond',serif; color:var(--text); line-height:1.15; margin:1.5rem 0 1rem; }
.content-prose h1 { font-size:3rem; } .content-prose h2 { font-size:2.4rem; } .content-prose h3 { font-size:1.8rem; }
.content-prose p { margin:0 0 1.2rem; }
.content-prose img { max-width:100%; height:auto; margin:.5rem 0; }
.content-prose a { color:var(--burg); }
.archive-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.archive-card { background:#fff; box-shadow:0 2px 25px rgba(0,0,0,.06); text-decoration:none; color:inherit; overflow:hidden; display:flex; flex-direction:column; }
.archive-card img { width:100%; aspect-ratio:4/3; object-fit:cover; transition:transform .55s ease; }
.archive-card:hover img { transform:scale(1.04); }
.archive-card-body { padding:1.6rem; }
.archive-card h2,.archive-card h3 { font-family:'Cormorant Garamond',serif; font-size:1.65rem; color:var(--text); margin:0 0 .75rem; }
.archive-card p { color:var(--text-lt); font-size:.85rem; line-height:1.75; margin-bottom:1rem; }
.archive-card .more { font-size:.65rem; letter-spacing:.18em; text-transform:uppercase; color:var(--burg); }
.pagination { margin-top:3rem; text-align:center; }
.pagination .page-numbers { display:inline-block; margin:.2rem; padding:.55rem .8rem; background:#fff; color:var(--burg); text-decoration:none; }
.pagination .current { background:var(--burg); color:#fff; }
.gallery-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; }
.gallery-grid a { display:block; overflow:hidden; background:#fff; }
.gallery-grid img { width:100%; aspect-ratio:1; object-fit:cover; display:block; transition:transform .5s ease; }
.gallery-grid a:hover img { transform:scale(1.05); }
.wp-block-gallery { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
.contact.compact-contact { margin-top:0; }
.dynamic-empty { grid-column:1/-1; text-align:center; color:var(--text-lt); }
.screen-reader-text { position:absolute; left:-9999px; }
@media(max-width:860px){ .page-hero{padding:7rem 1.5rem 3rem;min-height:320px}.content-wrap{padding:4rem 1.5rem}.archive-grid{grid-template-columns:1fr}.gallery-grid{grid-template-columns:repeat(2,1fr)} }
@media(max-width:540px){ .archive-grid{gap:1.2rem}.gallery-grid{grid-template-columns:1fr 1fr} }

/* v3 WordPress menu fixes */
.nav-hamburger { background: transparent; border: 0; }
.nav-menu, .mob-menu, .footer-menu { list-style: none; margin: 0; padding: 0; }
.nav-menu > li { position: relative; }
.nav-menu li { list-style: none; }
.nav-menu .sub-menu { top: 100%; left: 0; z-index: 999; }
#mob-nav .mob-menu { display: flex; flex-direction: column; gap: 0; }
#mob-nav .mob-menu li { list-style: none; margin: 0; padding: 0; }
#mob-nav .mob-menu .sub-menu { margin-left: 1rem; }
#mob-nav .mob-menu .sub-menu a { font-size: 1.3rem; opacity: .72; }
#mob-nav .mob-book { margin-top:2rem; font-family:'DM Sans',sans-serif; font-size:0.75rem; letter-spacing:0.2em; text-transform:uppercase; background:var(--burg); color:white; padding:1rem 1.5rem; text-align:center; border:none; }
.footer-menu li { list-style: none; margin: 0 0 .75rem; }
.attract-card { text-decoration: none; display: block; color: inherit; }
.contact-map iframe { display: block; min-height: 100%; }

/* ===== Proper final: room, reservation, subscribe and contact designs ===== */
.ak-alert { padding:1rem 1.2rem; margin:0 0 1.2rem; font-size:.85rem; line-height:1.6; border-left:4px solid var(--gold); background:#fff; color:var(--text-m); }
.ak-alert-success { border-left-color:var(--forest); background:#eef5f0; color:#244634; }
.ak-alert-error { border-left-color:var(--burg); background:#fbefef; color:#6b1e28; }
.ak-form { display:flex; flex-direction:column; gap:1rem; }
.ak-form label { display:flex; flex-direction:column; gap:.45rem; font-size:.62rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold); }
.ak-form input,.ak-form textarea,.ak-form select { width:100%; border:1px solid rgba(42,32,24,.18); background:#fff; color:var(--text); padding:.9rem 1rem; font-family:'DM Sans',sans-serif; font-size:.9rem; letter-spacing:0; text-transform:none; outline:none; transition:border-color .25s, box-shadow .25s; }
.ak-form textarea { resize:vertical; min-height:120px; }
.ak-form input:focus,.ak-form textarea:focus,.ak-form select:focus { border-color:var(--gold); box-shadow:0 0 0 3px rgba(184,136,42,.12); }
.ak-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.ak-form .btn-fill { border:0; justify-content:center; cursor:pointer; width:max-content; margin-top:.4rem; }
.room-single-wrap { background:var(--ivory); }
.room-single-intro { display:grid; grid-template-columns:minmax(0,1.15fr) minmax(360px,.85fr); gap:3rem; max-width:1200px; margin:0 auto; padding:7rem 4rem; align-items:start; }
.room-single-copy { background:#fff; padding:3.5rem; box-shadow:0 2px 30px rgba(0,0,0,.05); }
.room-single-copy .headline { margin-bottom:1.5rem; }
.room-single-copy .body-text img { width:100%; height:auto; margin:1.5rem 0; }
.room-feature-list { display:grid; grid-template-columns:1fr 1fr; gap:.8rem; margin-top:2rem; padding-top:2rem; border-top:1px solid var(--cream); }
.room-feature-list span { background:var(--cream); padding:.85rem 1rem; font-size:.68rem; letter-spacing:.16em; text-transform:uppercase; color:var(--text-m); }
.room-booking-panel { position:sticky; top:96px; background:var(--char); color:#fff; padding:2.2rem; box-shadow:0 18px 50px rgba(0,0,0,.16); }
.booking-panel-head span { font-size:.6rem; letter-spacing:.28em; text-transform:uppercase; color:var(--gold-lt); }
.booking-panel-head h2 { font-family:'Cormorant Garamond',serif; font-size:2.3rem; font-weight:300; margin:.4rem 0 .5rem; color:#fff; }
.booking-panel-head p { color:rgba(255,255,255,.5); font-size:.82rem; line-height:1.8; margin-bottom:1.5rem; }
.room-booking-panel .ak-form input,.room-booking-panel .ak-form textarea,.room-booking-panel .ak-form select { background:rgba(255,255,255,.06); color:#fff; border-color:rgba(255,255,255,.14); }
.room-booking-panel .ak-form label { color:var(--gold-lt); }
.room-booking-panel .ak-form .btn-fill { width:100%; }
.room-gallery-modern { max-width:1200px; margin:0 auto; padding:0 4rem 7rem; display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
.room-gallery-item { display:block; overflow:hidden; background:#fff; }
.room-gallery-item img { width:100%; aspect-ratio:4/3; object-fit:cover; display:block; transition:transform .6s ease; }
.room-gallery-item:hover img { transform:scale(1.05); }
.single-featured-image { width:100%; max-height:480px; object-fit:cover; display:block; margin:0 0 2rem!important; }
.contact-page-wrap { background:var(--ivory); }
.contact-page-grid { max-width:1200px; margin:0 auto; padding:7rem 4rem 3rem; display:grid; grid-template-columns:1fr 1fr; gap:2rem; align-items:stretch; }
.contact-info-card,.contact-form-card { background:#fff; padding:3rem; box-shadow:0 2px 30px rgba(0,0,0,.05); }
.contact-info-card .headline { margin-bottom:1.2rem; }
.contact-details-list { display:grid; gap:1.2rem; margin-top:2rem; padding-top:2rem; border-top:1px solid var(--cream); }
.contact-details-list p { color:var(--text-m); font-size:.9rem; line-height:1.8; }
.contact-details-list strong { color:var(--burg); font-size:.62rem; letter-spacing:.2em; text-transform:uppercase; }
.contact-details-list a { color:var(--text-m); text-decoration:none; }
.contact-form-card { background:var(--forest); }
.contact-form-card h2 { font-family:'Cormorant Garamond',serif; font-size:2.4rem; font-weight:300; color:#fff; margin-bottom:1.5rem; }
.contact-form-card .ak-form input,.contact-form-card .ak-form textarea { background:rgba(255,255,255,.07); color:#fff; border-color:rgba(255,255,255,.14); }
.contact-form-card .ak-form label { color:var(--gold-lt); }
.contact-map-full { max-width:1200px; margin:0 auto; padding:0 4rem 7rem; }
.contact-map-full iframe { width:100%; height:460px; border:0; filter:grayscale(25%) contrast(1.05) brightness(.95); display:block; }
.subscribe-page-wrap { background:linear-gradient(135deg,var(--ivory),var(--cream)); padding:7rem 4rem; }
.subscribe-card { max-width:1050px; margin:0 auto; display:grid; grid-template-columns:1.05fr .95fr; background:#fff; box-shadow:0 20px 70px rgba(0,0,0,.08); }
.subscribe-copy { padding:4rem; background:var(--char); }
.subscribe-copy .headline { color:#fff; margin-bottom:1.2rem; }
.subscribe-copy .headline em { color:var(--gold-lt); }
.subscribe-copy .body-text { color:rgba(255,255,255,.58); }
.subscribe-form-panel { padding:4rem; }
.attract-card { text-decoration:none; color:inherit; }
.archive-card img[src=""], .single-featured-image[src=""] { display:none; }
@media(max-width:960px){ .room-single-intro,.contact-page-grid,.subscribe-card{grid-template-columns:1fr}.room-booking-panel{position:relative;top:auto}.room-gallery-modern{grid-template-columns:1fr 1fr}.contact-page-grid,.room-single-intro,.subscribe-page-wrap{padding:5rem 1.5rem}.contact-map-full{padding:0 1.5rem 5rem}.subscribe-copy,.subscribe-form-panel,.contact-info-card,.contact-form-card,.room-single-copy{padding:2rem}.ak-form-grid{grid-template-columns:1fr} }
@media(max-width:540px){ .room-gallery-modern{grid-template-columns:1fr;padding:0 1.5rem 5rem}.room-feature-list{grid-template-columns:1fr}.ak-form .btn-fill{width:100%} }

/* Final blog/contact fixes */
.archive-card.no-image { min-height: 260px; border-top: 4px solid var(--burg); }
.archive-card.no-image .archive-card-body { display:flex; flex-direction:column; justify-content:center; min-height:260px; }
.content-prose .btn-fill, .content-prose .btn-fill:visited { color:#fff!important; background:var(--burg)!important; border-color:var(--burg)!important; text-decoration:none!important; }
.content-prose .btn-fill:hover { background:var(--burg-dk)!important; border-color:var(--burg-dk)!important; color:#fff!important; }
.contact-info-card > .body-text { margin-bottom:0; }
