/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
  font-feature-settings: 'liga' 1, 'kern' 1;
  text-rendering: optimizeLegibility;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Enhanced Typography - Matching Your Image Fonts */
h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  letter-spacing: 0.15em;
  font-family: 'Playfair Display', serif;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.05;
  margin: 0 0 1.5rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  margin: 0 0 1rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin: 0 0 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
}

p {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #2e2e2e;
  font-weight: 300;
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.02em;
}

.lead {
  font-size: 1.25rem;
  margin: 0 0 2rem;
  color: #4a4a4a;
  line-height: 1.7;
  font-weight: 300;
}

/* Enhanced Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #eae8e3;
  backdrop-filter: blur(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 1rem;
}

.brand a {
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #1a1a1a;
  text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.brand a:hover {
  color: #666;
  transform: translateY(-1px);
}

.nav a {
  margin-left: 2rem;
  color: #1a1a1a;
  text-decoration: none;
  opacity: 0.8;
  font-weight: 300;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.nav a:hover {
  opacity: 1;
  color: #000;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 2px;
  background: #1a1a1a;
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav a:hover::after {
  width: 100%;
}

/* Homepage Hero with Background - No Text Overlay */
.home-hero-no-text {
  position: relative;
  min-height: 100vh;
  background: url('indexhtmlbackround.jpg') no-repeat center center;
  background-size: cover;
}

/* Portfolio Section with 2page jpg */
.portfolio-section {
  padding: 6rem 0;
  background: #fff;
}

.portfolio-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.portfolio-text h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
}

.portfolio-text p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.portfolio-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.portfolio-image img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

/* Preview Sections */
.preview-section {
  padding: 6rem 0;
  border-bottom: 1px solid #eae8e3;
}

.preview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.preview-content.reverse {
  direction: rtl;
}

.preview-content.reverse > * {
  direction: ltr;
}

.preview-text h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
}

.preview-text p {
  font-size: 1.25rem;
  line-height: 1.8;
  color: #4a4a4a;
  margin-bottom: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.preview-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.preview-image img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}

/* Enhanced Hero Sections */
.hero,
.fitness-hero,
.websites-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.fitness-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: url('fitnessbackround.png') no-repeat center center;
  background-size: cover;
  filter: brightness(0.8);
}

.websites-hero .hero-bg {
  position: absolute;
  inset: 0;
  background: url('websitebackround.pdf') no-repeat center center;
  background-size: cover;
  filter: brightness(0.8);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.fitness-hero .hero-content,
.websites-hero .hero-content {
  color: white;
  z-index: 10;
  max-width: 800px;
  padding: 2rem;
}

.fitness-hero h1,
.websites-hero h1 {
  color: white;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 2rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
  font-weight: 300;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Portfolio Hero with Website Background */
.portfolio-hero-website {
  position: relative;
  min-height: 100vh;
  background: url('websitebackround.pdf') no-repeat center center;
  background-size: cover;
  filter: brightness(0.9);
}
/* Bio Section */
.bio-section {
  padding: 6rem 0;
  background: #fff;
  border-bottom: 1px solid #eae8e3;
}

/* Layout grid for image + text */
.bio-content-grid {
  display: grid;
  grid-template-columns: auto 1fr;  /* image auto-sizes, text takes rest */
  gap: 3rem;                        /* space between them */
  align-items: start;                /* align items at top */
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Bio Section */
.bio-section {
  padding: 6rem 0;
  background: #fff;
  border-bottom: 1px solid #eae8e3;
}

/* Grid layout: text left, image right */
.bio-content-grid {
  display: grid;
  grid-template-columns: 1fr auto;  /* text expands on left, image fixed on right */
  gap: 3rem;                        /* space between */
  align-items: center;              /* aligns both to the same line */
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* Bio text (left) */
.bio-text {
  max-width: 600px;
  text-align: left;
}

.bio-text h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
  color: #1a1a1a;
}

.bio-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: #2e2e2e;
  margin-bottom: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}
.bio-content-grid {
  display: grid;
  grid-template-columns: 1fr auto; /* bio left, image right */
  gap: 3rem;
  align-items: start;              /* align both to the top */
}

.bio-image {
  max-width: 300px;
  justify-self: end;               /* keep on the right side */
  margin-top: -20px;               /* adjust upward as needed */
}

.bio-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
/* Headshot image (right) */
.bio-image {
  max-width: 350px;     
  justify-self: end;     /* stay on the right */
  align-self: start;     /* move image to top instead of middle */
  margin-top: -30px;     /* adjust this value as needed */
}

.bio-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bio-image img:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}
.bio-container {
  display: flex;
  justify-content: center;     /* keeps both pushed toward middle */
  align-items: center;
  gap: 60px;                   /* controls the space between text & headshot */
  margin: 80px auto;           /* pushes whole block off edges */
  max-width: 1100px;           /* keeps it from stretching too wide */
  padding: 0 40px;             /* adds buffer from screen edges */
}

.bio-text {
  flex: 1;
  max-width: 600px;            /* ensures text doesn’t sprawl */
}

.bio-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.bio-image img {
  width: 100%;                 /* headshot fills its column */
  max-width: 500px;            /* same max as bio text */
  border-radius: 8px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.social-icon {
  width: 70px;   /* make them bigger */
  height: 70px;  /* force equal square shape */
  object-fit: contain; /* keeps the logo from stretching */
  border-radius: 8px;  /* optional: rounds corners for consistency */
}

/* Enhanced Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  border: 2px solid #eae8e3;
  border-radius: 50px;
  padding: 1rem 2rem;
  font-weight: 300;
  font-size: 0.9rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
  font-family: 'Inter', sans-serif;
}

.btn.primary {
  background: #1a1a1a;
  color: #fff;
  border-color: #1a1a1a;
  box-shadow: 0 8px 25px rgba(26, 26, 26, 0.15);
}

.btn.primary:hover {
  background: #000;
  border-color: #000;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(26, 26, 26, 0.25);
}

.btn.ghost {
  background: transparent;
  color: #1a1a1a;
  border-color: #1a1a1a;
}

.btn.ghost:hover {
  background: #1a1a1a;
  color: #fff;
  transform: translateY(-3px);
}

.cta-row {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Enhanced Section Styles */
.section {
  padding: 6rem 0;
  border-bottom: 1px solid #eae8e3;
}

.section-head {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.section-head h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: 'Playfair Display', serif;
}

.section-head p {
  color: #6b6b6b;
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 0;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* Services Intro */
.services-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.services-intro h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.5rem;
}

.services-intro p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.services-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.services-features .feature {
  padding: 2rem;
  background: #fafafa;
  border-radius: 15px;
  border: 1px solid #eae8e3;
}

.services-features .feature h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #1a1a1a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.services-features .feature p {
  color: #6b6b6b;
  margin-bottom: 0;
  line-height: 1.6;
  font-weight: 300;
}

/* YouTube Section */
.youtube-section {
  max-width: 800px;
  margin: 0 auto;
}

.youtube-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  background: #fff;
  border: 1px solid #eae8e3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.youtube-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.youtube-thumbnail {
  position: relative;
  overflow: hidden;
}

