/* ═══════════════════════════════════════════════════════════
   TWS FITNESS — PRODUCTION STYLESHEET
   ═══════════════════════════════════════════════════════════ */

/* ─── RESET & BASE ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg:            #0a0a0a;
  --bg-secondary:  #121212;
  --card:          #1a1a1a;
  --card-hover:    #222222;
  --text:          #ffffff;
  --text-muted:    #a0a0a0;
  --text-dim:      #666666;
  --gold:          #c9a84c;
  --gold-light:    #dcc070;
  --border:        #2e2e2e;
  --border-gold:   rgba(201,168,76,.35);
  --shadow-gold:   0 0 40px -10px rgba(201,168,76,.30);
  --shadow-card:   0 25px 50px -12px rgba(0,0,0,.5);
  --radius:        12px;
  --gold-grad:     linear-gradient(135deg, #c9a84c, #dcc070);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ─── CUSTOM SCROLLBAR ─── */
::-webkit-scrollbar          { width: 7px; }
::-webkit-scrollbar-track    { background: var(--bg); }
::-webkit-scrollbar-thumb    { background: #2e2e2e; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════ */

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section {
  padding: 7rem 1.5rem;
  position: relative;
}
@media (min-width:768px)  { .section { padding: 8rem 3rem; } }
@media (min-width:1024px) { .section { padding: 9rem 5rem; } }

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  margin-bottom: 4.5rem;
}

.display-heading {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 1.2rem;
}
@media (min-width:768px) { .display-heading { font-size: 3rem; } }

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ─── BUTTONS ─── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  background: var(--gold-grad);
  color: #0a0a0a;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform .3s, box-shadow .3s;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-gold.btn-full { width: 100%; justify-content: center; }

.btn-outlined {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 2rem;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 4px;
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.btn-outlined:hover {
  background: rgba(201,168,76,.1);
  transform: translateY(-2px);
}

/* ─── GRAIN OVERLAY ─── */
.grain-overlay { position: relative; }
.grain-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .03;
  pointer-events: none;
  z-index: 1;
}

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s cubic-bezier(.25,.1,.25,1),
              transform .7s cubic-bezier(.25,.1,.25,1);
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translate(0,0);
}
.reveal--left  { transform: translateX(40px); }
.reveal--right { transform: translateX(-40px); }
.reveal--left.visible, .reveal--right.visible { transform: translate(0,0); }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background .5s, border-color .5s, backdrop-filter .5s;
}
.navbar.scrolled {
  background: rgba(10,10,10,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -.04em;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: none;
  gap: 2.5rem;
}
@media (min-width:768px) { .nav-links { display: flex; } }

.nav-link {
  font-size: .78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  position: relative;
  transition: color .3s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .3s;
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }

.nav-cta { display: none; }
@media (min-width:768px) { .nav-cta { display: inline-flex; } }

/* Mobile toggle */
.mobile-toggle {
  display: flex;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
}
@media (min-width:768px) { .mobile-toggle { display: none; } }

.hamburger-icon span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger-icon span + span { margin-top: 5px; }

.mobile-menu.open ~ .nav-inner .hamburger-icon span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu.open ~ .nav-inner .hamburger-icon span:nth-child(2) { opacity: 0; }
.mobile-menu.open ~ .nav-inner .hamburger-icon span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 5rem; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  padding: 2.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
  z-index: 99;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-link {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .3s;
}
.mobile-link:hover { color: var(--text); }
.mobile-cta { margin-top: 1rem; align-self: flex-start; }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg,
      #0a0a0a 0%,
      #111111 25%,
      #161410 50%,
      #0e0e0e 75%,
      #0a0a0a 100%);
  background-size: 400% 400%;
  animation: gradientShift 18s ease infinite;
}

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

