    :root {
      --bg: #f1f1f1;
      --text: #111111;
      --text-p: #7e7e7e;
      --muted: #666666;
      --border: #eeeeee;
      --accent: #c65600; /* blue */
      --accent-hover: #c65600;
      /* --section-bg: hsl(0, 0%, 98%); */
      --section-bg: #f1f1f1;
    }

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

    html, body {
      background: var(--bg);
      color: var(--text);
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    a {
      /* color: var(--accent); */
      text-decoration: none;
    }

    h2 {
      font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
    }


    h3{
font-family: "Mallanna", sans-serif;
  font-weight: 400;
  font-style: normal;
    }

    .mallanna-regular {
  font-family: "Mallanna", sans-serif;
  font-weight: 400;
  font-style: normal;
}

p {
  font-family: "Cantarell", sans-serif;
  font-weight: 400;
  font-style: normal;
}

    /* a:hover {
      text-decoration: underline;
    } */

    .container {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 20px;
    }

    /* Header */
    header {
      position: sticky;
      top: 0;
      z-index: 50;
      /* background: rgba(255,255,255,0.9); */
      /* backdrop-filter: saturate(180%) blur(8px); */
      /* border-bottom: 1px solid var(--border); */
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 64px;
    }

    .logo {
      font-weight: 700;
      font-size: 1.1rem;
      letter-spacing: -0.02em;
      color: var(--text);
    }

    .logo span {
      /* color: var(--muted); */
      font-weight: 400;
    }

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

    .nav-links a {
      color: var(--text);
      font-size: 0.95rem;
    }

    .nav-links a.cta {
      background: var(--text);
      color: #fff;
      padding: 8px 14px;
      border-radius: 6px;
      text-decoration: none;
    }

    .nav-links a.cta:hover {
      background: #000;
      text-decoration: none;
    }

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

    .hamburger span {
      width: 20px;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
    }

    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid var(--border);
        flex-direction: column;
        align-items: stretch;
        padding: 16px 20px 24px;
        gap: 14px;
        display: none;
      }

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

      .hamburger {
        display: flex;
      }
    }

    /* Hero */
    .hero {
      color: white;
      padding: 80px 0 60px;
    }

    .hero h1 {
      font-size: clamp(1.8rem, 4vw, 2.6rem);
      line-height: 1.1;
      letter-spacing: -0.02em;
      margin-bottom: 16px;
    }

    .hero p {
      color: var(--muted);
      font-size: 1.05rem;
      max-width: 680px;
      margin-bottom: 28px;
    }

    .hero .actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-block;
      padding: 10px 18px;
      border-radius: 8px;
      font-size: 0.95rem;
      text-decoration: none;
      border: 1px solid transparent;
      cursor: pointer;
    }

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

    .btn-primary:hover {
      background: var(--accent-hover);
      text-decoration: none;
    }

    .btn-secondary {
      background: #fff;
      color: var(--text);
      border-color: var(--border);
    }

    .btn-secondary:hover {
      background: var(--section-bg);
      text-decoration: none;
    }

    /* Sections */
    section {
      padding: 60px 0;
    }

    section + section {
      border-top: 1px solid var(--border);
    }

    .section-title {
      font-size: 1.5rem;
      margin-bottom: 12px;
      /* letter-spacing: -0.01em; */
    }

    .section-subtitle {
      color: var(--muted);
      margin-bottom: 28px;
      max-width: 700px;
    }

    /* Services grid */
    .grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      gap: 20px;
    }

    .card {
      grid-column: span 12;
      background: var(--section-bg);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 20px;
    }

    @media (min-width: 700px) {
      .card {
        grid-column: span 6;
      }
    }

    @media (min-width: 980px) {
      .card {
        grid-column: span 4;
      }
    }

    .card h3 {
      font-size: 1.05rem;
      margin-bottom: 8px;
    }

    .card p {
      color: var(--muted);
      /* font-size: 0.95rem; */
      font-size: 1.12rem;
    }

    /* About / Mission */
    .about {
      background: var(--section-bg);
    }

    .about .content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 24px;
    }

    @media (min-width: 800px) {
      .about .content {
        /* grid-template-columns: 1.2fr 1fr; */
        grid-template-columns: 1fr 1fr;
        align-items: center;
      }
    }

    .about p {
      font-size: 1.2rem;
      color: var(--text-p);
      margin-bottom: 12px;
      font-weight: 500;
    }

    .highlight-box {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 20px;
    }

    .highlight-box h4 {
      margin-bottom: 8px;
    }

    .highlight-box p {
      margin: 0;
      font-size: 0.95rem;
    }

    /* Contact */
    .contact-form {
      display: grid;
      gap: 14px;
      max-width: 520px;
    }

    .field {
      display: grid;
      gap: 6px;
    }

    label {
      font-size: 0.9rem;
      color: var(--muted);
    }

    input, textarea {
      width: 100%;
      padding: 10px 12px;
      border-radius: 8px;
      border: 1px solid var(--border);
      background: #fff;
      color: var(--text);
      font: inherit;
    }

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

    input:focus, textarea:focus {
      outline: 2px solid var(--accent);
      outline-offset: 1px;
      border-color: var(--accent);
    }

    footer {
      padding: 40px 0;
      border-top: 1px solid var(--border);
      color: var(--muted);
      font-size: 0.9rem;
    }

    .footer-row {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    @media (min-width: 600px) {
      .footer-row {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
      }
    }


@view-transition {
  navigation: auto;
}

/* Leaving page animation: shrinks slightly and fades completely */
@keyframes easeOutLeaving {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.95);
  }
}

/* Visiting page animation: starts lower, invisible, then slides up and fades in */
@keyframes easeInVisiting {
  from {
    opacity: 0;
    transform: translateY(0px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Apply to the leaving page */
::view-transition-old(root) {
  animation: easeOutLeaving 0.3s ease-out forwards;
}

/* Apply to the visiting page */
::view-transition-new(root) {
  animation: easeInVisiting 0.4s ease-in forwards;
}

