:root {
      --bg: #fdf2f8;
      --section: #fff7ed;
      --primary: #fb7185;
      --text: #4a044e;
      --shadow-light: rgba(255,255,255,0.9);
      --shadow-dark: rgba(251, 113, 133, 0.18);
      --border-soft: rgba(74, 4, 78, 0.08);
      --noise-opacity: 0.08;
      --radius-xl: 32px;
      --radius-lg: 24px;
      --radius-md: 18px;
      --radius-sm: 14px;
      --sidebar-w: 290px;
      --transition: 220ms ease;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: 'Nunito', sans-serif;
      background:
        radial-gradient(circle at 20% 20%, rgba(251,113,133,0.08), transparent 24%),
        radial-gradient(circle at 80% 10%, rgba(251,113,133,0.05), transparent 20%),
        radial-gradient(circle at 70% 80%, rgba(74,4,78,0.04), transparent 18%),
        var(--bg);
      color: var(--text);
      min-height: 100vh;
      overflow-x: hidden;
      position: relative;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: var(--noise-opacity);
      background-image:
        linear-gradient(0deg, transparent 24%, rgba(74,4,78,0.08) 25%, transparent 26%, transparent 74%, rgba(74,4,78,0.08) 75%, transparent 76%),
        linear-gradient(90deg, transparent 24%, rgba(74,4,78,0.08) 25%, transparent 26%, transparent 74%, rgba(74,4,78,0.08) 75%, transparent 76%);
      background-size: 4px 4px;
      z-index: 0;
    }

    a {
      color: inherit;
    }

    .page-shell {
      position: relative;
      z-index: 1;
      display: flex;
      min-height: 100vh;
    }

    .sidebar {
      width: var(--sidebar-w);
      flex-shrink: 0;
      padding: 1.5rem;
      position: sticky;
      top: 0;
      height: 100vh;
    }

    .neu-panel {
      background: linear-gradient(145deg, #fff8fb, #fdf0f5);
      border-radius: var(--radius-xl);
      box-shadow:
        14px 14px 30px var(--shadow-dark),
        -14px -14px 30px var(--shadow-light);
      border: 1px solid rgba(255,255,255,0.65);
    }

    .sidebar-card {
      height: 100%;
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      background: linear-gradient(160deg, #fff7ed 0%, #fdf2f8 100%);
    }

    .brand-mark {
      display: flex;
      align-items: center;
      gap: 0.9rem;
    }

    .brand-icon {
      width: 62px;
      height: 62px;
      border-radius: 20px;
      display: grid;
      place-items: center;
      font-size: 1.6rem;
      color: var(--primary);
      background: linear-gradient(145deg, #fffaf5, #fbe7f0);
      box-shadow:
        inset 4px 4px 8px rgba(251,113,133,0.12),
        inset -4px -4px 8px rgba(255,255,255,0.9),
        8px 8px 16px rgba(251,113,133,0.12),
        -8px -8px 16px rgba(255,255,255,0.9);
    }

    .brand-copy h1,
    .sidebar h2,
    .sidebar h3,
    .section-title,
    .hero-title,
    .card-title,
    .footer-title {
      text-transform: uppercase;
      font-weight: 900;
      letter-spacing: 0.05em;
    }

    .brand-copy h1 {
      margin: 0;
      font-size: 1.15rem;
      line-height: 1.1;
      color: var(--text);
    }

    .brand-copy p {
      margin: 0.2rem 0 0;
      font-size: 0.92rem;
      color: rgba(74,4,78,0.72);
    }

    .menu-box {
      padding: 1rem;
      border-radius: var(--radius-lg);
      background: rgba(255,255,255,0.35);
      box-shadow:
        inset 6px 6px 14px rgba(251,113,133,0.08),
        inset -6px -6px 14px rgba(255,255,255,0.9);
    }

    .sidebar-nav {
      display: flex;
      flex-direction: column;
      gap: 0.85rem;
    }

    .sidebar-link {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.9rem 1rem;
      border-radius: 999px;
      text-decoration: none;
      color: var(--text);
      font-weight: 800;
      background: linear-gradient(145deg, #fffaf7, #fceef4);
      box-shadow:
        7px 7px 14px rgba(251,113,133,0.12),
        -7px -7px 14px rgba(255,255,255,0.92);
      transition: transform var(--transition), box-shadow var(--transition), color var(--transition);
    }

    .sidebar-link:hover,
    .sidebar-link:focus {
      transform: translateY(-2px) scale(1.01);
      color: var(--primary);
      box-shadow:
        10px 10px 18px rgba(251,113,133,0.16),
        -8px -8px 18px rgba(255,255,255,0.95);
    }

    .sidebar-badge {
      font-size: 0.78rem;
      padding: 0.25rem 0.6rem;
      border-radius: 999px;
      color: var(--primary);
      background: rgba(251,113,133,0.12);
    }

    .sidebar-note {
      margin-top: auto;
      padding: 1.1rem;
      border-radius: var(--radius-lg);
      background: linear-gradient(145deg, rgba(255,255,255,0.55), rgba(255,247,237,0.82));
      box-shadow:
        inset 5px 5px 10px rgba(251,113,133,0.08),
        inset -5px -5px 10px rgba(255,255,255,0.9);
    }

    .sidebar-note p {
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.6;
      color: rgba(74,4,78,0.8);
    }

    .main-content {
      flex: 1;
      padding: 1.5rem 1.5rem 2rem 0.5rem;
    }

    .content-inner {
      display: grid;
      gap: 1.6rem;
      grid-template-columns: 1.2fr 0.8fr;
      grid-template-areas:
        "hero about"
        "carousel carousel"
        "footer footer";
    }

    .hero-section {
      grid-area: hero;
      position: relative;
      overflow: hidden;
      padding: 2rem;
      border-radius: 38px;
      min-height: 420px;
      background:
        linear-gradient(135deg, rgba(255,247,237,0.95) 0%, rgba(253,242,248,0.98) 45%, rgba(251,113,133,0.18) 100%);
      box-shadow:
        16px 16px 32px rgba(251,113,133,0.16),
        -16px -16px 32px rgba(255,255,255,0.95);
      border: 1px solid rgba(255,255,255,0.7);
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      align-items: center;
      gap: 1.5rem;
    }

    .hero-section::after {
      content: "";
      position: absolute;
      width: 260px;
      height: 260px;
      right: -40px;
      top: -40px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(251,113,133,0.22), rgba(251,113,133,0.02) 70%);
      filter: blur(8px);
    }

    .hero-kicker {
      display: inline-flex;
      align-items: center;
      gap: 0.55rem;
      padding: 0.55rem 0.9rem;
      border-radius: 999px;
      background: rgba(255,255,255,0.55);
      color: var(--primary);
      font-weight: 900;
      margin-bottom: 1rem;
      box-shadow:
        inset 3px 3px 6px rgba(251,113,133,0.08),
        inset -3px -3px 6px rgba(255,255,255,0.9);
    }

    .hero-title {
      margin: 0;
      font-size: clamp(2rem, 4vw, 4rem);
      line-height: 0.95;
      color: var(--text);
    }

    .hero-text {
      margin: 1.25rem 0 1.5rem;
      font-size: 1.05rem;
      line-height: 1.8;
      max-width: 34rem;
      color: rgba(74,4,78,0.82);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
    }

    .btn-rounded {
      border: 0;
      border-radius: 999px;
      padding: 0.9rem 1.35rem;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
    }

    .btn-primary {
      background: linear-gradient(145deg, #fb7185, #ff8fa0);
      color: #fff7ed;
      box-shadow:
        10px 10px 22px rgba(251,113,133,0.28),
        -8px -8px 18px rgba(255,255,255,0.88);
    }

    .btn-secondary {
      background: linear-gradient(145deg, #fffaf7, #fceef4);
      color: var(--text);
      box-shadow:
        10px 10px 22px rgba(251,113,133,0.12),
        -8px -8px 18px rgba(255,255,255,0.9);
    }

    .btn-rounded:hover,
    .btn-rounded:focus {
      transform: translateY(-2px) scale(1.02);
    }

    .hero-visual {
      position: relative;
      display: grid;
      place-items: center;
    }

    .flower-orbit {
      width: min(100%, 320px);
      aspect-ratio: 1;
      border-radius: 34px;
      background: linear-gradient(145deg, #fffaf6, #fbe7ef);
      box-shadow:
        inset 8px 8px 18px rgba(251,113,133,0.08),
        inset -8px -8px 18px rgba(255,255,255,0.95),
        14px 14px 28px rgba(251,113,133,0.13),
        -12px -12px 28px rgba(255,255,255,0.95);
      position: relative;
      overflow: hidden;
    }

    .flower-orbit::before,
    .flower-orbit::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      background: rgba(251,113,133,0.16);
      animation: floaty 5s ease-in-out infinite;
    }

    .flower-orbit::before {
      width: 110px;
      height: 110px;
      top: 18px;
      right: 24px;
    }

    .flower-orbit::after {
      width: 70px;
      height: 70px;
      bottom: 28px;
      left: 24px;
      animation-delay: 1.1s;
    }

    .flower-center {
      position: absolute;
      inset: 50%;
      transform: translate(-50%, -50%);
      width: 132px;
      height: 132px;
      border-radius: 50%;
      background: radial-gradient(circle, #fff7ed 0%, #ffd4de 58%, #fb7185 100%);
      box-shadow:
        0 0 0 16px rgba(255,255,255,0.5),
        0 24px 34px rgba(251,113,133,0.18);
    }

    .petal {
      position: absolute;
      width: 88px;
      height: 88px;
      background: linear-gradient(145deg, #ffdce5, #fff5f7);
      border-radius: 60% 60% 60% 0;
      left: 50%;
      top: 50%;
      transform-origin: 0 0;
      box-shadow:
        8px 8px 16px rgba(251,113,133,0.14),
        -5px -5px 12px rgba(255,255,255,0.92);
    }

    .petal.p1 { transform: rotate(0deg) translate(35px, -22px); }
    .petal.p2 { transform: rotate(60deg) translate(35px, -22px); }
    .petal.p3 { transform: rotate(120deg) translate(35px, -22px); }
    .petal.p4 { transform: rotate(180deg) translate(35px, -22px); }
    .petal.p5 { transform: rotate(240deg) translate(35px, -22px); }
    .petal.p6 { transform: rotate(300deg) translate(35px, -22px); }

    .about-section {
      grid-area: about;
      padding: 1.7rem;
      background: var(--section);
      border-radius: 34px;
      box-shadow:
        14px 14px 28px rgba(251,113,133,0.12),
        -14px -14px 28px rgba(255,255,255,0.92);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 1.2rem;
    }

    .section-title {
      margin: 0 0 0.75rem;
      font-size: 1.15rem;
      color: var(--primary);
    }

    .about-text {
      margin: 0;
      font-size: 1rem;
      line-height: 1.8;
      color: rgba(74,4,78,0.84);
    }

    .about-stats {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.85rem;
    }

    .stat-box {
      padding: 1rem;
      border-radius: 22px;
      background: linear-gradient(145deg, #fffaf5, #fdf0f5);
      box-shadow:
        inset 5px 5px 10px rgba(251,113,133,0.08),
        inset -5px -5px 10px rgba(255,255,255,0.9);
    }

    .stat-box strong {
      display: block;
      font-size: 1.5rem;
      color: var(--primary);
      font-weight: 900;
    }

    .stat-box span {
      font-size: 0.92rem;
      color: rgba(74,4,78,0.76);
      font-weight: 700;
    }

    .carousel-section {
      grid-area: carousel;
      padding: 1.6rem;
      background: var(--section);
      border-radius: 36px;
      box-shadow:
        16px 16px 30px rgba(251,113,133,0.12),
        -16px -16px 30px rgba(255,255,255,0.95);
      overflow: hidden;
    }

    .carousel-head {
      display: grid;
      grid-template-columns: 1fr auto;
      align-items: end;
      gap: 1rem;
      margin-bottom: 1.2rem;
    }

    .carousel-head p {
      margin: 0.45rem 0 0;
      color: rgba(74,4,78,0.76);
      line-height: 1.7;
    }

    .carousel-controls {
      display: flex;
      gap: 0.7rem;
    }

    .control-btn {
      width: 48px;
      height: 48px;
      border: 0;
      border-radius: 50%;
      font-size: 1.2rem;
      font-weight: 900;
      color: var(--text);
      background: linear-gradient(145deg, #fffaf7, #fceef4);
      box-shadow:
        8px 8px 16px rgba(251,113,133,0.12),
        -8px -8px 16px rgba(255,255,255,0.92);
      cursor: pointer;
      transition: transform var(--transition), color var(--transition), box-shadow var(--transition);
    }

    .control-btn:hover,
    .control-btn:focus {
      color: var(--primary);
      transform: translateY(-2px);
    }

    .carousel-wrap {
      overflow: hidden;
      border-radius: 28px;
    }

    .carousel-track {
      display: flex;
      gap: 1.2rem;
      transition: transform 450ms ease;
      will-change: transform;
    }

    .post-card {
      min-width: calc(33.333% - 0.8rem);
      background: linear-gradient(160deg, #fffaf6, #fdf1f6);
      border-radius: 28px;
      padding: 1rem;
      box-shadow:
        12px 12px 24px rgba(251,113,133,0.12),
        -12px -12px 24px rgba(255,255,255,0.95);
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: transform var(--transition), box-shadow var(--transition);
    }

    .post-card:hover {
      transform: translateY(-4px);
      box-shadow:
        16px 16px 28px rgba(251,113,133,0.16),
        -12px -12px 24px rgba(255,255,255,0.98);
    }

    .post-image {
      position: relative;
      overflow: hidden;
      border-radius: 22px;
      border: 3px solid rgba(251,113,133,0.28);
      background: #fff7ed;
      aspect-ratio: 4 / 3;
    }

    .post-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 300ms ease;
    }

    .post-card:hover .post-image img {
      transform: scale(1.04);
    }

    .card-title {
      margin: 0;
      font-size: 1.05rem;
      line-height: 1.35;
      color: var(--text);
    }

    .post-excerpt {
      margin: 0;
      color: rgba(74,4,78,0.8);
      line-height: 1.75;
      flex-grow: 1;
    }

    .read-more {
      align-self: flex-start;
      text-decoration: none;
      color: var(--primary);
      font-weight: 900;
      padding: 0.75rem 1rem;
      border-radius: 999px;
      background: rgba(251,113,133,0.12);
      transition: transform var(--transition), background var(--transition);
    }

    .read-more:hover,
    .read-more:focus {
      transform: translateX(4px);
      background: rgba(251,113,133,0.18);
    }

    .site-footer {
      grid-area: footer;
      padding: 1.8rem;
      background: var(--section);
      border-radius: 34px;
      box-shadow:
        16px 16px 30px rgba(251,113,133,0.12),
        -16px -16px 30px rgba(255,255,255,0.95);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr 0.8fr;
      gap: 1.2rem;
    }

    .footer-col {
      padding: 1rem;
      border-radius: 24px;
      background: linear-gradient(145deg, #fffaf6, #fdf0f5);
      box-shadow:
        inset 5px 5px 10px rgba(251,113,133,0.07),
        inset -5px -5px 10px rgba(255,255,255,0.9);
    }

    .footer-title {
      margin: 0 0 0.9rem;
      font-size: 1rem;
      color: var(--primary);
    }

    .footer-col p,
    .footer-col li,
    .footer-col a {
      color: rgba(74,4,78,0.8);
      line-height: 1.8;
      text-decoration: none;
      font-weight: 700;
    }

    .footer-col ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .footer-col li + li {
      margin-top: 0.4rem;
    }

    .footer-bottom {
      margin-top: 1rem;
      text-align: center;
      color: rgba(74,4,78,0.7);
      font-weight: 800;
      font-size: 0.95rem;
    }

    @keyframes floaty {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    @media screen and (max-width: 1215px) {
      .content-inner {
        grid-template-columns: 1fr;
        grid-template-areas:
          "hero"
          "about"
          "carousel"
          "footer";
      }

      .hero-section {
        grid-template-columns: 1fr;
        min-height: auto;
      }

      .main-content {
        padding-left: 0;
      }
    }

    @media screen and (max-width: 1023px) {
      .page-shell {
        flex-direction: column;
      }

      .sidebar {
        width: 100%;
        height: auto;
        position: relative;
        padding: 1rem 1rem 0;
      }

      .sidebar-card {
        height: auto;
      }

      .main-content {
        padding: 1rem;
      }

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

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

    @media screen and (max-width: 768px) {
      .about-stats {
        grid-template-columns: 1fr;
      }

      .carousel-head {
        grid-template-columns: 1fr;
      }

      .post-card {
        min-width: 100%;
      }

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

      .hero-section,
      .about-section,
      .carousel-section,
      .site-footer {
        border-radius: 28px;
      }
    }

    @media screen and (max-width: 520px) {
      .hero-section,
      .about-section,
      .carousel-section,
      .site-footer,
      .sidebar-card {
        padding: 1.2rem;
      }

      .hero-actions {
        flex-direction: column;
      }

      .btn-rounded {
        width: 100%;
      }

      .brand-mark {
        align-items: flex-start;
      }
    }
