/* ========================================
   ANTONIO BALANDI FITNESS — Brand Stylesheet
   ======================================== */

:root {
  --brand-red: #A42217;
  --brand-red-dark: #7A180F;
  --brand-gray: #8C8B83;
  --dark: #1F1F1F;
  --soft-bg: #F7F4F0;
  --highlight: #FBE9E7;
  --white: #FFFFFF;
  --mid: #555555;
  --light-border: #E5E5E5;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(164,34,23,0.18);
  --radius: 8px;
  --radius-lg: 14px;
  --max-width: 1140px;
  --header-height: 76px;
  color-scheme: light;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--brand-red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--brand-red-dark); }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.45rem); }

p { margin-bottom: 1rem; }

.eyebrow {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brand-red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-tight { padding: 60px 0; }
.section-soft { background: var(--soft-bg); }

/* ---------- Header / Nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--light-border);
}
.nav {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.nav-logo img { height: 42px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
}
.nav-links a.active {
  color: var(--brand-red);
}
.nav-links a:hover { color: var(--brand-red); }
.nav-cta {
  background: var(--brand-red);
  color: white !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.nav-cta:hover {
  background: var(--brand-red-dark);
  color: white !important;
  transform: translateY(-1px);
}
.nav-login {
  color: var(--brand-red) !important;
  padding: 9px 18px;
  border: 1.5px solid var(--brand-red);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s;
}
.nav-login:hover {
  background: var(--brand-red);
  color: white !important;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  font-size: 1.5rem;
  color: var(--dark);
}

/* ---------- Hero ---------- */
.hero {
  padding: 80px 0 100px;
  background: linear-gradient(135deg, var(--soft-bg) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero h1 {
  margin-bottom: 1.2rem;
}
.hero h1 .accent {
  color: var(--brand-red);
}
.hero p.lead {
  font-size: 1.2rem;
  color: var(--mid);
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-photo {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 460px;
  margin-left: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.hero-photo-placeholder {
  text-align: center;
  color: white;
  padding: 32px;
}
.hero-photo-placeholder img {
  width: 110px;
  margin: 0 auto 18px;
  opacity: 0.95;
}
.hero-photo-placeholder span {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  opacity: 0.7;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--brand-red);
  color: white !important;
}
.btn-primary:hover {
  background: var(--brand-red-dark);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--brand-red) !important;
  border-color: var(--brand-red);
}
.btn-outline:hover {
  background: var(--brand-red);
  color: white !important;
}
.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Pillars / Feature cards ---------- */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.pillar-card {
  background: white;
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--light-border);
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-red);
}
.pillar-card .pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--highlight);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.pillar-card h3 { margin-bottom: 8px; font-size: 1.2rem; }
.pillar-card p { color: var(--mid); font-size: 0.96rem; margin: 0; }

/* ---------- Section Header ---------- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 16px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--mid); font-size: 1.1rem; }
.section-header-left {
  text-align: left;
  max-width: 700px;
  margin-bottom: 40px;
}

/* ---------- Packages ---------- */
.packages-section { background: var(--soft-bg); }
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.package-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--light-border);
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
  position: relative;
}
.package-card.featured {
  border: 2px solid var(--brand-red);
  box-shadow: var(--shadow-lg);
  transform: scale(1.03);
}
.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand-red);
  color: white;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.package-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mid);
  margin-bottom: 12px;
}
.package-price {
  font-size: 3rem;
  font-weight: 800;
  color: var(--brand-red);
  line-height: 1;
}
.package-price-suffix {
  font-size: 1rem;
  color: var(--mid);
  font-weight: 500;
  margin-left: 6px;
}
.package-meta {
  color: var(--mid);
  font-size: 0.95rem;
  margin: 10px 0 24px;
  font-style: italic;
}
.package-features {
  list-style: none;
  margin-bottom: 28px;
  flex-grow: 1;
}
.package-features li {
  padding: 8px 0;
  font-size: 0.95rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.package-features li::before {
  content: "✓";
  color: var(--brand-red);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- Couples / Smaller packages ---------- */
.duo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.duo-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  border: 1px solid var(--light-border);
  text-align: center;
}
.duo-card .package-price { font-size: 2.2rem; }

/* ---------- Prepay banner ---------- */
.prepay-banner {
  margin-top: 40px;
  background: var(--highlight);
  border: 2px solid var(--brand-red);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
}
.prepay-banner h3 {
  color: var(--brand-red);
  margin-bottom: 8px;
  letter-spacing: 0.08em;
  font-size: 1rem;
}
.prepay-banner p { margin: 0; font-size: 1.05rem; color: var(--dark); }
.prepay-banner .small { font-size: 0.85rem; color: var(--mid); margin-top: 10px; }

/* ---------- Includes list ---------- */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 32px;
  margin-top: 24px;
}
.includes-grid li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--dark);
}
.includes-grid li::before {
  content: "✓";
  color: var(--brand-red);
  font-weight: 800;
  flex-shrink: 0;
}

