:root {
  --primary: #B85C4A;
  --primary-dark: #9A4838;
  --primary-light: #D47A68;
  --accent: #E8A87C;
  --accent-light: #F5D4B8;
  --bg: #FFFBF5;
  --bg-alt: #FDF2EA;
  --text-dark: #2D1B14;
  --text-muted: #7A645C;
  --text-light: #FFFFFF;
  --border: #E8D5CC;
  --shadow: rgba(45, 27, 20, 0.08);
  --radius: 12px;
  --max-width: 1140px;
  --font-sans: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }

ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* ─── Navbar ─── */
.navbar {
  background: var(--text-light);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  height: 64px;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: -0.5px;
}

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

.nav-links a:not(.btn) {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:not(.btn):hover,
.nav-links a.active {
  color: var(--primary-dark);
}

.nav-links a.active {
  position: relative;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  border-radius: 1px;
}

.nav-cta {
  padding: 8px 20px;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
  padding: 4px;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  font-family: inherit;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-light);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--text-light);
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

/* ─── Hero ─── */
.hero {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 60%);
  padding: 100px 0 80px;
  text-align: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Sections ─── */
.section {
  padding: 72px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text-dark);
}

.section-desc {
  text-align: center;
  max-width: 700px;
  margin: -32px auto 48px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ─── Values Grid ─── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  background: var(--text-light);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
}

.value-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 16px;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ─── Services Grid ─── */
.services-grid, .services-grid-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--text-light);
  padding: 32px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px var(--shadow);
}

.service-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ─── About Strip ─── */
.about-strip {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-strip-text h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.about-strip-text p {
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.7;
}

.about-strip-visual {
  flex-shrink: 0;
  font-size: 6rem;
  text-align: center;
  line-height: 1;
}

.about-emoji {
  font-size: 5rem;
  display: inline-block;
}

/* ─── Credentials Strip ─── */
.credentials {
  background: var(--primary-dark);
  padding: 48px 0;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.credential-item {
  color: var(--text-light);
}

.credential-label {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0.75;
  margin-bottom: 6px;
}

.credential-value {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
}

/* ─── CTA Band ─── */
.section-cta-band {
  text-align: center;
  background: linear-gradient(135deg, var(--bg-alt), var(--accent-light));
}

.cta-band-content h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.cta-band-content p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 28px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Page Hero ─── */
.page-hero {
  background: var(--bg-alt);
  padding: 60px 0 48px;
  text-align: center;
}

.page-hero-content h1 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.page-hero-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ─── Inner page layouts ─── */
.about-intro {
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-intro-text h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}

.about-intro-text p {
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.about-intro-visual {
  flex-shrink: 0;
  font-size: 5rem;
  text-align: center;
}

.credentials-list {
  max-width: 600px;
  margin: 0 auto;
}

.cred-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.cred-label {
  font-weight: 600;
  color: var(--text-dark);
}

.cred-data {
  color: var(--text-muted);
}

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

.contact-info h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--text-muted);
  margin-bottom: 28px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}

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

.contact-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-item a {
  color: var(--text-muted);
}

.contact-abn {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.contact-form-wrap h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--text-light);
  color: var(--text-dark);
  margin-bottom: 18px;
  transition: border-color 0.2s;
}

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

.contact-form button {
  width: 100%;
}

/* ─── Legal Content ─── */
.legal-content h2 {
  font-size: 1.3rem;
  margin: 32px 0 12px;
  color: var(--text-dark);
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--text-muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.legal-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 14px;
  color: var(--text-muted);
}

.legal-content ul li {
  margin-bottom: 6px;
  line-height: 1.6;
}

/* ─── Footer ─── */
.footer {
  background: var(--text-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-col p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-abn {
  font-size: 0.8rem;
  opacity: 0.6;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding: 20px 24px;
  text-align: center;
  font-size: 0.85rem;
  opacity: 0.6;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--text-light);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    border-bottom: 2px solid var(--border);
    box-shadow: 0 12px 24px var(--shadow);
  }

  .open .nav-links {
    display: flex;
  }

  .nav-links a.active::after {
    display: none;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

  .hero { padding: 60px 0 48px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }

  .values-grid { grid-template-columns: 1fr; }
  .services-grid,
  .services-grid-full { grid-template-columns: 1fr; }

  .about-strip { flex-direction: column; text-align: center; gap: 32px; }
  .about-strip-visual { font-size: 4rem; }

  .about-intro { flex-direction: column; text-align: center; gap: 32px; }
  .about-intro-visual { font-size: 4rem; }

  .credentials-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .section { padding: 48px 0; }
  .section-title { font-size: 1.5rem; margin-bottom: 32px; }

  .cred-row { flex-direction: column; gap: 4px; }

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

  .section-cta-band h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr 1fr; }
}
