:root {
      --bg: #ffffff;
      --section: #f9fafb;
      --primary: #0f766e;
      --text: #111827;
      --muted: #4b5563;
      --border: rgba(15,118,110,0.18);
      --shadow: 0 20px 60px rgba(15, 118, 110, 0.08);
      --radius-xl: 32px;
      --radius-lg: 22px;
      --radius-md: 16px;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background:
        radial-gradient(circle at top left, rgba(15,118,110,0.12), transparent 28%),
        radial-gradient(circle at top right, rgba(15,118,110,0.08), transparent 22%),
        linear-gradient(180deg, #ffffff 0%, #f9fafb 100%);
      color: var(--text);
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, .title, .section-kicker, .navbar-item, .button {
      font-family: 'Cormorant Garamond', serif;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--text);
    }

    p, .content, .subtitle, .card-content {
      font-family: 'Inter', sans-serif;
      color: var(--muted);
    }

    .page-shell {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 1.25rem;
    }

    .navbar {
      background: rgba(255,255,255,0.75);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(15,118,110,0.08);
      border-radius: 999px;
      margin: 1.5rem auto 0;
      max-width: 920px;
      box-shadow: 0 10px 30px rgba(15,118,110,0.06);
    }

    .navbar-menu,
    .navbar-start,
    .navbar-end {
      justify-content: center;
      flex-grow: 1;
    }

    .navbar-item {
      color: var(--text);
      font-size: 1.1rem;
      padding: 0.9rem 1.3rem;
      position: relative;
    }

    .navbar-item:hover {
      color: var(--primary);
      background: transparent;
    }

    .navbar-item::after {
      content: "";
      position: absolute;
      left: 1.3rem;
      right: 1.3rem;
      bottom: 0.7rem;
      height: 1px;
      background: var(--primary);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform .35s ease;
    }

    .navbar-item:hover::after {
      transform: scaleX(1);
    }

    .hero-wrap {
      padding: 2.5rem 0 3rem;
    }

    .hero-slider {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 1.5rem;
      align-items: stretch;
    }

    .hero-main,
    .hero-side {
      background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow);
      position: relative;
    }

    .hero-main {
      min-height: 590px;
    }

    .hero-slides {
      position: relative;
      height: 100%;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      opacity: 0;
      animation: heroFade 18s infinite;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
      padding: 3.2rem;
      gap: 2rem;
    }

    .hero-slide:nth-child(2) { animation-delay: 6s; }
    .hero-slide:nth-child(3) { animation-delay: 12s; }

    @keyframes heroFade {
      0% { opacity: 0; transform: translateX(40px); }
      8% { opacity: 1; transform: translateX(0); }
      28% { opacity: 1; transform: translateX(0); }
      36% { opacity: 0; transform: translateX(-30px); }
      100% { opacity: 0; transform: translateX(-30px); }
    }

    .hero-copy {
      z-index: 2;
    }

    .section-kicker {
      display: inline-block;
      color: var(--primary);
      font-size: 0.95rem;
      margin-bottom: 1rem;
      border-bottom: 1px solid rgba(15,118,110,0.25);
      padding-bottom: 0.35rem;
    }

    .hero-title {
      font-size: clamp(2.7rem, 5vw, 5rem);
      line-height: 0.95;
      margin-bottom: 1.2rem;
    }

    .hero-text {
      font-size: 1.05rem;
      line-height: 1.8;
      max-width: 640px;
      margin-bottom: 1.8rem;
    }

    .button.is-outline-teal {
      background: transparent;
      border: 1.5px solid var(--primary);
      color: var(--primary);
      border-radius: 999px;
      padding: 0.9rem 1.6rem;
      font-size: 1.05rem;
      transition: all .3s ease;
    }

    .button.is-outline-teal:hover {
      background: rgba(15,118,110,0.06);
      color: var(--primary);
      transform: translateY(-2px);
    }

    .hero-image-wrap {
      position: relative;
      height: 100%;
      min-height: 320px;
    }

    .hero-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 26px;
      box-shadow: 0 18px 40px rgba(17,24,39,0.08);
    }

    .hero-badge {
      position: absolute;
      bottom: 1rem;
      left: 1rem;
      background: rgba(255,255,255,0.9);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 0.85rem 1rem;
      min-width: 180px;
      backdrop-filter: blur(12px);
    }

    .hero-badge strong {
      display: block;
      color: var(--primary);
      font-size: 1rem;
      font-family: 'Cormorant Garamond', serif;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .hero-badge span {
      color: var(--muted);
      font-size: 0.9rem;
    }

    .hero-side {
      display: grid;
      grid-template-rows: auto 1fr auto;
      padding: 2rem;
      background:
        linear-gradient(180deg, rgba(15,118,110,0.06), rgba(255,255,255,0.95)),
        #f9fafb;
    }

    .side-top h3 {
      font-size: 2rem;
      margin-bottom: 0.8rem;
    }

    .side-panel-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      margin-top: 1.2rem;
    }

    .mini-panel {
      background: rgba(255,255,255,0.82);
      border: 1px solid var(--border);
      border-radius: var(--radius-md);
      padding: 1.2rem;
      transform: translateX(24px);
      opacity: 0;
      animation: slideIn 0.8s forwards;
    }

    .mini-panel:nth-child(2) { animation-delay: .15s; }
    .mini-panel:nth-child(3) { animation-delay: .3s; }

    @keyframes slideIn {
      to {
        transform: translateX(0);
        opacity: 1;
      }
    }

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

    .mini-panel p {
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .hero-side-footer {
      margin-top: 1.4rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(15,118,110,0.12);
    }

    .hero-side-footer .tags {
      gap: 0.55rem;
    }

    .tag.soft-tag {
      background: rgba(15,118,110,0.08);
      color: var(--primary);
      border-radius: 999px;
      padding: 0.55rem 0.9rem;
      font-size: 0.85rem;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .section-block {
      padding: 3.5rem 0;
    }

    .soft-surface {
      background: var(--section);
      border: 1px solid rgba(15,118,110,0.08);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }

    .about-layout {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 1.5rem;
      align-items: stretch;
      overflow: hidden;
    }

    .about-aside {
      padding: 2.5rem;
      background:
        linear-gradient(160deg, rgba(15,118,110,0.08), rgba(255,255,255,0.9)),
        #f9fafb;
      border-right: 1px solid rgba(15,118,110,0.1);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .about-aside h2 {
      font-size: clamp(2rem, 3.4vw, 3.2rem);
      line-height: 1;
      margin-bottom: 1rem;
    }

    .about-aside p {
      line-height: 1.9;
      font-size: 1rem;
      max-width: 480px;
    }

    .about-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      margin-top: 2rem;
    }

    .metric {
      background: rgba(255,255,255,0.75);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 1.1rem;
      text-align: center;
    }

    .metric strong {
      display: block;
      font-family: 'Cormorant Garamond', serif;
      color: var(--primary);
      font-size: 2rem;
      text-transform: uppercase;
    }

    .metric span {
      font-size: 0.85rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .about-content {
      padding: 2.5rem;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.2rem;
      align-content: center;
    }

    .about-card {
      background: #ffffff;
      border: 1px solid rgba(15,118,110,0.1);
      border-radius: 20px;
      padding: 1.4rem;
      min-height: 180px;
      transition: transform .35s ease, box-shadow .35s ease;
    }

    .about-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 18px 40px rgba(15,118,110,0.08);
    }

    .about-card h3 {
      color: var(--primary);
      font-size: 1.25rem;
      margin-bottom: 0.6rem;
    }

    .about-card p {
      line-height: 1.75;
      font-size: 0.96rem;
    }

    .content-head {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 1.5rem;
      align-items: end;
      margin-bottom: 1.8rem;
    }

    .content-head h2 {
      font-size: clamp(2rem, 3.5vw, 3.4rem);
      line-height: 1;
    }

    .content-head p {
      max-width: 720px;
      line-height: 1.9;
      font-size: 1rem;
    }

    .carousel-shell {
      position: relative;
      background: var(--section);
      border: 1px solid rgba(15,118,110,0.08);
      border-radius: var(--radius-xl);
      padding: 1.4rem;
      overflow: hidden;
    }

    .carousel-track {
      display: flex;
      gap: 1.2rem;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      padding-bottom: 0.5rem;
    }

    .carousel-track::-webkit-scrollbar {
      height: 10px;
    }

    .carousel-track::-webkit-scrollbar-thumb {
      background: rgba(15,118,110,0.22);
      border-radius: 999px;
    }

    .post-card {
      flex: 0 0 360px;
      scroll-snap-align: start;
      background: #ffffff;
      border: 1px solid rgba(15,118,110,0.1);
      border-radius: 26px;
      overflow: hidden;
      box-shadow: 0 16px 40px rgba(15,118,110,0.06);
      transition: transform .35s ease, box-shadow .35s ease;
      display: grid;
      grid-template-rows: 230px auto;
    }

    .post-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 50px rgba(15,118,110,0.1);
    }

    .post-card figure {
      margin: 0;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(15,118,110,0.12), rgba(249,250,251,1));
    }

    .post-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(1.03) contrast(1.02);
    }

    .post-card-content {
      padding: 1.4rem;
      display: grid;
      gap: 0.8rem;
    }

    .post-card-content h3 {
      font-size: 1.35rem;
      line-height: 1.05;
    }

    .post-card-content p {
      line-height: 1.8;
      font-size: 0.96rem;
      min-height: 112px;
    }

    .card-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
    }

    .card-link:hover {
      color: var(--text);
    }

    .carousel-controls {
      display: flex;
      justify-content: flex-end;
      gap: 0.75rem;
      margin-top: 1rem;
    }

    .carousel-btn {
      width: 48px;
      height: 48px;
      border-radius: 999px;
      border: 1.5px solid var(--primary);
      background: transparent;
      color: var(--primary);
      font-size: 1.25rem;
      cursor: pointer;
      transition: all .3s ease;
    }

    .carousel-btn:hover {
      background: rgba(15,118,110,0.06);
      transform: translateY(-2px);
    }

    .footer-rich {
      margin: 3rem 0 2rem;
      background:
        linear-gradient(135deg, rgba(15,118,110,0.08), rgba(249,250,251,0.95)),
        #f9fafb;
      border: 1px solid rgba(15,118,110,0.08);
      border-radius: var(--radius-xl);
      padding: 2.4rem;
      box-shadow: var(--shadow);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.8fr 0.9fr 1fr;
      gap: 1.5rem;
    }

    .footer-brand h3,
    .footer-col h4 {
      font-size: 1.45rem;
      margin-bottom: 0.8rem;
      color: var(--text);
    }

    .footer-brand p,
    .footer-col p,
    .footer-col li,
    .footer-col a {
      color: var(--muted);
      line-height: 1.8;
      font-size: 0.96rem;
    }

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

    .footer-menu,
    .footer-list {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .footer-menu li,
    .footer-list li {
      margin-bottom: 0.5rem;
    }

    .footer-highlight {
      background: rgba(255,255,255,0.72);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 1.2rem;
    }

    .footer-bottom {
      margin-top: 1.6rem;
      padding-top: 1rem;
      border-top: 1px solid rgba(15,118,110,0.12);
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-bottom p {
      margin: 0;
      color: var(--muted);
      font-size: 0.92rem;
    }

    @media screen and (max-width: 1215px) {
      .hero-slider,
      .about-layout,
      .content-head,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .hero-slide {
        grid-template-columns: 1fr;
      }

      .about-content {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media screen and (max-width: 768px) {
      .page-shell {
        padding: 0 0.9rem;
      }

      .navbar {
        border-radius: 24px;
        max-width: 100%;
      }

      .navbar-menu {
        box-shadow: none;
        background: transparent;
      }

      .hero-main {
        min-height: 720px;
      }

      .hero-slide {
        padding: 1.7rem;
      }

      .hero-title {
        font-size: 2.3rem;
      }

      .hero-side,
      .about-aside,
      .about-content,
      .footer-rich {
        padding: 1.4rem;
      }

      .about-content,
      .about-metrics {
        grid-template-columns: 1fr;
      }

      .post-card {
        flex-basis: 86%;
      }

      .footer-bottom {
        flex-direction: column;
      }
    }
