@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Roboto:ital,wght@0,400;0,500;0,700;1,400&display=swap");

:root {
  --red: #d9232d;
  --red-dark: #b71c24;
  --red-soft: #fdecec;
  --black: #1a1a1a;
  --charcoal: #111111;
  --ink: #1f1f1f;
  --text: #6b6b6b;
  --muted: #888888;
  --white: #ffffff;
  --light: #f6f6f6;
  --line: #ececec;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 6px;
  --container: 1200px;
  --header-h: 92px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Roboto", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }
h1, h2, h3, h4, h5 {
  font-family: "Montserrat", sans-serif;
  color: var(--ink);
  line-height: 1.25;
  font-weight: 800;
}
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.container-wide { width: min(1320px, calc(100% - 40px)); margin: 0 auto; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 28px;
  border-radius: 4px;
  border: 2px solid transparent;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: 0.25s ease;
  white-space: nowrap;
}
.btn-red { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }
.btn-white { background: var(--white); color: var(--red); border-color: var(--white); }
.btn-white:hover { background: transparent; color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline:hover { background: var(--white); color: var(--red); }
.btn-outline-red { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--white); }
.btn-block { width: 100%; }

/* Top bar */
.topbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  color: var(--muted);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;
  gap: 16px;
}
.topbar-left { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-left span { display: inline-flex; align-items: center; gap: 8px; }
.topbar-left i { color: var(--red); }
.social { display: flex; gap: 8px; }
.social a {
  width: 30px; height: 30px; border-radius: 50%;
  display: grid; place-items: center;
  background: #f1f1f1; color: #666; font-size: 12px;
  transition: 0.2s;
}
.social a:hover { background: var(--red); color: var(--white); }
.social.social-red a { background: var(--red); color: var(--white); }
.social.social-red a:hover { background: var(--black); }

/* Header */
.header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: var(--header-h);
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}
.logo img, .logo svg { width: 52px; height: 52px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.logo-text strong {
  font-family: "Montserrat", sans-serif;
  font-size: 20px; font-weight: 800; color: var(--black); letter-spacing: -0.03em;
}
.logo-text strong span { color: var(--red); }
.logo-text small {
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); font-weight: 600;
}
.nav { display: flex; justify-content: center; gap: 4px; }
.nav a, .nav .drop > span {
  font-family: "Montserrat", sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--black);
  padding: 10px 12px; display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer;
}
.nav a:hover, .nav a.active, .nav .drop:hover > span { color: var(--red); }
.drop { position: relative; }
.drop-menu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  background: var(--white); box-shadow: var(--shadow);
  padding: 12px 0; display: none; border-top: 3px solid var(--red);
}
.drop:hover .drop-menu { display: block; }
.drop-menu a { display: block; padding: 8px 18px; text-transform: none; font-weight: 600; color: #444; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn {
  width: 42px; height: 42px; border: 0; background: transparent;
  color: var(--black); font-size: 18px; position: relative; cursor: pointer;
}
.cart-count {
  position: absolute; top: 2px; right: 0;
  background: var(--red); color: #fff; width: 18px; height: 18px;
  border-radius: 50%; font-size: 10px; display: grid; place-items: center;
  font-weight: 700;
}
.menu-toggle { display: none; font-size: 22px; background: none; border: 0; cursor: pointer; }