.youtube-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.youtube-card:hover .youtube-thumbnail img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 0, 0, 0.9);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: rgba(255, 0, 0, 1);
  transform: translate(-50%, -50%) scale(1.1);
}

.youtube-content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.youtube-content h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #1a1a1a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.youtube-content p {
  color: #4a4a4a;
  margin-bottom: 2rem;
  line-height: 1.7;
  font-weight: 300;
}

/* Enhanced Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.card {
  background: #fff;
  border: 1px solid #eae8e3;
  border-radius: 20px;
  padding: 2.5rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a1a1a, #666, #1a1a1a);
  background-size: 200% 100%;
  animation: gradientMove 4s ease infinite;
}

@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border-color: #1a1a1a;
}

.card h3 {
  margin: 0 0 1rem;
  color: #1a1a1a;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card p {
  color: #4a4a4a;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
}

.text-link {
  color: #1a1a1a;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  font-weight: 400;
  transition: all 0.3s ease;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.text-link:hover {
  border-bottom: 2px solid #1a1a1a;
  color: #000;
}

/* Enhanced Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.video-item {
  background: #fff;
  border: 1px solid #eae8e3;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.video-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  border-color: #1a1a1a;
}

.video-placeholder {
  background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
  padding: 3rem 2rem;
  text-align: center;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.video-placeholder.featured {
  min-height: 350px;
  background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
}

.video-label {
  font-weight: 400;
  font-size: 1.1rem;
  color: #1a1a1a;
  margin-bottom: 1rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.video-placeholder p {
  color: #6b6b6b;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-weight: 300;
}

.video-duration {
  background: #1a1a1a;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 400;
}

/* Enhanced Workout Grid */
.workout-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
}

.workout-item {
  background: #fff;
  border: 1px solid #eae8e3;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.workout-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border-color: #1a1a1a;
}

.workout-image {
  height: 250px;
  overflow: hidden;
}

.workout-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.workout-item:hover .workout-image img {
  transform: scale(1.08);
}

.workout-content {
  padding: 2.5rem;
}

.workout-content h3 {
  margin-bottom: 1rem;
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.workout-content p {
  color: #4a4a4a;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.workout-features {
  list-style: none;
  margin-bottom: 2rem;
}

.workout-features li {
  color: #6b6b6b;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
  font-weight: 300;
}

.workout-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1.1rem;
}

.workout-price {
  font-size: 2rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.1em;
}

.buy-btn {
  width: 100%;
  text-align: center;
}

/* Enhanced Template Grid */
.template-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
}

.template-item {
  background: #fff;
  border: 1px solid #eae8e3;
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.template-item:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  border-color: #1a1a1a;
}

