:root{
      --bg:#f9fafb;
      --section:#e5e7eb;
      --primary:#0f766e;
      --text:#111827;
      --white:#ffffff;
      --border:rgba(15,118,110,0.16);
      --muted:rgba(17,24,39,0.72);
      --soft-shadow:0 16px 40px rgba(17,24,39,0.08);
      --img-shadow:0 18px 36px rgba(17,24,39,0.14);
      --radius-xl:28px;
      --radius-lg:22px;
      --radius-md:18px;
    }

    html, body {
      background: var(--bg);
      color: var(--text);
      font-family: 'Source Serif 4', Georgia, serif;
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
    }

    h1, h2, h3, h4, .logo-text, .navbar-item, .button {
      font-family: 'Cormorant Garamond', serif;
    }

    .page-shell {
      position: relative;
      overflow: hidden;
      min-height: 100vh;
      background:
        radial-gradient(circle at top left, rgba(15,118,110,0.10), transparent 28%),
        radial-gradient(circle at 85% 20%, rgba(15,118,110,0.08), transparent 24%),
        radial-gradient(circle at bottom right, rgba(15,118,110,0.06), transparent 22%),
        var(--bg);
    }

    .blur-orb {
      position: absolute;
      border-radius: 999px;
      filter: blur(55px);
      opacity: .25;
      pointer-events: none;
      z-index: 0;
    }

    .orb-one {
      width: 220px;
      height: 220px;
      background: rgba(15,118,110,0.18);
      top: 40px;
      left: -60px;
    }

    .orb-two {
      width: 260px;
      height: 260px;
      background: rgba(15,118,110,0.12);
      right: -80px;
      top: 360px;
    }

    .orb-three {
      width: 180px;
      height: 180px;
      background: rgba(15,118,110,0.10);
      left: 18%;
      bottom: 100px;
    }

    .site-wrap {
      position: relative;
      z-index: 1;
      padding: 0.75rem;
    }

    .main-frame {
      max-width: 1400px;
      margin: 0 auto;
      display: flex;
      gap: 0.9rem;
      align-items: flex-start;
    }

    .sidebar-panel {
      width: 290px;
      position: sticky;
      top: 0.75rem;
      flex-shrink: 0;
    }

    .sidebar-card {
      background: rgba(229,231,235,0.78);
      backdrop-filter: blur(18px);
      border: 1px solid rgba(255,255,255,0.6);
      border-radius: var(--radius-xl);
      box-shadow: var(--soft-shadow);
      padding: 1rem;
    }

    .brand-box {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 1rem;
    }

    .brand-mark {
      width: 48px;
      height: 48px;
      border-radius: 16px;
      background: linear-gradient(135deg, rgba(15,118,110,0.18), rgba(255,255,255,0.95));
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
      font-size: 1.5rem;
      font-weight: 700;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.8);
    }

    .logo-text {
      font-size: 1.75rem;
      line-height: 0.95;
      color: var(--text);
      letter-spacing: 0.03em;
    }

    .logo-sub {
      font-size: 0.9rem;
      color: var(--muted);
      margin-top: 0.2rem;
    }

    .sidebar-intro {
      background: rgba(249,250,251,0.82);
      border: 1px solid rgba(15,118,110,0.10);
      border-radius: var(--radius-lg);
      padding: 0.9rem;
      margin-bottom: 0.9rem;
    }

    .sidebar-intro p {
      color: var(--muted);
      font-size: 0.98rem;
      line-height: 1.45;
    }

    .menu-label.custom-label {
      color: var(--primary);
      font-size: 0.92rem;
      letter-spacing: 0.08em;
      margin-bottom: 0.45rem;
    }

    .menu-list a {
      color: var(--text);
      border-radius: 14px;
      padding: 0.7rem 0.85rem;
      transition: none;
      font-size: 1.02rem;
      border: 1px solid transparent;
    }

    .menu-list a:hover,
    .menu-list a.is-active {
      background: rgba(15,118,110,0.09);
      color: var(--primary);
      border-color: var(--border);
    }

    .sidebar-chip-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 0.45rem;
      margin-top: 0.65rem;
    }

    .sidebar-chip {
      padding: 0.38rem 0.7rem;
      border-radius: 999px;
      background: rgba(15,118,110,0.09);
      color: var(--primary);
      font-size: 0.86rem;
      border: 1px solid rgba(15,118,110,0.12);
    }

    .content-panel {
      flex: 1;
      min-width: 0;
    }

    .top-nav-shell {
      margin-bottom: 0.9rem;
      background: rgba(229,231,235,0.78);
      backdrop-filter: blur(18px);
      border: 1px solid rgba(255,255,255,0.6);
      border-radius: var(--radius-xl);
      box-shadow: var(--soft-shadow);
      overflow: hidden;
    }

    .navbar {
      background: transparent;
      min-height: 4rem;
    }

    .navbar-item, .navbar-link {
      color: var(--text);
      font-size: 1.1rem;
    }

    .navbar-burger {
      color: var(--primary);
      margin-right: 0.5rem;
    }

    .hero-card {
      background: rgba(229,231,235,0.82);
      backdrop-filter: blur(18px);
      border-radius: 36px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.7);
      box-shadow: var(--soft-shadow);
      margin-bottom: 0.9rem;
    }

    .hero-inner {
      display: flex;
      min-height: 460px;
      flex-wrap: wrap;
    }

    .hero-visual {
      flex: 1 1 54%;
      min-width: 300px;
      position: relative;
      overflow: hidden;
    }

    .hero-visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      box-shadow: var(--img-shadow);
    }

    .hero-copy {
      flex: 1 1 46%;
      min-width: 300px;
      padding: 1.35rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      background: linear-gradient(180deg, rgba(249,250,251,0.64), rgba(229,231,235,0.78));
    }

    .eyebrow {
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.18em;
      font-size: 0.82rem;
      margin-bottom: 0.55rem;
    }

    .outlined-title {
      font-size: clamp(2.4rem, 5vw, 4.5rem);
      line-height: 0.95;
      color: transparent;
      -webkit-text-stroke: 1.4px var(--primary);
      text-stroke: 1.4px var(--primary);
      margin-bottom: 0.9rem;
    }

    .hero-copy p {
      font-size: 1.05rem;
      line-height: 1.5;
      color: var(--muted);
      max-width: 38rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      margin-top: 1rem;
    }

    .button.is-primary.custom-btn {
      background: var(--primary);
      color: #fff;
      border: none;
      border-radius: 999px;
      padding-left: 1.3rem;
      padding-right: 1.3rem;
      box-shadow: 0 10px 24px rgba(15,118,110,0.18);
    }

    .button.is-light.custom-btn-light {
      background: rgba(255,255,255,0.8);
      color: var(--text);
      border: 1px solid rgba(15,118,110,0.12);
      border-radius: 999px;
      padding-left: 1.3rem;
      padding-right: 1.3rem;
    }

    .stats-ribbon {
      display: flex;
      gap: 0.7rem;
      flex-wrap: wrap;
      margin-top: 1rem;
    }

    .stat-pill {
      background: rgba(255,255,255,0.74);
      border: 1px solid rgba(15,118,110,0.10);
      border-radius: 999px;
      padding: 0.55rem 0.9rem;
      color: var(--text);
      font-size: 0.95rem;
    }

    .section-card {
      background: rgba(229,231,235,0.8);
      backdrop-filter: blur(18px);
      border: 1px solid rgba(255,255,255,0.65);
      border-radius: 30px;
      box-shadow: var(--soft-shadow);
      padding: 1rem;
      margin-bottom: 0.9rem;
    }

    .section-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1rem;
      margin-bottom: 0.9rem;
      flex-wrap: wrap;
    }

    .section-title {
      font-size: clamp(1.8rem, 3vw, 2.8rem);
      line-height: 0.95;
      color: transparent;
      -webkit-text-stroke: 1.2px var(--primary);
      text-stroke: 1.2px var(--primary);
      margin: 0;
    }

    .section-kicker {
      color: var(--muted);
      max-width: 40rem;
      line-height: 1.45;
      font-size: 0.98rem;
    }

    .about-layout {
      display: flex;
      gap: 0.9rem;
      flex-wrap: wrap;
    }

    .about-main {
      flex: 1 1 62%;
      background: rgba(249,250,251,0.8);
      border-radius: var(--radius-lg);
      border: 1px solid rgba(15,118,110,0.10);
      padding: 1rem;
    }

    .about-main p {
      color: var(--muted);
      line-height: 1.55;
      margin-bottom: 0.7rem;
    }

    .about-side {
      flex: 1 1 32%;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    .info-box {
      background: rgba(249,250,251,0.82);
      border-radius: var(--radius-lg);
      border: 1px solid rgba(15,118,110,0.10);
      padding: 0.95rem;
    }

    .info-box strong {
      color: var(--primary);
      display: block;
      margin-bottom: 0.25rem;
      font-size: 1.02rem;
    }

    .info-box span {
      color: var(--muted);
      line-height: 1.45;
      display: block;
    }

    .content-unconventional {
      display: flex;
      gap: 0.9rem;
      flex-wrap: wrap;
      align-items: flex-start;
    }

    .feature-column {
      flex: 1 1 34%;
      min-width: 280px;
      display: flex;
      flex-direction: column;
      gap: 0.9rem;
    }

    .grid-column {
      flex: 1 1 62%;
      min-width: 320px;
    }

    .feature-story {
      background: linear-gradient(180deg, rgba(249,250,251,0.88), rgba(229,231,235,0.88));
      border-radius: 26px;
      border: 1px solid rgba(15,118,110,0.10);
      overflow: hidden;
      box-shadow: var(--soft-shadow);
    }

    .feature-story img {
      width: 100%;
      height: 240px;
      object-fit: cover;
      display: block;
      box-shadow: var(--img-shadow);
    }

    .feature-body {
      padding: 1rem;
    }

    .feature-body h3 {
      font-size: 1.8rem;
      line-height: 1;
      color: var(--text);
      margin-bottom: 0.5rem;
    }

    .feature-body p {
      color: var(--muted);
      line-height: 1.5;
      margin-bottom: 0.8rem;
    }

    .mini-note {
      background: rgba(249,250,251,0.84);
      border-radius: 22px;
      border: 1px solid rgba(15,118,110,0.10);
      padding: 1rem;
    }

    .mini-note h4 {
      color: var(--primary);
      font-size: 1.25rem;
      margin-bottom: 0.45rem;
    }

    .mini-note p {
      color: var(--muted);
      line-height: 1.45;
    }

    .posts-flex-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
    }

    .post-card {
      width: calc(50% - 0.45rem);
      background: rgba(249,250,251,0.84);
      border: 1px solid rgba(15,118,110,0.10);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: var(--soft-shadow);
      display: flex;
      flex-direction: column;
    }

    .post-card img {
      width: 100%;
      height: 190px;
      object-fit: cover;
      display: block;
      box-shadow: var(--img-shadow);
    }

    .post-card-body {
      padding: 0.95rem;
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
      height: 100%;
    }

    .post-card-body h3 {
      color: var(--text);
      font-size: 1.45rem;
      line-height: 1.05;
      margin: 0;
    }

    .post-card-body p {
      color: var(--muted);
      line-height: 1.45;
      font-size: 0.98rem;
      margin: 0;
      flex: 1;
    }

    .post-link {
      color: var(--primary);
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
    }

    .footer-card {
      background: rgba(229,231,235,0.76);
      backdrop-filter: blur(18px);
      border: 1px solid rgba(255,255,255,0.65);
      border-radius: 28px;
      box-shadow: var(--soft-shadow);
      padding: 1rem 1.1rem;
    }

    .footer-minimal {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.8rem;
      flex-wrap: wrap;
    }

    .footer-minimal a {
      color: var(--text);
      margin-left: 0.9rem;
    }

    .footer-minimal a:hover {
      color: var(--primary);
    }

    .mobile-side-info {
      display: none;
    }

    @media screen and (max-width: 1180px) {
      .main-frame {
        flex-direction: column;
      }

      .sidebar-panel {
        width: 100%;
        position: relative;
        top: 0;
      }

      .sidebar-card {
        display: none;
      }

      .mobile-side-info {
        display: block;
        margin-bottom: 0.9rem;
      }

      .post-card {
        width: calc(50% - 0.45rem);
      }
    }

    @media screen and (max-width: 860px) {
      .hero-inner {
        min-height: auto;
      }

      .hero-visual,
      .hero-copy {
        flex: 1 1 100%;
      }

      .hero-visual img {
        height: 300px;
      }

      .post-card {
        width: 100%;
      }

      .content-unconventional {
        flex-direction: column;
      }
    }

    @media screen and (max-width: 640px) {
      .site-wrap {
        padding: 0.55rem;
      }

      .hero-copy,
      .section-card,
      .sidebar-card,
      .footer-card {
        padding: 0.85rem;
      }

      .outlined-title {
        -webkit-text-stroke: 1px var(--primary);
      }

      .section-title {
        -webkit-text-stroke: 1px var(--primary);
      }

      .footer-minimal a {
        margin-left: 0;
        margin-right: 0.9rem;
      }
    }
