/* ================================================
   WLLPOWER — Modern Redesign
   Font: Montserrat (closest free alt to Proxima Nova)
   ================================================ */

/* === CUSTOM PROPERTIES === */
:root {
  --orange:      #F7941E;
  --orange-dark: #e8851a;
  --orange-10:   rgba(247, 148, 30, 0.10);
  --orange-20:   rgba(247, 148, 30, 0.20);
  --blue:        #1EB0F7;
  --blue-dark:   #0f9de0;
  --blue-10:     rgba(30, 176, 247, 0.10);
  --dark:        #333333;
  --dark-90:     rgba(51, 51, 51, 0.92);
  --white:       #FFFFFF;
  --light:       #F9F9F9;
  --mid:         #EBEBEB;
  --text:        #4A4A4A;
  --text-muted:  #888888;

  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.13);
  --transition: 0.28s ease;

  --container:  1160px;
  --nav-height: 72px;
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img  { max-width: 100%; height: auto; display: block; }
a    { text-decoration: none; color: inherit; }
ul   { list-style: none; }

/* === LAYOUT === */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* === TYPE HELPERS === */
.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 540px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-sub { margin: 0 auto; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(247, 148, 30, 0.35);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.55);
}
.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--white);
}

.btn--sm { padding: 10px 22px; font-size: 13px; }

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled,
.nav.menu-open {
  background: rgba(51, 51, 51, 0.82);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.20);
}

.nav__container {
  height: var(--nav-height);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Single logo — always white version */
.nav__logo {
  position: relative;
  height: 34px;
  width: 150px;
  flex-shrink: 0;
}
.nav__logo-img {
  position: absolute;
  top: 0; left: 0;
  height: 34px;
  width: auto;
}
.nav__logo-white { opacity: 1; }
.nav__logo-dark  { display: none; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  padding: 8px 14px;
  border-radius: 50px;
  transition: all var(--transition);
}
.nav__link:hover { color: var(--blue); }

.nav__link--cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 8px 20px;
}
.nav__link--cta:hover {
  background: var(--orange-dark);
  transform: translateY(-1px);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu — no own background; nav element provides the frosting */
.nav__mobile {
  display: none;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  padding: 12px 24px 20px;
}
.nav__mobile.open { display: block; }
.nav__mobile-links { display: flex; flex-direction: column; gap: 2px; }
.nav__mobile-links .nav__link {
  color: rgba(255, 255, 255, 0.88);
  padding: 11px 14px;
  border-radius: 10px;
}
.nav__mobile-links .nav__link:hover { background: rgba(255, 255, 255, 0.10); }
.nav__mobile-links li:last-child { margin-top: 8px; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  transform: scale(1.06);
  transition: transform 1.2s ease;
}
.hero.loaded .hero__bg { transform: scale(1); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(51, 51, 51, 0.84) 0%,
    rgba(51, 51, 51, 0.58) 55%,
    rgba(51, 51, 51, 0.30) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
}

.hero__eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}

.hero__headline {
  font-size: clamp(40px, 6.5vw, 78px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 24px;
  max-width: 740px;
}
.hero__highlight { color: var(--orange); }

.hero__sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 2;
  margin-bottom: 40px;
}
.hero__sub-location {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}

.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.45);
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(9px); }
}

/* === SERVICES === */
.services {
  padding: 100px 0;
  background: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card__image {
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.service-card:hover .service-card__image img { transform: scale(1.05); }

.service-card__body {
  padding: 32px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__title {
  font-size: 21px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.service-card__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 20px;
}

.service-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  flex: 1;
}
.service-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
}
.service-card__features li::before {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* Blue service card variant (Nutrition) */
.service-card--blue .service-card__features li::before { background: var(--blue); }
.service-card--blue .btn--primary {
  background: var(--blue);
  border-color: var(--blue);
}
.service-card--blue .btn--primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 0 8px 24px rgba(30, 176, 247, 0.35);
}

/* === WHY === */
.why {
  padding: 100px 0;
  background: var(--light);
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}
.why-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.why-card__icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--orange-10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--orange);
}
.why-card__icon--blue {
  background: var(--blue-10);
  color: var(--blue);
}

.why-card__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.why-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* === QUOTE === */
.quote-section {
  padding: 88px 0;
  background: var(--dark);
}

.quote-section__inner {
  text-align: center;
  max-width: 740px;
  margin: 0 auto;
}

