/* ============================================================
   BONNIBEL — styles.css
   Mobile-first. All styles in one file. CSS variables for colours.
   ============================================================ */

:root {
  --gold: #C9A84C;
  --gold-light: #D4AF37;
  --bg: #0a0a0a;
  --section-bg: #111111;
  --charcoal: #1a1a1a;
  --white: #ffffff;
  --body-text: #cccccc;
  --subtle-text: #888888;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--body-text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Poppins', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.rule {
  width: 64px;
  height: 2px;
  background: var(--gold);
  border: none;
  margin: 16px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
  cursor: pointer;
  border: 1px solid var(--gold);
}

.btn-solid {
  background: var(--gold);
  color: #0a0a0a;
}
.btn-solid:hover {
  background: var(--gold-light);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: #0a0a0a;
}

/* ---------------- NAV ---------------- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  flex-shrink: 0;
  display: block;
}

.nav-logo {
  height: auto;
  max-height: 50px;
  width: auto;
}

.nav-links {
  display: none;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  padding-bottom: 6px;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-bottom: 1px solid rgba(201, 168, 76, 0.25);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  padding: 16px 24px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  border-top: 1px solid rgba(201, 168, 76, 0.12);
}

.mobile-menu a.active,
.mobile-menu a:hover {
  color: var(--gold);
}

@media (min-width: 860px) {
  .nav-links { display: flex; }
  .hamburger { display: none; }
  .mobile-menu { display: none !important; }
}

/* ---------------- HERO ---------------- */

.hero {
  position: relative;
  padding: 160px 0 96px;
  background:
    radial-gradient(ellipse 900px 600px at 88% 30%, rgba(201, 168, 76, 0.16), transparent 60%),
    linear-gradient(115deg, #050608 0%, #0a0e14 45%, #0d1520 75%, #14202e 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.10) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.hero-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scaleX(-1);
}

.hero-image-fade {
  position: absolute;
  inset: 0;
  background: rgba(5, 6, 8, 0.72);
}

@media (min-width: 900px) {
  .hero-image-wrap { left: 50%; }
  .hero-image-fade {
    background: linear-gradient(
      to right,
      var(--bg) 0%,
      rgba(5, 6, 8, 0.75) 15%,
      rgba(5, 6, 8, 0.3) 40%,
      transparent 65%
    );
  }
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 640px;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.12;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.5px;
}

.hero h1 .gold { color: var(--gold); }

.hero p {
  margin-top: 24px;
  font-size: 16px;
  color: var(--body-text);
  max-width: 500px;
}

.hero .btn { margin-top: 32px; }

@media (min-width: 640px) {
  .hero h1 { font-size: 54px; }
}

@media (min-width: 1024px) {
  .hero { padding: 200px 0 140px; }
  .hero h1 { font-size: 64px; }
}

/* ---------------- PILLARS ---------------- */

.pillars {
  background: var(--charcoal);
  padding: 80px 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
}

.pillar {
  text-align: center;
  padding: 0 12px;
  position: relative;
}

.pillar-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 24px;
  color: var(--gold);
}

.pillar-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pillar h3 {
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pillar p {
  color: var(--subtle-text);
  font-size: 14px;
  max-width: 260px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .pillars-grid { grid-template-columns: repeat(4, 1fr); }
  .pillar:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -28px;
    top: 10%;
    bottom: 10%;
    width: 1px;
    background: rgba(201, 168, 76, 0.18);
  }
}

/* ---------------- ABOUT ---------------- */

.about {
  background: var(--section-bg);
  padding: 88px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.about-text h2 {
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}

.about-text p {
  margin-top: 20px;
  color: var(--body-text);
  max-width: 480px;
}

.about-text .btn { margin-top: 28px; }

.globe-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
}

.globe-wrap::before {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.22), transparent 70%);
  filter: blur(12px);
  z-index: 0;
}

.globe-canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  aspect-ratio: 1 / 1;
}

@media (max-width: 480px) {
  .globe-canvas { max-width: 260px; }
  .globe-wrap::before { width: 220px; height: 220px; }
}

@media (min-width: 900px) {
  .about-inner { grid-template-columns: 55% 45%; }
}

/* ---------------- FOOTER ---------------- */

.site-footer {
  background: var(--bg);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.3;
}

.footer-col h4 .gold { color: var(--gold); }

.footer-col p {
  margin-top: 16px;
  color: var(--subtle-text);
  font-size: 14px;
  max-width: 320px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.footer-logo {
  height: auto;
  max-height: 120px;
  width: auto;
}

.footer-contact-label {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-contact-list {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--body-text);
}

.footer-contact-list .icon {
  color: var(--gold);
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 168, 76, 0.25);
  padding: 24px 0;
}

