/* ═══════════════════════════════════════════
   Confident Man Lifestyle — Compiled CSS
   No Tailwind CDN needed. All utilities inlined.
   ═══════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'DM Sans', sans-serif;
    background: #0a0a0a;
    color: #f5f0eb;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    line-height: 1.5;
}
::selection { background: #c9a84c; color: black; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul { list-style: none; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #c9a84c; }

/* ─── FONTS ─── */
.font-sans { font-family: 'DM Sans', sans-serif; }
.font-display { font-family: 'Playfair Display', serif; }

/* ─── COLORS ─── */
.bg-brand-dark { background-color: #0a0a0a; }
.bg-brand-charcoal { background-color: #1a1a1a; }
.bg-brand-gray { background-color: #2a2a2a; }
.bg-brand-accent { background-color: #c9a84c; }
.bg-brand-accent-light { background-color: #e8d59a; }
.bg-black { background-color: #000; }
.bg-black\/30 { background-color: rgba(0,0,0,0.3); }
.bg-black\/95 { background-color: rgba(0,0,0,0.95); }
.bg-brand-dark\/80 { background-color: rgba(10,10,10,0.8); }
.bg-brand-accent\/\[0\.03\] { background-color: rgba(201,168,76,0.03); }
.bg-brand-accent\/\[0\.08\] { background-color: rgba(201,168,76,0.08); }
.text-brand-dark { color: #0a0a0a; }
.text-brand-accent { color: #c9a84c; }
.text-brand-accent-light { color: #e8d59a; }
.text-brand-cream { color: #f5f0eb; }
.text-brand-muted { color: #8a8580; }
.text-brand-body { color: #c5bfb8; }
.text-white { color: #fff; }
.text-black { color: #000; }

/* ─── LAYOUT ─── */
.container { width: 100%; max-width: 1280px; margin-left: auto; margin-right: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.inset-5 { top: 1.25rem; right: 1.25rem; bottom: 1.25rem; left: 1.25rem; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.-top-12 { top: -3rem; }
.top-\[-1px\] { top: -1px; }
.top-\[-200px\] { top: -200px; }
.right-\[-200px\] { right: -200px; }
.right-8 { right: 2rem; }
.w-full { width: 100%; }
.w-20 { width: 5rem; }
.w-\[800px\] { width: 800px; }
.h-full { height: 100%; }
.h-0 { height: 0; }
.h-px { height: 1px; }
.h-20 { height: 5rem; }
.h-\[3px\] { height: 3px; }
.h-\[350px\] { height: 350px; }
.h-\[500px\] { height: 500px; }
.h-\[800px\] { height: 800px; }
.min-h-screen { min-height: 100vh; }
.min-w-\[40px\] { min-width: 40px; }
.max-w-5xl { max-width: 64rem; }
.max-w-\[550px\] { max-width: 550px; }
.max-w-\[600px\] { max-width: 600px; }
.max-w-\[700px\] { max-width: 700px; }
.max-w-\[800px\] { max-width: 800px; }
.max-w-\[1000px\] { max-width: 1000px; }
.max-w-\[1100px\] { max-width: 1100px; }
.max-w-\[1200px\] { max-width: 1200px; }
.overflow-hidden { overflow: hidden; }
.overflow-x-hidden { overflow-x: hidden; }

/* ─── FLEXBOX ─── */
.flex { display: flex; }
.inline-block { display: inline-block; }
.block { display: block; }
.hidden { display: none; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-9 { gap: 2.25rem; }
.gap-12 { gap: 3rem; }
.gap-20 { gap: 5rem; }

/* ─── GRID ─── */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ─── SPACING ─── */
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3\.5 { padding-left: 0.875rem; padding-right: 0.875rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-1\.5 { padding-top: 0.375rem; padding-bottom: 0.375rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.pb-16 { padding-bottom: 4rem; }
.pt-28 { padding-top: 7rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-7 { margin-bottom: 1.75rem; }
.mb-9 { margin-bottom: 2.25rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-8 { margin-top: 2rem; }
.ml-1 { margin-left: 0.25rem; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.space-y-0 > * + * { margin-top: 0; }

/* ─── TYPOGRAPHY ─── */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-\[11px\] { font-size: 11px; }
.text-\[12px\] { font-size: 12px; }
.text-\[13px\] { font-size: 13px; }
.text-\[10px\] { font-size: 10px; }
.text-\[15px\] { font-size: 15px; }
.text-\[17px\] { font-size: 17px; }
.text-\[28px\] { font-size: 28px; }
.text-\[32px\] { font-size: 32px; }
.text-\[clamp\(42px\,7vw\,82px\)\] { font-size: clamp(42px, 7vw, 82px); }
.text-\[clamp\(32px\,4vw\,52px\)\] { font-size: clamp(32px, 4vw, 52px); }
.font-light { font-weight: 300; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-black { font-weight: 900; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.leading-none { line-height: 1; }
.leading-relaxed { line-height: 1.625; }
.leading-\[0\.5\] { line-height: 0.5; }
.leading-\[1\.05\] { line-height: 1.05; }
.leading-\[1\.15\] { line-height: 1.15; }
.tracking-\[1px\] { letter-spacing: 1px; }
.tracking-\[2px\] { letter-spacing: 2px; }
.tracking-\[3px\] { letter-spacing: 3px; }
.tracking-\[4px\] { letter-spacing: 4px; }
.tracking-widest { letter-spacing: 0.1em; }

/* ─── BORDERS ─── */
.border { border: 1px solid; }
.border-2 { border-width: 2px; }
.border-b { border-bottom: 1px solid; }
.border-r { border-right: 1px solid; }
.border-t { border-top: 1px solid; }
.border-l-2 { border-left: 2px solid; }
.border-y { border-top: 1px solid; border-bottom: 1px solid; }
.border-brand-accent { border-color: #c9a84c; }
.border-brand-accent\/10 { border-color: rgba(201,168,76,0.1); }
.border-brand-accent\/15 { border-color: rgba(201,168,76,0.15); }
.border-brand-accent\/20 { border-color: rgba(201,168,76,0.2); }
.border-brand-accent\/25 { border-color: rgba(201,168,76,0.25); }
.border-white\/10 { border-color: rgba(255,255,255,0.1); }
.border-white\/20 { border-color: rgba(255,255,255,0.2); }
.border-white\/\[0\.05\] { border-color: rgba(255,255,255,0.05); }
.border-white\/\[0\.06\] { border-color: rgba(255,255,255,0.06); }
.border-white\/\[0\.08\] { border-color: rgba(255,255,255,0.08); }
.border-white\/30 { border-color: rgba(255,255,255,0.3); }
.rounded-full { border-radius: 9999px; }

/* ─── EFFECTS ─── */
.opacity-0 { opacity: 0; }
.opacity-30 { opacity: 0.3; }
.opacity-50 { opacity: 0.5; }
.opacity-60 { opacity: 0.6; }
.opacity-70 { opacity: 0.7; }
.shadow-\[0_0_50px_rgba\(201\,168\,76\,0\.15\)\] { box-shadow: 0 0 50px rgba(201,168,76,0.15); }
.backdrop-blur-xl { -webkit-backdrop-filter: blur(24px); backdrop-filter: blur(24px); }
.backdrop-blur-md { -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px); }
.backdrop-blur-sm { -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.blur-\[200px\] { filter: blur(200px); }
.grayscale { filter: grayscale(100%); }
.contrast-125 { filter: contrast(1.25); }
.grayscale.contrast-125 { filter: grayscale(100%) contrast(1.25); }

/* ─── TRANSFORMS ─── */
.transform { transform: translateX(0); }
.scale-95 { transform: scale(0.95); }
.scale-100 { transform: scale(1); }
.-z-10 { z-index: -10; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-\[60\] { z-index: 60; }
.z-\[9999\] { z-index: 9999; }
.pointer-events-none { pointer-events: none; }

/* ─── TRANSITIONS ─── */
.transition-colors { transition-property: color, background-color, border-color; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4,0,0.2,1); }
.transition-all { transition-property: all; transition-duration: 150ms; transition-timing-function: cubic-bezier(0.4,0,0.2,1); }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4,0,0.2,1); }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4,0,0.2,1); }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }

/* ─── GRADIENTS ─── */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-gradient-stops)); }
.bg-gradient-to-b { background-image: linear-gradient(to bottom, var(--tw-gradient-stops)); }
.from-transparent { --tw-gradient-from: transparent; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-black { --tw-gradient-from: #000; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-brand-dark { --tw-gradient-from: #0a0a0a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.from-brand-gray { --tw-gradient-from: #2a2a2a; --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent); }
.via-brand-accent\/30 { --tw-gradient-stops: var(--tw-gradient-from), rgba(201,168,76,0.3), var(--tw-gradient-to, transparent); }
.to-transparent { --tw-gradient-to: transparent; }
.to-brand-charcoal { --tw-gradient-to: #1a1a1a; }

/* ─── ASPECT RATIO ─── */
.aspect-video { aspect-ratio: 16 / 9; }
.pb-\[56\.25\%\] { padding-bottom: 56.25%; }
.object-cover { object-fit: cover; }
.object-top { object-position: top; }

/* ─── HOVER STATES ─── */
.hover\:text-brand-accent:hover { color: #c9a84c; }
.hover\:bg-brand-accent-light:hover { background-color: #e8d59a; }
.hover\:bg-brand-accent:hover { background-color: #c9a84c; }
.hover\:border-brand-accent:hover { border-color: #c9a84c; }
.hover\:border-brand-accent\/30:hover { border-color: rgba(201,168,76,0.3); }
.hover\:border-brand-accent\/40:hover { border-color: rgba(201,168,76,0.4); }
.hover\:-translate-y-0\.5:hover { transform: translateY(-0.125rem); }
.hover\:-translate-y-1:hover { transform: translateY(-0.25rem); }
.hover\:shadow-\[0_8px_30px_rgba\(201\,168\,76\,0\.3\)\]:hover { box-shadow: 0 8px 30px rgba(201,168,76,0.3); }
.hover\:grayscale-0:hover { filter: none; }

/* ─── GROUP HOVER ─── */
.group:hover .group-hover\:text-brand-accent { color: #c9a84c; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:grayscale-0 { filter: none; }
.group:hover .group-hover\:opacity-30 { opacity: 0.3; }

/* ─── LINK UNDERLINE ─── */
.link-underline { position: relative; }
.link-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -4px;
    left: 0;
    background-color: #c9a84c;
    transition: width 0.3s ease;
}
.link-underline:hover::after { width: 100%; }

/* ─── VIDEO CARD ─── */
.video-card:hover .play-btn {
    transform: scale(1.1);
    background-color: #c9a84c;
    color: black;
    border-color: #c9a84c;
}

/* ─── COACH CARD ─── */
.coach-card { transition: transform 0.4s ease; }
.coach-card:hover { transform: translateY(-4px); }

/* ─── VIDEO MODAL ─── */
#video-modal { transition: opacity 0.4s ease-out; }
#modal-content { transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1); }

/* ─── MOBILE MENU ─── */
.menu-open { opacity: 1 !important; pointer-events: auto !important; }

/* ─── INLINE SVG ICONS ─── */
.icon { display: inline-block; width: 1em; height: 1em; vertical-align: -0.125em; fill: currentColor; }
.icon-lg { width: 1.25rem; height: 1.25rem; }
.icon-xl { width: 1.5rem; height: 1.5rem; }
.icon-3xl { width: 1.875rem; height: 1.875rem; }

/* ─── AOS ANIMATIONS (inlined essentials) ─── */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
    transition-duration: 0.8s;
    transition-timing-function: ease-out;
}
[data-aos].aos-animate { opacity: 1; }
[data-aos="fade-up"] { transform: translateY(30px); }
[data-aos="fade-up"].aos-animate { transform: translateY(0); }
[data-aos="fade-down"] { transform: translateY(-30px); }
[data-aos="fade-down"].aos-animate { transform: translateY(0); }
[data-aos="fade-right"] { transform: translateX(-30px); }
[data-aos="fade-right"].aos-animate { transform: translateX(0); }
[data-aos="fade-left"] { transform: translateX(30px); }
[data-aos="fade-left"].aos-animate { transform: translateX(0); }

/* ─── RESPONSIVE: sm (640px) ─── */
@media (min-width: 640px) {
    .sm\:flex-row { flex-direction: row; }
}

/* ─── RESPONSIVE: md (768px) ─── */
@media (min-width: 768px) {
    .md\:flex { display: flex; }
    .md\:hidden { display: none; }
    .md\:flex-row { flex-direction: row; }
    .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
    .md\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
    .md\:py-32 { padding-top: 8rem; padding-bottom: 8rem; }
    .md\:pt-32 { padding-top: 8rem; }
    .md\:pb-24 { padding-bottom: 6rem; }
    .md\:p-8 { padding: 2rem; }
    .md\:p-9 { padding: 2.25rem; }
    .md\:p-10 { padding: 2.5rem; }
    .md\:mb-6 { margin-bottom: 1.5rem; }
    .md\:mb-12 { margin-bottom: 3rem; }
    .md\:mb-16 { margin-bottom: 4rem; }
    .md\:mb-20 { margin-bottom: 5rem; }
    .md\:mx-12 { margin-left: 3rem; margin-right: 3rem; }
    .md\:border-r { border-right: 1px solid; }
    .md\:border-b-0 { border-bottom: 0; }
    .md\:text-\[clamp\(32px\,4vw\,52px\)\] { font-size: clamp(32px, 4vw, 52px); }
    .md\:text-\[17px\] { font-size: 17px; }
}

/* ─── RESPONSIVE: lg (1024px) ─── */
@media (min-width: 1024px) {
    .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
