/* ============================================================
   APEX PRIVATE FIT — style.css
   Production-ready stylesheet
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES
   ============================================================ */

:root {
  /* Colors */
  --bg:           #1a1814;
  --surface:      #221f19;
  --surface-alt:  #2a2620;
  --divider:      #35312a;
  --amber:        #C8732A;
  --amber-hover:  #b5621f;
  --gold:         #D4A843;
  --olive:        #8B9A2E;
  --cream:        #F0EDE8;
  --text:         #F0EDE8;
  --text-muted:   #b8b2a8;
  --text-faint:   #7a7268;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Border Radius */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Spacing (4px base) */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-7:  28px;
  --space-8:  32px;
  --space-9:  40px;
  --space-10: 48px;
  --space-11: 56px;
  --space-12: 64px;
  --space-13: 72px;
  --space-14: 80px;
  --space-15: 96px;
  --space-16: 112px;
  --space-17: 128px;
  --space-18: 144px;
  --space-19: 160px;
  --space-20: 192px;

  /* Type Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.75rem;
  --text-5xl:  3.75rem;
  --text-6xl:  5rem;
}


/* ============================================================
   2. BASE RESET
   ============================================================ */

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background-color: var(--amber);
  color: #0e0c09;
}

img,
video {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

button {
  font-family: var(--font-body);
}


/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */

/* Offset all anchor sections so sticky nav doesn't cover headings */
section[id] {
  scroll-margin-top: 80px;
}

.section-container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left:  clamp(20px, 5vw, 60px);
  padding-right: clamp(20px, 5vw, 60px);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-sub {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 auto;
  line-height: 1.75;
}


/* ============================================================
   4. BUTTONS
   ============================================================ */

.btn {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}

.btn--amber {
  background-color: var(--amber);
  color: #0e0c09;
  border: 1px solid var(--amber);
}

.btn--amber:hover {
  background-color: var(--amber-hover);
  border-color: var(--amber-hover);
}

.btn--ghost {
  background-color: transparent;
  color: var(--cream);
  border: 1px solid rgba(240, 237, 232, 0.4);
}

.btn--ghost:hover {
  border-color: var(--cream);
}

.btn--outline {
  background-color: transparent;
  color: var(--cream);
  border: 1px solid var(--divider);
}

.btn--outline:hover {
  border-color: var(--amber);
  color: var(--amber);
}

.btn--lg {
  padding: 16px 40px;
  font-size: 0.82rem;
}

.btn--full {
  width: 100%;
  justify-content: center;
}


/* ============================================================
   5. NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 68px;
  display: flex;
  align-items: center;
  background-color: transparent;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.nav--scrolled {
  background-color: rgba(14, 12, 9, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--divider);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav__logo-mark svg {
  display: block;
}

.nav__logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.nav__logo-apex {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--cream);
}

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--text-faint);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav__link:hover {
  color: var(--cream);
}

.nav__cta {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  background-color: var(--amber);
  color: #0e0c09;
  border: 1px solid var(--amber);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.nav__cta:hover {
  background-color: var(--amber-hover);
  border-color: var(--amber-hover);
}

.nav__hamburger {
  display: none;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background-color: var(--cream);
  transition: transform 0.3s ease, opacity 0.3s ease;
}


/* ============================================================
   6. HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 8vh;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__bg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to right,
      rgba(14, 12, 9, 0.96) 0%,
      rgba(14, 12, 9, 0.82) 38%,
      rgba(14, 12, 9, 0.45) 65%,
      rgba(14, 12, 9, 0.10) 100%
    ),
    linear-gradient(
      to top,
      rgba(14, 12, 9, 0.75) 0%,
      transparent 45%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 clamp(24px, 6vw, 80px);
  max-width: 680px;
}

.hero__content--left {
  margin-left: 0;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}

.hero__headline-em {
  font-style: italic;
  color: var(--gold);
}

.hero__sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: #ddd9d2;
  max-width: 44ch;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}


/* ============================================================
   7. TRUST BAR
   ============================================================ */

.trust-bar {
  background-color: var(--surface);
  border-top: 1px solid var(--divider);
  border-bottom: 1px solid var(--divider);
  padding: 18px 0;
}

.trust-bar__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 20px;
}