/* ---------- CTA Section ---------- */
.cta-block {
  background: linear-gradient(135deg, var(--brand-red) 0%, var(--brand-red-dark) 100%);
  color: white;
  padding: 80px 40px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 40px 0;
}
.cta-block h2 { color: white; margin-bottom: 14px; }
.cta-block p {
  color: rgba(255,255,255,0.9);
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto 32px;
}
.cta-block .btn-primary {
  background: white;
  color: var(--brand-red) !important;
}
.cta-block .btn-primary:hover {
  background: var(--soft-bg);
  color: var(--brand-red-dark) !important;
}

/* ---------- About / Story ---------- */
.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}
.story-photo {
  aspect-ratio: 4/5;
  max-width: 440px;
  border-radius: var(--radius-lg);
  background: var(--brand-red);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.story-photo .hero-photo-placeholder { text-align: center; color: white; padding: 32px; }
.story-content h2 { margin-bottom: 24px; }
.story-content p { margin-bottom: 1.2rem; color: var(--dark); }

/* ---------- Service area ---------- */
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 24px;
}
.area-chip {
  background: white;
  border: 1px solid var(--light-border);
  padding: 10px 22px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 40px;
}
.contact-card {
  background: white;
  border: 1px solid var(--light-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-card h3 {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-row {
  padding: 12px 0;
  border-bottom: 1px solid var(--light-border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-row:last-child { border-bottom: none; }
.contact-row .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--mid);
  letter-spacing: 0.1em;
  font-weight: 600;
}
.contact-row .value { font-size: 1.05rem; color: var(--dark); }
.contact-row .value a { color: var(--brand-red); font-weight: 600; }

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand img { height: 50px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.92rem; margin: 0; }
.footer h4, .footer .footer-h {
  color: white;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer ul { list-style: none; }
.footer ul li { padding: 6px 0; }
.footer ul a { color: rgba(255,255,255,0.7); font-size: 0.95rem; }
.footer ul a:hover { color: white; }
.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}
.footer-bottom .llc { color: #E8A79E; font-weight: 700; letter-spacing: 0.08em; }

/* ---------- Mobile ---------- */
@media (max-width: 900px) {
  .hero-grid, .story-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-photo, .story-photo { max-width: 360px; margin: 0 auto; }
  .packages-grid { grid-template-columns: 1fr; gap: 20px; }
  .package-card.featured { transform: none; }
  .duo-grid, .contact-grid, .includes-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .hero { padding: 48px 0 60px; }
  .cta-block { padding: 56px 24px; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { padding: 8px 16px; font-size: 0.85rem; }
}

/* ---------- Mobile nav menu (toggled via tiny JS) ---------- */
.nav-links.open {
  display: flex;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: white;
  flex-direction: column;
  padding: 24px;
  gap: 18px;
  border-bottom: 1px solid var(--light-border);
  box-shadow: var(--shadow-md);
}
