:root {
  --navy: #1a3d6e;
  --navy-dark: #15325a;
  --navy-light: #2c5282;
  --light-blue: #e8f4fc;
  --light-blue-deep: #d4eaf7;
  --yellow: #e8b923;
  --yellow-hover: #d4a61e;
  --text: #5a6b7d;
  --heading: #1a3d6e;
  --white: #ffffff;
  --shadow: 0 8px 30px rgba(26, 61, 110, 0.08);
  --radius: 14px;
  --max-width: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(100% - 40px, var(--max-width));
  margin-inline: auto;
}

/* Wavy background utility */
.wave-bg {
  position: relative;
  background-color: var(--light-blue);
}

.wave-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' fill-opacity='0.35' d='M0,192L48,197.3C96,203,192,213,288,229.3C384,245,480,267,576,250.7C672,235,768,181,864,181.3C960,181,1056,235,1152,234.7C1248,235,1344,181,1392,154.7L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z'%3E%3C/path%3E%3C/svg%3E");
  background-size: 100% 120px;
  background-repeat: repeat-x;
  background-position: top;
  opacity: 0.6;
  pointer-events: none;
}

/* Header */
.site-header {
  padding: 18px 0;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 72px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  display: block;
}

@media (max-width: 640px) {
  .logo-img {
    height: 56px;
    max-width: 180px;
  }
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: transform 0.2s, opacity 0.2s;
}

.social-links a:hover {
  transform: scale(1.08);
}

.social-links .fb { background: #1877f2; color: #fff; }
.social-links .ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); color: #fff; }
.social-links .yt { background: #ff0000; color: #fff; }
.social-links .phone { background: #7c3aed; color: #fff; }

/* Buttons */
.btn-join {
  display: inline-block;
  background: var(--yellow);
  color: var(--navy-dark);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  text-transform: uppercase;
}

.btn-join:hover {
  background: var(--yellow-hover);
  transform: translateY(-1px);
}

/* Hero */
.hero {
  padding: 50px 0 40px;
  background: linear-gradient(180deg, #f5fafd 0%, var(--white) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.hero-content h1 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--heading);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.hero-content .byline {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-light);
  margin-bottom: 20px;
}

.hero-content p {
  margin-bottom: 28px;
  font-size: 0.95rem;
}

/* Stats bar */
.stats-bar {
  margin-top: -20px;
  padding-bottom: 50px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-box {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 28px 16px;
  border-radius: var(--radius);
}

.stat-box .number {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
  min-width: 5ch;
}

.stat-box .label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.95;
}

/* Section common */
.section {
  padding: 70px 0;
}

.section-title {
  text-align: center;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: var(--heading);
  font-weight: 800;
  margin-bottom: 18px;
}

.section-intro {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 48px;
  font-size: 0.95rem;
}

/* What is section */
.what-is {
  background: var(--white);
}

.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 61, 110, 0.06);
}

.feature-card .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
}

.feature-card h3 {
  color: var(--heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.88rem;
  line-height: 1.6;
}

/* CTA band */
.cta-band {
  padding: 36px 0;
  position: relative;
  overflow: hidden;
}

.cta-band .wave-bg-inner {
  background: var(--light-blue-deep);
  border-radius: var(--radius);
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  overflow: hidden;
}

.cta-band .wave-bg-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q25 0 50 10 T100 10' stroke='%23b8d9f0' fill='none' stroke-width='1' opacity='0.5'/%3E%3C/svg%3E") repeat;
  opacity: 0.4;
}

.cta-band h2 {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--heading);
  position: relative;
  z-index: 1;
}

.cta-band .btn-join {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

/* Why join */
.why-join {
  background: linear-gradient(180deg, var(--white) 0%, #f8fbfd 100%);
}

.percent-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.percent-item {
  text-align: center;
}

.percent-item .pct {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--heading);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  min-width: 4ch;
}

.percent-item .pct-label {
  font-size: 0.82rem;
  color: var(--text);
  margin-top: 8px;
  max-width: 160px;
  margin-inline: auto;
}

.benefit-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.benefit-icon-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(26, 61, 110, 0.06);
  border: 1px solid rgba(26, 61, 110, 0.05);
}

.benefit-icon-card .b-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  color: var(--navy);
}

.benefit-icon-card span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--heading);
  display: block;
}

/* Featured in — auto carousel */
.featured-in {
  padding: 60px 0;
  background: var(--white);
  overflow: hidden;
}

