:root {
  --primary: #1a1a2e;
  --accent: #c9a84c;
  --accent-light: #e8d5a3;
  --accent-hover: #b8942f;
  --bg: #faf8f5;
  --bg-alt: #f0ece4;
  --bg-dark: #0f0f1a;
  --text-dark: #1a1a2e;
  --text-light: #6b6b7b;
  --text-on-dark: #e8e4de;
  --border: #e0dcd4;
  --white: #ffffff;
  --shadow: 0 2px 12px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 8px 30px rgba(26, 26, 46, 0.12);
  --radius: 8px;
  --transition: 0.3s ease;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* nav */
.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--accent); }
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:hover,
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}
.nav-cta {
  background: var(--accent);
  color: var(--primary) !important;
  padding: 8px 20px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.85rem;
  transition: background var(--transition);
}
.nav-cta:hover { background: var(--accent-hover); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  margin: 5px 0;
  border-radius: 1px;
  transition: var(--transition);
}

/* page hero */
.page-hero {
  background: var(--primary);
  color: var(--white);
  padding: 64px 0;
  text-align: center;
}
.page-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.page-hero p {
  font-size: 1.1rem;
  color: var(--accent-light);
  max-width: 600px;
  margin: 0 auto;
}

/* sections */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--text-light);
  max-width: 600px;
  margin-bottom: 48px;
  font-size: 1.05rem;
}
.section-dark .section-sub { color: rgba(232, 228, 222, 0.7); }
.center { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }

/* hero */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #2a2a4a 100%);
  color: var(--white);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.hero-content { max-width: 640px; position: relative; z-index: 1; }
.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero p {
  font-size: 1.15rem;
  color: var(--accent-light);
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--primary);
}
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--primary); }

/* credentials */
.credentials {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  text-align: center;
}
.credentials-grid {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.cred-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}
.cred-item strong { color: var(--text-dark); font-weight: 600; }

/* value props */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.value-icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.value-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-icon {
  font-size: 2.8rem;
  margin-bottom: 16px;
  display: block;
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.service-card p {
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* about strip */
.about-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.about-strip-content {
  display: flex;
  align-items: center;
  gap: 40px;
}
.about-strip-icon { font-size: 3rem; flex-shrink: 0; }
.about-strip-text h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.about-strip-text p {
  font-size: 0.92rem;
  color: var(--text-light);
}

/* CTA strip */
.cta-strip {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 64px 0;
}
.cta-strip h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.cta-strip p {
  color: var(--accent-light);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

/* footer */
.footer {
  background: var(--bg-dark);
  color: var(--text-on-dark);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-col h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--white);
}
.footer-col p,
.footer-col li {
  font-size: 0.88rem;
  color: rgba(232, 228, 222, 0.65);
  line-height: 1.8;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col ul li a:hover { color: var(--accent); }
.footer-brand { font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.footer-brand span { color: var(--accent); }
.footer-abn {
  font-size: 0.82rem;
  color: rgba(232, 228, 222, 0.5);
  margin-top: 8px;
  line-height: 1.6;
}
.footer-bottom {
  border-top: 1px solid rgba(232, 228, 222, 0.1);
  margin-top: 48px;
  padding: 24px 0;
  text-align: center;
  font-size: 0.84rem;
  color: rgba(232, 228, 222, 0.5);
}

/* inner page content */
.content-section { padding: 64px 0; }
.content-section h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 12px;
}
.content-section h2:first-child { margin-top: 0; }
.content-section p {
  margin-bottom: 16px;
  color: var(--text-light);
  line-height: 1.7;
}
.content-section ul {
  margin: 0 0 20px 24px;
  color: var(--text-light);
  line-height: 1.8;
}
.content-section ul li { margin-bottom: 6px; }

.contact-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  margin-top: 32px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
}
.contact-card .value-icon { font-size: 2rem; }
.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-card p { font-size: 0.9rem; color: var(--text-light); }

/* mobile */
@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-links a.active::after { display: none; }
  .nav-cta { width: 100%; text-align: center; }

  .hero { padding: 64px 0 56px; }
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }

  .page-hero { padding: 48px 0; }
  .page-hero h1 { font-size: 1.8rem; }

  .section { padding: 56px 0; }
  .section-title { font-size: 1.6rem; }

  .credentials-grid { gap: 24px; flex-direction: column; align-items: center; }
  .about-strip-content { flex-direction: column; text-align: center; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-strip h2 { font-size: 1.5rem; }
}
