
 :root {
      --bg:#629f74;
;
      --text: #152614;
      --muted: #152614;
      --card: #152614;
      --maxw: 1000px;
      --gap: 20px;
    }

    body, html {
      margin: 1vh;
      padding: 1vh;
      background: var(--bg);
      color: var(--text);
      font-family: "EB Garamond", sans-serif;
    }

    .profile img {
    width: 50%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
    margin: 16px 0;
    }

    .container {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 20px;
    }

    header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
    }

    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: var(--text);
    }
    .logo img {
      width: 70px;
      height: 70px;
      object-fit: cover;
      border-radius: 6px;
      margin-right: 12px;
    }
    .logo-text {
      line-height: 1.2;
    }
    .logo-text h1 {
      margin: 0;
      font-size: 6vw;
      letter-spacing: 1px;
      font-weight: 520;
      font-family: "EB Garamond", sans-serif;
    }
    .logo-text span {
      font-size: 14px;
      color: var(--muted);
    }

     .section-title {
      display: flex;
      align-items: center;
      text-decoration: none;
      color: var(--text);
      line-height: 1.2;
    }

    .section-title h1 {
      margin: 0;
      font-size: 5vw;
      letter-spacing: 1px;
    }

    nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      gap: 16px;
    }
    nav a {
      text-decoration: none;
      color: var(--text);
      font-weight: 600;
    }

    /* Hero / Slideshow */

    .slides {
      position: relative;
      overflow: hidden;
      border-radius: 8px;
      height: 400px;
    }
    .slide {
      position: absolute;
      top: 0; left: 0; width: 100%; height: 100%;
      opacity: 0;
      transition: opacity 0.6s ease;
    }
    .slide.active {
      opacity: 1;
      position: relative;
    }
    .slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    /* Main + Sidebar */
    .layout {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 32px;
    }
    @media (max-width: 800px) {
      .layout {
        grid-template-columns: 1fr;
      }
      .hero-text {
        position: static;
        background: transparent;
        padding: 0;
        max-width: 100%;
      }
    }

    .card {
      background: var(--card);
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      margin-bottom: 24px;
    }

    .story img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      border-radius: 6px;
      margin: 16px 0;
    }

    .sidebar .contact {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .sidebar .contact h3 {
      margin: 0 0 8px;
    }
    .sidebar .contact a {
      color: var(--text);
      text-decoration: none;
    }
    .sidebar .socials {
      display: flex;
      gap: 12px;
      margin-top: 8px;
    }
    .sidebar .socials img {
      width: 28px;
      height: 28px;
      object-fit: contain;
    }

    footer {
      text-align: center;
      color: var(--muted);
      font-size: 14px;
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid #152614;
    }
