/* ==========================================================================
   Need For Strength — V2 Premium Editorial Theme
   Loads AFTER style.css. Overrides all visual properties for a refined
   charcoal + warm bronze + ivory design system.
   Layout rules from style.css are preserved; this file overrides colours,
   typography, shadows, and adds NEW layout for the split-editorial hero.
   ========================================================================== */


/* ==========================================================================
   §1  CSS VARIABLES
   ========================================================================== */

:root {
  /* Surfaces */
  --bg:         #08090c;
  --bg-soft:    #0e1014;
  --panel:      #121519;
  --panel-2:    #181c22;
  --ivory:      #f4eee1;
  --ivory-soft: #ece4d2;

  /* Lines & shadows */
  --line:        rgba(190, 165, 120, 0.14);
  --line-strong: rgba(190, 165, 120, 0.30);
  --shadow:      0 30px 80px rgba(0, 0, 0, 0.50);
  --shadow-soft: 0 18px 48px rgba(0, 0, 0, 0.34);

  /* Text */
  --text:        #ede8dc;
  --muted:       #929aa4;
  --ivory-text:  #1d1a13;
  --ivory-muted: #6a6252;

  /* Bronze accent (kept on --lime tokens for cross-file compatibility) */
  --lime:        #bf9a54;
  --lime-strong: #d4af6a;
  --lime-ink:    #141006;

  /* Shape & rhythm */
  --radius:    20px;
  --radius-lg: 28px;
  --shell:     min(1180px, calc(100% - 42px));

  /* Type */
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body:    Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}


/* ==========================================================================
   §2  BODY RESET
   ========================================================================== */

html,
body {
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: var(--font-body);
  /* Override the radial gradient background from style.css */
  background: var(--bg);
}

/* Remove the grid-pattern pseudo from style.css "Premium midnight-and-gold" */
body::before {
  display: none;
}

::selection {
  background: var(--lime-strong);
  color: var(--lime-ink);
}


/* ==========================================================================
   §3  FLOATING GLASS NAVBAR
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 10px 14px auto;
  z-index: 150;
  border: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 9, 12, 0.78);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled {
  border-color: var(--line-strong);
  background: rgba(8, 9, 12, 0.92);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.40);
}

.header-row {
  min-height: 72px;
}

.brand-word {
  color: var(--text);
  font-size: 1.22rem;
  letter-spacing: -0.045em;
}

.brand-word span {
  color: var(--lime);
}

.brand small {
  color: var(--muted);
  font-size: 0.56rem;
}

/* Desktop navigation links */
.desktop-nav a {
  position: relative;
  color: #c0c5cd;
  padding-bottom: 4px;
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 1px;
  background: var(--lime);
  transition: right 200ms ease;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--lime-strong);
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  right: 0;
}

