:root {
  --ink: #1d3028;
  --muted: #627168;
  --paper: #f8f6ef;
  --sage: #dce5d8;
  --line: #d6ddd3;
  --accent: #c66035;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

p {
  margin: 0 0 1rem;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  margin: 0;
}

h2 {
  font-size: clamp(2.3rem, 5vw, 4.75rem);
  letter-spacing: -0.04em;
}

.section {
  max-width: 1240px;
  margin: auto;
  padding: clamp(5rem, 10vw, 9rem) 2rem;
}

/* ==========================================================================
   Header & Navigation (Sticky, User-Friendly & Modern)
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 246, 239, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(29, 48, 40, 0.07);
  background: rgba(248, 246, 239, 0.98);
}

.site-header__inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* Brand Logo & Typography */
.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  line-height: 1;
}

.brand-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
  mix-blend-mode: multiply;
  transition: transform 0.2s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.03);
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand span {
  font-family: var(--serif);
  font-size: 1.7rem;
  letter-spacing: -0.06em;
  font-weight: 700;
  line-height: 1;
  color: var(--ink);
}

.brand small {
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 600;
}

/* Desktop Navigation */
.site-header nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.6rem 0.85rem;
  border-radius: 6px;
  transition: background 0.18s ease, color 0.18s ease;
  color: var(--ink);
  cursor: pointer;
}

.nav-link:hover,
.nav-item:hover > .nav-link,
.nav-item:focus-within > .nav-link {
  background: rgba(220, 229, 216, 0.55);
  color: var(--ink);
}

.nav-link.active,
.nav-dropdown a.active {
  background: var(--sage);
  color: var(--accent);
  font-weight: 600;
}

.nav-arrow {
  font-size: 0.7em;
  display: inline-block;
  transition: transform 0.2s ease;
  opacity: 0.75;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  min-width: 250px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(29, 48, 40, 0.12), 0 2px 6px rgba(0, 0, 0, 0.04);
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  gap: 0.15rem;
  z-index: 200;
  animation: dropdownFade 0.15s ease-out;
}

/* Invisible bridge so mouse doesn't leave dropdown */
.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-dropdown a {
  padding: 0.65rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 6px;
  display: block;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}

.nav-dropdown a:hover {
  background: var(--paper);
  color: var(--accent);
  transform: translateX(3px);
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown,
.nav-item.dropdown-open .nav-dropdown {
  display: flex;
}

.nav-item:hover .nav-arrow,
.nav-item.dropdown-open .nav-arrow {
  transform: rotate(180deg);
}

.nav-contact {
  background: var(--ink);
  color: #ffffff !important;
  padding: 0.65rem 1.35rem;
  border-radius: 30px;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-left: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.nav-contact:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(198, 96, 53, 0.3);
}

.nav-contact.active {
  background: var(--accent);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #ffffff;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  transition: background 0.2s, border-color 0.2s;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.mobile-nav-scrim {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(18, 28, 23, 0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 998;
}

/* ==========================================================================
   Homepage Hero & Sections
   ========================================================================== */

.hero {
  max-width: 1360px;
  min-height: 620px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 7rem) 2rem 3rem;
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: clamp(2rem, 7vw, 8rem);
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0 0 1.5rem;
  font-size: clamp(3.6rem, 7vw, 7.8rem);
  letter-spacing: -0.065em;
}

.hero h1 em {
  color: var(--accent);
  font-style: italic;
  font-weight: 500;
}

.hero__lede {
  max-width: 500px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  gap: 1.1rem;
  align-items: center;
  padding: 0.9rem 1.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
}

.button--primary {
  background: var(--ink);
  color: #fff;
}

.button--primary:hover {
  opacity: 0.9;
}

.button--primary span {
  font-size: 1.3rem;
  line-height: 0.6;
}

.button--ghost {
  border: 1px solid var(--line);
}

.button--ghost:hover {
  border-color: var(--ink);
}

