:root {
    --bg-dark:     #0f1115;
    --bg-darker:   #0b0d12;
    --bg-card:     #161a22;
    --bg-mid:      #111318;
    --text-light:  #e5e7eb;
    --text-muted:  #9ca3af;
    --text-subtle: #cbd5e1;
    --accent:      #9f6b3f;     /* wood/bronze tone */
    --accent-dark: #8b5f38;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: var(--bg-dark);
    color: var(--text-light);
    font-family: "Helvetica Neue", Arial, sans-serif;
    line-height: 1.5;
  }
  
  /* ── Navigation ── */
  .nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 2rem;
    background: transparent;
  }
  
  .brand {
    display: flex;
    flex-direction: column;
  }
  
  .logo-text {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 1.2px;
  }
  
  .division {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
  }
  
  /* ── Hero ── */
  .hero {
    background: linear-gradient(135deg, var(--bg-dark), #1a1d24);
    padding: 2rem 1.5rem 8rem;
  }
  
  .hero-content {
    max-width: 900px;
    margin: 5rem auto 0;
    text-align: center;
    padding: 0 1.25rem;
  }
  
  .hero-logo {
    display: block;
    margin: 0 auto 1.8rem;
    max-width: 360px;           /* ← more balanced */
    width: 100%;
    height: auto;
  }
  
  .hero-content h1 {
    font-size: clamp(2.8rem, 7vw, 3.8rem);
    line-height: 1.08;
    margin-bottom: 1.4rem;
  }
  
  .hero-content p {
    font-size: 1.25rem;
    max-width: 620px;
    margin: 0 auto;
    color: var(--text-subtle);
  }
  
  /* ── Buttons ── */
  .btn {
    display: inline-block;
    padding: 0.75rem 1.6rem;
    background: #e5e7eb;
    color: var(--bg-dark);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.18s ease;
  }
  
  .btn:hover {
    opacity: 0.92;
    transform: translateY(-1px);
  }
  
  .btn.primary {
    background: var(--accent);
    color: white;
  }
  
  .btn.primary:hover {
    background: var(--accent-dark);
  }
  
  /* ── Services ── */
  .services {
    padding: 6rem 1.5rem;
    background: var(--bg-mid);
  }
  
  .services h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3.5rem;
  }
  
  .grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    gap: 2.5rem;
  }
  
  @media (min-width: 640px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
  }
  
  @media (min-width: 900px) {
    .grid { grid-template-columns: repeat(3, 1fr); }
  }
  
  .service {
    background: var(--bg-card);
    padding: 1.8rem 1.6rem;
    border-left: 4px solid var(--accent);
  }
  
  .service h3 {
    margin-bottom: 0.9rem;
    font-size: 1.32rem;
  }
  
  /* ── About ── */
  .about {
    padding: 7rem 1.5rem;
    background: linear-gradient(135deg, #1a1d24, var(--bg-dark));
  }
  
  .about-content {
    max-width: 800px;
    margin: 0 auto;
  }
  
  .about h2 {
    font-size: 2.8rem;
    margin-bottom: 1.4rem;
  }
  
  .about p {
    font-size: 1.15rem;
    color: var(--text-subtle);
    margin-bottom: 1.1rem;
  }
  
  /* ── CTA ── */
  .cta {
    padding: 6rem 1.5rem;
    text-align: center;
    background: var(--accent);
    color: white;
  }
  
  .cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .cta .btn {
    margin-top: 2.2rem;
    background: white;
    color: var(--accent);
  }
  
  .cta .btn:hover {
    background: #f0f0f0;
  }
  
  /* ── Footer ── */
  .footer {
    background: var(--bg-darker);
    padding: 1.4rem;
    text-align: center;
    color: #6b7280;
    font-size: 0.92rem;
  }
  
  /* Reset-like helper */
  section {
    /* Remove conflicting section + section rule */
  }

  /* Shorter hero variant for contact page */
.hero--short {
    padding-bottom: 5rem;        /* or whatever feels balanced */
  }
  
  /* Contact section styling */
  .contact-section {
    padding: 5rem 1.5rem;
    background: var(--bg-mid);
    text-align: center;
  }
  
  .contact-info {
    margin: 2.5rem auto;
    max-width: 500px;
  }
  
  .contact-item {
    font-size: 1.35rem;
    margin: 1.2rem 0;
    color: var(--text-subtle);
  }
  
  .email-link {
    color: var(--accent);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
  }
  
  .email-link:hover,
  .email-link:focus {
    color: #c68a5a;              /* lighter hover variant */
    text-decoration: underline;
  }
  
  /* Optional form styling (if you add one) */
  .contact-form {
    max-width: 600px;
    margin: 3rem auto 0;
    text-align: left;
  }
  
  .contact-form label {
    display: block;
    margin: 1.2rem 0 0.5rem;
    font-weight: 500;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 0.9rem;
    background: var(--bg-card);
    border: 1px solid #2d3748;
    border-radius: 6px;
    color: var(--text-light);
    font-size: 1rem;
  }
  
  .contact-form button {
    margin-top: 1.8rem;
  }