/* ════════════════════════════════════════════════════════════
   TENNIS & CLUB — design system
   Tokens and components shared by every page in /Tennis/app/.
   ════════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:     #C8A84B;
  --gold-dk:  #b09040;
  --navy:     #1a2535;
  --navy-hov: #253650;
  --dark:     #0d0f0e;
  --ink:      #1a1a18;
  --white:    #ffffff;
  --offwhite: #fafaf8;
  --gray100:  #f4f4f2;
  --gray200:  #e8e8e4;
  --gray300:  #d0d0cc;
  --gray500:  #8a8a86;
  --gray700:  #444440;
  --star:     #F5A623;
  --green:    #00b67a;
  --red:      #c0392b;
  --sans:     'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif:    'Libre Baskerville', Georgia, serif;
  --shadow-card: 0 1px 4px rgba(0,0,0,.04);
  --shadow-card-hov: 0 8px 28px rgba(0,0,0,.10);
  --pad-x: 60px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--white); color: var(--ink); font-size: 14px; -webkit-font-smoothing: antialiased; }
img  { display: block; max-width: 100%; }
a    { color: inherit; }
button { font-family: var(--sans); }

/* ══════════════════ NAV ══════════════════ */
.tc-nav {
  height: 60px; display: flex; align-items: center; gap: 18px;
  padding: 0 36px; position: absolute; top: 0; left: 0; right: 0; z-index: 99;
}
.tc-nav--solid { position: relative; background: var(--navy); }
.tc-nav-brand { display: flex; flex-direction: column; line-height: 1; text-decoration: none; margin-right: 14px; flex-shrink: 0; }
.tc-nav-brand-name { color: var(--white); font-size: 15px; font-weight: 800; letter-spacing: .8px; }
.tc-nav-brand-sub  { color: var(--gold); font-size: 7px; letter-spacing: 2.5px; text-transform: uppercase; margin-top: 2px; }
.tc-nav-links { display: flex; gap: 2px; flex: 1; }
.tc-nav-links a {
  color: rgba(255,255,255,.8); text-decoration: none; font-size: 13px; font-weight: 500;
  padding: 5px 9px; border-radius: 0; transition: color .15s; white-space: nowrap;
}
.tc-nav-links a:hover { color: #fff; }
.tc-nav-links a.active { color: #fff; box-shadow: inset 0 -2px 0 var(--gold); border-radius: 0; }
.tc-nav-right { display: flex; align-items: center; gap: 10px; position: relative; margin-left: auto; }

/* lang dropdown */
.tc-lang { position: relative; }
.tc-lang-btn {
  background: rgba(255,255,255,.92); border: 1px solid rgba(0,0,0,.18); color: var(--ink);
  padding: 4px 10px; border-radius: 0; font-size: 12px; font-weight: 600; cursor: pointer;
  display: flex; align-items: center; gap: 4px;
}
.tc-lang-menu {
  position: absolute; top: calc(100% + 6px); right: 0; background: var(--white);
  border: 1px solid var(--gray200); border-radius: 0; overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,.15); z-index: 300; display: none; min-width: 64px;
}
.tc-lang.open .tc-lang-menu { display: block; }
.tc-lang-item { padding: 8px 20px; font-size: 12px; cursor: pointer; background: var(--white); color: var(--ink); border-bottom: 1px solid var(--gray100); }
.tc-lang-item:hover { background: var(--gray100); }
.tc-lang-item.active { font-weight: 700; background: #f0f4ff; }

.tc-signin-btn {
  background: var(--navy); border: 1px solid var(--navy); color: var(--white);
  padding: 6px 18px; border-radius: 0; font-size: 13px; font-weight: 600; cursor: pointer; transition: background .2s;
  white-space: nowrap;
}
.tc-signin-btn:hover { background: var(--navy-hov); }
.tc-user { display: flex; align-items: center; gap: 8px; }
.tc-user-avatar {
  width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), #9a7030);
  display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 12px; font-weight: 700;
}
.tc-signout-btn {
  background: transparent; border: 1px solid rgba(255,255,255,.25); color: rgba(255,255,255,.8);
  padding: 4px 12px; border-radius: 0; font-size: 12px; cursor: pointer;
}
.tc-dash-link {
  color: #fff; text-decoration: none; font-size: 12px; font-weight: 700; letter-spacing: .04em;
  text-transform: uppercase; padding: 6px 12px; border: 1px solid rgba(255,255,255,.28); transition: background .2s;
}
.tc-dash-link:hover { background: rgba(255,255,255,.12); }

/* auth modal: role picker + google */
.tc-rolepick { display: flex; flex-direction: column; gap: 6px; }
.tc-rolepick-lbl { font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--gray500); }
.tc-roles { display: flex; gap: 6px; }
.tc-role {
  flex: 1; padding: 9px 6px; border: 1px solid var(--gray200); background: var(--white); color: var(--gray700);
  font-size: 12px; font-weight: 600; cursor: pointer; transition: all .15s; font-family: var(--sans);
}
.tc-role:hover { border-color: var(--gray300); }
.tc-role.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.tc-google-btn {
  display: flex; align-items: center; justify-content: center; gap: 9px; width: 100%;
  background: var(--white); border: 1px solid var(--gray300); color: var(--ink);
  padding: 10px; font-size: 13px; font-weight: 600; cursor: pointer; transition: background .15s; font-family: var(--sans);
}
.tc-google-btn:hover { background: var(--gray100); }
.tc-google-btn:disabled { opacity: .6; cursor: default; }

