   :root {
      --warm-beige: #EAE3DC;
      --soft-white: #F7F5F2;
      --taupe: #B8ADA4;
      --charcoal: #2B2B2B;
      --sage: #A8B5A2;
    }

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

    body {
      font-family: 'Archivo Narrow', sans-serif;
      background: linear-gradient(180deg, var(--soft-white), var(--warm-beige));
      color: var(--charcoal);
      min-height: 100vh;
      padding: 28px 16px;
    }

    .page {
      width: 100%;
      max-width: 520px;
      margin: 0 auto;
    }

    .profile-card {
      background: rgba(247, 245, 242, 0.92);
      border: 1px solid rgba(184, 173, 164, 0.45);
      border-radius: 32px;
      padding: 30px 22px 24px;
      box-shadow: 0 20px 50px rgba(43, 43, 43, 0.08);
      text-align: center;
    }

    .logo-wrap {
  width: 115px;
  height: 115px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 22px;
}

    .logo-placeholder {
      font-family: 'Julius Sans One', sans-serif;
      font-size: 13px;
      letter-spacing: 1.5px;
      line-height: 1.2;
      text-align: center;
      padding: 8px;
    }

    /* Replace the placeholder above with your actual logo image like this:
       <img src="images/logo.png" alt="Vegan Strength Co. Logo" class="logo-img" />
    */
    .logo-img {
  width: 100%;
  height: auto;
  display: block;
}

    h1 {
       font-family: 'Julius Sans One', sans-serif;
  font-size: 34px;
  letter-spacing: 2px;
  line-height: 1.15;
  margin-bottom: 16px;
  color: #2B2B2B;
    }

    .tagline {
      font-size: 19px;
      line-height: 1.35;
      max-width: 390px;
      margin: 0 auto 18px;
      color: rgba(43, 43, 43, 0.82);
    }

    .mini-proof {
      display: inline-flex;
      gap: 8px;
      align-items: center;
      background: rgba(168, 181, 162, 0.22);
      border: 1px solid rgba(168, 181, 162, 0.55);
      border-radius: 999px;
      padding: 8px 14px;
      font-size: 16px;
      font-weight: 600;
      margin-bottom: 24px;
    }

    .section-label {
      font-family: 'Julius Sans One', sans-serif;
      font-size: 15px;
      letter-spacing: 1.4px;
      text-align: left;
      margin: 6px 4px 12px;
    }

    .products {
      display: grid;
      gap: 18px;
      text-align: left;
    }

    .product-card {
      display: grid;
      grid-template-columns: 120px 1fr;
      gap: 14px;
      align-items: center;
      min-height: 155px;
      background: var(--soft-white);
      border: 1px solid rgba(184, 173, 164, 0.55);
      border-radius: 24px;
      padding: 18px;
      text-decoration: none;
      color: var(--charcoal);
      transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
    }

    .product-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(43, 43, 43, 0.09);
      border-color: var(--sage);
    }

    .product-image {
      width: 110px;
      height: 110px;
      border-radius: 20px;
      object-fit: cover;
  border: 1px solid rgba(184, 173, 164, 0.4);
      background: linear-gradient(135deg, var(--warm-beige), rgba(168, 181, 162, 0.55));
      display: grid;
      place-items: center;
      font-family: 'Julius Sans One', sans-serif;
      font-size: 22px;
    }

    .product-title {
      font-size: 18px;
      font-weight: 700;
      margin-bottom: 6px;
      line-height: 1.1;
    }

    .product-desc {
      font-size: 16px;
      line-height: 1.25;
      color: rgba(43, 43, 43, 0.72);
      margin-bottom: 8px;
      max-width: 95%;
    }

    .product-footer {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-top: 12px;
      gap: 10px;
    }

    .price {
      font-size: 18px;
      font-weight: 700;
    }

    .button-text {
      background: var(--charcoal);
      color: var(--soft-white);
      border-radius: 999px;
      padding: 7px 12px;
      font-size: 14px;
      font-weight: 700;
      white-space: nowrap;
    }

    .coaching-cta {
      margin-top: 16px;
      display: block;
      background: var(--sage);
      color: var(--charcoal);
      border: 1px solid rgba(43, 43, 43, 0.12);
      text-align: center;
      border-radius: 999px;
      padding: 15px 18px;
      text-decoration: none;
      font-size: 19px;
      font-weight: 700;
      transition: transform 180ms ease, box-shadow 180ms ease;
    }

    .coaching-cta:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(43, 43, 43, 0.1);
    }

    .social-row {
      display: flex;
      justify-content: center;
      gap: 14px;
      margin-top: 22px;
      flex-wrap: wrap;
    }

    .social-row a {
      color: var(--charcoal);
      text-decoration: none;
      font-size: 16px;
      border-bottom: 1px solid var(--taupe);
    }

    .footer-note {
      text-align: center;
      font-size: 13px;
      color: rgba(43, 43, 43, 0.58);
      margin-top: 18px;
    }

    @media (max-width: 420px) {
      h1 {
        font-size: 25px;
      }

      .tagline {
        font-size: 17px;
      }

      .product-card {
        grid-template-columns: 96px 1fr;
      }

      .product-image {
        width: 96px;
        height: 96px;
      }

      .button-text {
        padding: 6px 10px;
      }
    }
    .site-header {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 40px;
  background: rgba(247, 245, 242, 0.96);
  border: 1px solid rgba(184, 173, 164, 0.45);
  border-radius: 20px;
  box-shadow: 0 10px 28px rgba(43, 43, 43, 0.06);
  position: relative;
  z-index: 1000;
}