/* Mobile menu */
.mobile-menu {
  border-color: var(--line);
  background: rgba(8, 9, 12, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
}

.mobile-menu a:not(.button) {
  border-color: var(--line);
  color: var(--text);
}

.mobile-menu-feature {
  border: 1px solid rgba(212, 175, 106, 0.55) !important;
  border-radius: 14px;
  background: linear-gradient(115deg, #e8d4a2, #c19850) !important;
  color: #161006 !important;
  font-weight: 900;
  text-align: center;
}

/* Menu (hamburger) button */
.menu-button {
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(18, 21, 25, 0.85);
  color: var(--text);
}


/* ==========================================================================
   §4  BUTTONS
   ========================================================================== */

.button {
  min-height: 48px;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: none;
  transition: transform 170ms ease, background 170ms ease, border-color 170ms ease,
    box-shadow 170ms ease;
}

/* Primary solid */
.button:not(.button--outline):not(.button--ghost) {
  border-color: rgba(212, 175, 106, 0.85);
  background: linear-gradient(115deg, #dfc078, #b8873e);
  color: var(--lime-ink);
  box-shadow: 0 10px 28px rgba(184, 135, 62, 0.18);
}

.button:not(.button--outline):not(.button--ghost):hover {
  border-color: #edd9a8;
  background: linear-gradient(115deg, #edd9a8, #cfa45f);
  box-shadow: 0 14px 38px rgba(184, 135, 62, 0.26);
}

.button:hover {
  transform: translateY(-2px);
}

/* Outline / ghost */
.button--outline,
.button--ghost {
  border-color: var(--line-strong);
  background: rgba(18, 21, 25, 0.42);
  color: var(--text);
  box-shadow: none;
}

.button--outline:hover,
.button--ghost:hover {
  border-color: rgba(212, 175, 106, 0.65);
  background: rgba(191, 154, 84, 0.10);
  color: var(--lime-strong);
}

.text-link {
  color: var(--lime);
  font-weight: 800;
}

.text-link:hover {
  color: var(--lime-strong);
}


/* ==========================================================================
   §5  SPLIT EDITORIAL HERO  (new layout)
   ========================================================================== */

.hero {
  min-height: auto;
  display: block;          /* override grid from style.css */
  overflow: visible;
  isolation: auto;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

/* Hide the old decorative pseudo-elements */
.hero::before { display: none; }
.hero::after  { display: none; }

/* Hide legacy hero-media if it still exists in markup */
.hero > .hero-media { display: none; }

/* New split grid */
.hero-split {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
  min-height: 100svh;
  padding: clamp(140px, 18vh, 200px) 0 clamp(80px, 10vh, 120px);
}

/* Left column — copy */
.hero-content {
  padding: 0;
}

/* Right column — image */
.hero-image-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(190, 165, 120, 0.20);
  border-radius: 20px;
  aspect-ratio: 3 / 4;
  max-height: 700px;
  align-self: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.50);
}

.hero-image-panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.10);
}


/* ==========================================================================
   §6  HERO TYPOGRAPHY
   ========================================================================== */

/* Serif treatment for all major headings */
.hero h1,
.section-heading h2,
.nutrition-intro h2,
.enquiry-copy h2,
.bmi-copy h2,
.experience-copy h1,
.experience-copy h2,
.exercise-preview-copy h2,
.catalog-toolbar h2,
.owner-demo-panel h3,
.customer-page-hero h1,
.page-hero h1,
.page-cta h2,
.member-card h1,
.account-heading h1 {
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.015em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3.8rem, 8vw, 8rem);
  line-height: 0.90;
}

.hero h1 span {
  color: var(--lime-strong);
  font-style: italic;
}

/* New tagline class */
.hero-tagline {
  margin: 18px 0 0;
  color: var(--lime);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 500;
  line-height: 1.45;
}

.hero-copy {
  max-width: 500px;
  margin: 20px 0 0;
  color: #a5adb8;
  font-size: clamp(0.9rem, 1.2vw, 1.02rem);
  line-height: 1.65;
}

/* Pill badge for the founding offer */
.hero-offer {
  width: fit-content;
  margin: 16px 0 18px;
  padding: 8px 16px;
  border: 1px solid rgba(212, 175, 106, 0.45);
  border-radius: 999px;
  background: rgba(12, 13, 16, 0.55);
  color: var(--lime-strong);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 32px;
}

.hero-note {
  max-width: 500px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.72rem;
}

.hero-note span {
  color: var(--lime);
}


/* ==========================================================================
   §7  EYEBROW
   ========================================================================== */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.eyebrow--feature {
  display: inline-flex;
  padding: 7px 10px;
  border: 1px solid rgba(212, 175, 106, 0.35);
  border-radius: 8px;
  background: rgba(191, 154, 84, 0.06);
}


/* ==========================================================================
   §8  SECTIONS
   ========================================================================== */

.section {
  padding: clamp(84px, 9.5vw, 140px) 0;
}

.section--panel {
  border-color: var(--line);
  background:
    radial-gradient(circle at 12% 8%, rgba(191, 154, 84, 0.05), transparent 30%),
    var(--bg-soft);
}

.section-heading h2,
.nutrition-intro h2,
.enquiry-copy h2,
.bmi-copy h2,
.experience-copy h2,
.exercise-preview-copy h2,
.catalog-toolbar h2 {
  font-size: clamp(2.5rem, 4.6vw, 4rem);
  line-height: 1.04;
}

.section-heading > p:not(.eyebrow),
.section-heading--row > p,
.hero-copy,
.about-copy,
.nutrition-intro p:not(.eyebrow) {
  color: var(--muted);
}

.section-heading--row {
  align-items: center;
  margin-bottom: 38px;
}

.section-heading--row > p,
.section-heading > p:not(.eyebrow) {
  font-size: 0.78rem;
}

/* Alternating backgrounds */
.membership-pricing {
  background:
    radial-gradient(circle at 20% 14%, rgba(191, 154, 84, 0.06), transparent 28%),
    var(--bg-soft);
}

.bca-section,
.cue-master-section,
.nutrition,
.exercise-preview,
.gallery-preview,
.about {
  background: var(--bg);
}


