:root {
    --ink: #173b35;
    --deep: #0f2d28;
    --sage: #6e8f7d;
    --mint: #eaf3ed;
    --cream: #f8f5ed;
    --gold: #c99a45;
    --white: #fff;
    --muted: #5f6d68;
    --shadow: 0 18px 50px rgba(23, 59, 53, .10)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    line-height: 1.6
}

a {
    text-decoration: none;
    color: inherit
}

.container {
    width: min(1160px, 92%);
    margin: auto
}

.topbar {
    background: var(--deep);
    color: #fff;
    font-size: 13px;
    padding: 8px 0
}

.topbar .container {
    display: flex;
    justify-content: space-between
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #e8ece8
}

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

.logo {
    font-family: Georgia, serif;
    font-size: 27px;
    font-weight: 700
}

.logo span {
    color: var(--gold)
}

.navlinks {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    font-weight: 700
}

.navlinks a:hover, a.active,
.link {
    color: var(--gold)
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 999px;
    padding: 13px 21px;
    font-weight: 750;
    cursor: pointer
}

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

.btn-outline {
    border: 1px solid var(--ink);
    background: transparent
}

.hero {
    background: linear-gradient(120deg, var(--cream), #edf4ee 58%, #dfece3);
    padding: 88px 0
}

.hero-grid,
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.eyebrow {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 12px
}

.hero h1,
h1,
h2 {
    font-family: Georgia, serif;
    line-height: 1.08
}

.hero h1 {
    font-size: clamp(48px, 6vw, 76px);
    margin: 15px 0 20px;
    letter-spacing: -2px
}

.hero p,
.lead {
    color: var(--muted);
    font-size: 17px
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px
}

.hero-art {
    min-height: 390px;
    position: relative;
    display: grid;
    place-items: center
}

.sun {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: #d6e6da;
    position: absolute
}

.pose {
    width: 170px;
    height: 270px;
    border: 18px solid var(--ink);
    border-top: 0;
    border-radius: 50%;
    transform: rotate(-4deg);
    position: relative
}

.pose:before {
    content: "";
    position: absolute;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: var(--gold);
    top: -75px;
    left: 34px
}

.float {
    position: absolute;
    background: #fff;
    padding: 15px 18px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    font-size: 13px
}

.f1 {
    left: 0;
    bottom: 30px
}

.f2 {
    right: 0;
    top: 30px
}

section {
    padding: 82px 0
}

h2 {
    font-size: clamp(34px, 4vw, 50px);
    margin: 10px 0 14px
}

.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto
}

.section-head {
    max-width: 720px;
    margin-bottom: 38px
}

.cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.card {
    border: 1px solid #e4e9e5;
    border-radius: 22px;
    padding: 27px;
    background: #fff;
    box-shadow: 0 8px 30px rgba(23, 59, 53, .04)
}

.card h3 {
    margin: 0 0 8px;
    font-size: 20px
}

.card p {
    color: var(--muted);
    font-size: 14px
}

.icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--mint);
    display: grid;
    place-items: center;
    font-size: 22px;
    margin-bottom: 16px
}

.band {
    background: var(--deep);
    color: #fff
}

.band .lead {
    color: #c9d7d2
}

.credentials {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px
}

.credential {
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 18px;
    padding: 22px;
    background: rgba(255, 255, 255, .05)
}

.credential strong {
    font-size: 22px
}

.credential small {
    display: block;
    color: #b9cbc4
}

.panel,
.cta {
    background: var(--cream);
    border-radius: 28px;
    padding: 38px;
    color: var(--deep);
}
.panel .lead, .cta .lead {
    color: var(--deep);
}

.check {
    display: flex;
    gap: 12px;
    margin: 18px 0
}

.check b {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--mint);
    display: grid;
    place-items: center;
    flex: none
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.stat {
    background: #fff;
    border-radius: 16px;
    padding: 18px
}

.stat strong {
    font: 30px Georgia;
    display: block
}

.directory {
    background: #f2f7f3
}

.search {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 10px;
    background: #fff;
    padding: 12px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    max-width: 850px;
    margin: auto
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid #dce4df;
    border-radius: 12px;
    padding: 13px 15px;
    font: inherit
}

