/* ============================================================
   Blackwood Group — www.blackwoodgroup.nz
   ============================================================ */

:root {
  --ink: #121212;
  --panel: #181818;
  --card: #202020;
  --line: #2e2c29;
  --text: #ece7df;
  --muted: #a8a199;
  --accent: #c49a6c;
  --accent-dark: #a67f4e;
  --light: #f4f1ec;
  --maxw: 1160px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
}

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

a { color: var(--accent); text-decoration: none; }
a:hover { color: #d9b488; }

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

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(14, 14, 14, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.nav .brand img { height: 54px; width: auto; }

.nav nav { display: flex; gap: 28px; align-items: center; }

.nav nav a {
  color: var(--text);
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav nav a:hover, .nav nav a.active { color: var(--accent); }

.nav .cta {
  background: var(--accent);
  color: #16120c;
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 600;
}

.nav .cta:hover { background: #d9b488; color: #16120c; }

.menu-toggle { display: none; background: none; border: none; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 2px; background: var(--text); margin: 6px 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center 65%;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,10,10,0.87) 0%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.25) 100%);
}

.hero .wrap { position: relative; z-index: 2; padding-top: 80px; padding-bottom: 80px; }

.hero .kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}

.hero h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); max-width: 15ch; margin-bottom: 22px; }

.hero p.lead { font-size: 1.15rem; max-width: 52ch; color: #d8d2c9; margin-bottom: 34px; }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15.5px;
  letter-spacing: 0.02em;
}

.btn-solid { background: var(--accent); color: #16120c; }
.btn-solid:hover { background: #d9b488; color: #16120c; }

.btn-ghost { border: 1px solid rgba(255,255,255,0.45); color: #fff; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

/* ---------- Sections ---------- */
section { padding: 88px 0; }

.section-head { max-width: 640px; margin-bottom: 52px; }

.section-head .kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 12px;
}

.section-head h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 16px; }
.section-head p { color: var(--muted); }

.center { text-align: center; }
.center .section-head { margin-left: auto; margin-right: auto; }

/* ---------- Cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.card:hover { transform: translateY(-4px); border-color: var(--accent-dark); }

.card .card-img { height: 210px; background-size: cover; background-position: center; }

.card .card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }

.card h3 { font-size: 1.35rem; margin-bottom: 12px; }
.card p { color: var(--muted); font-size: 15.5px; flex: 1; }
.card .more { margin-top: 18px; font-weight: 600; font-size: 14.5px; text-transform: uppercase; letter-spacing: 0.06em; }

/* ---------- Feature list ---------- */
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px 40px; margin-top: 24px; }

.feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 20px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature .dot {
  flex: 0 0 10px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 9px;
}

.feature h4 { font-size: 1.02rem; font-family: 'Inter', sans-serif; font-weight: 600; margin-bottom: 4px; }
.feature p { color: var(--muted); font-size: 14.5px; line-height: 1.55; }

/* ---------- Split layout ---------- */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.split .img-frame { border-radius: 10px; overflow: hidden; border: 1px solid var(--line); }
.split h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); margin-bottom: 18px; }
.split p { color: var(--muted); margin-bottom: 16px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; text-align: center; }
.stat .num { font-family: 'Fraunces', serif; font-size: 2.6rem; color: var(--accent); font-weight: 600; }
.stat .lbl { color: var(--muted); font-size: 14px; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 6px; }