.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #d4ba92;
  border-radius: 8px;
  padding: 2.25rem 1.75rem 1.5rem;
  box-shadow: 0 16px 40px rgba(29, 48, 40, 0.09);
  border: 1px solid rgba(29, 48, 40, 0.08);
}

.hero__visual-artwork {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.hero__visual img {
  display: block;
  max-height: 520px;
  max-width: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: contrast(1.03);
}

.hero__note {
  margin-top: 1.25rem;
  padding: 0.6rem 1.35rem;
  background: rgba(248, 246, 239, 0.96);
  border: 1px solid rgba(214, 221, 211, 0.9);
  border-radius: 30px;
  display: inline-flex;
  gap: 0.65rem;
  align-items: center;
  box-shadow: 0 4px 14px rgba(29, 48, 40, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero__note:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(29, 48, 40, 0.12);
}

.hero__note span,
.hero__note-icon {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  line-height: 1;
}

.hero__note p {
  margin: 0;
  font-family: var(--serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.intro {
  border-top: 1px solid var(--line);
}

.split-heading {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr;
  gap: clamp(2rem, 9vw, 10rem);
  align-items: end;
  margin-top: 1rem;
}

.split-heading p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  gap: 0.65rem;
  margin-top: 1rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.text-link span {
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 0.7;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding-top: 0;
}

.pillars article {
  min-height: 300px;
  padding: 2rem;
  border: 1px solid var(--line);
  border-left: 0;
}

.pillars article:first-child {
  border-left: 1px solid var(--line);
}

.number {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
}

.pillars h3 {
  margin: 2.5rem 0 0.8rem;
  font-size: 2.4rem;
  letter-spacing: -0.04em;
}

.pillars p {
  color: var(--muted);
  font-size: 0.92rem;
}

.pillars a {
  display: inline-block;
  margin-top: 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.featured {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  gap: clamp(2rem, 10vw, 11rem);
  align-items: center;
}

.featured__image {
  position: relative;
  background: #c8b698;
  max-width: 430px;
}

.featured__image img {
  width: 100%;
  height: 570px;
  object-fit: cover;
  object-position: top;
  mix-blend-mode: multiply;
}

.featured__copy h2 {
  margin: 1rem 0 1.5rem;
}

.featured__copy > p:not(.eyebrow) {
  max-width: 480px;
  color: var(--muted);
  font-size: 1.1rem;
}

.quote-band {
  padding: clamp(4rem, 10vw, 9rem) 2rem;
  background: var(--ink);
  color: var(--paper);
  text-align: center;
}

.quote-band p {
  max-width: 960px;
  margin: auto;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 4.25rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
}

.journal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
}

.journal__links a {
  display: grid;
  grid-template-columns: 90px 1fr 25px;
  gap: 0.5rem;
  align-items: center;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}

.journal__links span {
  color: var(--accent);
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.journal__links b {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
}

.journal__links i {
  font-style: normal;
  font-size: 1.4rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  padding: 3.5rem max(2rem, calc((100vw - 1240px) / 2));
  background: #e8e9df;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 2rem;
  align-items: end;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.site-footer > small {
  color: var(--muted);
  font-size: 0.67rem;
}

/* ==========================================================================
   Subpages / Content Pages
   ========================================================================== */

#page {
  max-width: 1240px;
  margin: 0 auto;
  padding: 3.5rem 2rem 6rem;
  min-height: 60vh;
}

#page-bgtop {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 3.5rem;
  align-items: start;
}

#content {
  min-width: 0;
}

.post {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.post:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}

.post .title {
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: -0.04em;
  text-transform: none;
}

.entry {
  color: #36443c;
  font-size: 1.02rem;
  line-height: 1.75;
}

.entry h3 {
  margin: 2rem 0 0.6rem;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.entry h4 {
  margin: 1.4rem 0 0.4rem;
  font-size: 1.2rem;
  color: var(--ink);
}

.entry p {
  margin: 0 0 1.2rem;
}

.entry ul, .entry ol {
  margin: 0 0 1.4rem;
  padding-left: 1.6rem;
}

.entry li {
  margin-bottom: 0.6rem;
  line-height: 1.7;
}

.entry a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.entry a:hover {
  color: var(--ink);
}

.entry img.right {
  float: right;
  max-width: 44%;
  height: auto;
  margin: 0.5rem 0 1.5rem 1.75rem;
  border-radius: 4px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

/* Sidebar */
#sidebar {
  border-left: 1px solid var(--line);
  padding-left: 2rem;
}

.sidebar-widget {
  margin-bottom: 2.5rem;
}

.sidebar-widget h2,
.sidebar-widget h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin: 0 0 1rem;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.4rem;
}

.sidebar-widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-widget li {
  margin-bottom: 0.8rem;
  line-height: 1.4;
}

.sidebar-widget a {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.sidebar-widget a:hover {
  color: var(--ink);
}

.sidebar-widget img {
  border-radius: 4px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   Book Cards Grid (publication.html)
   ========================================================================== */

.book-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(135px, 1fr));
  gap: 1.5rem;
  margin: 1.5rem 0 2.5rem;
}

.book-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.25rem 0.75rem 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.book-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.book-card img {
  width: 85px;
  height: 120px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  margin-bottom: 0.75rem;
}

.book-card .book-title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.book-card .book-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  margin-top: auto;
}

/* ==========================================================================
   Photo Gallery Grid & Lightbox (gallery, news, testimonial)
   ========================================================================== */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0 2.5rem;
}

.gallery-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

.gallery-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.1);
}

