/* =============================================
   VICTORIA LOPEZ SOLUTIONS
   Brand System — LBTS Color Palette
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  /* LBTS-derived palette */
  --navy:       #2d2d75;
  --periwinkle: #5562ac;
  --magenta:    #c95196;
  --salmon:     #f07b7b;
  --mustard:    #e5a636;
  --green:      #67b477;

  /* Surfaces */
  --white:     #FFFFFF;
  --off-white: #F8F7FF;
  --border:    #E2E0F0;

  /* Text */
  --text-dark:  #1C1B3A;
  --text-mid:   #4E4D6B;
  --text-light: #9290AA;

  /* Semantic aliases (used by shared components) */
  --accent:       var(--navy);
  --accent-light: #EEECFF;
  --accent-hover: #1e1e5c;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.6;
  cursor: none;
}
a, button, input, select, textarea, label { cursor: none; }

/* hide cursor on touch/mobile */
@media (hover: none) and (pointer: coarse) {
  body, a, button, input, select, textarea { cursor: auto; }
  .cursor-dot, .cursor-ring { display: none !important; }
}

/* ========================
   CUSTOM CURSOR
   ======================== */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: -999px;
  pointer-events: none;
  z-index: 10000;
  transform: translate(-50%, -50%);
  will-change: left, top;
}
.cursor-dot {
  width: 14px;
  height: 14px;
  background: var(--magenta);
  /* 10-point star via clip-path */
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
  transition: left 0.03s linear, top 0.03s linear;
}
.cursor-ring {
  width: 34px;
  height: 34px;
  border: 2.5px solid var(--navy);
  border-radius: 50%;
  transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}
.cursor-ring.is-hovered {
  width: 50px;
  height: 50px;
  border-color: var(--magenta);
}
.cursor-ring.is-clicking {
  width: 20px;
  height: 20px;
  border-color: var(--mustard);
}
/* Click star burst */
.cursor-burst {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
  animation: cursorBurst 0.55s ease forwards;
}
@keyframes cursorBurst {
  0%   { opacity: 1; transform: translate(-50%,-50%) scale(0) rotate(0deg); }
  55%  { opacity: 1; transform: translate(-50%,-50%) scale(3) rotate(50deg); }
  100% { opacity: 0; transform: translate(-50%,-50%) scale(4) rotate(90deg); }
}

/* ========================
   DECORATIVE SHAPES
   ======================== */
.deco-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.deco {
  position: absolute;
}
.deco-circle  { border-radius: 50%; }
.deco-star    { clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.deco-pill    { border-radius: 100px; }
.deco-donut   { border-radius: 50%; background: transparent !important; }

@keyframes floatA {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  50%      { transform: translateY(-14px) rotate(14deg); }
}
@keyframes floatB {
  0%,100% { transform: translateY(0px) rotate(0deg); }
  50%      { transform: translateY(12px) rotate(-12deg); }
}
@keyframes floatC {
  0%,100% { transform: translateX(0px) rotate(0deg); }
  50%      { transform: translateX(12px) rotate(20deg); }
}
@keyframes floatD {
  0%,100% { transform: scale(1) rotate(0deg); }
  50%      { transform: scale(1.15) rotate(-18deg); }
}
.float-a { animation: floatA 5s ease-in-out infinite; }
.float-b { animation: floatB 6.5s ease-in-out infinite; }
.float-c { animation: floatC 4.5s ease-in-out infinite; }
.float-d { animation: floatD 7s ease-in-out infinite; }

/* CSS-only triangle helpers */
.deco-tri-up {
  width: 0 !important;
  height: 0 !important;
  background: transparent !important;
  border-style: solid;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-top: none;
}

/* ========================
   NAV
   ======================== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 2.5px solid var(--navy);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-logo .logo-pop { color: var(--magenta); }
.nav-cta {
  background: var(--navy);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  border: 2px solid var(--navy);
  box-shadow: 3px 3px 0 var(--magenta);
  display: inline-block;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.nav-cta:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--magenta);
}
.nav-cta:active {
  transform: translate(3px, 3px);
  box-shadow: none;
}
.nav-book {
  background: var(--mustard);
  color: var(--navy);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  border: 2px solid var(--navy);
  box-shadow: 3px 3px 0 var(--navy);
  display: inline-block;
  transition: transform 0.1s ease, box-shadow 0.1s ease;
  white-space: nowrap;
}
.nav-book:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--navy);
}
.nav-book:active {
  transform: translate(3px, 3px);
  box-shadow: none;
}

/* ========================
   BUTTONS
   ======================== */
.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  border: 2px solid var(--navy);
  box-shadow: 4px 4px 0 var(--magenta);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.btn-primary:hover  { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--magenta); }