.template-image {
  height: 250px;
  overflow: hidden;
}

.template-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.template-item:hover .template-image img {
  transform: scale(1.08);
}

.template-content {
  padding: 2.5rem;
}

.template-content h3 {
  margin-bottom: 1rem;
  color: #1a1a1a;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.template-content p {
  color: #4a4a4a;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-weight: 300;
}

.template-features {
  list-style: none;
  margin-bottom: 2rem;
}

.template-features li {
  color: #6b6b6b;
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
  line-height: 1.6;
  font-weight: 300;
}

.template-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 1.1rem;
}

.template-price {
  font-size: 2rem;
  font-weight: 400;
  color: #1a1a1a;
  margin-bottom: 2rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: 0.1em;
}

/* Enhanced Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.process-step {
  text-align: center;
  padding: 3rem 2rem;
}

.step-number {
  width: 80px;
  height: 80px;
  background: #1a1a1a;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 400;
  margin: 0 auto 2rem;
  font-family: 'Playfair Display', serif;
  box-shadow: 0 15px 35px rgba(26, 26, 26, 0.2);
}

.process-step h3 {
  margin-bottom: 1.5rem;
  color: #1a1a1a;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.process-step p {
  color: #6b6b6b;
  margin-bottom: 0;
  line-height: 1.7;
  font-weight: 300;
}

/* Enhanced Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
}

.feature-item {
  text-align: center;
  padding: 3rem 2rem;
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  display: block;
}

.feature-item h3 {
  margin-bottom: 1rem;
  color: #1a1a1a;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-item p {
  color: #6b6b6b;
  margin-bottom: 0;
  line-height: 1.7;
  font-weight: 300;
}

/* Purchase Information */
.purchase-info {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.purchase-info h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.5rem;
}

.purchase-info p {
  font-size: 1.25rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 3rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.purchase-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.purchase-steps .step {
  padding: 2rem;
  background: #fafafa;
  border-radius: 15px;
  border: 1px solid #eae8e3;
  text-align: center;
}

.purchase-steps .step-number {
  width: 60px;
  height: 60px;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.purchase-steps .step h3 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #1a1a1a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.purchase-steps .step p {
  color: #6b6b6b;
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 300;
}

/* Enhanced CTA Section */
.cta {
  background: #fff;
  border-top: 1px solid #eae8e3;
  padding: 6rem 0;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  text-align: center;
}

.cta-content h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.cta-content p {
  color: #6b6b6b;
  font-size: 1.25rem;
  margin-bottom: 0;
  line-height: 1.7;
  font-weight: 300;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Enhanced Footer */
.site-footer {
  border-top: 1px solid #eae8e3;
  margin-top: 0;
  background: #fafafa;
  padding: 4rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  padding: 2rem 0;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 300;
  font-size: 1.25rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.footer-brand p {
  color: #6b6b6b;
  font-size: 0.9rem;
  margin-bottom: 0;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-contact p {
  color: #6b6b6b;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.footer-message h4 {
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #1a1a1a;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-message p {
  color: #6b6b6b;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  font-weight: 300;
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
}

@media (max-width: 960px) {
  .portfolio-content,
  .bio-content-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .nav {
    display: none;
  }
  
  .cards {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cta-inner {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
  }
  
  .youtube-card {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .youtube-content {
    padding: 2rem;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .workout-grid,
  .template-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .features-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .purchase-steps {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .hero,
  .fitness-hero,
  .websites-hero {
    padding: 3rem 0;
    min-height: 70vh;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .card {
    padding: 2rem;
  }
  
  .portfolio-hero-website {
    min-height: 80vh;
  }
  
  .features-grid,
  .process-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .header-inner {
    height: 50px;
  }
  
  .bio-content-grid {
    padding: 2rem;
    margin: 1rem;
  }
}

@media (max-width: 480px) {
  .header-inner {
    height: 45px;
  }
  
  .brand a {
    font-size: 0.75rem;
    letter-spacing: 0.25em;
  }
  
  .hero h1,
  .fitness-hero h1,
  .websites-hero h1 {
    font-size: 2rem;
  }
  
  .lead {
    font-size: 1.1rem;
  }
  
  .btn {
    padding: 0.875rem 1.5rem;
    font-size: 0.8rem;
  }
  
  .bio-text h1 {
    font-size: 1.5rem;
  }
  
  .video-placeholder {
    padding: 2rem 1.5rem;
    min-height: 200px;
  }
  
  .workout-content,
  .template-content {
    padding: 2rem;
  }
  
  .workout-image,
  .template-image {
    height: 200px;
  }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .section-head {
    margin-bottom: 3rem;
  }
  
  .portfolio-section {
    padding: 4rem 0;
  }
  
  .bio-section {
    padding: 4rem 0;
  }
  
  .preview-section {
    padding: 4rem 0;
  }
}