.gallery-card img {
  width: 100%;
  height: 175px;
  object-fit: cover;
  background: #ece8de;
  transition: transform 0.3s ease;
}

.gallery-card:hover img {
  transform: scale(1.03);
}

.gallery-caption {
  padding: 0.7rem 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.4;
}

/* Lightbox Modal */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 28, 23, 0.94);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  backdrop-filter: blur(6px);
}

.lightbox-overlay.active {
  display: flex;
}

.lightbox-container {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-container img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

.lightbox-caption {
  color: #fff;
  margin-top: 0.8rem;
  font-size: 0.95rem;
  text-align: center;
  max-width: 700px;
}

.lightbox-btn {
  position: absolute;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.1s;
}

.lightbox-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

.lightbox-close {
  top: -50px;
  right: 0;
  font-size: 1.8rem;
}

.lightbox-prev {
  left: -58px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: -58px;
  top: 50%;
  transform: translateY(-50%);
}

/* ==========================================================================
   Booking & Contact Forms
   ========================================================================== */

.booking-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2.25rem;
  margin: 2rem 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(198, 96, 53, 0.15);
  background: #fff;
}

.form-submit-row {
  margin-top: 1.75rem;
  display: flex;
  justify-content: flex-start;
}

.button--submit {
  background: var(--ink);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.95rem 2.25rem;
  border-radius: 4px;
  transition: background 0.2s, transform 0.1s;
}

.button--submit:hover {
  background: var(--accent);
}

/* Success page alert card */
.notice-card {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--accent);
  border-radius: 6px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

.notice-card h3 {
  margin-top: 0;
  color: var(--ink);
}

/* Responsive tables fallback */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

table td, table th {
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  text-align: left;
}

/* ==========================================================================
   Responsive Breakpoints: Mobile Drawer & Touch Navigation
   ========================================================================== */