/* Ambient orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  animation: orbFloat 7s ease-in-out infinite;
}
.hero-orb--1 { top:30%; right:22%; width:460px; height:460px; background:rgba(201,168,76,.06); }
.hero-orb--2 { bottom:30%; left:15%; width:360px; height:360px; background:rgba(201,168,76,.04); animation-delay:4s; }
.hero-orb--3 { top:48%; left:48%; width:280px; height:280px; background:rgba(201,168,76,.05); animation-delay:2s; }

@keyframes orbFloat {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(-18px); }
}

/* Grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .025;
  background-image:
    linear-gradient(rgba(201,168,76,.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.4) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 900px;
  animation: heroIn .8s .3s cubic-bezier(.25,.1,.25,1) both;
}
@keyframes heroIn {
  from { opacity:0; transform:translateY(24px); }
  to   { opacity:1; transform:translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.4rem;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,.22);
  border-radius: 100px;
  background: rgba(201,168,76,.06);
  backdrop-filter: blur(4px);
  margin-bottom: 2.4rem;
}
.hero-badge svg { stroke: var(--gold); }

.hero-title {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.03em;
  margin-bottom: 1.8rem;
}
@media (min-width:640px)  { .hero-title { font-size: 4.2rem; } }
@media (min-width:1024px) { .hero-title { font-size: 5.2rem; } }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 3rem;
  line-height: 1.75;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width:520px) {
  .hero-actions { flex-direction: row; justify-content: center; }
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  color: var(--text-dim);
  transition: color .3s;
}
.scroll-indicator:hover { color: var(--gold); }
.scroll-label {
  font-size: .6rem;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-weight: 500;
}
.scroll-indicator svg { animation: bounce 2s ease infinite; }
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(5px); }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════════════════ */
.about-section { background: var(--bg-secondary); }

.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}
@media (min-width:1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }

.about-text { order: 2; }
@media (min-width:1024px) { .about-text { order: 1; } }

.about-para {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.2rem;
}
.about-para strong { color: var(--text); }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  margin-top: 1.5rem;
}
.stat-value {
  font-size: 2.6rem;
  font-weight: 900;
  display: block;
}
.stat-label {
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--text-muted);
  margin-top: .35rem;
  display: block;
}

/* About image card */
.about-image { order: 1; position: relative; }
@media (min-width:1024px) { .about-image { order: 2; } }

.about-card {
  aspect-ratio: 4/5;
  background: linear-gradient(145deg, var(--card), var(--bg-secondary));
  border: 1px solid var(--border);
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  box-shadow: var(--shadow-card);
  max-width: 420px;
  margin: 0 auto;
}
.about-avatar {
  width: 7rem; height: 7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,.22), rgba(201,168,76,.06));
  border: 1px solid rgba(201,168,76,.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .8rem;
}
.about-avatar span {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.about-name { font-size: .95rem; font-weight: 600; }
.about-role { font-size: .78rem; color: var(--text-dim); }

/* Deco boxes */
.about-deco {
  position: absolute;
  border-radius: .9rem;
  z-index: 0;
  pointer-events: none;
}
.about-deco--1 {
  bottom: -1.5rem; right: calc(50% - 210px + (-1.5rem));
  width: 10rem; height: 10rem;
  border: 1px solid rgba(201,168,76,.18);
}
.about-deco--2 {
  top: -1.5rem; left: calc(50% - 210px + (-1.5rem));
  width: 6rem; height: 6rem;
  background: rgba(201,168,76,.05);
}

/* ═══════════════════════════════════════════════════════════
   GOALS
   ═══════════════════════════════════════════════════════════ */
.goals-section { background: var(--bg); }
.goals-bg-orb {
  position: absolute;
  top:50%; left:50%;
  transform: translate(-50%,-50%);
  width: 800px; height: 800px;
  background: rgba(201,168,76,.02);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.goals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}
@media (min-width:900px) { .goals-grid { grid-template-columns: repeat(4, 1fr); } }

.goal-card {
  background: rgba(26,26,26,.5);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: border-color .5s, background .5s, transform .4s;
  position: relative; z-index: 2;
}
.goal-card:hover {
  border-color: rgba(201,168,76,.35);
  background: rgba(26,26,26,.85);
  transform: translateY(-4px);
}
.goal-icon {
  width: 3.5rem; height: 3.5rem;
  margin: 0 auto 1.3rem;
  border-radius: .75rem;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s, background .3s;
}
.goal-card:hover .goal-icon { transform: scale(1.06); background: rgba(201,168,76,.14); }
.goal-icon svg { width:1.5rem; height:1.5rem; color: var(--gold); stroke: var(--gold); }

.goal-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .6rem; }
.goal-card p  { font-size: .84rem; color: var(--text-muted); line-height:1.6; }

/* ═══════════════════════════════════════════════════════════
   PROGRAMS
   ═══════════════════════════════════════════════════════════ */
.programs-section { background: var(--bg-secondary); }

.programs-grid {
  display: grid;
  gap: 1.2rem;
}
@media (min-width:768px) { .programs-grid { grid-template-columns: repeat(3, 1fr); } }

