:root {
  --sage: #7c9885;
  --sage-dark: #5f7a68;
  --cream: #faf6f0;
  --cream-dark: #f1e9dd;
  --ink: #2e2a26;
  --ink-soft: #56504a;
  --terracotta: #c07856;
  --terracotta-dark: #a6613f;
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Jost', 'Segoe UI', sans-serif;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  font-size: 17px;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 600; margin: 0 0 0.5em; line-height: 1.2; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 32px; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  color: var(--sage-dark);
  font-weight: 500;
  margin-bottom: 0.6em;
}
.eyebrow.center, h2.center { text-align: center; }

.btn {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  padding: 14px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.btn:hover { background: var(--terracotta-dark); transform: translateY(-1px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 246, 240, 0.92);
  backdrop-filter: blur(6px);
  z-index: 100;
  border-bottom: 1px solid var(--cream-dark);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}
.logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}
.logo span { color: var(--sage-dark); font-style: italic; }

.nav { display: flex; gap: 36px; }
.nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  position: relative;
  padding-bottom: 4px;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.25s ease;
}
.nav a:hover { color: var(--terracotta); }
.nav a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); display: block; }

/* Hero */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  padding: 130px 0 110px;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(46,42,38,0.72) 0%, rgba(46,42,38,0.55) 55%, rgba(95,122,104,0.6) 100%);
}
.hero-inner { max-width: 760px; position: relative; z-index: 1; }
.hero h1 { font-size: 2.8rem; color: #fff; text-shadow: 0 2px 12px rgba(0,0,0,0.25); }
.hero-sub { font-size: 1.1rem; color: #f1ede6; max-width: 560px; margin: 0 auto 2em; }
.eyebrow--light { color: #d9ecdd; }

/* About */
.about { padding: 72px 0; }
.about-inner { display: flex; gap: 64px; align-items: center; }
.about-photo { flex: 0 0 300px; position: relative; }
.about-photo::before {
  content: "";
  position: absolute;
  top: 20px; left: 20px;
  width: 300px;
  height: 420px;
  border: 2px solid var(--sage);
  border-radius: 12px;
  z-index: 0;
}
.photo-frame {
  width: 300px;
  height: 420px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 16px 32px rgba(46, 42, 38, 0.15);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about-text { flex: 1; }
.about-text h2 { font-size: 2rem; }
.about-text h3 { font-size: 1.15rem; margin-top: 1.6em; color: var(--sage-dark); }
.credentials { list-style: none; padding: 0; margin: 1em 0 1.5em; }
.credentials li {
  padding-left: 1.4em;
  position: relative;
  color: var(--ink-soft);
  margin-bottom: 0.5em;
}
.credentials li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--sage);
}

/* Services */
.services { padding: 72px 0; background: var(--cream-dark); }
.services h2 { font-size: 2rem; margin-bottom: 0.3em; }
.services > .wrap > h2 { margin-bottom: 56px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card {
  background: var(--cream);
  padding: 40px 32px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(46, 42, 38, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(46, 42, 38, 0.1);
}
.service-icon {
  color: var(--sage-dark);
  margin-bottom: 0.6em;
  display: flex;
  justify-content: center;
}
.service-icon svg { width: 44px; height: 44px; }
.service-card h3 { font-size: 1.25rem; margin-bottom: 0.5em; }
.service-card p { color: var(--ink-soft); font-size: 0.98rem; margin: 0 0 0.8em; }
.service-card p:last-child { margin-bottom: 0; }

/* Blog */
.blog { padding: 100px 0; }
.blog h2 { font-size: 2rem; margin-bottom: 56px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: var(--cream-dark);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(46, 42, 38, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 36px rgba(46, 42, 38, 0.1);
}
.blog-tag {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
  color: var(--terracotta-dark);
  font-weight: 500;
  margin: 0 0 0.8em;
}
.blog-card h3 { font-size: 1.2rem; margin-bottom: 0.5em; }
.blog-card h3 a { color: var(--ink); text-decoration: none; }
.blog-card h3 a:hover { color: var(--terracotta); }
.blog-excerpt { color: var(--ink-soft); font-size: 0.96rem; margin: 0 0 1em; }
.blog-meta { color: var(--sage-dark); font-size: 0.82rem; margin: 0 0 1em; }
.blog-link {
  color: var(--terracotta-dark);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}
.blog-link:hover { text-decoration: underline; }
.blog-view-all { text-align: center; margin: 56px 0 0; }

.btn--outline {
  background: transparent;
  border: 1.5px solid var(--terracotta);
  color: var(--terracotta-dark);
}
.btn--outline:hover { background: var(--terracotta); color: #fff; }

/* Contact */
.contact { padding: 72px 0; background: var(--sage); color: #fff; }
.contact-inner { display: flex; gap: 64px; }
.contact-text, .contact-form { flex: 1; }
.contact .eyebrow { color: #eaf1ea; }
.contact h2 { color: #fff; font-size: 2rem; }
.contact-details p { margin: 0.4em 0; }
.contact-form-wrap { flex: 1; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form label { display: flex; flex-direction: column; gap: 6px; font-size: 0.9rem; }
.contact-form input, .contact-form textarea {
  font-family: var(--sans);
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  resize: vertical;
}
.contact-form .btn { align-self: flex-start; }
.contact-form .btn[disabled] { opacity: 0.7; cursor: default; }

.form-error {
  background: rgba(46, 42, 38, 0.18);
  border-left: 3px solid #e2b0a1;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  margin: 0;
}
.form-error a { color: #fff; text-decoration: underline; }

.form-success {
  background: rgba(250, 246, 240, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 40px;
}
.form-success h3 { color: #fff; font-size: 1.5rem; margin-bottom: 0.4em; }
.form-success p { margin: 0; color: #eaf1ea; }

/* Room gallery */
.room-gallery { padding: 20px 0 48px; background: var(--cream-dark); }
.room-gallery h2 { font-size: 2rem; margin-bottom: 24px; }

.cost-block {
  max-width: 960px;
  margin: 0 auto 48px;
  background: var(--cream);
  border-radius: 16px;
  padding: 40px 48px;
  box-shadow: 0 8px 24px rgba(46, 42, 38, 0.05);
}
.cost-block h3 { font-size: 1.3rem; margin-bottom: 0.6em; }
.cost-block p { color: var(--ink-soft); margin: 0 0 0.8em; }
.cost-block p:last-child { margin-bottom: 0; }

.room-grid {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.room-thumb {
  width: 220px;
  height: 160px;
  padding: 0;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(46, 42, 38, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.room-thumb:hover, .room-thumb:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 16px 28px rgba(46, 42, 38, 0.16);
}
.room-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  z-index: 1000;
}
.lightbox[hidden] { display: none; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 18, 16, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}
.modal-overlay[hidden] { display: none; }
.modal {
  position: relative;
  background: var(--cream);
  border-radius: 16px;
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  box-shadow: 0 24px 48px rgba(20, 18, 16, 0.3);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--ink-soft);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  padding: 8px;
}
.modal-close:hover { color: var(--terracotta-dark); }
.modal-body {
  padding: 48px;
  overflow-y: auto;
  max-height: 85vh;
}
.modal-body h2 { font-size: 1.6rem; margin-bottom: 0.6em; }
.modal-body h3 { font-size: 1.15rem; margin: 1.6em 0 0.6em; color: var(--sage-dark); }
.modal-body p { color: var(--ink-soft); font-size: 0.95rem; margin: 0 0 1em; }
.modal-body a { color: var(--terracotta-dark); }

/* Footer */
.site-footer { background: var(--ink); color: #d9d4cc; padding: 32px 0; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; align-items: center; }
.footer-inner p { margin: 0; font-size: 0.85rem; }
.footer-note { color: #a39c92; display: flex; align-items: center; }
.bacp-badge {
  height: 52px;
  width: auto;
  vertical-align: middle;
  margin-right: 10px;
  background: #fff;
  padding: 3px 6px;
  border-radius: 4px;
}
.footer-link { color: #a39c92; text-decoration: underline; }
.footer-link:hover { color: #d9d4cc; }

/* Blog listing / post pages */
.page-header { padding: 160px 0 60px; text-align: center; background: var(--cream-dark); }
.page-header h1 { font-size: 2.4rem; margin-bottom: 0.4em; }
.page-header p { color: var(--ink-soft); max-width: 600px; margin: 0 auto; }

.blog-listing { padding: 80px 0 100px; }
.blog-listing .blog-grid { grid-template-columns: repeat(3, 1fr); }

.post-back {
  display: inline-block;
  margin-bottom: 1.5em;
  color: var(--sage-dark);
  text-decoration: none;
  font-size: 0.9rem;
}
.post-back:hover { text-decoration: underline; }

.post-header { padding: 160px 0 20px; text-align: center; }
.post-header .blog-tag { justify-content: center; display: flex; }
.post-header h1 { font-size: 2.2rem; max-width: 700px; margin: 0.3em auto; }
.post-meta { color: var(--ink-soft); font-size: 0.9rem; }

.post-content { padding: 20px 0 100px; }
.post-content .wrap { max-width: 700px; }
.post-content p { margin: 0 0 1.4em; color: var(--ink-soft); font-size: 1.05rem; }
.post-content h2 { font-size: 1.5rem; margin: 1.6em 0 0.6em; }

.post-cta {
  background: var(--sage);
  color: #fff;
  padding: 48px;
  border-radius: 16px;
  text-align: center;
  margin-top: 2.5em;
}
.post-cta h3 { color: #fff; margin-bottom: 0.4em; }
.post-cta p { color: #eaf1ea; margin-bottom: 1.2em; }

@media (max-width: 860px) {
  .blog-grid, .blog-listing .blog-grid { grid-template-columns: 1fr; }
  .page-header, .post-header { padding-top: 130px; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Responsive */
@media (max-width: 860px) {
  .nav { position: fixed; top: 68px; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 20px 32px; gap: 18px; border-bottom: 1px solid var(--cream-dark); transform: translateY(-150%); transition: transform 0.25s ease; }
  .nav.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .about-inner { flex-direction: column; }
  .about-photo { flex: none; }
  .about-photo::before { display: none; }
  .photo-frame { width: 100%; max-width: 300px; height: 420px; }
  .services-grid, .blog-grid { grid-template-columns: 1fr; }
  .contact-inner { flex-direction: column; }
  .hero h1 { font-size: 2rem; }
}