@media (max-width: 1060px) {
  .site-header__inner {
    padding: 0.75rem 1.25rem;
  }

  .brand-logo {
    height: 40px;
  }

  .brand span {
    font-size: 1.5rem;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    padding: 1.25rem 1.25rem 2.5rem;
    background: #ffffff;
    border-bottom: 2px solid var(--line);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    z-index: 999;
  }

  .site-header.menu-open nav {
    display: flex;
  }

  .site-header.menu-open .mobile-nav-scrim {
    display: block;
  }

  .nav-item {
    border-bottom: 1px solid rgba(214, 221, 211, 0.7);
    padding-bottom: 0.25rem;
  }

  .nav-item > a,
  .site-header nav > a {
    padding: 0.85rem 0.6rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ink);
    border-radius: 6px;
  }

  .nav-arrow {
    font-size: 0.9em;
    padding: 0.25rem 0.5rem;
    background: rgba(220, 229, 216, 0.5);
    border-radius: 4px;
  }

  .nav-dropdown {
    position: static;
    box-shadow: none;
    background: rgba(248, 246, 239, 0.9);
    border: none;
    border-left: 3px solid var(--accent);
    border-radius: 6px;
    padding: 0.35rem 0.5rem 0.5rem;
    margin: 0.25rem 0 0.5rem;
    display: none;
    animation: none;
  }

  .nav-dropdown::before {
    display: none;
  }

  .nav-item.dropdown-open .nav-dropdown {
    display: flex;
  }

  .nav-dropdown a {
    padding: 0.65rem 0.75rem;
    font-size: 0.94rem;
    white-space: normal;
    border-radius: 4px;
  }

  .nav-cta {
    margin-top: 1rem;
  }

  .nav-contact {
    margin-left: 0;
    width: 100%;
    text-align: center;
    padding: 0.95rem;
    font-size: 0.95rem;
  }
}

@media (max-width: 800px) {
  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 3rem 1.25rem 4rem;
  }

  .hero__visual {
    width: 100%;
    max-width: 440px;
    margin: 2rem auto 0;
    min-height: 0;
    padding: 1.75rem 1.25rem 1.25rem;
  }

  .hero__visual img {
    max-height: 440px;
    width: auto;
    height: auto;
  }

  .hero__note {
    margin-top: 1rem;
    padding: 0.55rem 1.15rem;
  }

  .hero__note p {
    font-size: 0.88rem;
  }

  .section {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .split-heading,
  .featured,
  .journal {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pillars {
    grid-template-columns: 1fr;
    padding-top: 0;
  }

  .pillars article {
    border-left: 1px solid var(--line);
    border-bottom: 0;
    min-height: 0;
  }

  .pillars article:last-child {
    border-bottom: 1px solid var(--line);
  }

  .pillars h3 {
    margin-top: 1.5rem;
  }

  .featured__image {
    max-width: none;
  }

  .featured__image img {
    height: 440px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    padding: 3rem 1.25rem;
  }

  #page {
    padding: 2.5rem 1.25rem 4rem;
  }

  #page-bgtop {
    display: block;
  }

  #sidebar {
    margin-top: 3rem;
    padding: 2rem 0 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .entry img.right {
    float: none;
    max-width: 100%;
    margin: 1rem auto;
  }

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

  .booking-form {
    padding: 1.5rem 1rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .lightbox-close {
    top: 10px;
    right: 10px;
  }
}

/* ==========================================================================
   Interactive Features: Chakra Explorer, Book Filters, FAQ, Contact & WhatsApp
   ========================================================================== */

