:root {
  --primary: #0f2b3d;
  --primary-light: #1a4058;
  --accent: #c8963e;
  --accent-hover: #d9a84a;
  --accent-light: rgba(200, 150, 62, 0.12);
  --bg: #faf8f5;
  --bg-alt: #f3efe8;
  --bg-dark: #0a1a26;
  --text-dark: #1a1a1a;
  --text-body: #3d3d3d;
  --text-light: #faf8f5;
  --text-muted: #7a7a7a;
  --border: #d9d0c4;
  --border-light: #e8e2d8;
  --shadow-sm: 0 2px 8px rgba(15, 43, 61, 0.06);
  --shadow-md: 0 8px 32px rgba(15, 43, 61, 0.1);
  --shadow-lg: 0 16px 48px rgba(15, 43, 61, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: Georgia, 'Times New Roman', Times, serif;
  --font-heading: 'Trebuchet MS', 'Segoe UI', Candara, system-ui, sans-serif;
  --max-width: 1160px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg);
  line-height: 1.7;
  font-size: 1.0625rem;
}

::selection {
  background: var(--accent);
  color: #fff;
}

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

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

a:hover {
  color: var(--accent);
}

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

ul { list-style: none; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── Buttons ─── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 150, 62, 0.3);
}

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

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

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

.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ─── Navbar ─── */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(15, 43, 61, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 150, 62, 0.2);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar .logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

.navbar .logo span {
  color: var(--accent);
}

.navbar .logo:hover {
  color: var(--text-light);
}

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

.nav-links a {
  padding: 8px 18px;
  border-radius: var(--radius);
  color: rgba(250, 248, 245, 0.8);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 500;
  transition: all var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-light);
  background: rgba(200, 150, 62, 0.15);
}

.nav-links .btn-cta {
  background: var(--accent);
  color: #fff;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  margin-left: 8px;
}

.nav-links .btn-cta:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

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

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: var(--transition);
}

/* ─── Hero ─── */

.hero {
  padding: 160px 0 100px;
  background: linear-gradient(160deg, var(--bg-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -20%;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3.25rem;
  font-weight: 800;
  color: var(--text-light);
  line-height: 1.15;
  max-width: 800px;
  margin: 0 auto 20px;
  letter-spacing: -0.02em;
}

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

.hero p {
  font-size: 1.2rem;
  color: rgba(250, 248, 245, 0.75);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

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

/* ─── Page Hero (inner pages) ─── */

.page-hero {
  padding: 140px 0 60px;
  background: linear-gradient(160deg, var(--bg-dark), var(--primary));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 150, 62, 0.06) 0%, transparent 70%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.page-hero p {
  color: rgba(250, 248, 245, 0.7);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
}

/* ─── Sections ─── */

.section {
  padding: 90px 0;
}

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

.section-dark {
  background: var(--bg-dark);
  color: var(--text-light);
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.section-dark .section-header h2 {
  color: var(--text-light);
}

.section-header p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-dark .section-header p {
  color: rgba(250, 248, 245, 0.6);
}

.section-header .accent-line {
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ─── Value Props ─── */

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.value-card {
  text-align: center;
  padding: 40px 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.value-card .icon {
  font-size: 2.8rem;
  margin-bottom: 20px;
  display: block;
}

.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

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

/* ─── Services Grid ─── */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.service-card .icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

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

.service-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
}

.service-card .learn-more:hover {
  gap: 10px;
}

/* ─── About Strip (home) ─── */

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

.about-strip .content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
}

.about-strip .content p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-strip .visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-strip .visual .stat {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border-light);
}

.about-strip .visual .stat .num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.about-strip .visual .stat .label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ─── Credentials Strip ─── */

.credentials {
  background: var(--primary);
  padding: 50px 0;
}

.credentials .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.credentials .item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(250, 248, 245, 0.85);
  font-family: var(--font-heading);
  font-size: 0.9rem;
}

.credentials .item .badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(200, 150, 62, 0.2);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.credentials .item strong {
  color: var(--text-light);
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

/* ─── CTA Strip ─── */

.cta-strip {
  background: linear-gradient(160deg, var(--accent), #b8862e);
  padding: 70px 0;
  text-align: center;
}

.cta-strip h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.cta-strip p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  font-size: 1.05rem;
}

.cta-strip .btn {
  border-color: #fff;
  color: #fff;
}

.cta-strip .btn:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

/* ─── About Page ─── */

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin: 40px 0 16px;
}

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

.about-content p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0;
}

.values-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

.values-list li span {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ─── Services Page ─── */

.services-intro {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
  line-height: 1.7;
}

/* ─── Contact Page ─── */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 24px;
  line-height: 1.7;
}

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

.contact-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

.contact-details li .icon {
  font-size: 1.3rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  border-radius: 50%;
  flex-shrink: 0;
}

.contact-details li .info {
  font-size: 0.95rem;
}

.contact-details li .info strong {
  display: block;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2px;
}

.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border-light);
}

.contact-form-wrap h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--bg);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

/* ─── Legal Pages ─── */

.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content .last-updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-light);
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin: 40px 0 14px;
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin: 28px 0 10px;
}

.legal-content p {
  margin-bottom: 14px;
  line-height: 1.7;
}

.legal-content ul {
  margin: 12px 0 20px;
  padding-left: 24px;
  list-style: disc;
}

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

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ─── Footer ─── */

.footer {
  background: var(--bg-dark);
  color: rgba(250, 248, 245, 0.7);
  padding: 64px 0 0;
}

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

.footer-col h3 {
  font-family: var(--font-heading);
  color: var(--text-light);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.footer-col .logo {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  display: inline-block;
  margin-bottom: 14px;
}

.footer-col .logo span {
  color: var(--accent);
}

.footer-col p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 14px;
}

.footer-col .abn-line {
  font-size: 0.8rem;
  color: rgba(250, 248, 245, 0.5);
}

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

.footer-col ul li a {
  color: rgba(250, 248, 245, 0.65);
  font-size: 0.9rem;
  transition: all var(--transition);
}

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

.footer-col .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.footer-col .contact-item .icon {
  font-size: 1rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-col .contact-item a {
  color: rgba(250, 248, 245, 0.65);
}

.footer-col .contact-item a:hover {
  color: var(--accent);
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(250, 248, 245, 0.4);
}

.footer-bottom a {
  color: rgba(250, 248, 245, 0.5);
}

.footer-bottom a:hover {
  color: var(--accent);
}

/* ─── Mobile ─── */

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(15, 43, 61, 0.98);
    flex-direction: column;
    padding: 16px 24px 24px;
    border-bottom: 1px solid rgba(200, 150, 62, 0.2);
  }

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

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .nav-links .btn-cta {
    margin-left: 0;
    text-align: center;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 120px 0 70px;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .page-hero h1 {
    font-size: 1.8rem;
  }

  .section {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 1.6rem;
  }

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

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

  .about-strip .visual {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact-form-wrap {
    padding: 24px;
  }

  .values-list {
    grid-template-columns: 1fr;
  }

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

  .credentials .container {
    gap: 20px;
  }

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