.featured-in .section-title {
  margin-bottom: 36px;
}

.logo-carousel {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.logo-carousel-track {
  display: flex;
  width: max-content;
}

.logo-carousel-inner {
  display: flex;
  align-items: center;
  gap: 72px;
  padding: 8px 36px;
  animation: logo-marquee-ltr 28s linear infinite;
  will-change: transform;
}

.logo-carousel:hover .logo-carousel-inner {
  animation-play-state: paused;
}

.logo-slide {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}

.logo-slide img {
  height: 42px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: opacity 0.25s, filter 0.25s;
}

.logo-slide:hover img {
  opacity: 1;
  filter: grayscale(0.4);
}

@keyframes logo-marquee-ltr {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-carousel-inner {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    max-width: var(--max-width);
    margin-inline: auto;
  }

  .logo-carousel {
    mask-image: none;
    -webkit-mask-image: none;
  }

  .logo-slide[aria-hidden="true"] {
    display: none;
  }
}

/* 5 Reasons */
.reasons-section {
  padding: 70px 0;
  background: var(--light-blue);
  position: relative;
}

.reasons-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 40px;
  align-items: start;
}

.reasons-box {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
}

.reasons-box h2 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 16px;
}

.reasons-box p {
  font-size: 0.88rem;
  opacity: 0.9;
  margin-bottom: 28px;
  line-height: 1.6;
}

.reasons-box .btn-join {
  background: var(--yellow);
  color: var(--navy-dark);
}

.reasons-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.reason-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.reason-item .check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.75rem;
  margin-top: 2px;
}

.reason-item h3 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--heading);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.reason-item p {
  font-size: 0.88rem;
  line-height: 1.55;
}

/* Coach section */
.coach-section {
  padding: 70px 0;
  background: var(--white);
}

.coach-header {
  margin-bottom: 36px;
}

.coach-header .label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--navy-light);
  text-transform: uppercase;
}

.coach-header h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--heading);
}

.coach-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: start;
}

.coach-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.coach-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top center;
}

.coach-bio p {
  font-size: 0.92rem;
  margin-bottom: 16px;
  text-align: justify;
}

.video-placeholder {
  margin-top: 28px;
  background: #111;
  border-radius: var(--radius);
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.video-placeholder .play-btn {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.15);
  border: 3px solid var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder .play-btn::after {
  content: "";
  border: 14px solid transparent;
  border-left: 22px solid var(--white);
  margin-left: 8px;
}

/* Upcoming workshops */
.workshops-section {
  padding: 70px 0;
  background: linear-gradient(180deg, #f5fafd 0%, var(--white) 100%);
}

.workshop-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.workshop-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 61, 110, 0.06);
  transition: transform 0.2s;
}

.workshop-card:hover {
  transform: translateY(-4px);
}

.workshop-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.workshop-card .info {
  padding: 16px;
}

.workshop-card h3 {
  font-size: 0.9rem;
  color: var(--heading);
  font-weight: 700;
  margin-bottom: 6px;
}

.workshop-card p {
  font-size: 0.78rem;
  color: var(--text);
}

a.workshop-card {
  display: block;
  color: inherit;
}

/* Workshop details page */
.breadcrumb {
  padding: 16px 0;
  background: #f5fafd;
  font-size: 0.85rem;
}

.breadcrumb .container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--navy-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: var(--heading);
}

.breadcrumb span:last-child {
  color: var(--text);
  font-weight: 500;
}

.workshop-loading {
  padding: 80px 0;
  text-align: center;
  color: var(--text);
}

.workshop-hero {
  padding: 40px 0 56px;
  background: linear-gradient(180deg, #f5fafd 0%, var(--white) 100%);
}

.workshop-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.workshop-hero-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.workshop-hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.workshop-status {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--yellow);
  color: var(--navy-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 50px;
}

.workshop-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 8px;
}

.workshop-hero-content h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--heading);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 8px;
}

.workshop-subtitle {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-light);
  margin-bottom: 16px;
}

.workshop-lead {
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.65;
}

.workshop-quick-facts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.workshop-quick-facts li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
}

.workshop-quick-facts i {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--light-blue);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.85rem;
}

.workshop-quick-facts strong {
  display: block;
  color: var(--heading);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.workshop-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn-outline {
  display: inline-block;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  padding: 14px 36px;
  border-radius: 50px;
  border: 2px solid var(--navy);
  color: var(--navy);
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-full {
  width: 100%;
  text-align: center;
}

.workshop-info-section {
  padding: 60px 0 70px;
}

.section-title-left {
  text-align: left;
  margin-bottom: 20px;
}

.workshop-detail-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  align-items: start;
}

.workshop-main h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading);
  margin: 32px 0 16px;
}