.program-card {
  background: rgba(26,26,26,.55);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.2rem 1.8rem;
  transition: border-color .5s, background .5s, transform .4s;
  display: flex;
  flex-direction: column;
}
.program-card:hover {
  border-color: rgba(201,168,76,.35);
  background: rgba(26,26,26,.85);
  transform: translateY(-4px);
}
.program-icon {
  width: 3rem; height: 3rem;
  border-radius: .75rem;
  background: rgba(201,168,76,.08);
  border: 1px solid rgba(201,168,76,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.8rem;
  transition: transform .3s;
}
.program-card:hover .program-icon { transform: scale(1.06); }
.program-icon svg { width:1.3rem; height:1.3rem; color: var(--gold); stroke: var(--gold); }

.program-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .8rem; }
.program-card > p { font-size: .9rem; color: var(--text-muted); line-height:1.7; margin-bottom: 1.5rem; }

.program-features { margin-bottom: 1.8rem; flex-grow: 1; }
.program-features li {
  font-size: .82rem;
  color: rgba(160,160,160,.85);
  padding: .35rem 0;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.program-features li::before {
  content: '';
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.program-link {
  font-size: .82rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  transition: gap .3s;
}
.program-card:hover .program-link { gap: .7rem; }

/* ═══════════════════════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════════════════════ */
.howitworks-section { background: var(--bg); }

.steps-wrapper { position: relative; }
.steps-line {
  display: none;
  position: absolute;
  top: 2.5rem; /* centred on the icon boxes */
  left: calc(16.67% + 2.5rem);
  right: calc(16.67% + 2.5rem);
  height: 1px;
  background: linear-gradient(90deg, rgba(201,168,76,.2), rgba(201,168,76,.4), rgba(201,168,76,.2));
}
@media (min-width:1024px) { .steps-line { display: block; } }

.steps-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width:768px)  { .steps-grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }

.step { text-align: center; }
.step-icon-wrap { position: relative; display: inline-block; margin-bottom: 2rem; }

.step-icon {
  width: 5rem; height: 5rem;
  border-radius: .9rem;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .3s, box-shadow .3s;
}
.step:hover .step-icon { border-color: rgba(201,168,76,.4); box-shadow: 0 4px 24px rgba(0,0,0,.3); }
.step-icon svg { width:2rem; height:2rem; color: rgba(201,168,76,.8); stroke: rgba(201,168,76,.8); transition: color .3s; }
.step:hover .step-icon svg { color: var(--gold); stroke: var(--gold); }

.step-badge {
  position: absolute;
  top: -.55rem; right: -.55rem;
  width: 1.75rem; height: 1.75rem;
  border-radius: 50%;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--gold);
}

.step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: .7rem; }
.step p  { font-size: .88rem; color: var(--text-muted); line-height: 1.7; max-width: 260px; margin: 0 auto; }

/* ═══════════════════════════════════════════════════════════
   PRICING
   ═══════════════════════════════════════════════════════════ */
.pricing-section { background: var(--bg-secondary); }

.pricing-card {
  max-width: 860px;
  margin: 0 auto;
  background: rgba(26,26,26,.5);
  border: 1px solid var(--border);
  border-radius: 1.6rem;
  padding: 2.5rem 2rem;
}
@media (min-width:768px) { .pricing-card { padding: 3.5rem; } }

.pricing-block-title {
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: .7rem;
  margin-bottom: 1.2rem;
}
.pricing-shield {
  width: 2rem; height: 2rem;
  border-radius: .6rem;
  background: rgba(201,168,76,.1);
  display: flex; align-items: center; justify-content: center;
}
.pricing-shield svg { color: var(--gold); stroke: var(--gold); }

.pricing-block-text {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1rem;
  padding-left: 2.7rem;
}

.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }

.pricing-columns {
  display: grid;
  gap: 2rem;
}
@media (min-width:640px) { .pricing-columns { grid-template-columns: 1fr 1fr; } }

.pricing-col h4 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }

.pricing-list li {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  font-size: .9rem;
  color: var(--text-muted);
  padding: .55rem 0;
}
.pricing-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .55rem;
}
.pricing-list--yes  li::before { background: var(--gold); }
.pricing-list--no   li::before { background: var(--text-dim); }
.pricing-list--no   li { color: rgba(160,160,160,.7); }

