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

:root {
      --primary: #be185d;
      --cream: #fffbeb;
      --dark: #451a03;
      --border: #e5d4c1;
      --text: #2d1810;
      --light-bg: #faf8f5;
    }

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

    html, body {
      height: 100%;
    }

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

    h1, h2, h3, h4, h5, h6 {
      font-family: 'Nunito', sans-serif;
      font-weight: 700;
      letter-spacing: -0.5px;
    }

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

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

    h3 {
      font-size: 1.4rem;
      margin-bottom: 0.75rem;
    }

    p {
      font-size: 1rem;
      margin-bottom: 1rem;
      line-height: 1.7;
    }

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

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

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

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

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

    .logo {
      font-family: 'Nunito', sans-serif;
      font-size: 1.2rem;
      font-weight: 700;
      color: var(--dark);
      letter-spacing: -0.5px;
    }

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

    nav a {
      font-size: 0.95rem;
      font-weight: 600;
      color: var(--text);
      border-bottom: 2px solid transparent;
      padding-bottom: 0.25rem;
      transition: border-color 0.2s ease;
    }

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

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

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

    section {
      margin: 4rem 0;
    }

    /* Hero Section */
    .hero {
      position: relative;
      height: 500px;
      border: 1px solid var(--border);
      overflow: hidden;
      margin-bottom: 4rem;
      display: flex;
      align-items: flex-end;
    }

    .hero-image {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
    }

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

    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 100%);
      z-index: 2;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      padding: 2rem;
      color: white;
      max-width: 600px;
    }

    .hero-content h1 {
      color: white;
      margin-bottom: 0.5rem;
    }

    .hero-content .subheading {
      font-size: 1.3rem;
      font-weight: 300;
      letter-spacing: 0.5px;
    }

    /* Two-Column Feature */
    .feature-block {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
      margin: 4rem 0;
      padding: 2rem;
      background-color: var(--light-bg);
      border: 1px solid var(--border);
    }

    .feature-block.reverse {
      direction: rtl;
    }

    .feature-block.reverse > * {
      direction: ltr;
    }

    .feature-text h2 {
      color: var(--dark);
      margin-bottom: 1rem;
    }

    .feature-text p {
      color: var(--text);
      margin-bottom: 1.5rem;
    }

    .feature-image {
      height: 350px;
      border: 1px solid var(--border);
      overflow: hidden;
    }

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

    /* Card Grid */
    .card-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      margin: 3rem 0;
    }

    .card {
      border: 1px solid var(--border);
      padding: 2rem;
      background-color: white;
      transition: border-color 0.2s ease;
    }

    .card:hover {
      border-color: var(--primary);
    }

    .card h3 {
      color: var(--dark);
      margin-bottom: 1rem;
    }

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

    /* Trust Strip */
    .trust-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin: 3rem 0;
      padding: 2rem;
      background-color: var(--dark);
      color: var(--cream);
      border: 1px solid var(--border);
    }

    .trust-item {
      text-align: center;
    }

    .trust-item .number {
      font-size: 2.5rem;
      font-weight: 700;
      font-family: 'Nunito', sans-serif;
      color: var(--primary);
      margin-bottom: 0.5rem;
    }

    .trust-item .label {
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      text-transform: uppercase;
    }

    /* Section Header */
    .section-header {
      text-align: center;
      margin-bottom: 2rem;
    }

    .section-header h2 {
      color: var(--dark);
      margin-bottom: 0.5rem;
    }

    .section-header .subheading {
      font-size: 1.1rem;
      color: var(--primary);
      font-weight: 400;
    }

    /* Contact Form */
    .contact-section {
      max-width: 600px;
      margin: 3rem auto;
      padding: 2rem;
      border: 1px solid var(--border);
      background-color: var(--light-bg);
    }

    .contact-section h2 {
      color: var(--dark);
      margin-bottom: 1.5rem;
      text-align: center;
    }

    .form-group {
      margin-bottom: 1.5rem;
    }

    .form-group label {
      display: block;
      font-weight: 600;
      margin-bottom: 0.5rem;
      color: var(--dark);
      font-size: 0.95rem;
    }

    .form-group input,
    .form-group textarea {
      width: 100%;
      padding: 0.75rem;
      border: 1px solid var(--border);
      font-family: 'Lato', sans-serif;
      font-size: 0.95rem;
      color: var(--text);
      background-color: white;
    }

    .form-group textarea {
      resize: vertical;
      min-height: 120px;
    }

    .form-group input:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: inset 0 0 0 1px var(--primary);
    }

    .btn {
      display: inline-block;
      padding: 0.75rem 2rem;
      background-color: var(--primary);
      color: white;
      border: none;
      font-family: 'Lato', sans-serif;
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      transition: background-color 0.2s ease;
      width: 100%;
      text-align: center;
    }

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

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

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

    .footer-column h4 {
      font-family: 'Nunito', sans-serif;
      font-size: 1rem;
      margin-bottom: 1rem;
      color: var(--cream);
    }

    .footer-column p {
      font-size: 0.9rem;
      line-height: 1.6;
      margin-bottom: 0.5rem;
    }

    .footer-column a {
      color: var(--primary);
      font-size: 0.9rem;
      display: block;
      margin-bottom: 0.5rem;
    }

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

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

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

      h2 {
        font-size: 1.6rem;
      }

      .header-inner {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
      }

      nav {
        gap: 1.5rem;
        font-size: 0.9rem;
      }

      .hero {
        height: 350px;
      }

      .feature-block {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .trust-strip {
        grid-template-columns: 1fr;
        gap: 1rem;
      }

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

      main {
        padding: 0 1rem;
      }

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