.workshop-main > p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.workshop-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.workshop-highlights li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.55;
}

.workshop-highlights i {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  margin-top: 2px;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.schedule-item {
  display: flex;
  gap: 20px;
  padding: 20px 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(26, 61, 110, 0.08);
  box-shadow: 0 4px 16px rgba(26, 61, 110, 0.05);
}

.schedule-day {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 8px 12px;
  border-radius: 8px;
  height: fit-content;
}

.schedule-item h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 6px;
}

.schedule-item p {
  font-size: 0.88rem;
  line-height: 1.55;
}

.workshop-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 61, 110, 0.06);
}

.sidebar-card h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 20px;
}

.sidebar-card dl {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.sidebar-card dl div {
  border-bottom: 1px solid rgba(26, 61, 110, 0.06);
  padding-bottom: 12px;
}

.sidebar-card dl div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.sidebar-card dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 4px;
}

.sidebar-card dd {
  font-size: 0.88rem;
  color: var(--heading);
  font-weight: 600;
  line-height: 1.45;
}

.sidebar-coach .label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy-light);
  margin-bottom: 4px;
}

.sidebar-coach h3 {
  margin-bottom: 10px;
}

.sidebar-coach p {
  font-size: 0.88rem;
  margin-bottom: 14px;
  line-height: 1.55;
}

.sidebar-coach a {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-light);
  text-decoration: underline;
}

.sidebar-coach a:hover {
  color: var(--heading);
}

.workshop-related .workshop-cards {
  margin-top: 0;
}

/* Stories */
.stories-section {
  padding: 70px 0 90px;
  background: var(--white);
}

.story-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.story-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #111;
  position: relative;
}

.story-card .thumb {
  aspect-ratio: 9 / 16;
  max-height: 320px;
  object-fit: cover;
  width: 100%;
  opacity: 0.85;
}

.story-card .overlay-title {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
  line-height: 1.3;
  z-index: 2;
}

.story-card .yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 34px;
  background: #ff0000;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.story-card .yt-play::after {
  content: "";
  border: 8px solid transparent;
  border-left: 14px solid white;
  margin-left: 4px;
}

.story-card .watch-yt {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.75);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  z-index: 2;
}

/* Contact */
.contact-section {
  padding: 56px 0;
  background: linear-gradient(180deg, #f8fbfd 0%, var(--light-blue) 100%);
}

.contact-section .section-title {
  text-align: center;
  margin-bottom: 32px;
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow);
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-details a {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading);
  transition: color 0.2s;
}

.contact-details a:hover {
  color: var(--navy-light);
}

.contact-details i {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--light-blue);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.btn-get-in-touch {
  flex-shrink: 0;
}

/* Footer */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  padding: 24px;
  font-size: 0.82rem;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 28px 24px;
  }

  .contact-details {
    width: 100%;
  }

  .contact-details a {
    align-items: flex-start;
  }

  .contact-details a span {
    flex: 1;
    min-width: 0;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .btn-get-in-touch {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 1024px) {
  .hero-grid,
  .reasons-grid,
  .coach-grid,
  .workshop-hero-grid,
  .workshop-detail-grid {
    grid-template-columns: 1fr;
  }

  .workshop-sidebar {
    position: static;
  }

  .workshop-hero-image img {
    height: 300px;
  }

  .hero-image img,
  .coach-photo img {
    height: 300px;
  }

  .stats-grid,
  .feature-cards,
  .percent-row,
  .benefit-icons,
  .workshop-cards,
  .story-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .reasons-box {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .workshop-cards,
  .story-cards {
    grid-template-columns: 1fr;
  }

  .cta-band .wave-bg-inner {
    flex-direction: column;
    text-align: center;
  }

  .contact-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    padding: 24px 20px;
  }

  .contact-details {
    width: 100%;
  }

  .contact-details a {
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 0.95rem;
  }

  .contact-details a span {
    flex: 1;
    min-width: 0;
    line-height: 1.5;
    overflow-wrap: anywhere;
  }

  .contact-details i {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    margin-top: 2px;
  }

  .btn-get-in-touch {
    width: 100%;
    text-align: center;
  }

  .social-links {
    gap: 10px;
  }

  .social-links a {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }
}