.pricing-cta {
  text-align: center;
  padding-top: .6rem;
}
.pricing-cta p { font-size: .92rem; color: var(--text-muted); margin-bottom: 1.4rem; }
.pricing-note { display: block; margin-top: 1rem; font-size: .72rem; color: var(--text-dim); }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonials-section { background: var(--bg); }

.testimonials-grid {
  display: grid;
  gap: 1.2rem;
}
@media (min-width:768px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

.testimonial-card {
  background: rgba(26,26,26,.45);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color .5s, background .5s;
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  border-color: rgba(201,168,76,.25);
  background: rgba(26,26,26,.7);
}

.testimonial-quote { color: rgba(201,168,76,.2); margin-bottom: 1.2rem; }
.testimonial-stars {
  color: var(--gold);
  font-size: .95rem;
  letter-spacing: .15rem;
  margin-bottom: 1.2rem;
  opacity: .85;
}
.testimonial-text {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 1.6rem;
  flex-grow: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 2.7rem; height: 2.7rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,.22), rgba(201,168,76,.06));
  border: 1px solid rgba(201,168,76,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .82rem;
  font-weight: 700;
  color: var(--gold);
}
.testimonial-name  { display: block; font-size: .82rem; font-weight: 600; }
.testimonial-role  { display: block; font-size: .72rem; color: var(--text-dim); }

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact-section { background: var(--bg-secondary); }
.contact-bg-orb {
  position: absolute;
  top: 0; right: 0;
  width: 600px; height: 600px;
  background: rgba(201,168,76,.02);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

/* Banner */
.contact-banner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
  padding: 3.5rem 1.5rem;
  border-radius: 1.6rem;
  background: linear-gradient(135deg, rgba(26,26,26,.7), rgba(26,26,26,.4));
  border: 1px solid var(--border);
  position: relative; z-index: 2;
}
.contact-banner-sub {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto; margin-right: auto;
}

/* Form wrapper */
.contact-form-wrap {
  max-width: 560px;
  margin: 0 auto;
  position: relative; z-index: 2;
}
.contact-form-title { font-size: 1.4rem; font-weight: 700; text-align:center; margin-bottom: .5rem; }
.contact-form-sub   { font-size: .88rem; color: var(--text-muted); text-align:center; margin-bottom: 2rem; }

/* Form */
.form-group { margin-bottom: 1.4rem; }
.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: .5rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 1.2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: .6rem;
  color: var(--text);
  font-family: inherit;
  font-size: .9rem;
  transition: border-color .3s, box-shadow .3s;
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-dim); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.1);
}
.form-group textarea { resize: none; }

.form-note {
  text-align: center;
  font-size: .72rem;
  color: var(--text-dim);
  margin-top: 1rem;
}

/* Success / Error feedback */
.form-success, .form-error {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: .9rem;
  margin-bottom: 1.5rem;
}
.form-success {
  background: rgba(201,168,76,.07);
  border: 1px solid rgba(201,168,76,.25);
}
.form-success svg { margin: 0 auto 1rem; color: var(--gold); stroke: var(--gold); }
.form-success h4 { font-size: 1.1rem; margin-bottom: .4rem; }
.form-success p  { font-size: .88rem; color: var(--text-muted); }

.form-error {
  background: rgba(220,60,60,.08);
  border: 1px solid rgba(220,60,60,.25);
}
.form-error p { font-size: .88rem; color: rgba(220,60,60,.9); }
.form-error a { color: var(--gold); text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.footer-top {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width:640px) { .footer-top { grid-template-columns: 1fr auto; } }

.footer-brand .logo { margin-bottom: 1rem; display: inline-block; }
.footer-brand-text {
  font-size: .88rem;
  color: var(--text-muted);
  max-width: 320px;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.footer-socials { display: flex; gap: .6rem; }
.footer-social {
  width: 2.75rem; height: 2.75rem;
  border-radius: .7rem;
  background: rgba(26,26,26,.6);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: border-color .3s, color .3s;
}
.footer-social:hover { border-color: rgba(201,168,76,.4); color: var(--gold); }

.footer-nav { text-align: left; }
@media (min-width:640px) { .footer-nav { text-align: right; } }
.footer-nav h4 {
  font-size: .7rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--text-dim);
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-nav li { margin-bottom: .6rem; }
.footer-nav a {
  font-size: .88rem;
  color: var(--text-muted);
  transition: color .3s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: .4rem;
  align-items: center;
}
@media (min-width:640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-copy, .footer-sign {
  font-size: .78rem;
  color: var(--text-dim);
}
.footer-sign { font-style: italic; }
