/* ===================================================================
   Chookie's Travel — warm nature modern design system
   =================================================================== */

:root {
  /* palette */
  --forest:        #2c4a3b;   /* deep forest green */
  --forest-deep:   #1f352a;
  --moss:          #4a6b53;
  --terracotta:    #c97a4e;   /* warm earthy accent */
  --terracotta-dk: #b1623a;
  --amber:         #e0a85e;
  --cream:         #f7f1e6;   /* page background */
  --sand:          #efe6d6;   /* alt section */
  --sand-deep:     #e6dac4;
  --ink:           #2b2a24;   /* main text */
  --ink-soft:      #5b594f;
  --white:         #fffdf9;
  --line:          rgba(43, 42, 36, .12);

  /* type */
  --serif: "Fraunces", Georgia, serif;
  --sans:  "DM Sans", system-ui, -apple-system, sans-serif;

  /* shape */
  --radius:    20px;
  --radius-lg: 28px;
  --radius-sm: 12px;
  --shadow:    0 18px 40px -20px rgba(43, 42, 36, .35);
  --shadow-sm: 0 8px 24px -14px rgba(43, 42, 36, .4);

  --container: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 24px; }

/* ---------- typography ---------- */
.h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.08;
  letter-spacing: -.01em;
  color: var(--forest);
}
.h3 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.3rem, 2vw, 1.6rem); line-height: 1.15; color: var(--forest); }
.h4 { font-family: var(--serif); font-weight: 500; font-size: 1.25rem; color: var(--forest); }
.lead { font-size: 1.12rem; color: var(--ink-soft); }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 600;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.eyebrow--light { color: var(--amber); }

.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--sand { background: var(--sand); }
.section--dark { background: var(--forest-deep); color: var(--cream); }

.section__head { max-width: 640px; margin-bottom: 3rem; }
.section__head--light .h2 { color: var(--cream); }
.section__sub { font-size: 1.1rem; color: var(--ink-soft); margin-top: .9rem; }
.section__sub--light { color: rgba(247, 241, 230, .8); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem;
  font-family: var(--sans); font-weight: 600; font-size: .95rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: .6rem 1.1rem; font-size: .88rem; }
.btn--lg { padding: 1rem 2rem; font-size: 1.02rem; }

.btn--solid { background: var(--terracotta); color: var(--white); box-shadow: var(--shadow-sm); }
.btn--solid:hover { background: var(--terracotta-dk); }
.btn--outline { background: transparent; color: var(--forest); border-color: var(--forest); }
.btn--outline:hover { background: var(--forest); color: var(--cream); }
.btn--outline-light { background: transparent; color: var(--cream); border-color: rgba(247,241,230,.55); }
.btn--outline-light:hover { background: var(--cream); color: var(--forest); }
.btn--ghost { background: rgba(255,255,255,.14); color: var(--white); border-color: rgba(255,255,255,.5); backdrop-filter: blur(6px); }
.btn--ghost:hover { background: var(--white); color: var(--forest); }
.btn--ghost-dark { background: transparent; color: var(--cream); border-color: rgba(247,241,230,.4); }
.btn--ghost-dark:hover { background: rgba(247,241,230,.12); }

.link-arrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-weight: 600; color: var(--terracotta);
  font-size: .95rem;
}
.link-arrow span { transition: transform .25s var(--ease); }
.link-arrow:hover span { transform: translateX(5px); }

/* ---------- topbar ---------- */
.topbar { background: var(--forest-deep); color: rgba(247,241,230,.85); font-size: .82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: .8rem; padding: .5rem 24px; flex-wrap: wrap; }
.topbar__item { color: inherit; }
.topbar a.topbar__item:hover { color: var(--amber); }
.topbar__sep { opacity: .4; }

/* ---------- header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease);
  padding: .6rem 0;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.header.is-scrolled { background: var(--cream); box-shadow: 0 6px 24px -16px rgba(0,0,0,.5); }

/* brand */
.brand { display: inline-flex; align-items: center; gap: .7rem; }
.brand__mark {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  background: var(--terracotta); color: var(--white);
  font-family: var(--serif); font-weight: 600; font-size: 1.5rem;
  border-radius: 50%;
}
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; color: var(--forest); }
.brand__sub { font-size: .6rem; letter-spacing: .25em; font-weight: 600; color: var(--ink-soft); margin-top: 3px; }

