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

:root {
      --color-rose: #be185d;
      --color-cream: #fffbeb;
      --color-brown: #451a03;
      --color-light-gray: #f5f3f0;
      --color-text: #2d1810;
      --color-border: #e8ddd5;
      --shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.08);
      --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
    }

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

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Roboto', system-ui, -apple-system, sans-serif;
      color: var(--color-text);
      background: var(--color-cream);
      line-height: 1.6;
    }

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

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

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

    .logo-cluster {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .logo-brand {
      font-family: 'Roboto Slab', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-brown);
      text-decoration: none;
    }

    .logo-tagline {
      font-size: 0.75rem;
      color: var(--color-rose);
      font-weight: 500;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

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

    nav a {
      text-decoration: none;
      color: var(--color-text);
      font-weight: 500;
      font-size: 0.95rem;
      transition: color 0.3s ease;
    }

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

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

    /* Main Content */
    main {
      flex: 1;
    }

    section {
      padding: 4rem 2rem;
    }

    .full-bleed {
      padding-left: 0;
      padding-right: 0;
    }

    .section-content {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    h1, h2 {
      font-family: 'Roboto Slab', serif;
      font-weight: 700;
      color: var(--color-brown);
      margin-bottom: 0.75rem;
    }

    h1 {
      font-size: 3rem;
      line-height: 1.2;
    }

    h2 {
      font-size: 2.25rem;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    h3 {
      font-family: 'Roboto Slab', serif;
      font-size: 1.25rem;
      color: var(--color-brown);
      margin-bottom: 0.5rem;
    }

    .subheading {
      font-size: 1.15rem;
      color: var(--color-text);
      max-width: 600px;
      line-height: 1.7;
      margin-bottom: 2rem;
    }

    p {
      margin-bottom: 1.5rem;
      line-height: 1.8;
      color: var(--color-text);
    }

    a {
      color: var(--color-rose);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    a:hover {
      color: var(--color-brown);
    }

    /* Buttons */
    .btn {
      display: inline-block;
      padding: 0.875rem 2rem;
      background: var(--color-rose);
      color: white;
      text-decoration: none;
      font-weight: 600;
      border: none;
      cursor: pointer;
      transition: background 0.3s ease, transform 0.2s ease;
      border-radius: 4px;
      font-size: 0.95rem;
    }

    .btn:hover {
      background: var(--color-brown);
      transform: translateY(-2px);
    }

    .btn-secondary {
      background: var(--color-brown);
      color: white;
    }

    .btn-secondary:hover {
      background: var(--color-rose);
    }

    /* Hero Section */
    #hero {
      background: var(--color-cream);
      padding: 6rem 2rem;
      text-align: left;
    }

    .hero-content {
      max-width: 700px;
    }

    #hero h1 {
      font-size: 3.5rem;
      margin-bottom: 1.5rem;
      color: var(--color-brown);
      line-height: 1.15;
    }

    #hero .subheading {
      font-size: 1.25rem;
      margin-bottom: 2.5rem;
      color: var(--color-text);
    }

    /* Why It Matters Section */
    #why_it_matters {
      background: var(--color-light-gray);
    }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      margin-top: 2rem;
    }

    .why-text h3 {
      margin-bottom: 1rem;
    }

    .why-text p {
      margin-bottom: 1rem;
    }

    .why-image {
      position: relative;
      height: 400px;
      overflow: hidden;
      border-radius: 8px;
      box-shadow: var(--shadow-medium);
    }

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

    /* Transformation Preview Section */
    #transformation_preview {
      background: var(--color-cream);
    }

    .transform-intro {
      text-align: center;
      margin-bottom: 3rem;
    }

    .transform-intro h2 {
      margin-bottom: 1rem;
    }

    .transform-gallery {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 2rem;
    }

    .transform-item {
      position: relative;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: var(--shadow-medium);
      height: 350px;
    }

    .transform-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .transform-label {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
      color: white;
      padding: 2rem 1.5rem 1.5rem;
      font-weight: 600;
      font-size: 1.1rem;
    }

    /* How We Work Section */
    #how_we_work {
      background: var(--color-light-gray);
    }

    .process-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 2rem;
      margin-top: 2rem;
    }

    .process-step {
      background: white;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: var(--shadow-soft);
      text-align: center;
    }

    .step-number {
      font-family: 'Roboto Slab', serif;
      font-size: 2.5rem;
      color: var(--color-rose);
      font-weight: 700;
      margin-bottom: 0.5rem;
    }

    .process-step h3 {
      margin-bottom: 1rem;
      color: var(--color-brown);
    }

    .process-step p {
      font-size: 0.95rem;
      color: var(--color-text);
    }

    /* Testimonials Section */
    #testimonial_trust {
      background: var(--color-cream);
    }

    .testimonial-intro {
      text-align: center;
      margin-bottom: 3rem;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 2rem;
      margin-top: 2rem;
    }

    .testimonial-card {
      background: white;
      padding: 2rem;
      border-radius: 8px;
      box-shadow: var(--shadow-soft);
      border-left: 4px solid var(--color-rose);
    }

    .testimonial-text {
      font-size: 0.95rem;
      color: var(--color-text);
      margin-bottom: 1.5rem;
      line-height: 1.8;
      font-style: italic;
    }

    .testimonial-author {
      font-weight: 600;
      color: var(--color-brown);
      font-size: 0.9rem;
    }

    .testimonial-role {
      font-size: 0.85rem;
      color: var(--color-rose);
    }

    /* CTA Footer Band */
    #cta_footer_band {
      background: var(--color-brown);
      color: white;
      text-align: center;
      padding: 5rem 2rem;
    }

    #cta_footer_band h2 {
      color: white;
      margin-bottom: 1rem;
    }

    #cta_footer_band .subheading {
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 2.5rem;
    }

    #cta_footer_band .btn {
      background: var(--color-rose);
      color: white;
    }

    #cta_footer_band .btn:hover {
      background: var(--color-cream);
      color: var(--color-brown);
    }

    /* Footer */
    footer {
      background: var(--color-brown);
      color: white;
    }

    .footer-top {
      max-width: 1200px;
      margin: 0 auto;
      padding: 3rem 2rem;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 3rem;
    }

    .footer-column h4 {
      font-family: 'Roboto Slab', serif;
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      color: white;
    }

    .footer-column p {
      font-size: 0.9rem;
      line-height: 1.8;
      margin-bottom: 1rem;
      color: rgba(255, 255, 255, 0.85);
    }

    .footer-column a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      display: block;
      margin-bottom: 0.75rem;
      font-size: 0.9rem;
      transition: color 0.3s ease;
    }

    .footer-column a:hover {
      color: var(--color-rose);
    }

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

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

      h2 {
        font-size: 1.75rem;
      }

      .header-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
      }

      nav {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
      }

      .why-grid,
      .transform-gallery,
      .process-grid,
      .testimonial-grid {
        grid-template-columns: 1fr;
      }

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

      #hero {
        padding: 4rem 2rem;
      }

      #hero h1 {
        font-size: 2.5rem;
      }

      .why-image {
        height: 300px;
      }

      section {
        padding: 3rem 2rem;
      }
    }

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

      h2 {
        font-size: 1.5rem;
      }

      .logo-brand {
        font-size: 1.25rem;
      }

      nav {
        gap: 0.75rem;
        font-size: 0.85rem;
      }

      .subheading {
        font-size: 1rem;
      }

      .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
      }
    }

    /* Display Structure */
    html, body {
      height: 100%;
    }

    body {
      display: flex;
      flex-direction: column;
    }

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