/* ---------- Accreditation strip ---------- */
.accreditation { background: var(--light); color: #2a2a2a; }
.accreditation h2 { color: #1b1b1b; }
.accreditation .section-head p { color: #5c574f; }

.accred-cards { display: flex; gap: 30px; justify-content: center; flex-wrap: wrap; }

.accred-card {
  background: #fff;
  border: 1px solid #e2ddd4;
  border-radius: 10px;
  padding: 34px 40px;
  max-width: 430px;
  flex: 1 1 340px;
  text-align: center;
  transition: box-shadow 0.25s ease;
}

.accred-card:hover { box-shadow: 0 10px 34px rgba(0,0,0,0.12); }

.accred-card img { margin: 0 auto 22px; }
.accred-card img.nzcb { height: 170px; width: auto; }
.accred-card img.lbp { height: 84px; width: auto; }

.accred-card h3 { color: #1b1b1b; font-size: 1.2rem; margin-bottom: 10px; }
.accred-card p { color: #5c574f; font-size: 14.5px; line-height: 1.6; margin-bottom: 16px; }
.accred-card a { color: var(--accent-dark); font-weight: 600; font-size: 14.5px; }
.accred-card a:hover { color: #8a6435; }

/* ---------- Contact ---------- */
.contact { background: var(--panel); border-top: 1px solid var(--line); }

.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.contact-items { display: flex; flex-direction: column; gap: 20px; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 26px;
}

.contact-item .ico {
  flex: 0 0 46px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(196,154,108,0.14);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  font-size: 20px;
}

.contact-item .lbl { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }
.contact-item .val { font-size: 1.15rem; font-weight: 600; color: #fff; }
.contact-item .val a { color: #fff; }
.contact-item .val a:hover { color: var(--accent); }

/* ---------- Footer ---------- */
footer { background: #0c0c0c; border-top: 1px solid var(--line); padding: 46px 0 30px; }

.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.foot img { height: 46px; width: auto; }

.foot nav { display: flex; gap: 22px; flex-wrap: wrap; }
.foot nav a { color: var(--muted); font-size: 14px; }
.foot nav a:hover { color: var(--accent); }

.foot-badges { display: flex; gap: 18px; align-items: center; }
.foot-badges img { height: 56px; width: auto; background: #f4f1ec; padding: 6px 10px; border-radius: 6px; }

.copyright { text-align: center; color: #6d675f; font-size: 13px; margin-top: 34px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  padding: 110px 0 70px;
  background-size: cover;
  background-position: center;
  background-color: var(--panel);
}

.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.82), rgba(10,10,10,0.62));
}

.page-hero .wrap { position: relative; z-index: 2; }
.page-hero .kicker { color: var(--accent); text-transform: uppercase; letter-spacing: 0.2em; font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.page-hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); max-width: 20ch; }
.page-hero p { color: #d8d2c9; max-width: 60ch; margin-top: 16px; font-size: 1.1rem; }

/* ---------- Prose ---------- */
.prose p { margin-bottom: 20px; color: #cfc9c0; }
.prose h2 { font-size: 1.9rem; margin: 40px 0 16px; }
.prose h3 { font-size: 1.35rem; margin: 32px 0 12px; }

.highlight-box {
  background: var(--card);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 26px 30px;
  margin: 30px 0;
}
.highlight-box p { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, #241c12, #171310);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); margin-bottom: 14px; }
.cta-band p { color: var(--muted); max-width: 54ch; margin: 0 auto 30px; }

/* ---------- Package specs ---------- */
.specs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 36px 0; }
.spec {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  text-align: center;
}
.spec .num { font-family: 'Fraunces', serif; font-size: 1.7rem; color: var(--accent); font-weight: 600; }
.spec .lbl { color: var(--muted); font-size: 13.5px; text-transform: uppercase; letter-spacing: 0.06em; margin-top: 4px; }

.price-tag {
  display: inline-block;
  background: rgba(196,154,108,0.13);
  border: 1px solid var(--accent-dark);
  color: var(--accent);
  border-radius: 4px;
  padding: 10px 22px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 14.5px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3, .grid-2, .feature-list, .contact-box, .specs { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 34px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .nav nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #101010;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 20px 24px;
    gap: 18px;
  }
  .nav nav.open { display: flex; }
  .menu-toggle { display: block; }
  .grid-3, .grid-2, .feature-list, .contact-box, .specs { grid-template-columns: 1fr; }
  section { padding: 60px 0; }
  .hero { min-height: 64vh; }
}
