: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);
    }

    @media (max-width: 700px) {
      .nav-container {
        flex-direction: column;
      }
      .nav-links {
        margin-top: 0.5rem;
      }
      .nav-links a {
        margin: 0 0.6rem;
      }
    }

    /* --- Hero Section --- */
    header {
      background-image: url("../assets/images/hero-placeholder.jpg");
      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 --- */
    @media (max-width: 768px) {
      header h1 {
        font-size: 2.2rem;
      }

      header p {
        font-size: 1rem;
      }
    }
  
   /* =====================
   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);
}
