@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&family=Plus+Jakarta+Sans:wght@600;700;800&family=Inter:wght@400;500;600&display=swap");

:root {
      --dusty-rose: #be185d;
      --cream: #fffbeb;
      --dark-brown: #451a03;
      --light-gray: #f5f5f5;
      --border-gray: #e5e5e5;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body {
      height: 100%;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: #333;
      background: #fff;
      line-height: 1.6;
    }

    /* Typography */
    h1, h2, h3 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      color: var(--dark-brown);
    }

    h1 {
      font-size: 3.5rem;
      line-height: 1.1;
    }

    h2 {
      font-size: 2.2rem;
      margin-bottom: 0.5rem;
    }

    h3 {
      font-size: 1.3rem;
      margin-bottom: 0.5rem;
    }

    /* Header & Navigation */
    header {
      background: #fff;
      border-bottom: 1px solid var(--border-gray);
      padding: 1.5rem 2rem;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header-container {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 1.5rem;
      font-weight: 800;
      color: var(--dark-brown);
      text-decoration: none;
    }

    nav {
      display: flex;
      gap: 2rem;
    }

    nav a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      font-size: 0.95rem;
      border-bottom: 2px solid transparent;
      transition: border-color 0.2s;
    }

    nav a:hover {
      border-bottom-color: var(--dusty-rose);
    }

    nav a.active {
      border-bottom-color: var(--dusty-rose);
      color: var(--dusty-rose);
    }

    /* Hero Section */
    #hero {
      position: relative;
      height: 500px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
    }

    #hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('img/asset-815b892eda01.jpg') center/cover;
      z-index: -2;
    }

    #hero::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0.4);
      z-index: -1;
    }

    .hero-content {
      z-index: 1;
      max-width: 700px;
      padding: 2rem;
    }

    .hero-content h1 {
      color: #fff;
      margin-bottom: 1rem;
    }

    .hero-content p {
      font-size: 1.3rem;
      color: #fff;
      font-weight: 500;
    }

    /* Main Content */
    main {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    section {
      padding: 4rem 0;
      border-bottom: 1px solid var(--border-gray);
    }

    section:last-of-type {
      border-bottom: none;
    }

    /* Latest Reviews Section */
    #latest_releases {
      padding: 4rem 0;
    }

    .review-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }

    .review-card {
      background: var(--light-gray);
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }

    .review-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    }

    .review-card-image {
      width: 100%;
      height: 200px;
      overflow: hidden;
    }

    .review-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .review-card-content {
      padding: 1.5rem;
    }

    .review-card-meta {
      font-size: 0.85rem;
      color: #999;
      margin-bottom: 0.5rem;
    }

    .review-card h3 {
      margin-bottom: 0.5rem;
      font-size: 1.2rem;
    }

    .review-card p {
      font-size: 0.95rem;
      color: #666;
      margin-bottom: 1rem;
    }

    .review-card a {
      color: var(--dusty-rose);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
    }

    .review-card a:hover {
      text-decoration: underline;
    }

    /* Publication Snapshot */
    #publication_snapshot {
      background: var(--cream);
      padding: 4rem 2rem;
      margin: 0 -2rem;
    }

    .snapshot-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .snapshot-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .snapshot-text h2 {
      margin-bottom: 1rem;
    }

    .snapshot-text p {
      margin-bottom: 1rem;
      color: #555;
      line-height: 1.8;
    }

    .snapshot-image {
      width: 100%;
      height: 300px;
      border-radius: 8px;
      overflow: hidden;
    }

    .snapshot-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .accent-number {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 5rem;
      font-weight: 800;
      color: var(--dusty-rose);
      opacity: 0.15;
      position: absolute;
      top: -20px;
      left: 0;
    }

    /* Methodology Intro */
    #methodology_intro {
      padding: 4rem 0;
    }

    .methodology-content {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .methodology-text h2 {
      margin-bottom: 1rem;
    }

    .methodology-text p {
      color: #555;
      margin-bottom: 1rem;
      line-height: 1.8;
    }

    .methodology-link {
      display: inline-block;
      color: var(--dusty-rose);
      text-decoration: none;
      font-weight: 600;
      margin-top: 1rem;
      border-bottom: 2px solid var(--dusty-rose);
      padding-bottom: 0.25rem;
    }

    .methodology-link:hover {
      opacity: 0.8;
    }

    .methodology-image {
      width: 100%;
      height: 300px;
      border-radius: 8px;
      overflow: hidden;
    }

    .methodology-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* CTA Section */
    #cta_section {
      background: var(--dark-brown);
      color: #fff;
      padding: 4rem 2rem;
      margin: 0 -2rem;
      text-align: center;
    }

    .cta-container {
      max-width: 600px;
      margin: 0 auto;
    }

    #cta_section h2 {
      color: #fff;
      margin-bottom: 1rem;
    }

    #cta_section p {
      color: #ddd;
      margin-bottom: 2rem;
      font-size: 1.05rem;
    }

    .cta-button {
      display: inline-block;
      background: var(--dusty-rose);
      color: #fff;
      padding: 1rem 2.5rem;
      border-radius: 4px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.3s;
      border: none;
      cursor: pointer;
      font-size: 1rem;
    }

    .cta-button:hover {
      background: #a01452;
    }

    /* Footer */
    footer {
      background: var(--light-gray);
      border-top: 1px solid var(--border-gray);
      padding: 3rem 2rem 2rem;
      margin-top: 4rem;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-col h4 {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--dark-brown);
    }

    .footer-col p {
      font-size: 0.9rem;
      color: #666;
      margin-bottom: 0.5rem;
      line-height: 1.6;
    }

    .footer-col a {
      display: block;
      color: var(--dusty-rose);
      text-decoration: none;
      font-size: 0.9rem;
      margin-bottom: 0.5rem;
    }

    .footer-col a:hover {
      text-decoration: underline;
    }

    .footer-bottom {
      border-top: 1px solid var(--border-gray);
      padding-top: 2rem;
      text-align: center;
      color: #999;
      font-size: 0.9rem;
    }

    /* Responsive */
    @media (max-width: 768px) {
      h1 {
        font-size: 2.5rem;
      }

      h2 {
        font-size: 1.8rem;
      }

      nav {
        gap: 1rem;
      }

      nav a {
        font-size: 0.85rem;
      }

      #hero {
        height: 350px;
      }

      .snapshot-content,
      .methodology-content {
        grid-template-columns: 1fr;
      }

      header {
        padding: 1rem 1.5rem;
      }

      main {
        padding: 0 1.5rem;
      }

      section {
        padding: 2.5rem 0;
      }

      #publication_snapshot,
      #cta_section {
        margin: 0 -1.5rem;
        padding: 3rem 1.5rem;
      }

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

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }
/* ── image safety ── */
img { max-width: 100%; height: auto; display: block; }
img[style*='width:'] { max-width: 100%; }