/* nav */
.nav { display: flex; align-items: center; gap: 1.8rem; }
.nav__link { font-weight: 500; font-size: .98rem; color: var(--ink); position: relative; }
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px;
  background: var(--terracotta); transition: width .25s var(--ease);
}
.nav__link:hover::after { width: 100%; }
.nav__cta { color: var(--white); }
.nav__cta::after { display: none; }

/* hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.hamburger span { width: 26px; height: 2.5px; background: var(--forest); border-radius: 2px; transition: .3s var(--ease); }
.hamburger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero { position: relative; min-height: 92vh; display: flex; align-items: center; color: var(--cream); overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.05); animation: heroZoom 16s ease-out forwards; }
@keyframes heroZoom { to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(31,53,42,.55) 0%, rgba(31,53,42,.25) 40%, rgba(31,53,42,.75) 100%);
}
.hero__content { position: relative; z-index: 2; max-width: 760px; padding-block: 6rem; }
.hero__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.8rem, 8vw, 6rem); line-height: .98; letter-spacing: -.02em;
  margin: .4rem 0 1.3rem;
}
.hero__title em { font-style: italic; color: var(--amber); }
.hero__lead { font-size: clamp(1.05rem, 2vw, 1.4rem); max-width: 540px; color: rgba(247,241,230,.92); margin-bottom: 2rem; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 44px; border: 2px solid rgba(247,241,230,.6); border-radius: 14px;
  display: grid; place-items: start center; padding-top: 7px;
}
.hero__scroll-dot { width: 4px; height: 8px; background: var(--cream); border-radius: 2px; animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(12px); } 100% { opacity: 0; } }

/* ---------- intro ---------- */
.intro__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.intro__text .lead { margin: 1.2rem 0 1.6rem; }
.intro__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.3rem; box-shadow: var(--shadow-sm); }
.stat__num { display: block; font-family: var(--serif); font-size: 2.4rem; font-weight: 600; color: var(--terracotta); line-height: 1; }
.stat__label { display: block; margin-top: .5rem; font-size: .92rem; color: var(--ink-soft); }

/* ---------- stay ---------- */
.stay-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); }
.stay-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.stay-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -28px rgba(43,42,36,.5); }
.stay-card__media { position: relative; aspect-ratio: 16/11; overflow: hidden; }
.stay-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.stay-card:hover .stay-card__media img { transform: scale(1.06); }
.tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(247,241,230,.92); color: var(--forest);
  font-weight: 600; font-size: .82rem; padding: .4rem .9rem; border-radius: 999px;
  backdrop-filter: blur(4px);
}
.stay-card__body { padding: 1.8rem; display: flex; flex-direction: column; gap: .9rem; flex: 1; }
.stay-card__body p { color: var(--ink-soft); }
.feature-list { display: flex; flex-wrap: wrap; gap: .5rem; margin: .2rem 0 .4rem; }
.feature-list li { font-size: .82rem; background: var(--sand); color: var(--forest); padding: .35rem .8rem; border-radius: 999px; font-weight: 500; }
.stay-card__body .btn { margin-top: auto; align-self: flex-start; }

/* ---------- eat ---------- */
.eat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.eat-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.eat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.eat-card__media { aspect-ratio: 4/3; overflow: hidden; }
.eat-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.eat-card:hover .eat-card__media img { transform: scale(1.07); }
.eat-card__media--gradient {
  background: linear-gradient(135deg, var(--amber), var(--terracotta) 55%, var(--moss));
  display: grid; place-items: center;
}
.sunset-emoji { font-size: 3.4rem; }
.eat-card__body { padding: 1.4rem; display: flex; flex-direction: column; gap: .7rem; flex: 1; }
.eat-card__body p { font-size: .95rem; color: var(--ink-soft); flex: 1; }
.eat-card__meta { display: flex; flex-wrap: wrap; gap: .4rem 1rem; font-size: .82rem; color: var(--moss); font-weight: 500; }
.eat-card .link-arrow { margin-top: .3rem; }