.trust-bar__item svg {
  color: var(--amber);
  flex-shrink: 0;
}

.trust-bar__divider {
  width: 1px;
  height: 20px;
  background-color: var(--divider);
}


/* ============================================================
   8. SERVICES
   ============================================================ */

.services {
  padding: clamp(80px, 10vw, 140px) 0;
  background-color: var(--bg);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-color: var(--divider);
  margin-top: 4rem;
}

.service-card {
  background-color: var(--surface);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background-color 0.2s ease;
}

.service-card:hover {
  background-color: var(--surface-alt);
}

.service-card--women {
  border-top: 2px solid var(--amber);
}

.service-card--senior {
  border-top: 2px solid var(--olive);
}

.service-card__icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold);
  stroke: var(--gold);
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--cream);
}

.service-card__desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: auto;
}


/* ============================================================
   9. GYM PHOTO DIVIDER
   ============================================================ */

.gym-photo-divider {
  position: relative;
  height: 340px;
  overflow: hidden;
}

.gym-photo-divider__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gym-photo-divider__overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 12, 9, 0.58);
}

.gym-photo-divider__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 clamp(20px, 5vw, 60px);
}

.gym-photo-divider__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--cream);
  text-align: center;
  line-height: 1.4;
  opacity: 0.92;
  max-width: 760px;
}


/* ============================================================
   10. PRICING
   ============================================================ */

.pricing {
  padding: clamp(80px, 10vw, 140px) 0;
  background-color: var(--surface);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background-color: var(--divider);
  margin-top: 4rem;
}

.pricing-card {
  background-color: var(--bg);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-card--featured {
  background-color: var(--surface-alt);
  position: relative;
  border-top: 2px solid var(--amber);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--amber);
  color: #0e0c09;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--cream);
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--gold);
}

.pricing-card__per {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
}

.pricing-card__sub-price {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-faint);
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.pricing-card__features li {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}

.pricing-card__features li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--amber);
  opacity: 0.7;
}

.pricing__note {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--text-faint);
  text-align: center;
  margin-top: 3rem;
  line-height: 1.6;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}


/* ============================================================
   11. ABOUT
   ============================================================ */

.about {
  padding: clamp(80px, 10vw, 140px) 0;
  background-color: var(--bg);
}

.about .section-container {
  display: flex;
  flex-direction: column;
  gap: clamp(3rem, 6vw, 6rem);
}

.about__photo-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

.about__photo-frame {
  width: min(420px, 85vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(212, 168, 67, 0.4);
  box-shadow: 0 0 60px rgba(200, 115, 42, 0.15);
}

.about__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.about__stats {
  display: flex;
  gap: 4rem;
  justify-content: center;
}

.about__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.about__stat-value {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--gold);
}

.about__stat-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.about__bio {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  text-align: center;
}

.about__title {
  text-align: center;
}

.about__bio-text {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.about__bio-text p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.about__bio .btn {
  align-self: center;
  margin-top: 0.5rem;
}


/* ============================================================
   12. CONTACT
   ============================================================ */

.contact {
  padding: clamp(80px, 10vw, 140px) 0;
  background-color: var(--surface);
}

.contact__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
  margin-bottom: 4rem;
}

.contact__header-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact__header-text .section-eyebrow {
  text-align: left;
}

.contact__header-text .section-title {
  text-align: left;
}

.contact__sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
}