/* Chakra Explorer */
.chakra-explorer {
  margin-top: 2.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.chakra-explorer__header h3 {
  margin: 0.4rem 0 0.6rem;
  font-size: 1.8rem;
}

.chakra-nav {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.chakra-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.75rem 0.4rem;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #ffffff;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
  text-align: center;
}

.chakra-btn:hover {
  transform: translateY(-2px);
  border-color: var(--accent-c);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
}

.chakra-btn.active {
  background: var(--accent-c);
  border-color: var(--accent-c);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.chakra-num {
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.8;
}

.chakra-title {
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 0.2rem;
  font-family: var(--sans);
}

.chakra-loc {
  font-size: 0.68rem;
  opacity: 0.75;
}

.chakra-btn.active .chakra-num,
.chakra-btn.active .chakra-title,
.chakra-btn.active .chakra-loc {
  color: #ffffff;
}

.chakra-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.75rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.chakra-panel__badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
}

.chakra-panel__title {
  font-size: 1.4rem;
  margin: 0 0 0.6rem;
  color: var(--ink);
  font-family: var(--serif);
}

.chakra-panel__desc {
  color: #4a5951;
  font-size: 0.96rem;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}

.chakra-panel__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

.chakra-meta {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.2rem;
}

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

@media (max-width: 768px) {
  .chakra-nav {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (max-width: 480px) {
  .chakra-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Book Filters */
.book-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.filter-pill {
  border: 1px solid var(--line);
  background: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-pill:hover {
  border-color: var(--ink);
}

.filter-pill.active {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

.book-card.hidden {
  display: none !important;
}

/* FAQ Accordion */
.faq {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.faq__header {
  margin-bottom: 2.5rem;
}

.faq__header h2 {
  margin: 0.8rem 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.faq__lede {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 680px;
}

.faq__grid {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(198, 96, 53, 0.08);
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-icon {
  font-style: normal;
  font-size: 1.4rem;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-content {
  padding: 0 1.5rem 1.5rem;
  color: #4a5951;
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-content p {
  margin: 0;
}

/* Contact Details & Inquiry Form */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

.contact-card h4 {
  font-size: 1rem;
  color: var(--accent);
  margin-bottom: 0.6rem;
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-card p {
  margin: 0 0 0.5rem;
  font-size: 0.92rem;
  line-height: 1.6;
}

.inquiry-form {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
  margin-top: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

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

.form-field {
  margin-bottom: 1.25rem;
}

.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink);
  margin-bottom: 0.4rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--paper);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(29, 48, 40, 0.1);
}

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

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  background: #25d366;
  color: #ffffff !important;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  z-index: 990;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.55);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

.whatsapp-tooltip {
  position: absolute;
  right: 64px;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   Contact Page: Location Tabs & Dual Map Panes
   ========================================================================== */
.location-tabs {
  display: flex;
  gap: 0.75rem;
  margin: 1.5rem 0 1.25rem;
  flex-wrap: wrap;
}

.location-tab {
  padding: 0.65rem 1.25rem;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 30px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.location-tab:hover {
  border-color: var(--ink);
  background: var(--paper);
}

.location-tab.active {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
  box-shadow: 0 4px 12px rgba(29, 48, 40, 0.18);
}

.location-pane {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  margin-bottom: 2rem;
}

.location-pane .map-container iframe {
  width: 100%;
  border: 0;
  display: block;
}

.map-details {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  background: var(--paper);
  border-top: 1px solid var(--line);
}

.map-details__info strong {
  display: block;
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.map-details__info p {
  margin: 0 0 0.35rem;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.4;
}

.map-details__info small {
  display: block;
  font-size: 0.82rem;
  color: var(--ink);
  opacity: 0.85;
}

@media (max-width: 680px) {
  .location-tabs {
    flex-direction: column;
    gap: 0.5rem;
  }
  .location-tab {
    width: 100%;
    justify-content: center;
  }
  .map-details {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .map-details .button {
    text-align: center;
    justify-content: center;
  }
}

/* ==========================================================================
   Book Ordering Desk (publication.html)
   ========================================================================== */
.book-order-btn {
  margin-top: 0.5rem;
  padding: 0.35rem 0.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.book-card:hover .book-order-btn {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
}

.book-order-btn:hover {
  background: var(--accent) !important;
  color: #ffffff !important;
  border-color: var(--accent) !important;
}

.book-order-desk {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2rem;
  margin: 2.5rem 0 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.book-order-tabs {
  display: flex;
  gap: 0.75rem;
  margin: 1.5rem 0 1.5rem;
  flex-wrap: wrap;
}

.book-order-tab {
  padding: 0.65rem 1.25rem;
  border: 1px solid var(--line);
  background: #ffffff;
  border-radius: 30px;
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.book-order-tab:hover {
  border-color: var(--ink);
  background: var(--paper);
}

.book-order-tab.active {
  background: var(--ink);
  color: #ffffff;
  border-color: var(--ink);
  box-shadow: 0 4px 12px rgba(29, 48, 40, 0.18);
}

.book-order-pane {
  display: none;
}

.book-order-pane.active {
  display: block;
}

.book-select-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 0.65rem;
  margin: 1.25rem 0 1.75rem;
  max-height: 420px;
  overflow-y: auto;
  padding: 0.5rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
}

.book-select-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.85rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}

.book-select-item:hover {
  border-color: var(--ink);
}

.book-select-item.selected {
  background: #f1f8f3;
  border-color: #2e7d32;
}

.book-select-item input[type="checkbox"] {
  accent-color: #2e7d32;
  width: 16px;
  height: 16px;
  margin-right: 0.6rem;
  cursor: pointer;
}

.book-select-item__info {
  display: flex;
  align-items: center;
  flex: 1;
}

.book-select-item__title {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink);
}

.book-select-item__price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  margin-left: 0.5rem;
  white-space: nowrap;
}

.order-calc-box {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  margin: 1.25rem 0 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.order-calc-box .calc-row {
  display: flex;
  gap: 1.5rem;
  font-size: 0.92rem;
  color: var(--ink);
}

.order-calc-box .total-payable {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}

@media (max-width: 680px) {
  .book-select-grid {
    grid-template-columns: 1fr;
    max-height: 350px;
  }
  .order-calc-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ==========================================================================
   Floating Action Widgets (WhatsApp & Back-to-Top)
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
  z-index: 999;
  pointer-events: none;
}

.floating-btn {
  pointer-events: auto;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
  cursor: pointer;
  border: none;
}

.btn-top {
  width: 44px;
  height: 44px;
  background: var(--ink);
  color: #ffffff;
  opacity: 0;
  transform: translateY(12px) scale(0.9);
  pointer-events: none;
  transition: all 0.25s ease;
}

.btn-top.visible {
  opacity: 0.9;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.btn-top:hover {
  opacity: 1;
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.24);
}

.btn-whatsapp {
  background: #25d366;
  color: #ffffff;
  padding: 0.65rem 1rem 0.65rem 0.85rem;
  gap: 0.5rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.btn-whatsapp:hover {
  background: #20ba59;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(37, 211, 102, 0.38);
}

.btn-whatsapp .whatsapp-label {
  display: inline-block;
  white-space: nowrap;
}

@media (max-width: 600px) {
  .floating-actions {
    bottom: 1.15rem;
    right: 1.15rem;
    gap: 0.6rem;
  }
  .btn-whatsapp {
    padding: 0.75rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
  }
  .btn-whatsapp .whatsapp-label {
    display: none;
  }
}

/* ==========================================================================
   Print Stylesheet
   ========================================================================== */
@media print {
  body {
    background: #ffffff !important;
    color: #000000 !important;
    font-size: 11pt !important;
    line-height: 1.5 !important;
  }

  .site-header,
  .site-footer,
  .mobile-nav-scrim,
  .floating-actions,
  #sidebar,
  .menu-toggle,
  .button,
  .book-filter-bar,
  .book-order-tabs,
  #order-desk,
  .location-tabs,
  .map-container,
  .hero__actions,
  .nav-cta {
    display: none !important;
  }

  main,
  #page,
  #content,
  .post,
  .entry {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
  }

  h1, h2, h3, h4 {
    color: #000000 !important;
    page-break-after: avoid;
    break-after: avoid;
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
    break-inside: avoid;
  }

  a {
    color: #000000 !important;
    text-decoration: underline;
  }
}