.btn-primary:active { transform: translate(4px, 4px); box-shadow: none; }

.btn-outline {
  display: inline-block;
  background: var(--white);
  color: var(--navy);
  padding: 11px 28px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  border: 2px solid var(--navy);
  box-shadow: 4px 4px 0 var(--periwinkle);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.btn-outline:hover  { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--periwinkle); }
.btn-outline:active { transform: translate(4px, 4px); box-shadow: none; }

.btn-yellow {
  display: inline-block;
  background: var(--mustard);
  color: var(--navy);
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  border: 2px solid var(--navy);
  box-shadow: 4px 4px 0 rgba(255,255,255,0.4);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}
.btn-yellow:hover  { transform: translate(2px, 2px); box-shadow: 2px 2px 0 rgba(255,255,255,0.4); }
.btn-yellow:active { transform: translate(4px, 4px); box-shadow: none; }

.btn-accent-light {
  display: inline-block;
  background: var(--accent-light);
  color: var(--navy);
  padding: 11px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  border: 2px solid var(--navy);
  box-shadow: 3px 3px 0 var(--periwinkle);
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease, color 0.1s ease;
}
.btn-accent-light:hover {
  background: var(--navy);
  color: var(--white);
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--periwinkle);
}

/* ========================
   EYEBROWS
   ======================== */
.eyebrow-pill {
  display: inline-block;
  background: var(--mustard);
  color: var(--navy);
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  border: 2px solid var(--navy);
}
.eyebrow-accent {
  display: block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--magenta);
  margin-bottom: 10px;
}

/* ========================
   SECTION LAYOUT
   ======================== */
.section {
  padding: 80px 40px;
  border-bottom: 2px solid var(--border);
}
.section-bg { background: var(--off-white); }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-header { margin-bottom: 48px; }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.25;
}
.section-desc {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
  font-weight: 500;
}

/* ========================
   BADGES
   ======================== */
.badges-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.badge {
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid;
}
.badge:nth-child(1) { background: #FFE8E8; border-color: var(--salmon);     color: #8B1A1A; }
.badge:nth-child(2) { background: #FEF3DC; border-color: var(--mustard);    color: #7A4800; }
.badge:nth-child(3) { background: #E6F7EC; border-color: var(--green);      color: #1A5A2C; }
.badge:nth-child(4) { background: #EEECFF; border-color: var(--periwinkle); color: var(--navy); }

/* ========================
   CARDS
   ======================== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 16px;
}
.card {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 3px 3px 0 var(--navy);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}
.card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--mustard);
}

/* Rainbow top borders */
.card:nth-child(6n+1) { border-top: 5px solid var(--salmon); }
.card:nth-child(6n+2) { border-top: 5px solid var(--mustard); }
.card:nth-child(6n+3) { border-top: 5px solid var(--green); }
.card:nth-child(6n+4) { border-top: 5px solid var(--periwinkle); }
.card:nth-child(6n+5) { border-top: 5px solid var(--magenta); }
.card:nth-child(6n+6) { border-top: 5px solid var(--navy); }

.card-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  width: fit-content;
  border: 1.5px solid;
}
.tag-admin   { background: #FEF3DC; color: #7A4800;     border-color: var(--mustard); }
.tag-ops     { background: #E6F7EC; color: #1A5A2C;     border-color: var(--green); }
.tag-project { background: #EEECFF; color: var(--navy); border-color: var(--periwinkle); }
.tag-event   { background: #FDE5F3; color: #7A0044;     border-color: var(--magenta); }
.tag-fix     { background: #FFE8E8; color: #8B1A1A;     border-color: var(--salmon); }

.card-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}
.card-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  font-weight: 500;
}
.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1.5px solid var(--border);
}
.card-price {
  font-family: 'Inter', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
}
.card-price span {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
}
.card-btn {
  background: var(--accent-light);
  color: var(--navy);
  padding: 7px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid var(--navy);
  box-shadow: 2px 2px 0 var(--navy);
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease, color 0.1s ease;
}
.card-btn:hover {
  background: var(--navy);
  color: var(--white);
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--navy);
}
.card-btn:active {
  transform: translate(2px, 2px);
  box-shadow: none;
}

/* ========================
   FILTER BAR
   ======================== */
.filter-bar {
  padding: 18px 40px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 2px solid var(--border);
  background: var(--off-white);
}
.filter-btn {
  padding: 8px 18px;
  border-radius: 100px;
  border: 2px solid var(--navy);
  background: var(--white);
  font-size: 13px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  cursor: none;
  box-shadow: 2px 2px 0 var(--navy);
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease, color 0.1s ease;
}
.filter-btn:hover {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--navy);
}
.filter-btn.active {
  background: var(--navy);
  color: var(--white);
  transform: translate(2px, 2px);
  box-shadow: none;
}

/* ========================
   RETAINER / TIERS
   ======================== */
.retainer-block {
  background: var(--off-white);
  border: 2px solid var(--navy);
  border-radius: 20px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
  box-shadow: 5px 5px 0 var(--navy);
}
.retainer-intro { grid-column: 1 / -1; }
.retainer-intro h3 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.retainer-intro p {
  font-size: 15px;
  color: var(--text-mid);
  max-width: 560px;
  font-weight: 500;
}
.tier {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 14px;
  padding: 24px;
  box-shadow: 3px 3px 0 var(--navy);
}
.tier.highlighted {
  border-color: var(--magenta);
  box-shadow: 4px 4px 0 var(--magenta);
}
.tier-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
  display: block;
}
.tier.highlighted .tier-label {
  background: var(--magenta);
  color: var(--white);
  display: inline-block;
  padding: 3px 12px;
  border-radius: 100px;
  border: 1.5px solid var(--navy);
}
.tier-price {
  font-family: 'Inter', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.tier-price span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-light);
  font-family: 'Inter', sans-serif;
}
.tier-hours {
  font-size: 12px;
  color: var(--text-light);
  margin-bottom: 16px;
  font-weight: 600;
}
.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.tier-features li {
  font-size: 14px;
  color: var(--text-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-weight: 500;
}
.tier-features li::before {
  content: "✓";
  color: var(--green);
  font-weight: 900;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 15px;
}
.tier-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 11px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  background: var(--accent-light);
  color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: 3px 3px 0 var(--navy);
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease, color 0.1s ease;
}
.tier-btn:hover {
  background: var(--navy);
  color: var(--white);
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--navy);
}
.tier.highlighted .tier-btn {
  background: var(--magenta);
  color: var(--white);
  border-color: var(--navy);
  box-shadow: 3px 3px 0 var(--navy);
}
.tier.highlighted .tier-btn:hover {
  background: var(--navy);
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--navy);
}