/* hamburger (mobile) */
.tc-burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.tc-burger span { display: block; width: 20px; height: 2px; background: #fff; margin: 4px 0; border-radius: 0; }
.tc-mobile-menu {
  display: none; position: fixed; inset: 60px 0 auto 0; background: var(--navy); z-index: 98;
  padding: 8px 0 16px; box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.tc-mobile-menu.open { display: block; }
.tc-mobile-menu a {
  display: block; color: rgba(255,255,255,.85); text-decoration: none; font-size: 14px; font-weight: 500;
  padding: 11px 28px; border-bottom: 1px solid rgba(255,255,255,.06);
}
.tc-mobile-menu a.active { color: var(--gold); }

/* ══════════════════ HERO (home) ══════════════════ */
.tc-hero {
  position: relative; min-height: 480px;
  background:
    linear-gradient(to right, rgba(5,9,7,.82) 28%, rgba(5,9,7,.52) 55%, rgba(5,9,7,.15) 80%, rgba(5,9,7,.04) 100%),
    url('/images/Tennis_Court.jpg') center/cover no-repeat;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 var(--pad-x);
}
.tc-hero-inner { padding-top: 90px; padding-bottom: 32px; }
.tc-hero-title {
  color: var(--white); font-size: 64px; font-weight: 700; line-height: 1.04;
  max-width: 560px; margin-bottom: 12px; letter-spacing: -.02em; font-family: var(--serif);
  white-space: pre-line;
}
.tc-hero-sub  { color: var(--gold); font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.tc-hero-desc { color: rgba(255,255,255,.72); font-size: 13px; margin-bottom: 28px; }

/* search bar */
.tc-search {
  display: flex; align-items: stretch; background: var(--white); border-radius: 0;
  max-width: 730px; box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.tc-search-field { flex: 1; padding: 11px 16px; border-right: 1px solid var(--gray200); cursor: pointer; position: relative; background: var(--white); }
.tc-search-field:first-child { border-radius: 0; }
.tc-search-field:nth-last-child(2) { border-right: none; }
.tc-search-label { display: flex; align-items: center; gap: 4px; margin-bottom: 3px; color: var(--gray500); }
.tc-search-label span { font-size: 9px; font-weight: 700; letter-spacing: .7px; text-transform: uppercase; }
.tc-search-value { display: flex; align-items: center; gap: 3px; }
.tc-search-value strong { font-size: 13px; font-weight: 600; color: var(--ink); flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tc-search-btn {
  background: var(--navy); color: var(--white); border: none; padding: 0 22px;
  font-size: 13px; font-weight: 700; letter-spacing: .4px; cursor: pointer;
  display: flex; align-items: center; gap: 7px; white-space: nowrap;
  border-radius: 0; transition: background .2s;
}
.tc-search-btn:hover { background: var(--navy-hov); }
.tc-drop {
  position: absolute; top: calc(100% + 4px); left: 0; background: var(--white);
  border: 1px solid var(--gray200); border-radius: 0; box-shadow: 0 8px 32px rgba(0,0,0,.14);
  z-index: 500; min-width: 180px; overflow: hidden;
}
.tc-drop-item { padding: 9px 16px; font-size: 13px; cursor: pointer; background: var(--white); color: var(--ink); border-bottom: 1px solid var(--gray100); transition: background .1s; }
.tc-drop-item:hover { background: var(--gray100); }
.tc-drop-item.sel { background: #f0f4ff; font-weight: 600; }

/* trust bar over hero */
.tc-trustbar { padding: 11px 0; display: flex; justify-content: center; gap: 48px; align-items: center; flex-wrap: wrap; }
.tc-trustbar div { display: flex; align-items: center; gap: 7px; color: rgba(255,255,255,.8); font-size: 12px; font-weight: 500; }

/* ══════════════════ PAGE HERO (sub-pages) ══════════════════ */
.tc-pagehero { background: linear-gradient(135deg, var(--navy) 0%, #2d3e58 100%); padding: 48px var(--pad-x) 44px; }
.tc-pagehero-label { font-size: 11px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.tc-pagehero h1 { color: var(--white); font-family: var(--serif); font-size: 40px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 10px; }
.tc-pagehero p  { color: rgba(255,255,255,.65); font-size: 15px; max-width: 560px; line-height: 1.6; }

/* filter chips */
.tc-filters { display: flex; gap: 8px; padding: 20px var(--pad-x) 0; flex-wrap: wrap; }
.tc-chip {
  background: var(--white); border: 1px solid var(--gray200); border-radius: 0;
  padding: 7px 16px; font-size: 12px; font-weight: 600; color: var(--gray700); cursor: pointer; transition: all .15s;
}
.tc-chip:hover { border-color: var(--gray300); }
.tc-chip.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

/* ══════════════════ SECTIONS ══════════════════ */
.tc-section { padding: 44px var(--pad-x); }
.tc-sh { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; gap: 12px; flex-wrap: wrap; }
.tc-sh h2 { font-size: 20px; font-weight: 700; color: var(--ink); }
.tc-sh-right { display: flex; align-items: center; gap: 12px; }
.tc-sh-link { color: var(--gold); font-size: 13px; text-decoration: none; font-weight: 600; }
.tc-sh-link:hover { text-decoration: underline; }
.tc-arrows { display: flex; gap: 5px; }
.tc-arrow {
  width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--gray200);
  background: var(--white); color: var(--ink); cursor: pointer; font-size: 13px;
  display: flex; align-items: center; justify-content: center;
}
.tc-arrow:disabled { border-color: var(--gray100); background: #f9f9f7; color: var(--gray300); cursor: not-allowed; }

/* ══════════════════ CARDS ══════════════════ */
.tc-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.tc-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.tc-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.tc-card {
  border: 1px solid var(--gray200); border-radius: 0; overflow: hidden; background: var(--white);
  box-shadow: var(--shadow-card); transition: box-shadow .2s; display: flex; flex-direction: column;
}
.tc-card:hover { box-shadow: var(--shadow-card-hov); }
.tc-card-imgwrap { position: relative; }
.tc-card-img { width: 100%; height: 142px; object-fit: cover; }
.tc-card-img--tall { height: 185px; }
.tc-badge {
  position: absolute; top: 8px; left: 8px; color: var(--white);
  font-size: 8px; font-weight: 800; letter-spacing: .9px; text-transform: uppercase;
  padding: 3px 7px; border-radius: 0; background: #555;
}
.tc-badge--club { background: #1a7a4a; }
.tc-badge--coach { background: #2255a4; }
.tc-badge--resort { background: #8B3A3A; }
.tc-badge--match { background: #555555; }
.tc-badge--gold { background: var(--gold); }
.tc-card-body { padding: 12px 14px 14px; display: flex; flex-direction: column; flex: 1; }
.tc-card-name { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 2px; }
.tc-card-loc  { font-size: 11px; color: var(--gray500); margin-bottom: 5px; }
.tc-card-tags { font-size: 10px; color: var(--gray500); opacity: .75; margin-bottom: 9px; line-height: 1.4; }
.tc-card-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 10px; margin-top: auto; }
.tc-card-price { font-size: 13px; font-weight: 700; color: var(--ink); }
.tc-card-price span { font-size: 10px; font-weight: 400; color: var(--gray500); }
.tc-rating { font-size: 11px; color: var(--gray700); display: flex; align-items: center; gap: 3px; }
.tc-rating .cnt { color: var(--gray300); font-weight: 400; }
.tc-avatars { display: flex; align-items: center; }
.tc-avatars i { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--white); }
.tc-avatars i + i { margin-left: -6px; }
.tc-avatars span { font-size: 10px; color: var(--gray500); margin-left: 6px; }

/* buttons */
.tc-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  background: var(--navy); color: var(--white); border: none; padding: 8px 18px;
  border-radius: 0; font-size: 11px; font-weight: 700; letter-spacing: .6px;
  text-transform: uppercase; cursor: pointer; transition: all .2s; text-decoration: none;
}
.tc-btn:hover { background: var(--navy-hov); }
.tc-btn--block { width: 100%; }
.tc-btn--outline { background: var(--white); color: var(--navy); border: 2px solid var(--navy); padding: 6px 16px; }
.tc-btn--outline:hover { background: var(--navy); color: var(--white); }
.tc-btn--gold { background: var(--gold); }
.tc-btn--gold:hover { background: var(--gold-dk); }
.tc-btn--ghost { background: transparent; border: 1px solid rgba(255,255,255,.4); }
.tc-btn--ghost:hover { background: rgba(255,255,255,.1); }

/* experience card */
.tc-exp-desc { font-size: 11px; color: var(--gray500); margin-bottom: 10px; line-height: 1.5; white-space: pre-line; }
.tc-exp-from { font-size: 12px; color: var(--gray700); }
.tc-exp-from strong { font-size: 16px; color: var(--ink); font-weight: 700; }
.tc-exp-includes { list-style: none; margin: 10px 0 12px; }
.tc-exp-includes li { font-size: 12px; color: var(--gray700); padding: 3px 0; display: flex; align-items: center; gap: 6px; }

/* ══════════════════ TRUST STRIP ══════════════════ */
.tc-trust { background: #f8f8f6; padding: 32px var(--pad-x); display: flex; align-items: center; justify-content: center; gap: 36px; flex-wrap: wrap; }
.tc-trust-tp { display: flex; flex-direction: column; gap: 2px; }
.tc-trust-tp .brand { display: flex; align-items: center; gap: 5px; font-weight: 700; font-size: 14px; color: var(--green); }
.tc-trust-tp .score { font-weight: 600; font-size: 13px; color: var(--ink); }
.tc-trust-tp .based { font-size: 11px; color: var(--gray500); }
.tc-testimonial { background: var(--white); border: 1px solid var(--gray200); border-radius: 0; padding: 13px 15px; max-width: 178px; }
.tc-testimonial .stars { color: var(--green); font-size: 11px; margin-bottom: 5px; letter-spacing: 1px; }
.tc-testimonial .quote { font-size: 12px; font-style: italic; color: #333; margin-bottom: 7px; line-height: 1.45; }
.tc-testimonial .who { display: flex; align-items: center; gap: 7px; font-size: 11px; font-weight: 600; color: var(--gray700); }
.tc-testimonial .who i { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; }
.tc-cert { background: var(--white); border: 1px solid var(--gray300); border-radius: 0; padding: 9px 14px; display: flex; flex-direction: column; }
.tc-cert .big { font-weight: 900; font-size: 15px; letter-spacing: 1.5px; }
.tc-cert .small { font-size: 8px; color: var(--gray500); line-height: 1.4; white-space: pre-line; }

/* ══════════════════ SPLIT (partner + concierge) ══════════════════ */
.tc-split { background: var(--gray100); padding: 44px var(--pad-x); display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.tc-panel { background: var(--white); border-radius: 0; border: 1px solid var(--gray200); padding: 28px 28px 24px; }
.tc-panel--img { padding: 0; overflow: hidden; display: flex; }
.tc-panel--img > div { flex: 1; padding: 28px 28px 24px; }
.tc-panel--img > img { width: 128px; flex-shrink: 0; object-fit: cover; }
.tc-panel-icon { margin-bottom: 12px; color: var(--navy); }
.tc-panel h3 { font-size: 17px; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.tc-panel > p, .tc-panel--img p { font-size: 13px; color: var(--gray500); margin-bottom: 14px; line-height: 1.55; }
.tc-checklist { list-style: none; margin-bottom: 16px; }
.tc-checklist li { font-size: 12px; color: var(--gray700); padding: 3px 0; display: flex; align-items: center; gap: 6px; }

/* player mini-widget */
.tc-player-widget {
  background: var(--white); border: 1px solid var(--gray200); border-radius: 0;
  padding: 11px 13px; margin-bottom: 9px; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}
.tc-player-widget i { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; }
.tc-player-widget .info { flex: 1; }
.tc-player-widget .nm { font-weight: 700; font-size: 13px; color: var(--ink); }
.tc-player-widget .lv { font-size: 11px; color: var(--gray500); }
.tc-player-widget .sp { font-size: 10px; color: var(--gray500); opacity: .7; }
.tc-dots { display: flex; gap: 5px; justify-content: center; margin-bottom: 16px; }
.tc-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gray200); cursor: pointer; transition: background .2s; }
.tc-dot.active { background: var(--gold); }

/* ══════════════════ HOW IT WORKS ══════════════════ */
.tc-how { background: var(--white); padding: 44px var(--pad-x); }
.tc-how h2 { text-align: center; font-size: 22px; font-weight: 700; color: var(--ink); margin-bottom: 36px; }
.tc-how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; max-width: 720px; margin: 0 auto; }
.tc-how-step { text-align: center; }
.tc-how-step .ic { display: flex; justify-content: center; margin-bottom: 12px; color: var(--navy); }
.tc-how-step .ti { font-size: 13px; font-weight: 700; color: var(--ink); margin-bottom: 6px; }
.tc-how-step .de { font-size: 12px; color: var(--gray500); line-height: 1.55; }

/* ══════════════════ CTA BANNER ══════════════════ */
.tc-cta { background: var(--navy); padding: 34px var(--pad-x); display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.tc-cta-text { flex: 1; min-width: 220px; }
.tc-cta-text h3 { color: var(--white); font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.tc-cta-text p { color: rgba(255,255,255,.6); font-size: 13px; }
.tc-cta-controls { display: flex; align-items: stretch; gap: 8px; flex-wrap: wrap; }
.tc-cta-field { background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-radius: 0; padding: 8px 14px; }
.tc-cta-field .lb { font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .7px; color: rgba(255,255,255,.45); margin-bottom: 3px; }
.tc-cta-field select { background: transparent; border: none; color: var(--white); font-size: 12px; font-weight: 600; cursor: pointer; outline: none; font-family: var(--sans); }
.tc-cta-field select option { color: var(--ink); }
.tc-cta-field .radios { display: flex; gap: 12px; }
.tc-cta-field .radios label { color: rgba(255,255,255,.8); font-size: 12px; display: flex; align-items: center; gap: 4px; cursor: pointer; }
.tc-cta-field .radios input { accent-color: var(--gold); }
.tc-cta-btn {
  background: var(--gold); color: var(--white); border: none; padding: 0 20px;
  border-radius: 0; font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap;
  display: flex; align-items: center; gap: 6px; transition: background .2s;
}
.tc-cta-btn:hover { background: var(--gold-dk); }

/* simple page CTA band */
.tc-band { background: var(--navy); padding: 40px var(--pad-x); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.tc-band h3 { color: var(--white); font-size: 20px; font-weight: 700; margin-bottom: 4px; font-family: var(--serif); }
.tc-band p { color: rgba(255,255,255,.6); font-size: 13px; }

/* ══════════════════ LIST ROWS (coaches / tournaments) ══════════════════ */
.tc-row {
  display: flex; align-items: center; gap: 20px; background: var(--white);
  border: 1px solid var(--gray200); border-radius: 0; padding: 20px 22px;
  box-shadow: var(--shadow-card); transition: box-shadow .2s; flex-wrap: wrap;
}
.tc-row:hover { box-shadow: var(--shadow-card-hov); }
.tc-row-avatar { width: 64px; height: 64px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 22px; font-weight: 700; }
.tc-row-main { flex: 1; min-width: 220px; }
.tc-row-name { font-size: 16px; font-weight: 700; color: var(--ink); }
.tc-row-sub  { font-size: 12px; color: var(--gray500); margin-top: 2px; }
.tc-row-bio  { font-size: 12px; color: var(--gray700); margin-top: 8px; line-height: 1.55; max-width: 560px; }
.tc-row-facts { display: flex; gap: 22px; flex-wrap: wrap; }
.tc-fact .lb { font-size: 9px; font-weight: 700; letter-spacing: .7px; text-transform: uppercase; color: var(--gray500); margin-bottom: 2px; }
.tc-fact .vl { font-size: 13px; font-weight: 600; color: var(--ink); }
.tc-row-side { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; margin-left: auto; }
.tc-row-price { font-size: 18px; font-weight: 800; color: var(--ink); }
.tc-row-price span { font-size: 11px; font-weight: 400; color: var(--gray500); }
.tc-pill { font-size: 9px; font-weight: 800; letter-spacing: .8px; text-transform: uppercase; padding: 4px 10px; border-radius: 0; }
.tc-pill--open  { background: rgba(0,182,122,.12); color: #00875a; }
.tc-pill--few   { background: rgba(245,166,35,.14); color: #b07410; }
.tc-pill--invite{ background: rgba(26,37,53,.08); color: var(--navy); }

/* ══════════════════ MEMBERSHIP ══════════════════ */
.tc-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto; align-items: stretch; }
.tc-tier { background: var(--white); border: 1px solid var(--gray200); border-radius: 0; padding: 30px 28px; display: flex; flex-direction: column; position: relative; box-shadow: var(--shadow-card); }
.tc-tier--popular { border: 2px solid var(--gold); box-shadow: 0 12px 36px rgba(200,168,75,.18); }
.tc-tier-flag { position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--white); font-size: 9px; font-weight: 800; letter-spacing: 1px; padding: 4px 14px; border-radius: 0; white-space: nowrap; }
.tc-tier-name { font-size: 13px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray500); margin-bottom: 10px; }
.tc-tier-price { font-size: 38px; font-weight: 800; color: var(--ink); line-height: 1; }
.tc-tier-price span { font-size: 13px; font-weight: 400; color: var(--gray500); }
.tc-tier-features { list-style: none; margin: 22px 0 26px; flex: 1; }
.tc-tier-features li { font-size: 13px; color: var(--gray700); padding: 6px 0; display: flex; align-items: flex-start; gap: 8px; line-height: 1.45; }
.tc-tier-features svg { flex-shrink: 0; margin-top: 3px; }

/* FAQ */
.tc-faq { max-width: 720px; margin: 0 auto; }
.tc-faq-item { border-bottom: 1px solid var(--gray200); }
.tc-faq-q { width: 100%; background: none; border: none; text-align: left; padding: 18px 4px; font-size: 14px; font-weight: 700; color: var(--ink); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.tc-faq-q::after { content: '+'; font-size: 18px; color: var(--gold); font-weight: 400; }
.tc-faq-item.open .tc-faq-q::after { content: '–'; }
.tc-faq-a { display: none; padding: 0 4px 18px; font-size: 13px; color: var(--gray700); line-height: 1.65; }
.tc-faq-item.open .tc-faq-a { display: block; }

/* ══════════════════ FORMS ══════════════════ */
.tc-input {
  width: 100%; padding: 10px 12px; border: 1px solid #e0e0dc; border-radius: 0;
  font-size: 13px; outline: none; font-family: var(--sans); color: var(--ink); background: var(--white);
}
.tc-input:focus { border-color: var(--gold); }
textarea.tc-input { resize: none; }
.tc-form { display: flex; flex-direction: column; gap: 10px; }
.tc-form-note { background: #f8f8f6; border-radius: 0; padding: 10px 14px; font-size: 11px; color: #666; line-height: 1.7; }

/* ══════════════════ FOOTER ══════════════════ */
.tc-footer { background: var(--dark); padding: 42px var(--pad-x) 22px; color: rgba(255,255,255,.65); }
.tc-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr 1.6fr; gap: 36px; margin-bottom: 32px; }
.tc-footer-brand-name { color: var(--white); font-size: 15px; font-weight: 800; letter-spacing: .8px; }
.tc-footer-brand-sub  { color: var(--gold); font-size: 7px; letter-spacing: 2.5px; text-transform: uppercase; margin-top: 2px; }
.tc-footer-tagline { font-size: 11px; color: rgba(255,255,255,.4); line-height: 1.6; margin: 10px 0 14px; max-width: 200px; }
.tc-footer h4 { color: var(--white); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .9px; margin-bottom: 14px; }
.tc-footer-col a { display: block; color: rgba(255,255,255,.55); text-decoration: none; font-size: 12px; margin-bottom: 8px; transition: color .15s; }
.tc-footer-col a:hover { color: rgba(255,255,255,.9); }
.tc-footer-socials { display: flex; gap: 8px; }
.tc-footer-socials a {
  width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background .2s;
}
.tc-footer-socials a:hover { background: rgba(255,255,255,.2); }
.tc-footer-news p { font-size: 12px; margin-bottom: 10px; line-height: 1.5; }
.tc-footer-news-form { display: flex; }
.tc-footer-news-form input {
  flex: 1; min-width: 0; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); border-right: none;
  border-radius: 0; padding: 9px 12px; color: var(--white); font-size: 12px; outline: none; font-family: var(--sans);
}
.tc-footer-news-form input:focus { border-color: rgba(255,255,255,.35); }
.tc-footer-news-form button {
  background: var(--gold); border: none; color: var(--white); padding: 9px 13px;
  border-radius: 0; font-size: 10px; font-weight: 700; cursor: pointer; letter-spacing: .5px;
}
.tc-footer-news-ok { background: rgba(0,182,122,.15); color: var(--green); padding: 10px 12px; border-radius: 0; font-size: 12px; font-weight: 600; }
.tc-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 16px; text-align: center; font-size: 11px; color: rgba(255,255,255,.3); }

/* ══════════════════ MODALS ══════════════════ */
.tc-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 1000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  backdrop-filter: blur(3px);
}
.tc-modal {
  background: var(--white); border-radius: 0; padding: 28px; max-width: 480px; width: 100%;
  position: relative; max-height: 90vh; overflow-y: auto; box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.tc-modal-close { position: absolute; top: 14px; right: 14px; background: none; border: none; font-size: 16px; cursor: pointer; color: #888; line-height: 1; padding: 4px; }
.tc-modal h3 { font-size: 16px; font-weight: 800; margin-bottom: 4px; color: var(--ink); }
.tc-modal .sub { font-size: 12px; color: #888; margin-bottom: 14px; }
.tc-modal-brand { text-align: center; margin-bottom: 16px; }
.tc-modal-brand .nm { font-size: 13px; font-weight: 800; letter-spacing: 1px; color: var(--ink); }
.tc-modal-brand .sb { font-size: 7px; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; }
.tc-modal-err { background: #fff0f0; color: var(--red); padding: 8px 12px; border-radius: 0; font-size: 12px; margin-bottom: 12px; }
.tc-tabs { display: flex; background: var(--gray100); border-radius: 0; padding: 3px; margin-bottom: 20px; }
.tc-tab { flex: 1; border: none; padding: 7px; border-radius: 0; font-size: 13px; cursor: pointer; background: transparent; transition: all .15s; color: var(--ink); }
.tc-tab.active { background: var(--white); font-weight: 700; box-shadow: 0 1px 4px rgba(0,0,0,.1); }
.tc-modal-primary { width: 100%; background: var(--navy); color: var(--white); border: none; padding: 11px; border-radius: 0; font-size: 13px; font-weight: 700; cursor: pointer; transition: background .2s; }
.tc-modal-primary:hover { background: var(--navy-hov); }
.tc-modal-primary:disabled { opacity: .4; cursor: not-allowed; }
.tc-modal-secondary { background: var(--white); color: var(--navy); border: 2px solid var(--navy); padding: 9px 16px; border-radius: 0; font-size: 13px; font-weight: 700; cursor: pointer; }
.tc-modal-gold { width: 100%; background: var(--gold); color: var(--white); border: none; padding: 11px; border-radius: 0; font-size: 13px; font-weight: 700; cursor: pointer; }
.tc-modal-gold:hover { background: var(--gold-dk); }
.tc-modal-gold:disabled { opacity: .4; cursor: not-allowed; }
.tc-social-btns { display: flex; gap: 8px; }
.tc-social-btns button { flex: 1; background: var(--gray100); border: 1px solid #e0e0dc; padding: 8px; border-radius: 0; font-size: 12px; font-weight: 600; cursor: pointer; }
.tc-or { text-align: center; font-size: 11px; color: #999; margin: 4px 0; }

/* booking steps */
.tc-steps { display: flex; align-items: center; margin-bottom: 20px; }
.tc-step { display: flex; align-items: center; gap: 6px; }
.tc-step .n { width: 24px; height: 24px; border-radius: 50%; background: var(--gray200); color: #aaa; font-size: 11px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.tc-step .t { font-size: 11px; color: #aaa; }
.tc-step.done .n, .tc-step.cur .n { background: var(--navy); color: var(--white); }
.tc-step.done .t, .tc-step.cur .t { color: var(--ink); }
.tc-step.cur .t { font-weight: 700; }
.tc-step-line { flex: 1; height: 1px; background: var(--gray200); margin: 0 8px; }
.tc-step-line.done { background: var(--navy); }
.tc-cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-bottom: 16px; }
.tc-cal-day { padding: 8px 4px; text-align: center; border-radius: 0; border: 2px solid var(--gray200); background: var(--white); color: var(--ink); cursor: pointer; font-size: 10px; transition: all .15s; }
.tc-cal-day strong { font-size: 12px; }
.tc-cal-day.off { background: #f8f8f6; color: #ccc; cursor: not-allowed; }
.tc-cal-day.sel { background: var(--navy); border-color: var(--navy); color: var(--white); font-weight: 700; }
.tc-times { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.tc-time { padding: 7px 14px; border-radius: 0; border: 1px solid var(--gray200); background: var(--white); color: #333; cursor: pointer; font-size: 12px; transition: all .15s; }
.tc-time.sel { background: var(--navy); border: 2px solid var(--navy); color: var(--white); font-weight: 700; }
.tc-modal-lbl { font-size: 12px; font-weight: 700; margin-bottom: 8px; color: #555; }
.tc-price-box { background: #f8f8f6; border-radius: 0; padding: 10px 14px; margin-bottom: 16px; font-size: 13px; }
.tc-confirm { text-align: center; padding: 10px 0 4px; }
.tc-confirm .emoji { font-size: 48px; margin-bottom: 12px; }
.tc-confirm .ti { font-weight: 800; font-size: 18px; margin-bottom: 6px; color: var(--navy); }
.tc-confirm .de { font-size: 13px; color: #666; margin-bottom: 16px; }
.tc-ref-box { background: var(--gray100); border-radius: 0; padding: 16px; margin-bottom: 16px; text-align: left; }
.tc-ref-box .lb { font-size: 11px; color: #888; margin-bottom: 4px; }
.tc-ref-box .code { font-weight: 800; font-size: 18px; letter-spacing: 2px; color: var(--navy); margin-bottom: 10px; }
.tc-ref-box .rows { font-size: 12px; display: flex; flex-direction: column; gap: 4px; }

/* match modal */
.tc-match-list { display: flex; flex-direction: column; gap: 10px; }
.tc-match-card { background: #f8f8f6; border: 2px solid transparent; border-radius: 0; padding: 12px 14px; cursor: pointer; transition: all .15s; }
.tc-match-card.sel { background: #f0f4ff; border-color: var(--navy); }
.tc-match-card .top { display: flex; align-items: center; gap: 10px; }
.tc-match-card .av { width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0; }
.tc-match-card .nm { font-weight: 700; font-size: 13px; }
.tc-match-card .dt { font-size: 11px; color: #666; }
.tc-match-sent { background: #e8f5e9; color: #2e7d32; padding: 8px 12px; border-radius: 0; font-size: 12px; font-weight: 600; margin-top: 10px; }

/* plan modal */
.tc-plan-row { display: flex; align-items: center; gap: 12px; padding: 10px 12px; background: #f8f8f6; border-radius: 0; }
.tc-plan-row .ic { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 0; background: rgba(200,168,75,.08); flex-shrink: 0; }
.tc-plan-row .lb { font-size: 10px; font-weight: 700; color: #999; text-transform: uppercase; letter-spacing: .5px; }
.tc-plan-row .vl { font-size: 13px; font-weight: 600; }
.tc-plan-pkg { background: linear-gradient(135deg, var(--navy), #2d3e58); border-radius: 0; padding: 14px 16px; margin: 16px 0 14px; }
.tc-plan-pkg .lb { font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.tc-plan-pkg .pr { font-size: 22px; font-weight: 800; color: var(--white); }
.tc-plan-pkg .de { font-size: 11px; color: rgba(255,255,255,.6); }

/* ══════════════════ TOAST ══════════════════ */
.tc-toast {
  position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(96px);
  background: var(--navy); color: var(--white); padding: 14px 28px; border-radius: 0;
  font-size: 14px; font-weight: 500; box-shadow: 0 8px 32px rgba(0,0,0,.22);
  transition: transform .35s cubic-bezier(.4,0,.2,1); z-index: 9999; white-space: nowrap; pointer-events: none;
}
.tc-toast.show { transform: translateX(-50%) translateY(0); }

/* ══════════════════ RESPONSIVE ══════════════════ */
@media (max-width: 1100px) {
  :root { --pad-x: 32px; }
  .tc-hero-title { font-size: 48px; }
  .tc-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .tc-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .tc-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .tc-tiers { grid-template-columns: 1fr; max-width: 460px; }
  .tc-nav-links a { padding: 5px 6px; font-size: 12px; }
}
@media (max-width: 900px) {
  .tc-nav-links { display: none; }
  .tc-burger { display: block; }
  .tc-split { grid-template-columns: 1fr; }
  .tc-search { flex-wrap: wrap; max-width: 480px; }
  .tc-search-field { flex: 1 1 45%; border-bottom: 1px solid var(--gray200); }
  .tc-search-btn { flex: 1 1 100%; border-radius: 0; padding: 13px 22px; justify-content: center; }
  .tc-row-side { align-items: flex-start; margin-left: 0; width: 100%; flex-direction: row; align-items: center; justify-content: space-between; }
}
@media (max-width: 768px) {
  :root { --pad-x: 20px; }
  .tc-hero { min-height: 0; }
  .tc-hero-inner { padding-top: 84px; }
  .tc-hero-title { font-size: 36px; }
  .tc-hero-sub { font-size: 16px; }
  .tc-pagehero h1 { font-size: 30px; }
  .tc-grid-3, .tc-grid-2 { grid-template-columns: 1fr; }
  .tc-how-grid { grid-template-columns: 1fr; gap: 24px; }
  .tc-cta { flex-direction: column; align-items: stretch; }
  .tc-cta-controls { flex-direction: column; }
  .tc-cta-btn { padding: 13px 20px; justify-content: center; }
  .tc-footer-grid { grid-template-columns: 1fr 1fr; }
  .tc-trustbar { gap: 18px; }
  .tc-band { flex-direction: column; align-items: flex-start; }
  .tc-panel--img > img { display: none; }
}
@media (max-width: 480px) {
  .tc-grid-4 { grid-template-columns: 1fr; }
  .tc-footer-grid { grid-template-columns: 1fr; }
  .tc-search-field { flex: 1 1 100%; }
  .tc-toast { white-space: normal; max-width: calc(100vw - 40px); text-align: center; }
}

/* ══════════════════ DASHBOARD ══════════════════ */
.tc-dash { padding: 40px var(--pad-x) 64px; min-height: 60vh; }
.tc-dash-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.tc-dash-welcome { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--ink); }
.tc-dash-sub { font-size: 13px; color: var(--gray500); margin-top: 4px; }
.tc-role-chip { display: inline-block; background: rgba(200,168,75,.14); color: var(--gold-dk); font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; padding: 5px 12px; }
.tc-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px; margin-bottom: 28px; }
.tc-stat { border: 1px solid var(--gray200); background: var(--white); padding: 18px 20px; }
.tc-stat .num { font-size: 30px; font-weight: 800; color: var(--ink); line-height: 1; }
.tc-stat .lbl { font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gray500); margin-top: 8px; }
.tc-dash-cols { display: grid; grid-template-columns: 1.6fr 1fr; gap: 20px; align-items: start; }
.tc-dcard { border: 1px solid var(--gray200); background: var(--white); padding: 22px 22px 8px; margin-bottom: 20px; }
.tc-dcard > h3 { font-size: 13px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; color: var(--navy); margin-bottom: 14px; padding-bottom: 12px; border-bottom: 1px solid var(--gray100); }
.tc-drow { display: flex; align-items: center; gap: 14px; padding: 12px 0; border-bottom: 1px solid var(--gray100); }
.tc-drow:last-child { border-bottom: none; }
.tc-drow .nm { font-size: 14px; font-weight: 700; color: var(--ink); }
.tc-drow .meta { font-size: 12px; color: var(--gray500); margin-top: 2px; }
.tc-drow .right { margin-left: auto; text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.tc-drow .price { font-size: 14px; font-weight: 700; color: var(--ink); }
.tc-dav { width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 14px; font-weight: 700; }
.tc-dempty { padding: 22px 0 26px; color: var(--gray500); font-size: 13px; }
.tc-sbadge { font-size: 9px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; padding: 3px 9px; white-space: nowrap; }
.tc-sbadge.confirmed, .tc-sbadge.accepted, .tc-sbadge.active { background: rgba(0,182,122,.13); color: #00875a; }
.tc-sbadge.pending  { background: rgba(245,166,35,.16); color: #b07410; }
.tc-sbadge.cancelled, .tc-sbadge.declined { background: rgba(192,57,43,.12); color: #b23121; }
.tc-sbadge.completed { background: var(--gray100); color: var(--gray700); }
.tc-dmini { display: flex; gap: 8px; }
.tc-dmini button { font-size: 11px; font-weight: 700; padding: 6px 12px; border: 1px solid var(--gray200); background: var(--white); cursor: pointer; font-family: var(--sans); }
.tc-dmini button.acc { background: var(--navy); border-color: var(--navy); color: #fff; }
.tc-dsection-lbl { font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--gray500); margin: 6px 0 4px; }
.tc-dash-gate { text-align: center; padding: 80px 24px; }
.tc-dash-gate h2 { font-family: var(--serif); font-size: 26px; color: var(--ink); margin-bottom: 10px; }
.tc-dash-gate p { color: var(--gray500); margin-bottom: 20px; }
@media (max-width: 900px) { .tc-dash-cols { grid-template-columns: 1fr; } }
