@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&family=Outfit:wght@400;700&display=swap");

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

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

    html, body {
      height: 100%;
    }

    body {
      font-family: 'Raleway', sans-serif;
      color: var(--brown);
      background-color: var(--cream);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      height: auto;
      display: block;
    }

    header {
      background-color: var(--cream);
      border-bottom: 1px solid var(--border-gray);
      padding: 2rem 2rem;
      position: sticky;
      top: 0;
      z-index: 100;
    }

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

    .logo {
      font-family: 'Outfit', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--brown);
      text-decoration: none;
      letter-spacing: 0.05em;
    }

    nav {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
      align-items: flex-start;
    }

    nav a {
      font-size: 0.95rem;
      color: var(--brown);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
      padding-bottom: 0.1rem;
    }

    nav a:hover {
      border-bottom: 1px solid var(--rose);
    }

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

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

    section {
      padding: 4rem 0;
    }

    h1 {
      font-family: 'Outfit', sans-serif;
      font-size: 3.5rem;
      font-weight: 700;
      color: var(--brown);
      margin-bottom: 1rem;
      letter-spacing: -0.02em;
    }

    h2 {
      font-family: 'Outfit', sans-serif;
      font-size: 2.2rem;
      font-weight: 700;
      color: var(--brown);
      margin-bottom: 0.8rem;
      letter-spacing: -0.01em;
    }

    h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 1.3rem;
      font-weight: 700;
      color: var(--brown);
      margin-bottom: 0.6rem;
    }

    p {
      font-size: 1rem;
      color: var(--brown);
      margin-bottom: 1.2rem;
    }

    .subtitle {
      font-size: 1.15rem;
      color: var(--rose);
      font-weight: 400;
      margin-bottom: 2rem;
      line-height: 1.5;
    }

    .cta-button {
      display: inline-block;
      background-color: var(--rose);
      color: var(--cream);
      padding: 0.9rem 2rem;
      text-decoration: none;
      font-weight: 700;
      font-size: 0.95rem;
      border: 1px solid var(--rose);
      transition: all 0.3s ease;
      cursor: pointer;
      font-family: 'Raleway', sans-serif;
    }

    .cta-button:hover {
      background-color: transparent;
      color: var(--rose);
    }

    /* Hero Section */
    #hero {
      padding: 6rem 0;
      text-align: center;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      min-height: 50vh;
    }

    #hero h1 {
      margin-bottom: 1.5rem;
    }

    #hero .subtitle {
      max-width: 600px;
      margin: 0 auto 2.5rem;
      font-size: 1.2rem;
    }

    #hero .cta-button {
      margin-top: 1rem;
    }

    /* Studio Overview Section */
    #studio_overview {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    #studio_overview .content {
      padding-right: 2rem;
    }

    #studio_overview .content p {
      font-size: 1rem;
      line-height: 1.7;
    }

    #studio_overview .image-container {
      position: relative;
      height: 400px;
      overflow: hidden;
      border: 1px solid var(--border-gray);
    }

    #studio_overview .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Coverage Stats Section */
    #coverage_stats {
      background-color: var(--light-gray);
      padding: 4rem 2rem;
      margin: 0 -2rem;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      text-align: center;
    }

    .stat-item {
      padding: 1.5rem;
    }

    .stat-number {
      font-family: 'Outfit', sans-serif;
      font-size: 3rem;
      font-weight: 700;
      color: var(--rose);
      margin-bottom: 0.5rem;
    }

    .stat-label {
      font-size: 0.95rem;
      color: var(--brown);
      font-weight: 400;
    }

    /* Craft Focus Section */
    #craft_focus {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    #craft_focus .image-container {
      position: relative;
      height: 450px;
      overflow: hidden;
      border: 1px solid var(--border-gray);
      order: -1;
    }

    #craft_focus .image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    #craft_focus .content {
      padding-left: 2rem;
    }

    #craft_focus .content p {
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    /* Closing CTA Section */
    #closing_cta {
      text-align: center;
      padding: 5rem 2rem;
      background-color: var(--light-gray);
      margin: 0 -2rem;
    }

    #closing_cta h2 {
      margin-bottom: 1rem;
    }

    #closing_cta .subtitle {
      margin: 1rem auto 2rem;
      max-width: 500px;
    }

    #closing_cta .button-group {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* Footer */
    footer {
      background-color: var(--brown);
      color: var(--cream);
      margin-top: 4rem;
      padding: 3rem 2rem 2rem;
    }

    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 2rem;
      margin-bottom: 2rem;
    }

    .footer-col h3 {
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 1rem;
      color: var(--cream);
    }

    .footer-col p {
      font-size: 0.85rem;
      line-height: 1.6;
      color: var(--cream);
      margin-bottom: 0.8rem;
    }

    .footer-col a {
      display: block;
      font-size: 0.85rem;
      color: var(--cream);
      text-decoration: none;
      margin-bottom: 0.6rem;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
      padding-bottom: 0.1rem;
    }

    .footer-col a:hover {
      border-bottom: 1px solid var(--rose);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 251, 235, 0.2);
      padding-top: 1.5rem;
      text-align: center;
      font-size: 0.85rem;
      color: var(--cream);
    }

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

      h2 {
        font-size: 1.6rem;
      }

      .header-container {
        flex-direction: column;
        gap: 1rem;
      }

      #studio_overview,
      #craft_focus {
        grid-template-columns: 1fr;
        gap: 2rem;
      }

      #studio_overview .content,
      #craft_focus .content {
        padding: 0;
      }

      #craft_focus .image-container {
        order: 0;
      }

      #coverage_stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .stat-number {
        font-size: 2.2rem;
      }

      .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
      }

      section {
        padding: 3rem 0;
      }

      #hero {
        padding: 4rem 0;
        min-height: auto;
      }
    }

    @media (max-width: 480px) {
      h1 {
        font-size: 1.8rem;
      }

      h2 {
        font-size: 1.3rem;
      }

      section {
        padding: 2rem 0;
      }

      #coverage_stats {
        padding: 2rem 1rem;
        margin: 0 -2rem;
      }

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

      #closing_cta .button-group {
        flex-direction: column;
        gap: 0.8rem;
      }

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