:root {
      --primary-color: #342c22; /* Forest Green */
      --accent-color: #ded3bb; /* Terracotta */
      --bg-color: #ded3bb; /* Soft Sand */
      --text-color: #252424; /* Charcoal */
      --highlight-color: #b8cc91; /* Sage */
      --font-heading: 'Georgia', serif;
      --font-body: 'Arial', sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: var(--font-body);
      color: var(--text-color);
      background-color: var(--bg-color);
      line-height: 1.6;
    }

    a {
      text-decoration: none;
      color: var(--primary-color);
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: 8px;
    }

    /* --- Container --- */
    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 1rem 0 0.5rem;
      font-family: 'Georgia', serif;
      letter-spacing: 0.08em;
    ;
    }

    /* --- Top Navigation --- */
    .top-nav {
      background-color: #342c22; /* Charcoal */
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    .nav-container {
      max-width: 1200px;
      margin: auto;
      padding: 0.8rem 1.5rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-family: var(--font-heading);
      color: #ded3bb;
      font-size: 1.2rem;
    }

    .nav-links a {
      
      color: #ded3bb;
      margin-left: 2.5rem;
      font-size: 1.1rem;
      font-family: 'Georgia', serif;
      letter-spacing: 0.08em;
      text-transform: lowercase;
    }

    .nav-links a:hover {
      color: var(--accent-color);
    }

    /* --- Hero Section --- */
    header {
      background-image: url("../assets/images/hero-placeholder.webp");
      background-size: cover;
      background-position: center 75%;
      background-attachment: fixed;
      height: 90vh;
      position: relative;
      text-align: center 10%;
      color: #ded3bb;
    }

    /* Dark overlay for text readability */
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0);
      z-index: 1;
    }

    /* Hero text floating above overlay */
    .hero-text {
      position: absolute;
      top: 60%; /* Adjust vertical position */
      left: 50%;
      transform: translateX(-50%); /* Horizontal centering */
      z-index: 2;
      text-align: center;

      text-shadow: 
      0 2px 8px rgba(0,0,0,0.6),
      0 0 18px rgba(255,255,255,0.25);
    }

    .hero-text h1 {
      font-family: 'Georgia', serif;
      font-size: 3rem;
      margin-bottom: 1rem;
      letter-spacing: 0.06em;
    }

    .hero-text p {
      font-size: 1.3rem;
      margin-bottom: 1.5rem;
    }

    .hero-text .cta-button {
      background-color: var(--accent-color);
      color: #ded3bb;
      padding: 0.8rem 1.5rem;
      font-size: 1.1rem;
      border: none;
      border-radius: 25px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .hero-text .cta-button:hover {
      background-color: var(--primary-color);
    }

    /* --- Section Styles --- */
    section {
      padding: 4rem 0;
    }

    section h2 {
      font-family: var(--font-heading);
      font-size: 2rem;
      margin-bottom: 1rem;
      color: var(--primary-color);
    }

    section p {
      font-size: 1.1rem;
      margin-bottom: 1rem;
    }

    /* --- What We Do --- */
    .services-summary {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
      font-family: 'Georgia', serif;
      letter-spacing: 0.08em;
      text-transform: lowercase;
      color: #ded3bb;
    }

    .service-card {
      background-color: #2a3513;
      padding: 1.5rem;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.08);
      transition: transform 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
    }

    .service-card h3 {
      color: var(--accent-color);
      margin-bottom: 0.5rem;
    }

    /* --- Footer --- */
    footer {
      text-align: center;
      padding: 2rem 0;
      background-color: var(--primary-color);
      color: #ded3bb;
    }

    /* --- Responsive --- */
  
   /* =====================
   VIEW WORK CTA
 ===================== */

 .view-work-section {
  display: flex;
  justify-content: center;
  padding: 3rem 0 4rem;
  background-color: var(--bg-color);
 }

 .view-work-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.6rem;
  background-color: var(--primary-color);
  color: var(--accent-color);
  font-family: var(--font-heading);
  letter-spacing: 0.12em;
  text-transform: lowercase;
  border-radius: 30px;
  transition: background-color 0.3s ease;
 }

 .view-work-btn:hover {
  background-color: var(--secondary-color);
}
/* ============================================
   MOBILE STYLES
   ============================================ */

.nav-toggle {
  display: none;
}

@media (max-width: 768px) {

  .nav-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1.2rem;
  }

  .logo {
    font-size: 1rem;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #342c22;
    padding: 0.5rem 0 1rem;
    z-index: 999;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links a {
    margin: 0;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(222, 211, 187, 0.15);
    display: block;
  }

  .nav-links a:last-child {
    border-bottom: none;
  }

  .nav-links a:hover {
    background-color: rgba(222, 211, 187, 0.1);
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ded3bb;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  header {
    background-attachment: scroll;
    height: 85vh;
    min-height: 400px;
  }

  .hero-text {
    top: 35%;
    width: 88%;
  }

  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 0.6rem;
  }

  .hero-text p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }

  section {
    padding: 2.5rem 0;
  }

  .container {
    width: 92%;
  }

  section h2 {
    font-size: 1.5rem;
  }

  section p {
    font-size: 1rem;
  }

  .services-summary {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .service-card {
    padding: 1.2rem;
  }

  .view-work-btn {
    padding: 0.75rem 1.8rem;
    font-size: 0.95rem;
  }

  footer {
    padding: 1.5rem 1rem;
    font-size: 0.9rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {

  header {
    background-attachment: scroll;
  }

  .hero-text h1 {
    font-size: 2.6rem;
  }

  .services-summary {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links a {
    margin-left: 1.5rem;
  }
}