/* ========================
   CTA BANNER
   ======================== */
.cta-banner {
  background: var(--navy);
  padding: 80px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.cta-banner p {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin: 0 auto 28px;
  line-height: 1.7;
  font-weight: 500;
  position: relative;
  z-index: 1;
}
.cta-banner .btn-yellow { position: relative; z-index: 1; }

/* Decorative shapes inside CTA banner */
.cta-banner .deco-shapes .deco { opacity: 0.18; }

/* ========================
   HERO (shared)
   ======================== */
.hero {
  background: var(--off-white);
  border-bottom: 2.5px solid var(--navy);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 96px 40px 72px;
  position: relative;
  z-index: 1;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 68px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero p.hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
  font-weight: 500;
}
.hero-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

/* ========================
   FOOTER
   ======================== */
footer {
  padding: 26px 40px;
  border-top: 2.5px solid var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-mid);
  gap: 16px;
  font-weight: 600;
}
.footer-center { text-align: center; }
.footer-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}
.footer-icons a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.15s ease, transform 0.15s ease;
  display: flex;
  align-items: center;
}
.footer-icons a:hover {
  color: var(--magenta);
  transform: scale(1.2) rotate(-5deg);
}
.footer-icons svg { width: 20px; height: 20px; }

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .hero-inner { padding: 64px 20px 48px; }
  .section { padding: 48px 20px; }
  .filter-bar { padding: 14px 20px; }
  .retainer-block { grid-template-columns: 1fr; }
  .cta-banner { padding: 56px 20px; }
  footer {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 24px 20px;
  }
}
@media (max-width: 480px) {
  .cards-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}

/* ========================
   NAV LINKS (expanded)
   ======================== */
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--navy); }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: none;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
}