/* Page hero */
.page-hero {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
  background: var(--black) center/cover no-repeat;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55), rgba(17,17,17,0.72));
}
.page-hero h1 { position: relative; color: #fff; font-size: clamp(32px, 5vw, 56px); }
.page-hero p { position: relative; color: #eee; margin-top: 8px; }
.page-hero .accent-line {
  position: absolute; left: 0; right: 0; bottom: 0; height: 6px; background: var(--red);
}

/* Section helpers */
.section { padding: 90px 0; }
.section-light { background: var(--light); }
.section-dark { background: var(--black); color: #cfcfcf; }
.section-dark h2, .section-dark h3 { color: #fff; }
.kicker {
  color: var(--red); font-family: "Montserrat", sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
}
.squiggle {
  width: 58px; height: 10px; margin: 12px 0 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 58 10'%3E%3Cpath d='M1 6 C8 1 12 9 19 5 S32 1 39 6 50 2 57 6' fill='none' stroke='%23d9232d' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}
.squiggle.center { margin-left: auto; margin-right: auto; }
.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; }
.section-head h2 { font-size: clamp(26px, 3.4vw, 40px); max-width: 720px; }
.section-head.center h2 { margin: 0 auto; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }

/* Home hero */
.home-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  background: #111 center/cover no-repeat;
  color: #fff;
}
.home-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.45) 55%, rgba(217,35,45,0.18) 100%);
}
.home-hero .container { position: relative; display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 40px; align-items: center; padding: 80px 20px; }
.home-hero h1 { color: #fff; font-size: clamp(36px, 5.5vw, 64px); max-width: 640px; }
.home-hero p { color: #e8e8e8; max-width: 520px; margin: 18px 0 28px; font-size: 17px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-portrait {
  justify-self: end;
  width: min(380px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 8px solid rgba(217,35,45,0.85);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; }

/* About collage */
.image-collage { position: relative; min-height: 460px; }
.image-collage img { object-fit: cover; border-radius: 8px; }
.image-collage .img-lg { width: 72%; height: 430px; }
.image-collage .img-sm {
  position: absolute; right: 0; bottom: 20px; width: 48%; height: 240px;
  border: 8px solid #fff; box-shadow: var(--shadow);
}
.exp-badge {
  position: absolute; left: 18px; bottom: 30px;
  background: var(--red); color: #fff; padding: 18px 20px; width: 150px;
  text-align: center; font-family: "Montserrat", sans-serif; font-weight: 800;
  box-shadow: var(--shadow);
}
.exp-badge i { display: block; font-size: 22px; margin-bottom: 6px; }
.exp-badge span { font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; }

/* Feature overlay */
.feature-overlay {
  background: #111 center/cover no-repeat;
  position: relative;
}
.feature-overlay::before { content: ""; position: absolute; inset: 0; background: rgba(17,17,17,0.78); }
.feature-overlay .container { position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-box {
  border: 1px solid rgba(217,35,45,0.7);
  padding: 36px 24px; text-align: center; color: #fff;
}
.feature-box i { font-size: 34px; color: #fff; margin-bottom: 14px; }
.feature-box h3 { color: var(--red); font-size: 16px; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 8px; }

/* Icon circle */
.icon-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--red); color: #fff; display: grid; place-items: center;
  font-size: 26px; margin: 0 auto 16px;
}

/* Stats + programs */
.stats-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; }
.stat-photo { position: relative; }
.stat-photo img { width: 100%; height: 520px; object-fit: cover; object-position: top; border-radius: 8px; }
.counter-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 24px 0 28px; }
.counter h3 { font-size: 36px; color: var(--red); }
.program-tiles { display: grid; gap: 14px; }
.program-tile {
  background: var(--red); color: #fff; display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; border-radius: 4px;
}
.program-tile i { font-size: 28px; }
.program-tile h4 { color: #fff; font-size: 18px; }
.progress-card {
  position: absolute; right: -20px; bottom: 30px; background: #fff;
  padding: 22px; width: 260px; box-shadow: var(--shadow); border-radius: 6px;
}
.progress-item { margin-bottom: 14px; }
.progress-item span { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.bar { height: 8px; background: #eee; border-radius: 20px; overflow: hidden; }
.bar i { display: block; height: 100%; background: var(--red); }

/* Promo banner */
.promo-banner {
  display: grid; grid-template-columns: 0.8fr 1.2fr;
  background: linear-gradient(105deg, #1a1a1a 0 42%, var(--red) 42% 100%);
  color: #fff; overflow: hidden; align-items: center;
}
.promo-banner img { height: 340px; object-fit: contain; object-position: bottom; margin: 0 auto; }
.promo-copy { padding: 50px 40px; }
.promo-copy h2 { color: #fff; font-size: clamp(28px, 4vw, 48px); }
.promo-copy p { color: #ffe8e8; margin: 12px 0 22px; max-width: 520px; }

/* Service cards */
.service-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.service-card, .program-card {
  background: #fff; border: 1px solid var(--line); padding: 28px 20px;
  transition: 0.25s; height: 100%;
}
.service-card:hover, .program-card:hover, .service-card.active {
  background: var(--red); color: #fff; border-color: var(--red);
}
.service-card:hover h3, .service-card.active h3, .program-card:hover h3,
.service-card:hover .icon-line, .service-card.active .icon-line, .program-card:hover .icon-line,
.service-card:hover a, .service-card.active a, .program-card:hover a { color: #fff; }
.icon-line { font-size: 34px; color: var(--red); margin-bottom: 14px; }
.service-card h3, .program-card h3 { font-size: 18px; margin-bottom: 8px; }
.read-more { color: var(--red); font-weight: 700; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.program-card { padding: 36px 28px; }

/* Trainers */
.trainer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.trainer-card { text-align: center; }
.trainer-card img { width: 100%; height: 320px; object-fit: cover; object-position: top; border-radius: 8px; margin-bottom: 14px; }
.trainer-card .role { color: var(--red); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.trainer-card h3 { font-size: 20px; margin: 4px 0 10px; }
.trainer-card .social { justify-content: center; }

/* Testimonials */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: #222; padding: 32px 26px; border-radius: 8px; color: #ddd; position: relative;
}
.testi-card.featured { background: var(--red); color: #fff; }
.testi-card i.quote { color: var(--red); font-size: 28px; margin-bottom: 10px; }
.testi-card.featured i.quote { color: #fff; }
.testi-card .stars { color: #ffc107; margin: 12px 0; letter-spacing: 2px; }
.testi-user { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.testi-user img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.testi-user h4 { color: #fff; font-size: 16px; }
.testi-user span { font-size: 12px; color: #bbb; }
.testi-card.featured .testi-user span { color: #ffe0e0; }

/* Pricing */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.price-card {
  border: 1px solid var(--red); background: #fff; text-align: center; padding: 0 0 32px;
  overflow: hidden;
}
.price-card.featured { transform: translateY(-12px); box-shadow: var(--shadow); }
.price-card header {
  padding: 28px 20px 10px;
}
.price-card.featured header { background: var(--red); color: #fff; }
.price-card.featured header h3, .price-card.featured header .price { color: #fff; }
.price-card h3 { font-size: 20px; text-transform: uppercase; letter-spacing: 0.04em; }
.price { font-size: 48px; margin: 8px 0; color: var(--ink); }
.price small { font-size: 14px; color: var(--muted); }
.price-card ul { padding: 20px 32px; text-align: left; }
.price-card li { padding: 8px 0 8px 26px; position: relative; border-bottom: 1px dashed var(--line); }
.price-card li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--red); position: absolute; left: 0; }
.popular-tag {
  display: inline-block; background: var(--black); color: #fff; font-size: 11px;
  letter-spacing: 0.1em; padding: 6px 12px; margin-bottom: 8px; text-transform: uppercase;
}

/* Blog cards */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: #fff; box-shadow: var(--shadow); }
.blog-card img { width: 100%; height: 230px; object-fit: cover; }
.blog-card .body { padding: 22px; }
.meta { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.meta span { color: var(--red); }
.blog-card h3 { font-size: 20px; margin-bottom: 10px; }

/* Newsletter / CTA */
.cta-bar {
  background: var(--red); color: #fff;
  padding: 42px 0;
}
.cta-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
}
.cta-bar h2 { color: #fff; font-size: clamp(22px, 3vw, 32px); }
.cta-bar p { color: #ffe8e8; margin-top: 6px; max-width: 640px; }
.cta-kicker { letter-spacing: 0.16em; font-size: 12px; font-weight: 700; margin-bottom: 6px; }
.newsletter-bar {
  background: var(--red); padding: 28px 0;
}
.newsletter-bar form {
  display: flex; gap: 10px; max-width: 720px; margin: 0 auto; align-items: center;
}
.newsletter-bar h3 { color: #fff; margin-right: auto; font-size: 22px; white-space: nowrap; }
.newsletter-bar input {
  flex: 1; min-height: 48px; border: 0; border-radius: 4px; padding: 0 16px;
}

/* Footer */
.footer { background: #1a1a1a; color: #bdbdbd; padding-top: 60px; }
.footer-brand { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-bottom: 28px; border-bottom: 1px solid #2a2a2a; margin-bottom: 36px; }
.footer .logo-text strong { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1.2fr; gap: 30px; padding-bottom: 40px; }
.footer h4 { color: #fff; margin-bottom: 16px; font-size: 18px; }
.footer a:hover { color: var(--red); }
.footer li { margin: 8px 0; }
.footer-bottom {
  border-top: 1px solid #2a2a2a; padding: 16px 0;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 13px; background: #111;
}
.footer-bottom .legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-form { display: flex; flex-direction: column; gap: 10px; }
.footer-form input {
  min-height: 46px; border: 0; border-radius: 4px; padding: 0 14px;
}

/* Shop */
.shop-layout { display: grid; grid-template-columns: 1fr 300px; gap: 32px; }
.shop-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.shop-toolbar input, .shop-toolbar select, .qty input, .form-row input, .form-row select, .form-row textarea {
  min-height: 46px; border: 1px solid #ddd; border-radius: 4px; padding: 10px 14px; width: 100%; background: #fff; color: var(--ink);
}
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.product-card { border: 1px solid var(--line); padding: 16px; background: #fff; position: relative; }
.product-card img { width: 100%; height: 220px; object-fit: cover; }
.product-card h3 { font-size: 18px; margin: 12px 0 6px; }
.stars { color: var(--red); font-size: 13px; }
.price-row { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; }
.price-row strong { color: var(--red); font-size: 20px; }
.old { text-decoration: line-through; color: var(--muted); margin-left: 8px; font-size: 14px; }
.sidebar-card { background: #fff; border: 1px solid var(--line); padding: 22px; margin-bottom: 22px; box-shadow: var(--shadow); }
.thumb-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.thumb-grid img { height: 90px; width: 100%; object-fit: cover; }
.recent-item { display: flex; gap: 12px; margin-bottom: 14px; }
.recent-item img { width: 70px; height: 70px; object-fit: cover; }

/* Product detail */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.gallery-main { border: 1px solid var(--line); padding: 16px; }
.gallery-main img { width: 100%; height: 420px; object-fit: contain; background: #fafafa; }
.thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 12px; }
.thumbs img { height: 84px; object-fit: cover; cursor: pointer; border: 2px solid transparent; }
.thumbs img.active, .thumbs img:hover { border-color: var(--red); }
.tag { display: inline-block; background: var(--red-soft); color: var(--red); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 4px; }
.offer-box { background: var(--red-soft); border-left: 4px solid var(--red); padding: 14px 16px; margin: 16px 0; }
.qty { display: flex; align-items: center; gap: 10px; }
.qty input { width: 80px; text-align: center; }
.tabs { display: flex; gap: 22px; border-bottom: 1px solid var(--line); margin: 40px 0 20px; }
.tabs button { background: none; border: 0; padding: 10px 0; font-weight: 700; cursor: pointer; color: var(--muted); border-bottom: 2px solid transparent; }
.tabs button.active { color: var(--red); border-color: var(--red); }
.check-list li { padding-left: 28px; position: relative; margin: 8px 0; }
.check-list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--red); position: absolute; left: 0; }

/* Cart / checkout */
.cart-layout, .checkout-layout { display: grid; grid-template-columns: 1.6fr 0.9fr; gap: 28px; }
.table-wrap { overflow-x: auto; background: #fff; box-shadow: var(--shadow); }
table { width: 100%; border-collapse: collapse; }
th, td { padding: 16px; text-align: left; border-bottom: 1px solid var(--line); vertical-align: middle; }
th { font-family: "Montserrat", sans-serif; font-size: 13px; letter-spacing: 0.04em; text-transform: uppercase; }
.prod-cell { display: flex; align-items: center; gap: 12px; }
.prod-cell img { width: 72px; height: 72px; object-fit: cover; }
.remove { color: var(--red); background: none; border: 0; cursor: pointer; font-size: 18px; }
.totals { background: #fff; box-shadow: var(--shadow); padding: 24px; }
.totals-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); }
.coupon { display: flex; gap: 8px; margin-top: 16px; }
.form-card { background: #fff; box-shadow: var(--shadow); padding: 28px; border-radius: 8px; }
.form-row { margin-bottom: 16px; }
.form-row label { display: block; font-weight: 700; color: var(--ink); margin-bottom: 6px; font-size: 14px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.error { color: var(--red); font-size: 12px; margin-top: 4px; display: none; }
.form-row.invalid input, .form-row.invalid select, .form-row.invalid textarea { border-color: var(--red); }
.form-row.invalid .error { display: block; }
.success-msg {
  display: none; background: #e9f8ee; color: #157347; border: 1px solid #b7e4c7;
  padding: 16px 18px; border-radius: 6px; margin-bottom: 18px; font-weight: 500;
}
.success-msg.show { display: block; }

/* FAQ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.accordion-item { border: 1px solid var(--line); background: #f7f7f7; }
.accordion-item button {
  width: 100%; text-align: left; background: transparent; border: 0; padding: 16px 18px;
  font-weight: 700; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; gap: 12px;
}
.accordion-item.open { background: var(--red); border-color: var(--red); }
.accordion-item.open button { color: #fff; }
.accordion-item .panel { display: none; padding: 0 18px 16px; color: #555; }
.accordion-item.open .panel { display: block; color: #fff; }
.quote-box { background: var(--red); color: #fff; padding: 24px; margin-top: -40px; position: relative; }

/* Contact */
.contact-wrap { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 28px; }
.contact-info {
  background: var(--red); color: #fff; padding: 36px 28px; border-radius: 8px;
}
.contact-info h3, .contact-info p { color: #fff; }
.contact-info a { color: #fff; text-decoration: underline; }

/* Donate */
.donate-amounts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 12px 0 18px; }
.donate-amounts button {
  border: 1px solid var(--line); background: #fff; min-height: 48px; cursor: pointer; font-weight: 700;
}
.donate-amounts button.active { background: var(--red); color: #fff; border-color: var(--red); }

/* Legal */
.legal-content h2 { font-size: 24px; margin: 28px 0 10px; }
.legal-content h3 { font-size: 18px; margin: 18px 0 8px; }
.legal-content p, .legal-content li { margin-bottom: 12px; }
.legal-content ul { list-style: disc; padding-left: 20px; }
.legal-content ol { padding-left: 20px; }
.legal-content ol li { margin-bottom: 10px; }

/* Trainer detail */
.trainer-hero-card {
  display: grid; grid-template-columns: 340px 1fr; gap: 32px;
  background: #222; color: #ddd; padding: 32px; border-radius: 10px;
}
.trainer-hero-card img { width: 100%; height: 380px; object-fit: cover; border-radius: 8px; }
.trainer-hero-card h2 { color: #fff; }
.trainer-hero-card .role { color: var(--red); }

/* Article */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 32px; }
.article-feature { width: 100%; height: 420px; object-fit: cover; border-radius: 8px; margin-bottom: 22px; }
.author-box { background: var(--light); display: flex; gap: 16px; padding: 20px; margin: 28px 0; }
.author-box img { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; }
.cat-list li { padding: 10px 0; border-bottom: 1px solid var(--line); display: flex; gap: 10px; align-items: center; }
.cat-list i { color: var(--red); }

.to-top {
  position: fixed; right: 18px; bottom: 18px; width: 44px; height: 44px;
  background: var(--red); color: #fff; border: 0; border-radius: 50%;
  cursor: pointer; display: none; z-index: 50;
}
.to-top.show { display: grid; place-items: center; }

.empty { text-align: center; padding: 40px 10px; color: var(--muted); }

@media (max-width: 1100px) {
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .trainer-grid, .program-grid, .blog-grid, .testi-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .home-hero .container, .split, .stats-grid, .promo-banner, .shop-layout,
  .product-detail, .cart-layout, .checkout-layout, .faq-grid, .contact-wrap,
  .article-layout, .trainer-hero-card { grid-template-columns: 1fr; }
  .progress-card { position: static; width: 100%; margin-top: 16px; }
  .price-card.featured { transform: none; }
}
@media (max-width: 860px) {
  .header-inner { grid-template-columns: auto auto; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: #fff; flex-direction: column; padding: 12px 20px 20px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .drop-menu { position: static; display: block; box-shadow: none; border: 0; padding: 0 0 0 12px; }
  .menu-toggle { display: block; }
  .header-actions .btn { padding: 10px 14px; min-height: 40px; font-size: 11px; }
  .service-grid, .trainer-grid, .program-grid, .blog-grid, .testi-grid,
  .price-grid, .product-grid, .feature-overlay .container, .form-grid, .donate-amounts { grid-template-columns: 1fr; }
  .image-collage { min-height: 0; }
  .image-collage .img-lg, .image-collage .img-sm { position: static; width: 100%; height: 240px; margin-bottom: 12px; }
  .newsletter-bar form { flex-direction: column; }
  .cta-bar, .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand, .footer-bottom { flex-direction: column; text-align: center; }
  .home-hero { min-height: auto; }
  .hero-portrait { justify-self: center; width: 260px; }
}