/* ---------- explore / tours ---------- */
.tour-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 2.5rem; }
.tour-card {
  background: rgba(247,241,230,.06); border: 1px solid rgba(247,241,230,.14);
  border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column;
  transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.tour-card:hover { transform: translateY(-6px); border-color: rgba(224,168,94,.5); }
.tour-card__media { aspect-ratio: 16/10; overflow: hidden; }
.tour-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.tour-card:hover .tour-card__media img { transform: scale(1.06); }
.tour-card__body { padding: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
.tour-card__top { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.tour-card__top .h3 { color: var(--cream); }
.price { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--amber); white-space: nowrap; }
.price small { font-size: .8rem; font-weight: 400; color: rgba(247,241,230,.7); }
.tour-card__body p { color: rgba(247,241,230,.78); font-size: .98rem; }
.tour-card__actions { display: flex; gap: .8rem; flex-wrap: wrap; }

.chips { display: flex; flex-wrap: wrap; align-items: center; gap: .7rem; }
.chips__label { color: rgba(247,241,230,.7); font-weight: 500; margin-right: .3rem; }
.chip {
  border: 1px solid rgba(247,241,230,.28); color: var(--cream);
  padding: .5rem 1.1rem; border-radius: 999px; font-size: .9rem; font-weight: 500;
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.chip:hover { background: var(--amber); border-color: var(--amber); color: var(--forest-deep); }

/* ---------- why ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
.why {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem 1.6rem; text-align: left;
  transition: transform .35s var(--ease);
}
.why:hover { transform: translateY(-5px); }
.why__icon { font-size: 2.2rem; margin-bottom: .9rem; }
.why h3 { margin-bottom: .5rem; }
.why p { font-size: .95rem; color: var(--ink-soft); }

/* ---------- CTA band ---------- */
.cta-band { background: var(--forest); color: var(--cream); padding: clamp(3rem, 6vw, 5rem) 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-band__title { color: var(--cream); }
.cta-band__sub { color: rgba(247,241,230,.82); margin-top: .6rem; max-width: 520px; }
.cta-band__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ---------- footer ---------- */
.footer { background: var(--forest-deep); color: rgba(247,241,230,.8); padding-top: clamp(3rem, 6vw, 5rem); }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 2.5rem; padding-bottom: 3rem; }
.brand--footer .brand__name { color: var(--cream); }
.brand--footer .brand__sub { color: rgba(247,241,230,.6); }
.footer__tagline { margin: 1.2rem 0 1.3rem; font-size: .95rem; max-width: 320px; }
.footer__social { display: flex; gap: .7rem; }
.social {
  width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(247,241,230,.3); font-weight: 700; font-size: .9rem;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.social:hover { background: var(--terracotta); border-color: var(--terracotta); color: var(--white); }
.footer__title { font-family: var(--serif); font-weight: 500; font-size: 1.1rem; color: var(--cream); margin-bottom: 1.1rem; }
.footer__col a { display: block; padding: .35rem 0; font-size: .95rem; transition: color .2s var(--ease); }
.footer__col a:hover { color: var(--amber); }
.footer__addr { margin-top: .6rem; font-size: .92rem; line-height: 1.6; }
.footer__bottom { border-top: 1px solid rgba(247,241,230,.12); }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 1.4rem 24px; font-size: .85rem; color: rgba(247,241,230,.6); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; font-size: 1.7rem;
  display: grid; place-items: center; box-shadow: 0 10px 30px -8px rgba(37,211,102,.7);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ===================================================================
   Responsive
   =================================================================== */
@media (max-width: 1000px) {
  .eat-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(80vw, 320px);
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    gap: 1.4rem; background: var(--cream); padding: 6rem 2rem 2rem;
    transform: translateX(100%); transition: transform .35s var(--ease);
    box-shadow: -20px 0 50px -20px rgba(0,0,0,.4); z-index: 95;
  }
  .nav.is-open { transform: translateX(0); }
  .nav__link { font-size: 1.15rem; }
  .nav__cta { margin-top: .5rem; }
  .hamburger { display: flex; z-index: 96; }
  .intro__grid { grid-template-columns: 1fr; }
  .stay-grid { grid-template-columns: 1fr; }
  .tour-grid { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .eat-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .intro__stats { grid-template-columns: 1fr 1fr; }
  .topbar__inner { font-size: .75rem; }
  .hero { min-height: 88vh; }
  .btn--lg { padding: .9rem 1.6rem; }
  .hero__actions { width: 100%; }
  .hero__actions .btn { flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ===================================================================
   SUB-PAGE COMPONENTS
   =================================================================== */

/* ---- dropdown nav ---- */
.nav__item { position: relative; display: flex; align-items: center; }
.nav__item--has-children > .nav__link { display: inline-flex; align-items: center; gap: .35rem; }
.caret { font-size: .65em; transition: transform .25s var(--ease); }
.nav__item--has-children:hover .caret { transform: rotate(180deg); }
.nav__item--has-children::before { content: ""; position: absolute; top: 100%; left: -10px; right: -10px; height: 16px; }
.dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); padding: .5rem; min-width: 232px;
  display: flex; flex-direction: column; gap: .1rem;
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), transform .25s var(--ease); z-index: 60;
}
.nav__item--has-children:hover .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.dropdown a { padding: .6rem .9rem; border-radius: 8px; font-size: .94rem; font-weight: 500; color: var(--ink); white-space: nowrap; transition: background .2s var(--ease), color .2s var(--ease); }
.dropdown a:hover { background: var(--sand); color: var(--forest); }

/* solid header on sub-pages */
.page--sub .header { background: var(--cream); box-shadow: 0 6px 24px -16px rgba(0,0,0,.5); }

/* ---- page hero ---- */
.page-hero { position: relative; min-height: 54vh; display: flex; align-items: flex-end; color: var(--cream); overflow: hidden; }
.page-hero__media { position: absolute; inset: 0; z-index: 0; }
.page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__overlay { position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(31,53,42,.15) 0%, rgba(31,53,42,.45) 55%, rgba(31,53,42,.82) 100%); }
.page-hero__content { position: relative; z-index: 2; padding-block: 3.2rem; max-width: 760px; }
.page-hero__title { font-family: var(--serif); font-weight: 500; font-size: clamp(2.1rem, 5.2vw, 3.7rem); line-height: 1.04; letter-spacing: -.01em; margin: .6rem 0 .7rem; }
.page-hero__title em { font-style: italic; color: var(--amber); }
.page-hero__lead { font-size: clamp(1rem, 2vw, 1.25rem); color: rgba(247,241,230,.92); max-width: 580px; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; font-size: .85rem; color: rgba(247,241,230,.85); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span { opacity: .5; }

/* ---- quick facts bar ---- */
.facts { background: var(--forest); color: var(--cream); }
.facts__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.6rem; padding: 1.15rem 24px; }
.fact { display: flex; align-items: center; gap: .55rem; font-size: .96rem; }
.fact strong { color: var(--amber); font-weight: 600; }

/* ---- split feature (image + text) ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split + .split { margin-top: clamp(3rem, 6vw, 5rem); }
.split--reverse .split__media { order: 2; }
.split__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.split__body .eyebrow { margin-bottom: .7rem; }
.split__body .h2 { margin-bottom: 1rem; }
.split__body p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.split__body .btn { margin-top: .3rem; }

/* ---- prose ---- */
.prose { max-width: 760px; }
.prose p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.prose h3 { margin: 1.7rem 0 .6rem; }

/* center heading variant */
.section__head--center { text-align: center; margin-inline: auto; }

/* ---- room cards ---- */
.rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.room { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.room:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.room__media { aspect-ratio: 4/3; overflow: hidden; }
.room__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.room:hover .room__media img { transform: scale(1.06); }
.room__body { padding: 1.4rem; display: flex; flex-direction: column; gap: .65rem; flex: 1; }
.room__head { display: flex; justify-content: space-between; align-items: baseline; gap: .6rem; flex-wrap: wrap; }
.room__price { font-family: var(--serif); font-size: 1.45rem; color: var(--terracotta); font-weight: 600; white-space: nowrap; }
.room__price small { font-family: var(--sans); font-size: .76rem; color: var(--ink-soft); font-weight: 500; }
.room__body p { font-size: .93rem; color: var(--ink-soft); flex: 1; }
.room__feats { display: flex; flex-wrap: wrap; gap: .4rem; }
.room__feats li { font-size: .76rem; background: var(--sand); color: var(--forest); padding: .3rem .7rem; border-radius: 999px; font-weight: 500; }
.room .btn { margin-top: auto; align-self: flex-start; }

/* ---- amenities ---- */
.amenities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.amenity { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.2rem; display: flex; flex-direction: column; gap: .5rem; }
.amenity__icon { font-size: 1.6rem; }
.amenity span { font-weight: 500; font-size: .94rem; color: var(--forest); }

/* ---- info / policy box ---- */
.infobox { background: var(--white); border: 1px solid var(--line); border-left: 4px solid var(--terracotta); border-radius: var(--radius-sm); padding: 1.6rem 1.8rem; }
.infobox h4 { margin-bottom: .8rem; }
.infobox ul { display: flex; flex-direction: column; gap: .55rem; }
.infobox li { display: flex; gap: .6rem; color: var(--ink-soft); font-size: .96rem; }
.infobox li::before { content: "✓"; color: var(--moss); font-weight: 700; flex: none; }
.infobox--grid ul { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1.6rem; }

/* ---- gallery ---- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; }
.gallery__item { display: block; border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 1; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery__item:hover img { transform: scale(1.08); }

/* ---- dishes / menu cards ---- */
.dishes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.dish { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.dish:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.dish__media { aspect-ratio: 4/3; overflow: hidden; }
.dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.dish:hover .dish__media img { transform: scale(1.06); }
.dish__body { padding: 1.1rem 1.3rem; }
.dish__body h4 { margin-bottom: .25rem; }
.dish__body p { font-size: .9rem; color: var(--ink-soft); }

/* ---- contact ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
.contact-cards { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.6rem; }
.contact-card { display: flex; gap: 1rem; align-items: flex-start; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.2rem 1.4rem; }
.contact-card__icon { font-size: 1.5rem; flex: none; }
.contact-card h4 { margin-bottom: .2rem; }
.contact-card a, .contact-card p { color: var(--ink-soft); font-size: .95rem; }
.contact-card a:hover { color: var(--terracotta); }

.form { display: flex; flex-direction: column; gap: 1.1rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem; box-shadow: var(--shadow-sm); }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form label { font-weight: 600; font-size: .88rem; color: var(--forest); display: block; margin-bottom: .4rem; }
.form input, .form textarea { width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--line); border-radius: var(--radius-sm); font-family: var(--sans); font-size: 1rem; background: var(--cream); color: var(--ink); transition: border-color .2s var(--ease); }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--terracotta); }
.form textarea { resize: vertical; min-height: 140px; }

.map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); }
.map iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }

/* ---- responsive: sub-page components ---- */
@media (max-width: 1000px) {
  .rooms { grid-template-columns: 1fr 1fr; }
  .amenities { grid-template-columns: 1fr 1fr; }
  .dishes { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 820px) {
  /* mobile dropdowns: expand inline inside the slide-in panel */
  .nav__item { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav__item--has-children::before { display: none; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; background: transparent; padding: .3rem 0 .3rem 1rem;
    min-width: 0; width: 100%; gap: 0;
  }
  .caret { display: none; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .rooms { grid-template-columns: 1fr; }
  .dishes { grid-template-columns: 1fr; }
  .amenities { grid-template-columns: 1fr 1fr; }
  .infobox--grid ul { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .page-hero { min-height: 46vh; }
}

/* ===================================================================
   WORDPRESS NAV MENU (wp_nav_menu output)
   =================================================================== */
ul.nav-menu { list-style: none; display: flex; align-items: center; gap: 1.8rem; margin: 0; padding: 0; }
.nav-menu > .menu-item { position: relative; display: flex; align-items: center; }
.nav-menu > .menu-item > a { font-weight: 500; font-size: .98rem; color: var(--ink); display: inline-flex; align-items: center; gap: .35rem; transition: color .2s var(--ease); }
.nav-menu > .menu-item > a:hover { color: var(--terracotta); }
.nav-menu > .current-menu-item > a,
.nav-menu > .current-menu-parent > a,
.nav-menu > .current_page_item > a { color: var(--terracotta); }
.nav-menu .menu-item-has-children > a::after { content: "\25BE"; font-size: .65em; }

.nav-menu .sub-menu {
  list-style: none; margin: 0; padding: .5rem;
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); min-width: 232px; display: flex; flex-direction: column; gap: .1rem;
  opacity: 0; visibility: hidden; transition: opacity .25s var(--ease), transform .25s var(--ease); z-index: 60;
}
.nav-menu .menu-item-has-children::before { content: ""; position: absolute; top: 100%; left: -10px; right: -10px; height: 16px; }
.nav-menu .menu-item-has-children:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-menu .sub-menu a { padding: .6rem .9rem; border-radius: 8px; font-size: .94rem; font-weight: 500; color: var(--ink); white-space: nowrap; display: block; transition: background .2s var(--ease), color .2s var(--ease); }
.nav-menu .sub-menu a:hover { background: var(--sand); color: var(--forest); }

@media (max-width: 820px) {
  ul.nav-menu { flex-direction: column; align-items: flex-start; gap: 1.2rem; width: 100%; }
  .nav-menu > .menu-item { flex-direction: column; align-items: flex-start; width: 100%; }
  .nav-menu > .menu-item > a { font-size: 1.15rem; }
  .nav-menu .menu-item-has-children::before { display: none; }
  .nav-menu .sub-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: 0; background: transparent; padding: .3rem 0 .3rem 1rem; min-width: 0; width: 100%;
  }
  .nav-menu .menu-item-has-children > a::after { display: none; }
}

/* ---- WordPress core/alignment helpers ---- */
.alignleft { float: left; margin: .4rem 1.4rem 1rem 0; }
.alignright { float: right; margin: .4rem 0 1rem 1.4rem; }
.aligncenter { display: block; margin-left: auto; margin-right: auto; }
.wp-caption { max-width: 100%; }
.wp-caption-text, .wp-element-caption { font-size: .85rem; color: var(--ink-soft); text-align: center; margin-top: .4rem; }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); white-space: nowrap; border: 0; }

/* ---- blog / post layout ---- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.post-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card__media { aspect-ratio: 16/10; overflow: hidden; background: var(--sand); }
.post-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-card:hover .post-card__media img { transform: scale(1.06); }
.post-card__body { padding: 1.4rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.post-card__meta { font-size: .8rem; color: var(--terracotta); font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.post-card__body p { font-size: .95rem; color: var(--ink-soft); flex: 1; }

.single-article { max-width: 800px; margin-inline: auto; }
.single-article .prose :is(h2,h3) { font-family: var(--serif); color: var(--forest); margin: 1.6rem 0 .6rem; }
.single-article .prose img { border-radius: var(--radius); margin: 1rem 0; }
.single-article .prose ul, .single-article .prose ol { margin: 0 0 1.1rem 1.4rem; color: var(--ink-soft); }
.single-article .prose blockquote { border-left: 4px solid var(--terracotta); padding-left: 1.2rem; font-style: italic; color: var(--ink-soft); margin: 1.2rem 0; }

.pagination { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-top: 3rem; }
.pagination .page-numbers { display: inline-grid; place-items: center; min-width: 44px; height: 44px; padding: 0 .6rem; border-radius: 999px; border: 1px solid var(--line); font-weight: 600; color: var(--forest); }
.pagination .page-numbers.current { background: var(--terracotta); color: var(--white); border-color: var(--terracotta); }
.pagination a.page-numbers:hover { background: var(--sand); }

@media (max-width: 1000px) { .post-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .post-grid { grid-template-columns: 1fr; } }

/* ---- forms: submit buttons, Contact Form 7 & comments ---- */
.form input[type="submit"],
.form button[type="submit"],
.form .wpcf7-submit,
.comment-form input[type="submit"] {
	display: inline-flex; align-items: center; justify-content: center;
	font-family: var(--sans); font-weight: 600; font-size: 1.02rem;
	padding: 1rem 2rem; border-radius: 999px; border: 1.5px solid transparent;
	background: var(--terracotta); color: var(--white); cursor: pointer;
	box-shadow: var(--shadow-sm); width: auto;
	transition: transform .25s var(--ease), background .25s var(--ease);
}
.form input[type="submit"]:hover,
.form button[type="submit"]:hover,
.form .wpcf7-submit:hover,
.comment-form input[type="submit"]:hover { background: var(--terracotta-dk); transform: translateY(-2px); }

.wpcf7-form p { margin-bottom: 1rem; }
.wpcf7-form label { font-weight: 600; font-size: .88rem; color: var(--forest); }

/* comments */
.comments-area { margin-top: 2rem; }
.comment-list { list-style: none; margin: 1.5rem 0; padding: 0; display: flex; flex-direction: column; gap: 1.2rem; }
.comment-list ol.children { list-style: none; margin: 1.2rem 0 0 1.4rem; padding: 0; display: flex; flex-direction: column; gap: 1.2rem; }
.comment-body { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 1.2rem 1.4rem; }
.comment-author { font-weight: 600; color: var(--forest); }
.comment-author .avatar { border-radius: 50%; margin-right: .6rem; vertical-align: middle; }
.comment-metadata { font-size: .82rem; color: var(--ink-soft); }
.comment-form { display: flex; flex-direction: column; gap: 1rem; max-width: 640px; margin-top: 1.5rem; }
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
	width: 100%; padding: .8rem 1rem; border: 1.5px solid var(--line);
	border-radius: var(--radius-sm); font-family: var(--sans); font-size: 1rem;
	background: var(--cream); color: var(--ink);
}
.comment-form textarea { min-height: 130px; resize: vertical; }
.comment-reply-title { font-family: var(--serif); color: var(--forest); margin-bottom: .4rem; }