label {
    display: block;
    font-size: 13px;
    font-weight: 750;
    margin: 13px 0 6px
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.cta {
    text-align: center;
    background: linear-gradient(135deg, #dfece3, #f8f5ed)
}

footer {
    background: #0d2824;
    color: #dbe6e1;
    padding: 52px 0 22px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr;
    gap: 30px
}

footer h4 {
    color: #fff;
    margin-top: 0
}

footer a {
    display: block;
    margin: 8px 0;
    color: #b9cbc4;
    font-size: 14px
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, .12);
    margin-top: 30px;
    padding-top: 16px;
    font-size: 13px;
    color: #91a9a1
}

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 31, 27, .62);
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 20px
}

.modal.show {
    display: flex
}

.modal-box {
    position: relative;
    background: #fff;
    width: min(650px, 100%);
    max-height: 92vh;
    overflow: auto;
    border-radius: 28px;
    padding: 34px;
    box-shadow: 0 30px 80px #0004
}

.close {
    position: absolute;
    right: 18px;
    top: 14px;
    border: 0;
    background: var(--mint);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer
}

.consent {
    display: flex;
    gap: 9px;
    align-items: flex-start;
    color: var(--muted);
    font-weight: 500
}

.consent input {
    width: auto
}

.success {
    color: #276b4e;
    font-weight: 700;
    text-align: center;
    min-height: 22px
}

@media(max-width:1000px) {
    .navlinks {
        display: none
    }

    .hero-grid,
    .split {
        grid-template-columns: 1fr
    }

    .cards {
        grid-template-columns: 1fr 1fr
    }

    .credentials {
        grid-template-columns: repeat(3, 1fr)
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:600px) {
    .topbar {
        display: none
    }

    .nav {
        height: 66px
    }

    .cards,
    .credentials,
    .stats,
    .search,
    .form-grid,
    .footer-grid {
        grid-template-columns: 1fr
    }

    .hero {
        padding: 60px 0
    }

    .hero-art {
        min-height: 300px
    }

    section {
        padding: 62px 0
    }

    .panel,
    .cta {
        padding: 27px
    }
}
/* FINAL MOBILE MENU: >1000px desktop, <=1000px hamburger */
.menu-toggle{display:none;width:46px;height:46px;border:1px solid #d7e4dd;border-radius:12px;background:#eaf3ed;color:#173b35;font-size:27px;line-height:1;align-items:center;justify-content:center;cursor:pointer;padding:0;z-index:50}
@media (max-width:1000px){
  .site-header .container{position:relative}
  .menu-toggle{display:flex}
  .navlinks{display:none!important;position:absolute!important;top:100%!important;left:0!important;right:0!important;width:100%!important;background:#fff!important;padding:16px 4% 22px!important;flex-direction:column!important;align-items:stretch!important;gap:0!important;border-top:1px solid #e8ece8;border-bottom:1px solid #e8ece8;box-shadow:0 18px 30px rgba(15,45,40,.12);z-index:40}
  .navlinks.open{display:flex!important}
  .navlinks a{display:block;width:100%;padding:13px 4px}
  .navlinks .btn{margin-top:8px;text-align:center}
}
@media (min-width:1001px){.menu-toggle{display:none!important}.navlinks{display:flex!important}}

/* FINAL MOBILE NAVIGATION */
.menu-toggle{
  display:none !important;
  width:46px;
  height:46px;
  flex:0 0 46px;
  border:1px solid #d7e4dd;
  border-radius:12px;
  background:#eaf3ed;
  color:#173b35;
  font-size:27px;
  line-height:1;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  padding:0;
}
@media (max-width:1000px){
  .site-header .container{
    position:relative;
  }
  .menu-toggle{
    display:flex !important;
  }
  .navlinks{
    display:none !important;
    position:absolute !important;
    top:100% !important;
    left:0 !important;
    right:0 !important;
    width:100% !important;
    margin:0 !important;
    padding:14px 4% 22px !important;
    background:#fff !important;
    flex-direction:column !important;
    align-items:stretch !important;
    gap:0 !important;
    border-top:1px solid #e8ece8 !important;
    border-bottom:1px solid #e8ece8 !important;
    box-shadow:0 18px 35px rgba(15,45,40,.14) !important;
    z-index:9999 !important;
  }
  .navlinks.open{
    display:flex !important;
  }
  .navlinks a{
    display:block !important;
    width:100% !important;
    padding:13px 4px !important;
  }
  .navlinks .btn{
    margin-top:8px !important;
    text-align:center !important;
  }
}
@media (min-width:1001px){
  .menu-toggle{
    display:none !important;
  }
  .navlinks{
    display:flex !important;
  }
}