.contact__detail--inline {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.contact__detail--inline svg {
  width: 18px;
  height: 18px;
  color: var(--amber);
  flex-shrink: 0;
}

.contact__cta-card {
  background-color: var(--surface-alt);
  border: 1px solid var(--divider);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact__cta-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
}

.contact__cta-heading {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
}

.contact__cta-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.contact__map-wrap {
  text-align: center;
}

.contact__map-eyebrow {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 1.5rem;
  opacity: 0.85;
}

.contact__map {
  width: 100%;
  max-width: 780px;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--divider);
  display: block;
  margin: 0 auto;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}

.contact__map:hover {
  opacity: 1;
}


/* ============================================================
   13. FOOTER
   ============================================================ */

.footer {
  background-color: #0e0d0b;
  border-top: 1px solid var(--divider);
  padding: 3rem 0;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer__brand-name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--cream);
  display: block;
}

.footer__brand-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  color: var(--text-faint);
  letter-spacing: 0.12em;
  display: block;
  margin-top: 2px;
}

.footer__nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__link {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-faint);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--cream);
}

.footer__link--accent {
  color: var(--amber);
}

.footer__link--accent:hover {
  color: var(--gold);
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: var(--text-faint);
  text-align: center;
}


/* ============================================================
   14. REVEAL ANIMATION
   ============================================================ */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================================
   15. RESPONSIVE — max-width 1024px
   ============================================================ */

@media (max-width: 1024px) {
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================================================
   16. RESPONSIVE — max-width 768px
   ============================================================ */

@media (max-width: 768px) {
  /* Nav */
  .nav__links {
    display: none;
  }

  .nav__links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background-color: rgba(14, 12, 9, 0.98);
    z-index: 200;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
  }

  .nav__links.open .nav__link {
    font-size: 1.5rem;
    letter-spacing: 0.06em;
  }

  .nav__links.open .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  /* Hero */
  .hero__content {
    max-width: 100%;
  }

  .hero__bg-overlay {
    background:
      linear-gradient(
        to bottom,
        rgba(14, 12, 9, 0.5) 0%,
        rgba(14, 12, 9, 0.85) 100%
      ),
      rgba(14, 12, 9, 0.6);
  }

  /* Services */
  .services__grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing__grid {
    grid-template-columns: 1fr;
  }

  /* About */
  .about__stats {
    gap: 2rem;
  }

  /* Contact */
  .contact__header {
    grid-template-columns: 1fr;
  }

  /* Trust bar divider */
  .trust-bar__divider {
    display: none;
  }
}


/* ============================================================
   17. RESPONSIVE — max-width 480px
   ============================================================ */

@media (max-width: 480px) {
  .about__stats {
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }

  .about__stat {
    min-width: 120px;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */

.testimonials {
  padding: clamp(60px, 8vw, 100px) 0;
  background: var(--bg);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--divider);
  border: 1px solid var(--divider);
  margin-top: 48px;
}

.testimonial-card {
  background: var(--surface);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card__stars {
  color: var(--amber);
  font-size: 1rem;
  letter-spacing: 2px;
}

.testimonial-card__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--divider);
  margin-top: auto;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 4px;
  background: var(--amber);
  color: var(--bg);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 2px;
}

.testimonial-card__meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  color: rgba(240,237,232,0.5);
  margin: 0;
}

@media (max-width: 700px) {
  .testimonials__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   CANCELLATION POLICY BLOCK
   ============================================================ */

.policy-block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--surface-alt);
  border: 1px solid var(--divider);
  border-left: 3px solid var(--amber);
  border-radius: 4px;
  padding: clamp(20px, 3vw, 32px);
  margin-top: 40px;
}

.policy-block__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--amber);
  margin-top: 2px;
}

.policy-block__icon svg {
  width: 22px;
  height: 22px;
}

.policy-block__title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber);
  margin: 0 0 10px;
}

.policy-block__text {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  color: rgba(240,237,232,0.75);
  line-height: 1.75;
  margin: 0;
}

.policy-block__text strong {
  color: var(--cream);
  font-weight: 600;
}

@media (max-width: 500px) {
  .policy-block {
    flex-direction: column;
    gap: 12px;
  }
}