.nav-mobile-menu {
  display: none;
  background: var(--white);
  border-bottom: 2px solid var(--navy);
  padding: 12px 20px 16px;
  flex-direction: column;
  gap: 2px;
  position: sticky;
  top: 57px;
  z-index: 99;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-link {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-link:last-child {
  border-bottom: none;
  color: var(--magenta);
}
.nav-mobile-book {
  color: var(--navy) !important;
  background: var(--mustard);
  border-radius: 999px;
  border: 2px solid var(--navy) !important;
  padding: 10px 16px !important;
  text-align: center;
  margin-top: 4px;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ========================
   TESTIMONIAL CAROUSEL
   ======================== */
.testimonial-carousel { position: relative; }
.tc-overflow { overflow: hidden; border-radius: 20px; }
.tc-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.tc-slide { min-width: 100%; }
.tc-card {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 20px;
  padding: 48px 52px;
  max-width: 820px;
  margin: 0 auto;
}
.tc-card-1 { border-top: 5px solid var(--salmon);     box-shadow: 5px 5px 0 var(--salmon); }
.tc-card-2 { border-top: 5px solid var(--mustard);    box-shadow: 5px 5px 0 var(--mustard); }
.tc-card-3 { border-top: 5px solid var(--green);      box-shadow: 5px 5px 0 var(--green); }
.tc-qmark {
  font-family: 'Playfair Display', serif;
  font-size: 72px;
  line-height: 0.7;
  color: var(--mustard);
  display: block;
  margin-bottom: 16px;
}
.tc-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 28px;
}
.tc-attr strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.tc-attr span {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: var(--text-light);
}
.tc-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.tc-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--navy);
  box-shadow: 2px 2px 0 var(--navy);
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  cursor: none;
  transition: transform 0.1s ease, box-shadow 0.1s ease, background 0.1s ease, color 0.1s ease;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.tc-btn:hover {
  background: var(--navy); color: var(--white);
  transform: translate(1px,1px); box-shadow: 1px 1px 0 var(--navy);
}
.tc-dots { display: flex; gap: 8px; align-items: center; }
.tc-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--border);
  border: 1.5px solid var(--navy);
  cursor: none;
  transition: background 0.2s, transform 0.2s;
  padding: 0;
}
.tc-dot.active { background: var(--navy); transform: scale(1.35); }

@media (max-width: 768px) {
  .tc-card { padding: 28px 20px; }
}

/* ========================
   LIGHT TOUCH CARDS
   ======================== */
.lt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}
.lt-card {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 3px 3px 0 var(--navy);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lt-card.lt-featured {
  border-color: var(--mustard);
  box-shadow: 4px 4px 0 var(--mustard);
}
.lt-tier-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
}
.lt-featured .lt-tier-label {
  background: var(--mustard);
  color: var(--navy);
  display: inline-block;
  padding: 2px 10px;
  border-radius: 100px;
  border: 1.5px solid var(--navy);
}
.lt-price {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
}
.lt-price span { font-size: 13px; font-weight: 400; color: var(--text-light); }
.lt-hours { font-size: 12px; color: var(--text-light); font-weight: 600; }
.lt-features {
  list-style: none;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1; margin: 4px 0 8px;
}
.lt-features li {
  font-size: 13px; color: var(--text-mid);
  display: flex; align-items: flex-start; gap: 8px; font-weight: 500;
}
.lt-features li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.lt-btn {
  display: block; width: 100%; text-align: center;
  padding: 10px; border-radius: 8px;
  font-size: 13px; font-weight: 600; font-family: 'Inter', sans-serif;
  text-decoration: none;
  background: var(--accent-light); color: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: 2px 2px 0 var(--navy);
  transition: all 0.1s ease; margin-top: auto;
}
.lt-btn:hover {
  background: var(--navy); color: var(--white);
  transform: translate(1px,1px); box-shadow: 1px 1px 0 var(--navy);
}
.lt-featured .lt-btn { background: var(--mustard); color: var(--navy); border-color: var(--navy); }
.lt-featured .lt-btn:hover { background: var(--navy); color: var(--white); }
.lt-note {
  text-align: center; font-size: 13px;
  color: var(--text-light); font-weight: 500;
}

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

/* ========================
   CONTACT — COLORED INFO BOXES
   ======================== */
.sb-yellow {
  background: var(--mustard);
  border-color: var(--navy);
  box-shadow: 3px 3px 0 var(--navy);
}
.sb-yellow h3 { color: var(--navy); }
.sb-yellow p  { color: rgba(45,45,117,0.82); }

.sb-navy {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 3px 3px 0 var(--magenta);
}
.sb-navy h3  { color: var(--white); }
.sb-navy .sidebar-list li { color: rgba(255,255,255,0.88); }
.sb-navy .sidebar-list li::before { color: var(--mustard); }
.sb-warm-note {
  font-style: italic !important;
  font-size: 12px !important;
  color: var(--mustard) !important;
  opacity: 0.95;
}

.sb-light {
  background: var(--off-white);
  border-color: var(--navy);
  box-shadow: 3px 3px 0 var(--periwinkle);
}
.sb-light h3 { color: var(--navy); }