.quote-section__text {
  font-size: clamp(19px, 2.8vw, 28px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.55;
  margin-bottom: 20px;
}

.quote-section__author {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
}

/* === ABOUT === */
.about {
  padding: 100px 0;
  background: var(--white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image {
  position: relative;
}
.about__image img {
  border-radius: var(--radius-lg);
  width: 100%;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.about__image-accent {
  position: absolute;
  bottom: -18px;
  right: -18px;
  width: 58%;
  height: 58%;
  border: 4px solid var(--blue);
  border-radius: var(--radius-lg);
  z-index: 0;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about__content .section-title { margin-bottom: 0; }
.about__content p {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
}

.about__creds {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  border-top: 1px solid var(--mid);
  border-bottom: 1px solid var(--mid);
  margin: 6px 0 8px;
}

.cred {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}

.cred__icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* === CONTACT === */
.contact {
  padding: 100px 0;
  background: var(--light);
}

.contact__actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}

.contact-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 2px solid transparent;
}
.contact-btn:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--orange);
}

.contact-btn--blue {
  background: var(--blue);
}
.contact-btn--blue:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
  box-shadow: 0 12px 48px rgba(30, 176, 247, 0.30);
}
.contact-btn--blue .contact-btn__icon {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}
.contact-btn--blue .contact-btn__label { color: var(--white); }
.contact-btn--blue .contact-btn__sub   { color: rgba(255, 255, 255, 0.8); }

.contact-btn--accent {
  background: var(--orange);
}
.contact-btn--accent:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.contact-btn__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  transition: background var(--transition);
}
.contact-btn--accent .contact-btn__icon {
  background: rgba(255, 255, 255, 0.22);
  color: var(--white);
}

.contact-btn__label {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}
.contact-btn--accent .contact-btn__label { color: var(--white); }

.contact-btn__sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}
.contact-btn--accent .contact-btn__sub { color: rgba(255, 255, 255, 0.8); }

/* === FOOTER === */
.footer {
  background: var(--dark);
  padding: 36px 0 20px;
}

.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  margin-bottom: 16px;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer__logo {
  height: 40px;
  width: 40px;
  object-fit: contain;
}

.footer__tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

.footer__links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 4px 6px;
  align-items: center;
}
.footer__links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  padding: 4px 10px;
  border-radius: 4px;
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--orange); }

.footer__social { display: flex; gap: 10px; }

.footer__social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  opacity: 0.75;
}
.footer__social-link:hover { transform: translateY(-2px); opacity: 1; }

/* Facebook */
.footer__social-link:nth-child(1) { background: rgba(24, 119, 242, 0.18); color: #1877F2; }
.footer__social-link:nth-child(1):hover { background: #1877F2; color: #fff; }
/* LinkedIn */
.footer__social-link:nth-child(2) { background: rgba(10, 102, 194, 0.18); color: #0A66C2; }
.footer__social-link:nth-child(2):hover { background: #0A66C2; color: #fff; }
/* Google */
.footer__social-link:nth-child(3) { background: rgba(234, 67, 53, 0.18); color: #EA4335; }
.footer__social-link:nth-child(3):hover { background: #EA4335; color: #fff; }

.footer__bottom { text-align: center; }
.footer__bottom p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.30);
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger siblings in a grid */
.services__grid .reveal:nth-child(2),
.why__grid     .reveal:nth-child(2),
.why__grid     .reveal:nth-child(4) {
  transition-delay: 0.1s;
}
.why__grid .reveal:nth-child(3) { transition-delay: 0.05s; }

/* === RESPONSIVE === */
@media (max-width: 960px) {
  .services__grid       { grid-template-columns: 1fr; }
  .why__grid            { grid-template-columns: repeat(2, 1fr); }
  .about__grid          { grid-template-columns: 1fr; gap: 48px; }
  .contact__actions     { grid-template-columns: 1fr; max-width: 380px; }
  .footer__top          { flex-direction: column; align-items: center; gap: 16px; text-align: center; }
  .footer__links        { justify-content: center; }
  .footer__social       { justify-content: center; }
}

@media (max-width: 640px) {
  .nav__links     { display: none; }
  .nav__hamburger { display: flex; }

  .hero__actions { flex-direction: column; align-items: flex-start; }

  .why__grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .why-card  { padding: 22px 16px; }

  .about__image-accent { display: none; }

  .services { padding: 72px 0; }
  .why      { padding: 72px 0; }
  .about    { padding: 72px 0; }
  .contact  { padding: 72px 0; }
}

/* === LEGAL PAGES === */
.page-header {
  position: relative;
  height: 260px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 40px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(30,30,30,0.55) 0%, rgba(20,20,20,0.70) 100%);
}

.page-header__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.page-header__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.legal-page {
  padding: 32px 0 80px;
  min-height: 60vh;
  background: #fff;
}

.legal-content br { display: none; }

.legal-content {
  max-width: 760px;
  margin: 0 auto;
  color: var(--dark);
  font-size: 15px;
  line-height: 1.75;
}

.legal-content h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-top: 36px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.legal-content h3 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p {
  margin-bottom: 14px;
  color: #444;
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 14px 24px;
  color: #444;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--blue-dark);
}

@media (max-width: 640px) {
  .page-header { height: 160px; padding-bottom: 24px; }
}
