@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Lato:wght@300;400;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brown-dark:   #3d1f0a;
  --brown-mid:    #5a3a20;
  --brown-light:  #c9a882;
  --cream:        #f5efe4;
  --cream-mid:    #ede4d4;
  --cream-light:  #faf6f0;
  --gold:         #e8a830;
  --red:          #b83c2a;
  --off-white:    #f0e8d8;
  --near-black:   #1a120a;
  --border:       #ddd0bb;
  --text-muted:   #8a6040;
  --text-body:    #5a3a20;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--brown-dark);
  line-height: 1.7;
  font-size: 16px;
}

/* ---- SACRED COLOUR STRIP ---- */
.sacred-strip {
  display: flex;
  height: 5px;
  width: 100%;
}
.sacred-strip span { flex: 1; }
.s-white  { background: var(--off-white); }
.s-yellow { background: var(--gold); }
.s-red    { background: var(--red); }
.s-black  { background: var(--near-black); }

/* ---- NAV ---- */
.site-nav {
  background: var(--brown-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-logo img {
  height: 44px;
  width: 44px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--cream);
  padding: 2px;
}
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.nav-logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--brown-light);
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 700;
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--near-black);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  color: var(--brown-light);
}
.footer-logo span { color: var(--gold); }
.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #6a5040;
  text-decoration: none;
}
.footer-links a:hover { color: var(--brown-light); }
.footer-note {
  font-size: 12px;
  color: #4a3428;
  width: 100%;
  padding-top: 20px;
  border-top: 1px solid #2a1a10;
  margin-top: 4px;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--gold);
  color: var(--near-black);
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 2px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.btn-primary:hover { background: #d49920; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--cream);
  font-family: 'Lato', sans-serif;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 13px 32px;
  border-radius: 2px;
  border: 1px solid rgba(245,239,228,0.4);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline:hover { border-color: var(--cream); background: rgba(245,239,228,0.08); }

/* ---- SECTION SHARED ---- */
.section-label {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  font-weight: 700;
}

.page-hero {
  background: var(--brown-dark);
  padding: 64px 48px 52px;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
  line-height: 1.2;
}
.page-hero p {
  font-size: 16px;
  color: var(--brown-light);
  max-width: 580px;
  line-height: 1.75;
}

/* ---- PARTNERS ---- */
.partners-bar {
  background: var(--cream-light);
  padding: 32px 48px;
  border-top: 1px solid var(--border);
}
.partners-bar p {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}
.partner-logos {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.partner-pill {
  background: var(--cream-mid);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  color: var(--brown-mid);
  letter-spacing: 0.04em;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .site-nav { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--brown-dark); padding: 20px; gap: 0; }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-links a { display: block; padding: 14px 0; }
  .nav-toggle { display: flex; }
  .page-hero { padding: 48px 20px 40px; }
  .page-hero h1 { font-size: 30px; }
  .site-footer { padding: 32px 20px; flex-direction: column; align-items: flex-start; }
}