.site-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo img {
  width: 90px;
  height: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.main-nav > a,
.dropdown-toggle {
  font-family: 'Archivo Narrow', sans-serif;
  color: var(--charcoal);
  background: transparent;
  border: 0;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 0;
}

.main-nav > a:hover,
.dropdown-toggle:hover {
  color: #66715f;
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  padding: 8px;
  background: var(--soft-white);
  border: 1px solid var(--taupe);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(43, 43, 43, 0.12);
}

.dropdown-menu a {
  display: block;
  padding: 10px 12px;
  color: var(--charcoal);
  text-decoration: none;
  border-radius: 8px;
  white-space: nowrap;
}

.dropdown-menu a:hover {
  background: var(--warm-beige);
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  display: block;
}

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    gap: 8px;
  }

  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 18px;
  }

  .dropdown-menu {
    left: 50%;
    transform: translateX(-50%);
  }
}
.homepage {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.home-hero {
  display: grid;
  place-items: center;
  min-height: 580px;
  padding: 80px 30px;
  background:
    radial-gradient(
      circle at top,
      rgba(168, 181, 162, 0.2),
      transparent 42%
    ),
    rgba(247, 245, 242, 0.92);
  border: 1px solid rgba(184, 173, 164, 0.45);
  border-radius: 32px;
  box-shadow: 0 20px 50px rgba(43, 43, 43, 0.07);
  text-align: center;
}

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

.hero-logo-wrap {
  width: 120px;
  height: 120px;
  margin: 0 auto 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-logo {
  width: 100%;
  height: auto;
  display: block;
}

.eyebrow {
  margin-bottom: 14px;
  font-family: 'Julius Sans One', sans-serif;
  font-size: 14px;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: rgba(43, 43, 43, 0.68);
}

.home-hero h1 {
  max-width: 850px;
  margin: 0 auto 22px;
  font-family: 'Julius Sans One', sans-serif;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.08;
  letter-spacing: 1.5px;
}

.hero-text {
  max-width: 680px;
  margin: 0 auto;
  font-size: 21px;
  line-height: 1.5;
  color: rgba(43, 43, 43, 0.76);
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.primary-button {
  background: var(--sage);
  color: var(--charcoal);
  border: 1px solid rgba(43, 43, 43, 0.12);
}

.secondary-button {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--taupe);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(43, 43, 43, 0.1);
}

.home-section {
  padding: 90px 10px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-heading h2,
.home-about h2,
.home-cta h2 {
  margin-bottom: 16px;
  font-family: 'Julius Sans One', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: 1px;
}

.section-heading > p:last-child,
.about-copy p,
.home-cta > p {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(43, 43, 43, 0.74);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  min-height: 350px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: rgba(247, 245, 242, 0.92);
  border: 1px solid rgba(184, 173, 164, 0.55);
  border-radius: 26px;
  box-shadow: 0 16px 36px rgba(43, 43, 43, 0.05);
}

.service-number {
  margin-bottom: 42px;
  font-family: 'Julius Sans One', sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  color: rgba(43, 43, 43, 0.52);
}

.service-card h3 {
  margin-bottom: 16px;
  font-family: 'Julius Sans One', sans-serif;
  font-size: 25px;
  line-height: 1.2;
}

.service-card p {
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(43, 43, 43, 0.74);
}

.service-card a {
  margin-top: auto;
  color: var(--charcoal);
  font-size: 17px;
  font-weight: 700;
  text-decoration: none;
}

.service-card a:hover,
.text-link:hover {
  color: #66715f;
}

.home-about {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 60px;
  align-items: center;
  border-top: 1px solid rgba(184, 173, 164, 0.5);
}

.about-copy p {
  margin-bottom: 18px;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--charcoal);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.about-highlight {
  padding: 34px;
  background: rgba(168, 181, 162, 0.25);
  border: 1px solid rgba(168, 181, 162, 0.6);
  border-radius: 26px;
}

.highlight-label {
  display: block;
  margin-bottom: 20px;
  font-family: 'Julius Sans One', sans-serif;
  font-size: 15px;
  letter-spacing: 1.5px;
}

.about-highlight ul {
  list-style: none;
  display: grid;
  gap: 16px;
}

.about-highlight li {
  position: relative;
  padding-left: 22px;
  font-size: 18px;
  line-height: 1.4;
}

.about-highlight li::before {
  content: "•";
  position: absolute;
  left: 0;
}

.home-cta {
  margin: 30px 0 70px;
  padding: 70px 30px;
  background: var(--charcoal);
  color: var(--soft-white);
  border-radius: 30px;
  text-align: center;
}

.home-cta .eyebrow,
.home-cta > p {
  color: rgba(247, 245, 242, 0.74);
}

.home-cta > p {
  max-width: 620px;
  margin: 0 auto 28px;
}

.home-cta .primary-button {
  background: var(--sage);
}

.site-footer {
  padding: 20px 10px 10px;
  text-align: center;
  color: rgba(43, 43, 43, 0.62);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--taupe);
}

@media (max-width: 850px) {
  .service-grid,
  .home-about {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
    padding: 60px 22px;
  }

  .home-section {
    padding: 65px 4px;
  }
}

@media (max-width: 520px) {
  body {
    padding: 16px 10px;
  }

  .home-hero h1 {
    font-size: 36px;
  }

  .hero-text {
    font-size: 18px;
  }

  .service-card {
    min-height: auto;
    padding: 26px;
  }

  .home-cta {
    padding: 55px 22px;
  }
}
.contact-form-wrapper {
  max-width: 780px;
  margin: 0 auto;
  padding: 38px;
  background: rgba(247, 245, 242, 0.94);
  border: 1px solid rgba(184, 173, 164, 0.55);
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(43, 43, 43, 0.06);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  margin-top: 10px;
  font-size: 17px;
  font-weight: 700;
  color: var(--charcoal);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Archivo Narrow', sans-serif;
  font-size: 17px;
  color: var(--charcoal);
  background: #ffffff;
  border: 1px solid rgba(184, 173, 164, 0.8);
  border-radius: 12px;
}

.contact-form textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
  border-color: var(--sage);
}

.contact-form .primary-button {
  width: fit-content;
  margin-top: 18px;
  border: 1px solid rgba(43, 43, 43, 0.12);
  cursor: pointer;
}

@media (max-width: 600px) {
  .contact-form-wrapper {
    padding: 24px 18px;
  }

  .contact-form .primary-button {
    width: 100%;
  }
}
.hidden-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}