:root{
      --bg:#ffffff;
      --section:#f9fafb;
      --primary:#0f766e;
      --text:#111827;
      --muted:#6b7280;
      --line:rgba(15,118,110,.12);
      --soft:rgba(15,118,110,.08);
    }
    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      background:var(--bg);
      color:var(--text);
      font-family:'Inter',sans-serif;
      margin:0;
      overflow-x:hidden;
      background-image:
        radial-gradient(rgba(17,24,39,.035) 0.6px, transparent 0.6px),
        radial-gradient(rgba(15,118,110,.03) 0.7px, transparent 0.7px);
      background-size:18px 18px, 24px 24px;
      background-position:0 0, 9px 9px;
    }
    h1,h2,h3,h4,h5{
      font-family:'Cormorant Garamond',serif;
      font-weight:300;
      letter-spacing:.01em;
      color:var(--text);
      margin-top:0;
    }
    p, a, li, span{font-weight:400}
    .container-wide{
      width:min(1380px, 94%);
      margin:0 auto;
    }
    .compact-section{
      padding:3.2rem 0;
    }
    nav{
      background:rgba(255,255,255,.88);
      box-shadow:none;
      border-bottom:1px solid rgba(17,24,39,.06);
      backdrop-filter:blur(12px);
    }
    nav .nav-wrapper{
      min-height:72px;
      display:flex;
      align-items:center;
      justify-content:space-between;
    }
    .brand-logo{
      position:relative!important;
      transform:none!important;
      left:auto!important;
      font-family:'Cormorant Garamond',serif;
      font-weight:500;
      color:var(--text)!important;
      font-size:2rem!important;
      display:flex!important;
      align-items:center;
      gap:.65rem;
    }
    .brand-mark{
      width:34px;
      height:34px;
      border-radius:10px;
      background:
        repeating-linear-gradient(
          135deg,
          rgba(15,118,110,.15) 0 7px,
          rgba(15,118,110,.05) 7px 14px
        );
      border:1px solid rgba(15,118,110,.18);
      display:inline-block;
    }
    nav ul a{
      color:var(--text)!important;
      font-size:.96rem;
      transition:all .25s ease;
    }
    nav ul a:hover{
      background:transparent;
      color:var(--primary)!important;
    }
    .sidenav{
      background:#fff;
    }
    .sidenav li>a{
      color:var(--text);
      font-size:1rem;
    }
    .sidenav-trigger i{
      color:var(--text);
      font-size:2rem;
    }

    .hero-shell{
      position:relative;
      padding:2rem 0 2.6rem;
    }
    .hero-grid{
      display:grid;
      grid-template-columns:1.05fr .95fr;
      gap:1.2rem;
      align-items:stretch;
    }
    .hero-copy{
      background:var(--section);
      border:1px solid rgba(17,24,39,.06);
      border-radius:28px 70px 28px 28px;
      padding:2.3rem 2rem;
      position:relative;
      overflow:hidden;
    }
    .hero-copy:before{
      content:"";
      position:absolute;
      inset:0;
      background:
        repeating-linear-gradient(
          -35deg,
          transparent 0 18px,
          rgba(15,118,110,.035) 18px 19px
        );
      pointer-events:none;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:.55rem;
      padding:.45rem .8rem;
      border:1px solid var(--line);
      border-radius:999px;
      color:var(--primary);
      background:rgba(255,255,255,.85);
      font-size:.82rem;
      margin-bottom:1.1rem;
      position:relative;
      z-index:1;
    }
    .eyebrow .dot{
      width:7px;height:7px;border-radius:50%;background:var(--primary);
      box-shadow:0 0 0 6px rgba(15,118,110,.08);
    }
    .hero-title{
      font-size:clamp(3rem, 5.7vw, 5.4rem);
      line-height:.92;
      margin-bottom:.95rem;
      position:relative;
      z-index:1;
      max-width:10ch;
    }
    .hero-text{
      color:var(--muted);
      font-size:1.02rem;
      line-height:1.72;
      max-width:56ch;
      margin-bottom:1.4rem;
      position:relative;
      z-index:1;
    }
    .hero-actions{
      display:flex;
      flex-wrap:wrap;
      gap:.8rem;
      position:relative;
      z-index:1;
    }
    .btn-ghost{
      background:transparent;
      color:var(--primary);
      border:1px solid rgba(15,118,110,.24);
      border-radius:999px;
      padding:0 1.2rem;
      text-transform:none;
      letter-spacing:.01em;
      box-shadow:none;
      transition:all .25s ease;
    }
    .btn-ghost:hover,.btn-ghost:focus{
      background:rgba(15,118,110,.06);
      box-shadow:none;
      transform:translateY(-2px);
    }
    .hero-rail{
      display:grid;
      grid-template-rows:1.3fr .7fr;
      gap:1rem;
    }
    .hero-image-card,
    .hero-mini{
      background:var(--section);
      border:1px solid rgba(17,24,39,.06);
      overflow:hidden;
      position:relative;
    }
    .hero-image-card{
      border-radius:70px 24px 24px 24px;
      min-height:380px;
    }
    .hero-image-card img,
    .hero-mini img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      transition:transform .55s ease;
      border-radius:inherit;
    }
    .hero-image-card:hover img,
    .hero-mini:hover img{
      transform:scale(1.04);
    }
    .hero-image-overlay{
      position:absolute;
      left:1rem;
      right:1rem;
      bottom:1rem;
      background:rgba(255,255,255,.84);
      border:1px solid rgba(255,255,255,.75);
      backdrop-filter:blur(8px);
      border-radius:18px;
      padding:.95rem 1rem;
    }
    .hero-image-overlay h3{
      margin:0 0 .2rem;
      font-size:1.45rem;
    }
    .hero-image-overlay p{
      margin:0;
      color:var(--muted);
      font-size:.95rem;
      line-height:1.5;
    }
    .hero-mini{
      border-radius:24px 24px 54px 24px;
      min-height:150px;
      display:grid;
      grid-template-columns:.95fr 1.05fr;
      align-items:stretch;
    }
    .hero-mini .mini-content{
      padding:1rem;
      display:flex;
      flex-direction:column;
      justify-content:center;
      gap:.4rem;
    }
    .hero-mini h4{
      font-size:1.5rem;
      margin:0;
    }
    .hero-mini p{
      margin:0;
      color:var(--muted);
      font-size:.92rem;
      line-height:1.55;
    }

    .feature-wrap{
      background:var(--section);
      border:1px solid rgba(17,24,39,.06);
      border-radius:28px;
      padding:1.1rem;
    }
    .feature-head{
      display:grid;
      grid-template-columns:.8fr 1.2fr;
      gap:1rem;
      align-items:end;
      margin-bottom:1rem;
    }
    .section-title{
      font-size:clamp(2.2rem, 4vw, 3.3rem);
      line-height:.96;
      margin-bottom:0;
    }
    .section-intro{
      color:var(--muted);
      line-height:1.7;
      margin:0;
      max-width:60ch;
    }
    .feature-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr .9fr;
      gap:1rem;
    }
    .feature-card{
      background:#fff;
      border:1px solid rgba(17,24,39,.06);
      border-radius:24px;
      padding:1.1rem;
      min-height:190px;
      transition:transform .3s ease, box-shadow .3s ease, border-color .3s ease;
      position:relative;
      overflow:hidden;
    }
    .feature-card:hover{
      transform:translateY(-5px);
      box-shadow:0 16px 40px rgba(17,24,39,.06);
      border-color:rgba(15,118,110,.18);
    }
    .feature-card:after{
      content:"";
      position:absolute;
      right:-20px;
      top:-20px;
      width:110px;
      height:110px;
      background:radial-gradient(circle, rgba(15,118,110,.10), transparent 65%);
      transition:transform .35s ease;
    }
    .feature-card:hover:after{
      transform:scale(1.15);
    }
    .feature-icon{
      width:46px;
      height:46px;
      border-radius:14px;
      display:flex;
      align-items:center;
      justify-content:center;
      background:rgba(15,118,110,.08);
      color:var(--primary);
      margin-bottom:.9rem;
    }
    .feature-card h3{
      font-size:1.7rem;
      margin-bottom:.5rem;
    }
    .feature-card p{
      margin:0;
      color:var(--muted);
      line-height:1.65;
      font-size:.96rem;
    }

    .content-shell{
      display:grid;
      grid-template-columns:.82fr 1.18fr;
      gap:1rem;
      align-items:start;
    }
    .content-side{
      background:var(--section);
      border:1px solid rgba(17,24,39,.06);
      border-radius:28px 28px 70px 28px;
      padding:1.5rem;
      position:sticky;
      top:88px;
    }
    .content-side .tag-stack{
      display:flex;
      flex-wrap:wrap;
      gap:.55rem;
      margin:1rem 0 1.2rem;
    }
    .content-side .chip-lite{
      border:1px solid var(--line);
      color:var(--primary);
      background:#fff;
      border-radius:999px;
      padding:.45rem .8rem;
      font-size:.84rem;
    }
    .content-side p{
      color:var(--muted);
      line-height:1.7;
      margin:0 0 1rem;
    }
    .mini-stats{
      display:grid;
      grid-template-columns:repeat(2,1fr);
      gap:.8rem;
      margin-top:1rem;
    }
    .stat{
      background:#fff;
      border:1px solid rgba(17,24,39,.06);
      border-radius:18px;
      padding:.9rem;
    }
    .stat strong{
      display:block;
      font-size:1.4rem;
      font-weight:500;
      color:var(--text);
    }
    .stat span{
      color:var(--muted);
      font-size:.88rem;
    }

    .posts-grid{
      display:grid;
      grid-template-columns:repeat(2,minmax(0,1fr));
      gap:1rem;
    }
    .post-card{
      background:var(--section);
      border:1px solid rgba(17,24,39,.06);
      border-radius:26px;
      overflow:hidden;
      transition:transform .32s ease, box-shadow .32s ease, border-color .32s ease;
      display:flex;
      flex-direction:column;
      min-height:100%;
    }
    .post-card:hover{
      transform:translateY(-6px);
      box-shadow:0 18px 44px rgba(17,24,39,.06);
      border-color:rgba(15,118,110,.18);
    }
    .post-media{
      position:relative;
      overflow:hidden;
      aspect-ratio:16/10;
      margin:.7rem .7rem 0;
      border-radius:20px;
    }
    .post-media img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
      transition:transform .5s ease;
      border-radius:20px;
    }
    .post-card:hover .post-media img{
      transform:scale(1.05);
    }
    .post-body{
      padding:1rem 1rem 1.1rem;
      display:flex;
      flex-direction:column;
      gap:.7rem;
      flex:1;
    }
    .post-index{
      color:var(--primary);
      font-size:.82rem;
      letter-spacing:.08em;
      text-transform:uppercase;
    }
    .post-body h3{
      font-size:1.9rem;
      line-height:1;
      margin:0;
    }
    .post-body p{
      margin:0;
      color:var(--muted);
      line-height:1.7;
      flex:1;
      font-size:.95rem;
    }
    .post-link{
      align-self:flex-start;
      color:var(--primary);
      font-weight:500;
      display:inline-flex;
      align-items:center;
      gap:.35rem;
      transition:gap .22s ease, color .22s ease;
    }
    .post-link:hover{
      gap:.6rem;
      color:#0b5f58;
    }

    footer{
      padding:2rem 0 1.4rem;
      background:var(--section);
      border-top:1px solid rgba(17,24,39,.06);
      margin-top:3rem;
    }
    .footer-grid{
      display:grid;
      grid-template-columns:1.2fr .8fr;
      gap:1rem;
      align-items:end;
    }
    .footer-brand{
      display:flex;
      flex-direction:column;
      gap:.5rem;
    }
    .footer-brand .brand-line{
      display:flex;
      align-items:center;
      gap:.7rem;
      font-family:'Cormorant Garamond',serif;
      font-size:2rem;
      font-weight:500;
      color:var(--text);
    }
    .footer-brand p{
      margin:0;
      color:var(--muted);
      line-height:1.7;
      max-width:52ch;
    }
    .footer-links{
      display:flex;
      flex-wrap:wrap;
      justify-content:flex-end;
      gap:1rem 1.2rem;
    }
    .footer-links a{
      color:var(--text);
      transition:color .2s ease;
    }
    .footer-links a:hover{
      color:var(--primary);
    }
    .footer-bottom{
      margin-top:1.2rem;
      padding-top:1rem;
      border-top:1px solid rgba(17,24,39,.06);
      display:flex;
      justify-content:space-between;
      gap:1rem;
      flex-wrap:wrap;
      color:var(--muted);
      font-size:.92rem;
    }

    @media (max-width: 1100px){
      .hero-grid,
      .feature-head,
      .feature-grid,
      .content-shell,
      .footer-grid{
        grid-template-columns:1fr;
      }
      .hero-rail{
        grid-template-rows:auto;
      }
      .content-side{
        position:relative;
        top:auto;
      }
    }
    @media (max-width: 780px){
      .compact-section{padding:2.5rem 0}
      .hero-copy{padding:1.5rem}
      .hero-title{max-width:100%}
      .hero-mini{
        grid-template-columns:1fr;
        min-height:auto;
      }
      .posts-grid{
        grid-template-columns:1fr;
      }
      .mini-stats{
        grid-template-columns:1fr 1fr;
      }
      .footer-links{
        justify-content:flex-start;
      }
    }
    @media (max-width: 520px){
      .hero-actions{
        flex-direction:column;
        align-items:flex-start;
      }
      .mini-stats{
        grid-template-columns:1fr;
      }
      .brand-logo{
        font-size:1.7rem!important;
      }
    }
