:root{
      /* Brand colors (from your logo) */
      --orange: #e68b24;
      --olive: #7e823e;

      /* Supporting palette */
      --navy: #003A66;   /* optional anchor color from earlier */
      --bg: #F6F8FB;
      --card: #FFFFFF;
      --text: #0F172A;
      --muted: #475569;
      --border: rgba(15, 23, 42, 0.10);
      --shadow: 0 12px 30px rgba(2, 16, 32, 0.10);
      --radius: 18px;
      --max: 1120px;
    }

    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; }
    body{
      margin:0;
      font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
      color: var(--text);
      background:
        radial-gradient(900px 520px at 10% -10%, rgba(230,139,36,0.18), transparent 60%),
        radial-gradient(850px 520px at 105% 0%, rgba(126,130,62,0.18), transparent 55%),
        var(--bg);
      line-height:1.55;
    }

    a{ color:inherit; text-decoration:none; }
    .container{ max-width: var(--max); margin:0 auto; padding: 0 18px; }

    /* Header */
    header{
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(10px);
      background: rgba(246,248,251,0.78);
      border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    }
    .nav{
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding: 14px 18px;
      gap: 14px;
      position: relative;

      max-width: var(--max);
      margin: 0 auto;

    }

    .nav-actions{
      display:flex;
      gap:10px;
      align-items:center;
    }

    .menu-btn{
      padding: 12px 14px; /* same as you had inline */
    }


    .brand{
      display:flex;
      align-items:center;
      gap: 12px;
      min-width: 240px;
    }
    .brand img{
      height: 42px;
      width: auto;
      display:block;
    }

    nav ul{
      list-style:none;
      display:flex;
      gap: 12px;
      padding:0;
      margin:0;
      align-items:center;
      justify-content:center;
      flex: 1;
    }
    nav a{
      color: var(--muted);
      font-weight: 700;
      padding: 8px 10px;
      border-radius: 12px;
    }
    nav a:hover{ background: rgba(230,139,36,0.10); color: var(--text); }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding: 12px 16px;
      border-radius: 14px;
      border: 1px solid transparent;
      font-weight: 800;
      font-size: 15px;
      line-height: 1.2;
      cursor:pointer;
      transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
      white-space: nowrap;
    }
    .btn:active{ transform: translateY(1px); }

    .btn-primary{
      background: linear-gradient(135deg, var(--orange), #f0a045);
      color:#fff;
      box-shadow: 0 12px 26px rgba(230,139,36,0.28);
    }
    .btn-primary:hover{ box-shadow: 0 14px 32px rgba(230,139,36,0.32); }

    .btn-ghost{
      background: rgba(255,255,255,0.8);
      border-color: rgba(126,130,62,0.25);
      color: #4a4f1f;
    }
    .btn-ghost:hover{ background:#fff; }

    /* Mobile nav */
    .menu-toggle{ display:none; }
    #menuToggle{ display:none; }

    /* Hero */
    .hero{ padding: 56px 0 22px; }
    .hero-grid{
      display:grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 18px;
      align-items: stretch;
    }

    .card{
      background: rgba(255,255,255,0.86);
      border: 1px solid rgba(15,23,42,0.08);
      border-radius: var(--radius);
      padding: 20px;
      box-shadow: var(--shadow);
    }

    .hero-card{ padding: 26px; position:relative; overflow:hidden; }
    .pill{
      display:inline-flex;
      gap:10px;
      align-items:center;
      background: rgba(126,130,62,0.14);
      color: #4a4f1f;
      border: 1px solid rgba(126,130,62,0.28);
      padding: 8px 12px;
      border-radius: 999px;
      font-weight: 900;
      font-size: 14px;
    }
    h1{
      margin: 14px 0 10px;
      font-size: clamp(32px, 4vw, 46px);
      line-height: 1.08;
      letter-spacing: -0.6px;
    }
    .lead{
      color: var(--muted);
      font-size: 17px;
      margin: 0 0 18px;
      max-width: 60ch;
      font-weight: 600;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap: 10px;
      margin-top: 14px;
    }
    .info-row{
      display:flex;
      flex-wrap:wrap;
      gap: 12px;
      margin-top: 18px;
      color: var(--muted);
      font-weight: 700;
      font-size: 14px;
    }
    .info-row span{
      display:inline-flex;
      align-items:center;
      gap: 8px;
      padding: 8px 10px;
      border-radius: 12px;
      background: rgba(230,139,36,0.08);
      border: 1px solid rgba(230,139,36,0.14);
    }

    .side-stack{ display:grid; gap: 12px; }
    .mini{
      background: rgba(255,255,255,0.86);
      border: 1px solid rgba(15,23,42,0.08);
      border-radius: var(--radius);
      padding: 18px;
      box-shadow: 0 12px 25px rgba(2, 16, 32, 0.06);
    }
    .mini h3{ margin:0 0 8px; font-size: 16px; }
    .mini p{ margin:0; color: var(--muted); font-weight: 600; }

    /* Sections */
    section{ padding: 40px 0; }
    .section-title{
      display:flex;
      align-items:flex-end;
      justify-content:space-between;
      gap: 12px;
      margin-bottom: 14px;
    }
    .section-title h2{
      margin:0;
      font-size: 26px;
      letter-spacing: -0.3px;
    }
    .section-title p{
      margin:0;
      color: var(--muted);
      font-weight: 700;
    }

    .grid{
      display:grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .card h3{ margin: 0 0 8px; font-size: 18px; }
    .card p{ margin: 0; color: var(--muted); font-weight: 600; }

    .tag{
      display:inline-flex;
      margin-top: 12px;
      font-size: 13px;
      font-weight: 900;
      color: #fff;
      background: linear-gradient(135deg, var(--olive), #8f9550);
      border: 1px solid rgba(126,130,62,0.30);
      padding: 7px 10px;
      border-radius: 999px;
    }

    .cta-card{
      display:flex;
      justify-content:space-between;
      gap:14px;
      flex-wrap:wrap;
      align-items:center;
      box-shadow: 0 12px 26px rgba(2,16,32,0.08);
    }

    .cta-title{
      margin: 0 0 6px;
    }

    .cta-subtitle{
      margin: 0;
      color: var(--muted);
      font-weight: 650;
    }


    /* Meet Joy */
    .meet{
      display:grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 14px;
      align-items: start;
    }
    .portrait{
      overflow:hidden;
      border-radius: calc(var(--radius) + 8px);
      border: 1px solid rgba(15,23,42,0.10);
      background: rgba(255,255,255,0.86);
      box-shadow: 0 12px 26px rgba(2, 16, 32, 0.10);
    }
    .portrait img{
      width:100%;
      height:100%;
      display:block;
      object-fit: cover;
    }

    .meet .card{ box-shadow: 0 12px 26px rgba(2, 16, 32, 0.08); }

    .bullet-list{
      margin: 14px 0;
      padding: 0;
      list-style: none;
      display:grid;
      gap: 10px;
    }
    .bullet-list li{
      display:flex;
      gap: 10px;
      padding: 12px;
      border-radius: 14px;
      background: rgba(126,130,62,0.08);
      border: 1px solid rgba(126,130,62,0.16);
      color: var(--muted);
      font-weight: 700;
    }
    .dot{
      width: 10px;
      height: 10px;
      margin-top: 6px;
      border-radius: 999px;
      background: var(--orange);
      flex: 0 0 10px;
    }

    .meet-title{
      margin: 0 0 10px;
      font-size: 20px;
    }

    .meet-intro{
      margin: 0 0 12px;
      color: var(--muted);
      font-weight: 650;
    }

    .meet-note{
      margin: 12px 0 0;
      color: var(--muted);
      font-weight: 650;
    }

    .meet-note:first-of-type{
      margin-top: 14px; /* matches your first note paragraph spacing */
    }


    /* Contact */
    .contact{
      background: linear-gradient(135deg, rgba(230,139,36,0.10), rgba(126,130,62,0.10));
      border: 1px solid rgba(15,23,42,0.08);
      border-radius: calc(var(--radius) + 6px);
      padding: 20px;
    }

    .contact-title{
      margin-bottom: 10px;
    }

    .contact-card{
      box-shadow: none;
    }

    .contact-heading{
      margin: 0 0 10px;
    }

    .wa-btn{
      margin-top: 6px;
    }

    .contact-grid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      align-items: stretch;
    }

    /* Honeypot (spam protection) */
    .honeypot{
      display: none;
    }


    form{ display:grid; gap: 10px; }
    input, textarea{
      width:100%;
      padding: 12px 12px;
      border-radius: 14px;
      border: 1px solid rgba(15,23,42,0.12);
      background: rgba(255,255,255,0.92);
      font: inherit;
      outline: none;
      font-weight: 600;
    }

    /* Form status messages */
    .form-status{
      margin: 8px 0 0;
      font-weight: 700;
    }

    .form-status--success{
      color: var(--olive);
    }

    .form-status--error{
      color: var(--orange);
    }

    input:focus, textarea:focus{
      border-color: rgba(230,139,36,0.55);
      box-shadow: 0 0 0 4px rgba(230,139,36,0.16);
    }
    textarea{ min-height: 110px; resize: vertical; }

    .map{
      border-radius: 16px;
      border: 1px solid rgba(15,23,42,0.12);
      overflow:hidden;
      background: rgba(255,255,255,0.86);
      min-height: 260px;
      display:grid;
      place-items:center;
      color: var(--muted);
      font-weight: 800;
    }

    footer{
      padding: 24px 0 40px;
      color: rgba(71,85,105,0.9);
      font-weight: 700;
    }
    .footer-row{
      display:flex;
      flex-wrap:wrap;
      justify-content:space-between;
      gap: 12px;
      align-items:center;
      padding-top: 10px;
      border-top: 1px solid rgba(15,23,42,0.08);
    }

    .footer-links{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
    }


    .social-links {
      display: flex;
      gap: 14px;
      align-items: center;
    }

    .social-links a {
      display: inline-flex;
      width: 38px;
      height: 38px;
      align-items: center;
      justify-content: center;
      border-radius: 12px;
      background: rgba(230,139,36,0.10);
      border: 1px solid rgba(230,139,36,0.25);
      transition: transform .15s ease, background .15s ease;
    }

    .social-links a:hover {
      background: rgba(230,139,36,0.18);
      transform: translateY(-1px);
    }

    .social-links svg {
      width: 20px;
      height: 20px;
      fill: #7e823e; /* olive */
    }

    .footer-social {
  margin-top: 14px;
}

.footer-social .container {
  display: flex;
  justify-content: center;
}


    /* Responsive */
    @media (max-width: 920px){
      .hero-grid{ grid-template-columns: 1fr; }
      .grid{ grid-template-columns: 1fr; }
      .meet{ grid-template-columns: 1fr; }
      .contact-grid{ grid-template-columns: 1fr; }
      nav ul{ display:none; }
      .menu-toggle{ display:inline-flex; }
      #menuToggle:checked ~ header nav ul{
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        justify-content: flex-start;
        flex: 0 0 auto;
        gap: 6px;
        position:absolute;
        right: 18px;
        top: 66px;
        background: rgba(255,255,255,0.94);
        border: 1px solid rgba(15,23,42,0.10);
        border-radius: 16px;
        padding: 10px;
        box-shadow: var(--shadow);
        width: min(260px, calc(100% - 36px));
      }
      .brand img{ height: 38px; }
    }

    .map iframe {
      width: 100%;
      height: 100%;
      border: 0;
    }

/* Prevent any accidental horizontal scrolling */
html, body {
  overflow-x: hidden;
}

/* Make header flexible on small screens */
@media (max-width: 480px) {
  .nav {
    padding-left: 14px;
    padding-right: 14px;
    gap: 10px;
  }

  .brand {
    min-width: 0;          /* allow logo area to shrink */
    flex: 1 1 auto;
  }

  .brand img {
    max-width: 170px;
    width: 100%;
    height: auto;
  }

  /* Keep header actions from forcing overflow */
  .nav > div {
    flex: 0 0 auto;
  }

  /* Mobile dropdown alignment fix */
  #menuToggle:checked ~ header nav ul {
    right: 14px;           /* match mobile header padding */
  }

  /* Mobile button sizing */
  .btn {
    font-size: 16px;
    padding: 12px 16px;
  }
}

button.btn {
  appearance: none;
  -webkit-appearance: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}