.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  text-align: center;
  font-size: 12px;
  color: var(--subtle-text);
  letter-spacing: 0.5px;
}

.footer-bottom a {
  color: var(--subtle-text);
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }

@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { align-items: center; }
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* ---------------- PLACEHOLDER PAGES ---------------- */

.placeholder-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 24px 96px;
  text-align: center;
}

.placeholder-page .rule { margin: 24px auto; }

.placeholder-page h1 {
  font-size: 28px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 1px;
}

.placeholder-page p {
  margin-top: 16px;
  color: var(--subtle-text);
}

.placeholder-page .btn { margin-top: 32px; }

/* ---------------- LEGAL / PRIVACY PAGE ---------------- */

.legal-page {
  padding: 160px 0 96px;
}

.legal-page h1 {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
}

.legal-page .rule { margin: 24px 0 40px; }

.legal-page h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal-page p {
  color: var(--body-text);
  max-width: 720px;
  margin-bottom: 12px;
}

.legal-page .updated {
  margin-top: 40px;
  color: var(--subtle-text);
  font-size: 13px;
}

/* ---------------- CONTENT PAGES (About / Focus / Approach / Contact) ---------------- */

.page-hero {
  padding: 160px 0 64px;
  background: var(--bg);
  text-align: center;
}

.page-hero .wrap { max-width: 760px; }

.page-hero .eyebrow,
.page-hero .rule { margin-left: auto; margin-right: auto; }

.page-hero h1 {
  font-size: 32px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}

.page-hero p {
  margin-top: 20px;
  color: var(--body-text);
  font-size: 16px;
}

@media (min-width: 640px) {
  .page-hero h1 { font-size: 44px; }
}

.content-section { padding: 72px 0; }
.content-section.bg-charcoal { background: var(--charcoal); }
.content-section.bg-panel { background: var(--section-bg); }

.content-section h2 {
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.25;
  max-width: 640px;
}

.content-section p {
  margin-top: 18px;
  color: var(--body-text);
  max-width: 680px;
}

.content-section p + p { margin-top: 14px; }

.content-section .pillars-grid { margin-top: 48px; }

.step-number {
  font-size: 36px;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.85;
  margin-bottom: 16px;
  font-variant-numeric: tabular-nums;
}

/* Portfolio / venture card */
.venture-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  background: var(--charcoal);
  padding: 32px;
  margin-top: 32px;
  max-width: 640px;
}

.venture-card .venture-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.venture-card .venture-name {
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.venture-card p {
  color: var(--body-text);
  font-size: 15px;
  margin: 0;
  max-width: none;
}

/* Entity details strip (location / ABN) shown as real page content */
.info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.info-strip .info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--subtle-text);
  font-size: 14px;
}

.info-strip .info-item strong {
  color: var(--white);
  font-weight: 600;
}

.info-strip .icon {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex-shrink: 0;
}

/* Contact page layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1fr 1fr; }
}

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

.form-field { display: flex; flex-direction: column; gap: 8px; }

.form-field label {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.form-field input,
.form-field textarea {
  background: var(--charcoal);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--white);
  padding: 14px 16px;
  font-size: 15px;
  font-family: inherit;
  border-radius: 2px;
  transition: border-color var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-field textarea { resize: vertical; min-height: 140px; }

button.contact-form-submit {
  font-family: inherit;
  align-self: flex-start;
  margin-top: 4px;
}

.contact-details { display: flex; flex-direction: column; gap: 28px; }

.contact-details .detail-item { display: flex; gap: 14px; align-items: flex-start; }

.contact-details .detail-item .icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-details .detail-item h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.contact-details .detail-item p {
  color: var(--body-text);
  font-size: 15px;
  margin: 0;
  max-width: none;
}

/* ---------------- PORTFOLIO GRID (3-across venture cards) ---------------- */

.portfolio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  margin-top: 48px;
}

@media (min-width: 900px) {
  .portfolio-grid { grid-template-columns: repeat(3, 1fr); }
}

.portfolio-grid .venture-card {
  max-width: none;
  margin-top: 0;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid currentColor;
}

.status-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}

.status-badge.status-live { color: #3ecf6e; }
.status-badge.status-dev { color: var(--gold); }

/* ---------------- SECTION STEP HEADER (Identify / Build / Scale) ---------------- */

.section-step {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 4px;
}

.section-step .step-number { margin-bottom: 0; }