/* ==========================================================================
   §9  MEMBERSHIP / PRICING CARDS
   ========================================================================== */

.pricing-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

/* Shared card base */
.price-card,
.info-card,
.training-card,
.bmi-card,
.owner-demo-panel,
.exercise-preview-card,
.member-card,
.account-card {
  border: 1px solid var(--line) !important;
  border-radius: var(--radius);
  background: var(--panel) !important;
  box-shadow: var(--shadow-soft);
}

.price-card {
  position: relative;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 32px 26px 28px;
  border-radius: 20px;
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(191, 154, 84, 0.50) !important;
  box-shadow: var(--shadow);
}

.price-card--free,
.price-card--featured {
  border-color: rgba(191, 154, 84, 0.50) !important;
  background:
    linear-gradient(165deg, rgba(191, 154, 84, 0.12), var(--panel) 50%) !important;
}

/* Badges / ribbons */
.price-badge,
.price-ribbon {
  border: 1px solid rgba(212, 175, 106, 0.60);
  border-radius: 999px;
  background: linear-gradient(110deg, #dfc078, #b8873e);
  color: var(--lime-ink);
}

.price-kicker {
  color: var(--muted);
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.price-amount {
  color: var(--text);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 3.6vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.price-amount > span,
.price-amount small {
  color: var(--muted);
}

.price-cycle {
  color: var(--muted);
  font-size: 0.70rem;
}

/* Plan feature list */
.plan-highlights {
  display: grid;
  gap: 9px;
  margin: 18px 0 24px;
  padding: 0;
  list-style: none;
}

.plan-highlights li {
  position: relative;
  padding-left: 22px;
  color: #c4cbd3;
  font-size: 0.80rem;
  line-height: 1.45;
}

.plan-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 900;
}

/* Legacy price-features list (style.css) */
.price-features,
.info-card ul {
  color: #c4cbd3;
}

.price-card__cta {
  margin-top: auto;
  width: 100%;
}

.pricing-note {
  color: var(--muted);
}

/* Owner demo panel */
.owner-demo-panel h3 {
  margin: 6px 0 4px;
  font-size: 1.6rem;
  color: var(--text);
}

.owner-offer-title {
  margin: 12px 0 18px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
}

.owner-offer-lines {
  display: grid;
  gap: 10px;
  margin: 14px 0 20px;
}

.owner-offer-line {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 14px;
  align-items: baseline;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.owner-offer-line span  { color: #c4cbd3; }
.owner-offer-line strong { color: var(--lime-strong); white-space: nowrap; }
.owner-offer-line small  { grid-column: 1 / -1; color: var(--muted); }

.owner-benefit-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: #c4cbd3;
}

.owner-benefit-list li::marker {
  color: var(--lime);
}

.micro {
  color: var(--muted);
  font-size: 0.78rem;
}


/* ==========================================================================
   §10  EXPERIENCE SECTIONS  (BCA, Pool, Kitchen, Cue-master)
   ========================================================================== */

.experience-points span,
.info-pills span,
.exercise-preview-tags span,
.diet-feature-points span {
  border: 1px solid var(--line) !important;
  border-radius: 999px;
  background: rgba(191, 154, 84, 0.07) !important;
  color: #d8cfc0 !important;
  font-weight: 700;
}

.cue-master-section {
  position: relative;
  overflow: hidden;
}

.cue-master-cards,
.owner-demo-secondary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.cue-master-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background:
    radial-gradient(circle at 82% -10%, rgba(191, 154, 84, 0.12), transparent 55%),
    var(--panel);
  box-shadow: var(--shadow-soft);
}

.cue-master-card span {
  display: block;
  color: var(--lime);
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cue-master-card strong {
  display: block;
  margin: 10px 0 6px;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
}

.cue-master-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.experience-note {
  display: block;
  margin-top: 18px;
  color: var(--muted);
  font-style: italic;
}


/* ==========================================================================
   §11  BMI SECTION
   ========================================================================== */

.bmi-section {
  background:
    radial-gradient(circle at 12% 45%, rgba(191, 154, 84, 0.05), transparent 28%),
    var(--bg-soft);
}

.bmi-layout {
  align-items: center;
}

.bmi-copy h2 {
  font-size: clamp(2.6rem, 5.4vw, 4.8rem);
}

.bmi-card {
  padding: clamp(26px, 3.4vw, 40px);
  border-color: rgba(191, 154, 84, 0.28);
}

.bmi-card__heading,
.nutrition-board__top {
  border-color: var(--line);
  color: var(--muted);
}

.bmi-card__heading strong {
  color: var(--lime);
}

.bmi-fields label,
.bmi-fields label span {
  color: #c4cbd3;
}

.bmi-result,
.balance-note {
  border: 1px solid rgba(212, 175, 106, 0.35);
  border-radius: 10px;
  background: rgba(191, 154, 84, 0.08);
}

.bmi-result p {
  color: #c9cfd6;
}

.bmi-dot--ideal {
  box-shadow: 0 0 12px rgba(191, 154, 84, 0.55);
}


/* ==========================================================================
   §12  NUTRITION / DIET PLANNER  (ivory feature panel)
   ========================================================================== */

.nutrition--featured {
  background:
    radial-gradient(circle at 85% 12%, rgba(191, 154, 84, 0.10), transparent 32%),
    var(--bg-soft);
}

.nutrition-board {
  border: 1px solid var(--line-strong) !important;
  border-radius: 22px;
  background: var(--ivory) !important;
  color: var(--ivory-text);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.nutrition-board__top {
  border-color: rgba(29, 26, 19, 0.14) !important;
  color: var(--ivory-muted);
}

.nutrition-types article {
  border-color: rgba(29, 26, 19, 0.12) !important;
  border-radius: 10px;
  background: rgba(29, 26, 19, 0.045) !important;
}

.nutrition-types strong { color: var(--ivory-text) !important; }
.nutrition-types span   { color: var(--ivory-muted) !important; }

.nutrition-process span {
  border-color: rgba(29, 26, 19, 0.20) !important;
  background: #1d1a13;
  color: var(--lime-strong) !important;
}

.nutrition-process p { color: var(--ivory-text) !important; }

.nutrition-feature-note,
.nutrition small {
  color: var(--muted);
}


/* ==========================================================================
   §13  EXERCISE LIBRARY PREVIEW
   ========================================================================== */

.exercise-preview {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 82% 35%, rgba(191, 154, 84, 0.06), transparent 30%),
    var(--bg-soft);
}

.exercise-preview-card {
  padding: 30px;
  border-color: rgba(191, 154, 84, 0.28);
  background:
    linear-gradient(145deg, rgba(191, 154, 84, 0.07), transparent 44%),
    var(--panel);
}

.exercise-preview-card__badge {
  border: 1px solid rgba(212, 175, 106, 0.55);
  border-radius: 999px;
  background: rgba(191, 154, 84, 0.12);
  color: var(--lime-strong);
}

.exercise-preview-card strong {
  color: #f1e7d5;
  font-family: var(--font-display);
}

.exercise-preview-card p {
  color: var(--muted);
}


/* ==========================================================================
   §14  GALLERY
   ========================================================================== */

.gallery-preview {
  border-block: 1px solid var(--line);
  background: var(--bg-soft);
}

.gallery-grid {
  gap: 12px;
}

.gallery-tile {
  border-color: var(--line) !important;
  border-radius: var(--radius) !important;
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.gallery-tile img {
  filter: saturate(0.90) contrast(1.06);
}

.gallery-tile figcaption {
  color: #e8e2d4;
  letter-spacing: 0.02em;
}


/* ==========================================================================
   §15  ENQUIRY FORM
   ========================================================================== */

.enquiry {
  background:
    radial-gradient(circle at 14% 26%, rgba(191, 154, 84, 0.06), transparent 30%),
    var(--bg-soft);
}

.enquiry-form {
  border: 1px solid var(--line) !important;
  border-radius: var(--radius-lg) !important;
  background: var(--panel) !important;
  box-shadow: var(--shadow-soft);
}

.form-note,
.form-status {
  color: var(--muted);
}

.form-status[data-state="error"]   { color: #ff9d8a; }
.form-status[data-state="success"] { color: var(--lime-strong); }


/* ==========================================================================
   §16  FORM CONTROLS  (shared across BMI, enquiry, member, reservation)
   ========================================================================== */

.bmi-fields input,
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea,
.member-form input,
.reservation-form input,
.reservation-form select,
.reservation-form textarea,
.phone-control,
.account-fact {
  min-height: 50px;
  border: 1px solid rgba(190, 165, 120, 0.20) !important;
  border-radius: 8px !important;
  background: rgba(8, 9, 12, 0.85) !important;
  color: var(--text) !important;
  padding: 13px 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.enquiry-form textarea,
.reservation-form textarea {
  min-height: 0;
}

.bmi-fields input:focus,
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus,
.member-form input:focus,
.reservation-form input:focus,
.reservation-form select:focus,
.reservation-form textarea:focus {
  border-color: var(--lime) !important;
  outline: none;
  box-shadow: 0 0 0 4px rgba(191, 154, 84, 0.14);
}

::placeholder {
  color: rgba(146, 154, 164, 0.60);
}

.field-row > label,
.reservation-form label {
  color: #d5dae0;
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.03em;
}

.field-row label span {
  color: var(--muted);
  font-weight: 600;
}


/* ==========================================================================
   §17  CONTACT SECTION
   ========================================================================== */

.contact {
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.visit-details,
.map-frame {
  border-color: var(--line) !important;
  border-radius: var(--radius-lg) !important;
  background: var(--panel) !important;
  box-shadow: var(--shadow-soft);
}

.visit-row {
  border-color: var(--line);
}

.visit-row > span { color: var(--lime); }
.visit-row p      { color: #e3e7ec; }

.map-frame {
  border-color: rgba(191, 154, 84, 0.22) !important;
}

.map-frame::before {
  content: "Need For Strength · Neemuch";
  border-color: rgba(212, 175, 106, 0.45) !important;
  border-radius: 999px !important;
  background: rgba(8, 9, 12, 0.88) !important;
  color: var(--lime-strong) !important;
}

.map-frame iframe {
  filter: grayscale(1) invert(0.9) sepia(0.14) hue-rotate(170deg) contrast(0.88);
}

.contact-mini {
  color: var(--lime);
}


/* ==========================================================================
   §18  FOOTER
   ========================================================================== */

.site-footer {
  border-top: 1px solid var(--line) !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(191, 154, 84, 0.04), transparent 34%),
    #06070a !important;
  color: var(--text);
}

.site-footer .brand-word,
.site-footer h2 {
  color: var(--text);
}

.site-footer .brand small {
  color: var(--muted);
}

.site-footer a,
.site-footer p {
  color: var(--muted);
}

.site-footer a:hover {
  color: var(--lime-strong);
}

.footer-grid h2 {
  color: var(--lime);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  color: #6e757e;
}


/* ==========================================================================
   §19  FLOATING CONTACT + MOBILE BOTTOM BAR
   ========================================================================== */

.floating-contact {
  border: 1px solid rgba(212, 175, 106, 0.50) !important;
  border-radius: 999px !important;
  background: rgba(8, 9, 12, 0.92) !important;
  color: var(--lime-strong) !important;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.50);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mobile-actions {
  border-top: 1px solid var(--line) !important;
  background: rgba(8, 9, 12, 0.97) !important;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 -14px 36px rgba(0, 0, 0, 0.45);
}

.mobile-actions button {
  background: linear-gradient(110deg, #dfc078, #b8873e);
  color: var(--lime-ink);
}


/* ==========================================================================
   §20  SOFTWARE NOTICES
   ========================================================================== */

.software-notice {
  border: 1px solid rgba(212, 175, 106, 0.40);
  border-radius: 16px;
  background: rgba(191, 154, 84, 0.07);
  color: #d8cfc0;
}

.software-notice strong {
  color: var(--lime-strong);
}


/* ==========================================================================
   §21  MEMBER / INNER PAGES
   ========================================================================== */

.member-body,
.exercise-body,
.diet-body {
  background:
    radial-gradient(circle at 86% 8%, rgba(191, 154, 84, 0.06), transparent 30%),
    var(--bg) !important;
}

.member-privacy,
.member-status,
.member-intro,
.account-heading > div > p:last-child,
.account-empty {
  color: var(--muted);
}

.account-fact strong,
.account-card__head h2 {
  color: var(--text);
}

.exercise-modal,
.diet-planner-card,
.plan-result,
.planner-trust,
.planner-method {
  border-color: var(--line) !important;
  background: var(--panel) !important;
  color: var(--text);
  box-shadow: var(--shadow);
}

.customer-page-hero h1 {
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.92;
}

.page-hero {
  border-bottom-color: var(--line);
  background:
    radial-gradient(circle at 80% 20%, rgba(191, 154, 84, 0.08), transparent 34%),
    var(--bg-soft);
}

.page-cta {
  border-color: rgba(191, 154, 84, 0.22);
  background: rgba(191, 154, 84, 0.05);
}


/* ==========================================================================
   §22  DIET CTAs
   ========================================================================== */

.diet-header-cta,
.button--diet-primary {
  border-color: rgba(224, 196, 140, 0.85);
  border-radius: 10px;
  background: linear-gradient(115deg, #e0c080, #b8873e);
  color: var(--lime-ink);
  box-shadow: 0 14px 34px rgba(184, 135, 62, 0.20);
}

.button--diet-primary:hover,
.diet-header-cta:hover {
  border-color: #f0dab2;
  background: linear-gradient(115deg, #f0dab2, #cfa45f);
  box-shadow: 0 18px 44px rgba(184, 135, 62, 0.28);
}

.mobile-diet-action {
  background: linear-gradient(110deg, #dfc078, #b8873e) !important;
  color: var(--lime-ink) !important;
}


/* ==========================================================================
   §23  REVEALS / ANIMATIONS
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}


/* ==========================================================================
   §24  ATHLETE MASCOT  (runtime-injected 3D element)
   ========================================================================== */

#gf-athlete-loading {
  color: var(--lime-strong) !important;
}

#gf-curl-counter {
  border-color: var(--lime-strong) !important;
  color: var(--lime-strong) !important;
  background: rgba(8, 9, 12, 0.90) !important;
  box-shadow: 0 5px 20px rgba(191, 154, 84, 0.25) !important;
}

.gf-rep-label {
  color: var(--lime-strong) !important;
  text-shadow: 0 3px 15px rgba(191, 154, 84, 0.50) !important;
}

@media (max-width: 900px) {
  #gf-athlete-3d {
    width: 112px !important;
    height: 194px !important;
  }
}

@media (max-width: 640px) {
  #gf-athlete-3d,
  #gf-curl-counter,
  .gf-rep-label {
    display: none !important;
  }
}


/* ==========================================================================
   §25  RESPONSIVE — 1080 px
   ========================================================================== */

@media (max-width: 1080px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .price-card {
    min-height: 0;
  }
}


/* ==========================================================================
   §26  RESPONSIVE — 820 px  (tablet / mobile nav)
   ========================================================================== */

@media (max-width: 820px) {
  .hero {
    min-height: auto;
  }

  /* Stack hero to single column: text first, image below */
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 36px;
    padding: 120px 0 60px;
  }

  .hero-image-panel {
    aspect-ratio: 16 / 10;
    max-height: 420px;
  }

  /* Legacy hero-media (if still present) */
  .hero-media {
    opacity: 0.42;
  }

  .hero-media::before {
    background:
      linear-gradient(180deg, rgba(8, 9, 12, 0.55), rgba(8, 9, 12, 0.82) 55%, rgba(8, 9, 12, 0.96)),
      linear-gradient(92deg, rgba(8, 9, 12, 0.80), rgba(8, 9, 12, 0.35));
  }

  .price-card {
    min-height: 0;
  }

  .owner-demo-secondary-grid,
  .cue-master-cards {
    grid-template-columns: 1fr;
  }

  /* Floating header needs tighter inset on tablet */
  .site-header {
    inset: 8px 10px auto;
    border-radius: 12px;
  }
}


/* ==========================================================================
   §27  RESPONSIVE — 640 px  (small mobile)
   ========================================================================== */

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
    --radius: 16px;
  }

  .site-header {
    inset: 6px 8px auto;
    border-radius: 10px;
  }

  .hero-split {
    padding: 110px 0 48px;
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(2.9rem, 14vw, 4.6rem);
  }

  .hero-tagline {
    font-size: 1rem;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-image-panel {
    aspect-ratio: 16 / 10;
    max-height: 320px;
  }

  .section-heading h2,
  .nutrition-intro h2,
  .enquiry-copy h2,
  .bmi-copy h2 {
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   §28  RESPONSIVE — 560 px
   ========================================================================== */

@media (max-width: 560px) {
  :root {
    --shell: min(100% - 24px, 1180px);
  }

  .hero h1 {
    font-size: clamp(2.6rem, 13vw, 4rem);
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-split {
    padding: 100px 0 40px;
  }
}


/* ==========================================================================
   §29  RESPONSIVE — 390 px  (compact phones)
   ========================================================================== */

@media (max-width: 390px) {
  .brand-word {
    font-size: 1.08rem;
  }

  .hero h1 {
    font-size: 2.6rem;
  }

  .hero-tagline {
    font-size: 0.92rem;
  }

  .button {
    padding-inline: 16px;
  }

  .site-header {
    inset: 4px 6px auto;
    border-radius: 8px;
  }
}


/* ==========================================================================
   §30  REDUCED MOTION
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
