@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400;1,600&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --forest: #151f14;
  --moss: #243324;
  --canopy: #2e5230;
  --fern: #3d6640;
  --sage: #6b9e6e;
  --mint: #8ecfc4;
  --teal: #3d8b80;
  --copper: #c4845a;
  --gold: #d4a46a;
  --cream: #f4efe6;
  --parchment: #e8dfc9;
  --bark: #4a3222;
  --shadow: rgba(8,15,8,0.9);
}

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

body {
  font-family: 'Jost', sans-serif;
  background: var(--forest);
  color: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── LOGO SVG ── */
.logo-svg { width: 44px; height: 44px; flex-shrink: 0; }

/* ── NAV ── */
nav {
  position: fixed; top:0; left:0; right:0; z-index:200;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  background: rgba(10,16,10,0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(61,102,64,0.2);
  transition: all 0.3s;
}

.nav-brand {
  display: flex; align-items: center; gap: 0.85rem;
  text-decoration: none;
}

.nav-wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-weight: 300;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cream); line-height: 1;
}
.nav-wordmark em { font-style: normal; color: var(--copper); }
.nav-wordmark small {
  display: block; font-size: 0.55rem;
  letter-spacing: 0.28em; color: var(--sage); opacity: 0.7;
  margin-top: 3px; font-family: 'Jost', sans-serif; font-weight: 400;
}

.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-size: 0.7rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--parchment); text-decoration: none;
  opacity: 0.65; transition: opacity 0.2s, color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--copper);
  transform: scaleX(0); transition: transform 0.25s;
}
.nav-links a:hover { opacity: 1; color: var(--cream); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { opacity: 1; color: var(--gold); }
.nav-links a.active::after { transform: scaleX(1); background: var(--gold); }

.nav-book {
  background: var(--copper) !important; color: var(--cream) !important;
  opacity: 1 !important; padding: 0.55rem 1.4rem !important;
  border-radius: 1px; transition: background 0.25s !important;
}
.nav-book::after { display: none !important; }
.nav-book:hover { background: var(--gold) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--cream); transition: all 0.3s; }

.mobile-menu {
  display: none; position: fixed;
  top: 72px; left:0; right:0; bottom:0;
  background: rgba(8,15,8,0.98);
  z-index: 199; padding: 3rem 2rem;
  flex-direction: column; gap: 0;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 1.5rem; font-family: 'Cormorant Garamond', serif;
  font-weight: 300; color: var(--cream);
  text-decoration: none; padding: 1.2rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ── PAGE HERO ── */
.page-hero {
  position: relative; min-height: 52vh;
  display: flex; align-items: flex-end;
  padding: 6rem 3rem 4rem;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.page-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,16,10,0.4) 0%, rgba(10,16,10,0.75) 100%);
}
.page-hero-content { position: relative; z-index: 2; max-width: 1060px; }
.page-hero-label {
  font-size: 0.68rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--copper);
  margin-bottom: 1rem; display: block;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300; line-height: 1.05;
  color: var(--cream);
}
.page-hero p {
  margin-top: 1.25rem; max-width: 560px;
  font-size: 1rem; font-weight: 300;
  line-height: 1.8; color: var(--parchment); opacity: 0.85;
}

/* ── SECTIONS ── */
section { padding: 6rem 3rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }

.label {
  font-size: 0.68rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--copper);
  margin-bottom: 0.9rem; display: block;
}
h2.display {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300; line-height: 1.1;
  margin-bottom: 1.25rem;
}
.rule { width: 52px; height: 1px; background: var(--copper); margin-bottom: 2.5rem; }

.body-text {
  font-size: 1rem; font-weight: 300;
  line-height: 1.9; color: var(--parchment); opacity: 0.85;
  max-width: 680px;
}
.body-text strong { color: var(--gold); font-weight: 500; opacity: 1; }
.body-text em { font-style: italic; color: var(--mint); opacity: 1; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  text-decoration: none !important;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  outline: none;
  -webkit-appearance: none;
  transition: background 0.25s, border-color 0.25s, transform 0.2s, color 0.25s;
}
.btn-fill {
  background: #c4845a;
  color: #f4efe6 !important;
  padding: 1rem 2.4rem;
}
.btn-fill:hover {
  background: #d4a46a;
  color: #f4efe6 !important;
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  border: 1px solid rgba(244,239,230,0.4);
  color: #f4efe6 !important;
  padding: 0.95rem 2.4rem;
}
.btn-outline:hover {
  border-color: #6b9e6e;
  color: #f4efe6 !important;
  transform: translateY(-2px);
}
.btn-teal {
  background: var(--teal);
  color: var(--cream) !important;
  padding: 0.9rem 2.2rem;
}
.btn-teal:hover {
  background: var(--mint);
  color: var(--forest) !important;
  transform: translateY(-2px);
}
/* Kill any browser link colour on buttons */
a.btn, a.btn:visited, a.btn:link {
  color: #f4efe6 !important;
  text-decoration: none !important;
}
a.btn-fill, a.btn-fill:visited { color: #f4efe6 !important; }
a.btn-outline, a.btn-outline:visited { color: #f4efe6 !important; }
a.nav-book, a.nav-book:visited { color: #f4efe6 !important; }

/* ── CARDS ── */
.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem; transition: border-color 0.3s, transform 0.3s;
}
.card:hover { border-color: rgba(196,132,90,0.4); transform: translateY(-3px); }
.card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; font-weight: 300; color: var(--gold);
  margin-bottom: 0.75rem;
}
.card p { font-size: 0.88rem; line-height: 1.75; color: var(--parchment); opacity: 0.75; font-weight: 300; }

/* ── FOOTER ── */
footer {
  background: #080f08;
  border-top: 1px solid rgba(61,102,64,0.15);
  padding: 4rem 3rem 2.5rem;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand .wordmark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem; font-weight: 300;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--cream); margin-bottom: 0.4rem;
}
.footer-brand .wordmark em { font-style: normal; color: var(--copper); }
.footer-brand .sub {
  font-size: 0.65rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--sage); opacity: 0.6;
  margin-bottom: 1.25rem;
}
.footer-brand p {
  font-size: 0.85rem; line-height: 1.8;
  color: var(--parchment); opacity: 0.5; max-width: 280px;
}
.footer-col h4 {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sage);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col a {
  font-size: 0.85rem; color: var(--parchment);
  opacity: 0.5; text-decoration: none; transition: opacity 0.2s;
}
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.72rem; color: var(--parchment); opacity: 0.3;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 4.5rem 1.5rem; }
  .page-hero { padding: 5rem 1.5rem 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
