/* ═══════════════════════════════════════════════════════════════
   TEASE KITCHEN LLC — LUXURY DESIGN SYSTEM
   Dark Purple + Gold Luxury Aesthetic
   Built: February 23, 2026
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ──────────────────────────────────────────── */
:root {
  --tk-dark-purple: #2D1B4E;
  --tk-mid-purple: #4A2C7A;
  --tk-light-purple: #7B4FBF;
  --tk-violet: #9B6FDF;
  --tk-gold: #C9A84C;
  --tk-gold-light: #E8C97A;
  --tk-gold-shine: #FFE4A0;
  --tk-white: #FAF8FF;
  --tk-cream: #F5F0E8;
  --tk-black: #0A0612;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--tk-black);
  color: var(--tk-white);
  font-family: var(--font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: inherit; }

::selection { background: var(--tk-gold); color: var(--tk-black); }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--tk-black); }
::-webkit-scrollbar-thumb { background: var(--tk-gold); border-radius: 3px; }

/* ── Gold Text Gradient ─────────────────────────────────────── */
.gold-text {
  background: linear-gradient(135deg, #C9A84C 0%, #FFE4A0 50%, #C9A84C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Gold Divider ───────────────────────────────────────────── */
.divider-gold {
  width: 80px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--tk-gold), transparent);
  margin: 20px auto;
}

/* ── Luxury Card ────────────────────────────────────────────── */
.luxury-card {
  background: linear-gradient(135deg, rgba(45,27,78,0.9) 0%, rgba(74,44,122,0.7) 100%);
  border: 1px solid rgba(201,168,76,0.3);
  backdrop-filter: blur(10px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.luxury-card:hover {
  border-color: rgba(201,168,76,0.8);
  box-shadow: 0 20px 60px rgba(201,168,76,0.15);
  transform: translateY(-4px);
}

/* ── Buttons ────────────────────────────────────────────────── */
.btn-gold {
  display: inline-block;
  background: linear-gradient(135deg, #C9A84C 0%, #E8C97A 50%, #C9A84C 100%);
  background-size: 200% auto;
  color: var(--tk-black);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 0.85rem;
}
.btn-gold:hover {
  background-position: right center;
  box-shadow: 0 8px 32px rgba(201,168,76,0.4);
  transform: translateY(-2px);
}

.btn-outline-gold {
  display: inline-block;
  background: transparent;
  color: var(--tk-gold);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 34px;
  border: 2px solid var(--tk-gold);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 0.85rem;
}
.btn-outline-gold:hover {
  background: var(--tk-gold);
  color: var(--tk-black);
  box-shadow: 0 8px 32px rgba(201,168,76,0.3);
  transform: translateY(-2px);
}

/* ── Section Padding ────────────────────────────────────────── */
.section-padding { padding: 100px 0; }

/* ── Container ──────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px) { .container { padding: 0 24px; } }
@media (min-width: 1024px) { .container { padding: 0 32px; } }

/* ── Eyebrow Label ──────────────────────────────────────────── */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.eyebrow-line { height: 1px; width: 48px; background: var(--tk-gold); }
.eyebrow-text {
  color: var(--tk-gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 0.7rem;
  font-family: var(--font-sans);
}

/* ── Section Header ─────────────────────────────────────────── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .eyebrow { justify-content: center; }
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--tk-white);
  margin-bottom: 16px;
}
.section-header p {
  font-family: var(--font-body);
  font-size: 1.25rem;
  color: rgba(250,248,255,0.65);
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 768px) { .section-header h2 { font-size: 3rem; } }

/* ══════════════════════════════════════════════════════════════
   NAVBAR
   ══════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: all 0.5s ease;
}
.navbar.scrolled {
  background: rgba(10,6,18,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 4px 30px rgba(45,27,78,0.3);
}
.navbar-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 16px;
  display: flex; align-items: center; justify-content: space-between;
  height: 90px;
}
.navbar-logo { display: flex; align-items: center; gap: 12px; }
.navbar-logo-img {
  height: 72px; width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(201,168,76,0.4)) brightness(1.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.navbar-logo:hover .navbar-logo-img { filter: drop-shadow(0 6px 24px rgba(201,168,76,0.6)) brightness(1.2); transform: scale(1.05); }
.navbar.scrolled .navbar-logo-img { height: 56px; }
.navbar-logo-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--tk-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s ease;
  font-size: 1.1rem;
}
.navbar-logo:hover .navbar-logo-icon { background: rgba(201,168,76,0.1); }
.navbar-logo-text {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 700;
  color: var(--tk-white); line-height: 1.2;
}
.navbar-logo-sub {
  font-size: 0.65rem; color: var(--tk-gold);
  letter-spacing: 0.2em; text-transform: uppercase;
  font-family: var(--font-sans);
}

.nav-links { display: none; align-items: center; gap: 32px; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.8rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(250,248,255,0.8);
  transition: color 0.3s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute;
  bottom: -4px; left: 0; width: 0; height: 1px;
  background: var(--tk-gold); transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--tk-gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right { display: none; align-items: center; gap: 16px; }
@media (min-width: 1024px) { .nav-right { display: flex; } }
.nav-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--tk-gold); font-family: var(--font-sans); font-size: 0.85rem;
  transition: color 0.3s;
}
.nav-phone:hover { color: var(--tk-gold-light); }
.nav-cta { padding: 10px 24px; font-size: 0.75rem; }

/* Mobile hamburger */
.hamburger {
  display: flex; padding: 8px; background: none; border: none;
  color: var(--tk-white); font-size: 1.5rem;
}
@media (min-width: 1024px) { .hamburger { display: none; } }

/* Mobile Menu */
.mobile-menu {
  display: none; position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
  background: rgba(10,6,18,0.98); backdrop-filter: blur(12px);
  z-index: 99; padding: 24px; overflow-y: auto;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.mobile-menu.open { display: block; animation: fadeDown 0.3s ease; }
@keyframes fadeDown { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.mobile-menu a {
  display: block; font-family: var(--font-body);
  font-size: 1rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(250,248,255,0.8);
  padding: 12px 0; border-bottom: 1px solid rgba(45,27,78,0.5);
  transition: color 0.3s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--tk-gold); }
.mobile-menu .mobile-cta { margin-top: 24px; }
.mobile-menu .mobile-phone {
  display: flex; align-items: center; gap: 8px;
  color: var(--tk-gold); font-family: var(--font-sans); margin-bottom: 12px;
}

/* ══════════════════════════════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,6,18,0.6) 0%, rgba(45,27,78,0.75) 50%, rgba(10,6,18,0.95) 100%);
}
.hero-content {
  position: relative; z-index: 10;
  max-width: 900px; margin: 0 auto;
  padding: 0 16px; text-align: center;
}
.hero h1 {
  font-size: 3rem; font-weight: 700;
  color: var(--tk-white); margin-bottom: 16px;
  line-height: 1.1;
}
.hero h1 .gold-text { font-style: italic; }
@media (min-width: 768px) { .hero h1 { font-size: 4.5rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 5.5rem; } }

.hero-sub {
  font-family: var(--font-body);
  font-size: 1.2rem; color: rgba(250,248,255,0.85);
  max-width: 640px; margin: 0 auto 40px;
  line-height: 1.6;
}
@media (min-width: 768px) { .hero-sub { font-size: 1.4rem; } }

.hero-stars {
  display: flex; align-items: center; justify-content: center;
  gap: 4px; margin-bottom: 40px;
}
.hero-stars svg { color: var(--tk-gold); }
.hero-stars span {
  margin-left: 12px; color: rgba(250,248,255,0.7);
  font-family: var(--font-sans); font-size: 0.8rem;
}

.hero-btns {
  display: flex; flex-direction: column; align-items: center;
  gap: 16px; margin-bottom: 48px;
}
@media (min-width: 640px) { .hero-btns { flex-direction: row; justify-content: center; gap: 20px; } }
.hero-btns .btn-gold,
.hero-btns .btn-outline-gold { padding: 16px 40px; font-size: 0.9rem; }

.hero-tags {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px;
}
.hero-tag {
  padding: 6px 16px;
  border: 1px solid rgba(201,168,76,0.4);
  color: rgba(201,168,76,0.8);
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; font-family: var(--font-sans);
  border-radius: 999px; transition: all 0.3s ease;
}
.hero-tag:hover { border-color: var(--tk-gold); color: var(--tk-gold); }

.hero-scroll {
  position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(201,168,76,0.6); animation: bounce 2s infinite;
}
.hero-scroll span {
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; font-family: var(--font-sans);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(10px); }
}

/* ══════════════════════════════════════════════════════════════
   GRID LAYOUTS
   ══════════════════════════════════════════════════════════════ */
.grid-2 { display: grid; gap: 24px; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }
.grid-3 { display: grid; gap: 24px; }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-cols-2-lg { display: grid; gap: 64px; }
@media (min-width: 1024px) { .grid-cols-2-lg { grid-template-columns: repeat(2, 1fr); } }

/* ══════════════════════════════════════════════════════════════
   SERVICE CARDS
   ══════════════════════════════════════════════════════════════ */
.service-card {
  position: relative; overflow: hidden; padding: 32px;
  height: 100%;
}
.service-card .highlight-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--tk-gold); color: var(--tk-black);
  font-size: 0.6rem; font-family: var(--font-sans);
  font-weight: 700; padding: 4px 12px;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.service-card-icon {
  width: 56px; height: 56px;
  border: 1px solid rgba(201,168,76,0.4);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px; font-size: 1.3rem;
  transition: all 0.3s ease;
}
.service-card:hover .service-card-icon {
  background: rgba(201,168,76,0.1);
  border-color: var(--tk-gold);
}
.service-card h3 {
  font-size: 1.4rem; font-weight: 700;
  color: var(--tk-white); margin-bottom: 12px;
  transition: color 0.3s;
}
.service-card:hover h3 { color: var(--tk-gold-light); }
.service-card p {
  font-family: var(--font-body);
  color: rgba(250,248,255,0.65); line-height: 1.7;
  margin-bottom: 24px;
}
.service-card .learn-more {
  display: flex; align-items: center; gap: 8px;
  color: var(--tk-gold); font-family: var(--font-sans);
  font-size: 0.75rem; letter-spacing: 0.15em;
  text-transform: uppercase; transition: gap 0.3s;
}
.service-card:hover .learn-more { gap: 16px; }

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════════════════════════════ */
.testimonial-card {
  padding: 40px 48px; text-align: center;
}
@media (max-width: 767px) { .testimonial-card { padding: 24px; } }
.testimonial-card .stars {
  display: flex; justify-content: center; gap: 4px; margin-bottom: 24px;
}
.testimonial-card .stars svg { width: 20px; height: 20px; color: var(--tk-gold); }
.testimonial-card blockquote {
  font-family: var(--font-body);
  font-size: 1.2rem; color: rgba(250,248,255,0.9);
  font-style: italic; line-height: 1.7; margin-bottom: 32px;
}
@media (min-width: 768px) { .testimonial-card blockquote { font-size: 1.4rem; } }
.testimonial-card .author-name {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600; color: var(--tk-white);
}
.testimonial-card .author-role {
  font-family: var(--font-sans); font-size: 0.8rem;
  color: var(--tk-gold); margin-top: 4px;
}

.testimonial-nav {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; margin-top: 32px;
}
.testimonial-nav button {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%; background: transparent;
  color: var(--tk-gold); display: flex;
  align-items: center; justify-content: center;
  transition: all 0.3s;
}
.testimonial-nav button:hover {
  background: var(--tk-gold); color: var(--tk-black);
}
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dot {
  height: 6px; border-radius: 3px;
  background: rgba(201,168,76,0.3);
  transition: all 0.3s; width: 12px; border: none;
}
.testimonial-dot.active { width: 32px; background: var(--tk-gold); }

/* ══════════════════════════════════════════════════════════════
   BOOKING FORM SYSTEM
   ══════════════════════════════════════════════════════════════ */
.booking-progress {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 48px; padding: 0 8px;
}
.booking-step-indicator {
  display: flex; flex-direction: column; align-items: center;
}
.booking-step-circle {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; font-weight: 700;
  font-family: var(--font-sans);
  transition: all 0.3s;
}
.booking-step-circle.completed { background: var(--tk-gold); color: var(--tk-black); }
.booking-step-circle.active { border: 2px solid var(--tk-gold); color: var(--tk-gold); }
.booking-step-circle.pending { border: 1px solid rgba(201,168,76,0.3); color: rgba(250,248,255,0.3); }
.booking-step-label {
  font-size: 0.65rem; margin-top: 8px;
  font-family: var(--font-sans); letter-spacing: 0.1em;
  display: none;
}
@media (min-width: 640px) { .booking-step-label { display: block; } }
.booking-step-label.active { color: var(--tk-gold); }
.booking-step-label.pending { color: rgba(250,248,255,0.4); }
.booking-step-line {
  flex: 1; height: 1px; margin: 0 12px 20px;
  transition: background 0.5s;
}
.booking-step-line.completed { background: var(--tk-gold); }
.booking-step-line.pending { background: rgba(201,168,76,0.2); }

.form-group { margin-bottom: 20px; }
.form-label {
  display: block; color: rgba(201,168,76,0.8);
  font-size: 0.7rem; font-family: var(--font-sans);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(45,27,78,0.6);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--tk-white);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--tk-gold);
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(250,248,255,0.3); }
.form-textarea { resize: none; }
.form-select option { background: var(--tk-dark-purple); color: var(--tk-white); }
.form-error {
  color: #f87171; font-size: 0.75rem;
  font-family: var(--font-sans); margin-top: 4px;
}
.form-row {
  display: grid; gap: 20px;
}
@media (min-width: 640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }

.budget-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
}
@media (min-width: 640px) { .budget-grid { grid-template-columns: repeat(3, 1fr); } }
.budget-btn {
  padding: 10px 12px;
  border: 1px solid rgba(201,168,76,0.2);
  background: transparent;
  color: rgba(250,248,255,0.6);
  font-family: var(--font-body);
  font-size: 0.85rem;
  transition: all 0.2s;
}
.budget-btn:hover { border-color: rgba(201,168,76,0.5); color: var(--tk-white); }
.budget-btn.selected {
  border-color: var(--tk-gold);
  background: rgba(201,168,76,0.1);
  color: var(--tk-gold);
}

.service-select-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
}
.service-select-btn {
  padding: 20px; text-align: left;
  transition: all 0.3s;
}
.service-select-btn .icon {
  font-size: 1.3rem; margin-bottom: 12px;
  color: rgba(201,168,76,0.5);
  transition: color 0.3s;
}
.service-select-btn.selected .icon { color: var(--tk-gold); }
.service-select-btn .label {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600;
  color: var(--tk-white); transition: color 0.3s;
}
.service-select-btn.selected .label { color: var(--tk-gold); }
.service-select-btn.selected {
  border-color: var(--tk-gold) !important;
  background: rgba(201,168,76,0.1) !important;
}

.review-item {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid rgba(201,168,76,0.1);
}
.review-label {
  color: rgba(201,168,76,0.7);
  font-family: var(--font-sans);
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase;
}
.review-value {
  color: var(--tk-white);
  font-family: var(--font-body);
  text-align: right; max-width: 60%;
}

.form-nav {
  display: flex; justify-content: space-between;
  margin-top: 40px;
}

/* ══════════════════════════════════════════════════════════════
   GALLERY
   ══════════════════════════════════════════════════════════════ */
.gallery-grid {
  columns: 1; gap: 16px;
}
@media (min-width: 640px) { .gallery-grid { columns: 2; } }
@media (min-width: 1024px) { .gallery-grid { columns: 3; } }
.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  position: relative; overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .overlay {
  position: absolute; inset: 0;
  background: rgba(10,6,18,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.gallery-item:hover .overlay { background: rgba(10,6,18,0.4); }
.gallery-item .overlay svg {
  opacity: 0; color: white;
  width: 32px; height: 32px;
  transition: opacity 0.3s;
}
.gallery-item:hover .overlay svg { opacity: 1; }
.gallery-item .cat-badge {
  position: absolute; bottom: 12px; left: 12px;
  padding: 4px 10px;
  background: var(--tk-gold); color: var(--tk-black);
  font-size: 0.6rem; font-family: var(--font-sans);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .cat-badge { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10,6,18,0.95);
  display: none; align-items: center; justify-content: center;
  padding: 16px;
}
.lightbox.open { display: flex; animation: fadeIn 0.3s ease; }
.lightbox-inner { max-width: 900px; width: 100%; position: relative; }
.lightbox-close {
  position: absolute; top: -48px; right: 0;
  background: none; border: none;
  color: var(--tk-white); font-size: 2rem;
  cursor: pointer; transition: color 0.3s;
}
.lightbox-close:hover { color: var(--tk-gold); }
.lightbox-inner img { width: 100%; }
.lightbox-info {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 16px;
}
.lightbox-info p { color: rgba(250,248,255,0.7); font-family: var(--font-body); }
.lightbox-info .cat-badge {
  padding: 4px 12px;
  background: var(--tk-gold); color: var(--tk-black);
  font-size: 0.65rem; font-family: var(--font-sans);
  font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════════ */
.footer { background: var(--tk-black); border-top: 1px solid rgba(201,168,76,0.1); }
.footer-grid {
  display: grid; gap: 40px;
  padding: 64px 0;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand p {
  color: rgba(250,248,255,0.55);
  font-size: 0.85rem; line-height: 1.7;
  margin-bottom: 16px;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.65rem; color: var(--tk-gold);
  text-transform: uppercase; letter-spacing: 0.2em;
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-family: var(--font-body);
  font-size: 0.85rem; color: rgba(250,248,255,0.55);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--tk-gold); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 16px;
}
.footer-contact-item svg { color: var(--tk-gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span {
  font-family: var(--font-body); font-size: 0.85rem;
  color: rgba(250,248,255,0.55);
}
.footer-contact-item a:hover span { color: var(--tk-gold); }
.footer-cities {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 16px 0; text-align: center;
}
.footer-cities p {
  font-family: var(--font-sans); font-size: 0.65rem;
  color: rgba(250,248,255,0.25); line-height: 1.8;
}
.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 20px 0;
  display: flex; flex-direction: column; align-items: center;
  gap: 8px;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p {
  font-family: var(--font-sans); font-size: 0.7rem;
  color: rgba(250,248,255,0.3);
}

/* ══════════════════════════════════════════════════════════════
   FLOATING CTA
   ══════════════════════════════════════════════════════════════ */
.floating-cta {
  position: fixed; bottom: 24px; right: 24px; z-index: 90;
  display: none;
}
.floating-cta.visible { display: block; animation: slideUp 0.5s ease; }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
.floating-fab {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, #C9A84C 0%, #E8C97A 50%, #C9A84C 100%);
  border: none; display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 32px rgba(201,168,76,0.3);
  transition: transform 0.3s; font-size: 1.4rem;
  position: relative;
}
.floating-fab:hover { transform: scale(1.1); }
.floating-fab .pulse {
  position: absolute; inset: -4px;
  border: 2px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 1; } 100% { transform: scale(1.5); opacity: 0; } }

.floating-panel {
  display: none; position: absolute; bottom: 64px; right: 0;
  width: 240px; padding: 20px;
  animation: fadeIn 0.3s ease;
}
.floating-panel.open { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
.floating-panel h4 {
  font-family: var(--font-display); font-size: 0.9rem;
  font-weight: 700; color: var(--tk-white); margin-bottom: 8px;
}
.floating-panel p {
  font-family: var(--font-body); font-size: 0.75rem;
  color: rgba(250,248,255,0.6); margin-bottom: 16px;
}
.floating-panel .btn-gold { width: 100%; font-size: 0.7rem; padding: 10px; margin-bottom: 8px; }
.floating-panel .btn-outline-gold { width: 100%; font-size: 0.7rem; padding: 8px; }

/* ══════════════════════════════════════════════════════════════
   MENU PAGE TABS
   ══════════════════════════════════════════════════════════════ */
.menu-tabs {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 12px; margin-bottom: 48px;
}
.menu-tab {
  padding: 12px 24px;
  border: 1px solid rgba(201,168,76,0.3);
  background: transparent;
  color: rgba(250,248,255,0.7);
  font-family: var(--font-body);
  font-size: 0.95rem; letter-spacing: 0.1em;
  transition: all 0.3s;
}
.menu-tab:hover { border-color: rgba(201,168,76,0.7); color: var(--tk-white); }
.menu-tab.active {
  border-color: var(--tk-gold);
  background: var(--tk-gold);
  color: var(--tk-black);
  font-weight: 600;
}

.menu-item { padding: 24px; }
.menu-item-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 12px;
}
.menu-item h3 {
  font-size: 1.2rem; font-weight: 700;
  color: var(--tk-white); transition: color 0.3s;
}
.menu-item:hover h3 { color: var(--tk-gold); }
.menu-item-tags { display: flex; flex-wrap: wrap; gap: 4px; margin-left: 12px; }
.menu-tag {
  padding: 2px 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--tk-gold); font-size: 0.6rem;
  font-family: var(--font-sans);
  white-space: nowrap;
}
.menu-item p {
  font-family: var(--font-body);
  color: rgba(250,248,255,0.65); line-height: 1.7;
}

/* ══════════════════════════════════════════════════════════════
   CATEGORY FILTER BUTTONS
   ══════════════════════════════════════════════════════════════ */
.filter-tabs {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px; margin-bottom: 48px;
}
.filter-tab {
  padding: 10px 20px;
  border: 1px solid rgba(201,168,76,0.3);
  background: transparent;
  color: rgba(250,248,255,0.6);
  font-family: var(--font-sans);
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.filter-tab:hover { border-color: rgba(201,168,76,0.6); color: var(--tk-white); }
.filter-tab.active {
  border-color: var(--tk-gold);
  background: var(--tk-gold);
  color: var(--tk-black);
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT PAGE
   ══════════════════════════════════════════════════════════════ */
.bio-quote {
  border-left: 2px solid var(--tk-gold);
  padding-left: 24px;
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: rgba(250,248,255,0.9);
  font-style: italic;
  line-height: 1.7;
}
.bio-quote .author {
  display: block; margin-top: 12px;
  font-style: normal;
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.9rem;
  color: var(--tk-gold);
}
.value-card {
  padding: 16px;
}
.value-card svg { color: var(--tk-gold); margin-bottom: 8px; }
.value-card h4 {
  font-family: var(--font-display);
  font-size: 0.9rem; font-weight: 600;
  color: var(--tk-white);
}
.value-card p {
  font-family: var(--font-sans);
  font-size: 0.7rem; color: rgba(250,248,255,0.5);
  margin-top: 4px;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ══════════════════════════════════════════════════════════════ */
.contact-info-card { padding: 20px; }
.contact-info-card .icon-wrap {
  width: 44px; height: 44px;
  border: 1px solid rgba(201,168,76,0.4);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: background 0.3s;
  color: var(--tk-gold);
  border-radius: 2px;
}
.contact-info-card:hover .icon-wrap { background: rgba(201,168,76,0.15); border-color: var(--tk-gold); }
.contact-info-card .info-label {
  font-family: var(--font-sans);
  font-size: 0.6rem; color: rgba(201,168,76,0.7);
  text-transform: uppercase; letter-spacing: 0.2em;
  margin-bottom: 4px;
}
.contact-info-card .info-value {
  font-family: var(--font-body);
  font-size: 1.05rem; color: var(--tk-white);
  transition: color 0.3s;
}
.contact-info-card a:hover .info-value { color: var(--tk-gold); }
.contact-info-card .info-sub {
  font-family: var(--font-sans);
  font-size: 0.7rem; color: rgba(250,248,255,0.4);
  margin-top: 2px;
}
.service-area-tags {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.area-tag {
  padding: 4px 12px;
  border: 1px solid rgba(201,168,76,0.2);
  color: rgba(250,248,255,0.7);
  font-size: 0.7rem; font-family: var(--font-sans);
}

/* ══════════════════════════════════════════════════════════════
   SUCCESS STATE
   ══════════════════════════════════════════════════════════════ */
.success-state {
  text-align: center; padding: 48px;
  min-height: 400px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.success-icon {
  width: 80px; height: 80px;
  color: var(--tk-gold); margin-bottom: 24px;
}
.success-state h2 {
  font-size: 1.8rem; color: var(--tk-white);
  margin-bottom: 16px;
}
.success-state .subtitle {
  font-family: var(--font-body);
  font-size: 1.2rem; color: var(--tk-gold);
  font-style: italic; margin-bottom: 16px;
}
.success-state p {
  font-family: var(--font-body);
  color: rgba(250,248,255,0.7); margin-bottom: 24px;
  max-width: 400px;
}

/* ══════════════════════════════════════════════════════════════
   ANIMATIONS (Intersection Observer driven)
   ══════════════════════════════════════════════════════════════ */
.animate-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.animate-on-scroll.visible {
  opacity: 1; transform: translateY(0);
}
.animate-on-scroll.from-left {
  transform: translateX(-40px);
}
.animate-on-scroll.from-left.visible {
  transform: translateX(0);
}
.animate-on-scroll.from-right {
  transform: translateX(40px);
}
.animate-on-scroll.from-right.visible {
  transform: translateX(0);
}
.animate-on-scroll.scale-up {
  transform: scale(0.9);
}
.animate-on-scroll.scale-up.visible {
  transform: scale(1);
}

/* Stagger delays */
[data-delay="1"] { transition-delay: 0.1s !important; }
[data-delay="2"] { transition-delay: 0.2s !important; }
[data-delay="3"] { transition-delay: 0.3s !important; }
[data-delay="4"] { transition-delay: 0.4s !important; }
[data-delay="5"] { transition-delay: 0.5s !important; }
[data-delay="6"] { transition-delay: 0.6s !important; }
[data-delay="7"] { transition-delay: 0.7s !important; }

/* ══════════════════════════════════════════════════════════════
   UTILITY HELPERS
   ══════════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-14 { margin-bottom: 56px; }
.mt-6 { margin-top: 24px; }
.mt-10 { margin-top: 40px; }
.mt-14 { margin-top: 56px; }
.pt-20 { padding-top: 80px; }
.hidden { display: none; }
.block { display: block; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-5 { gap: 20px; }
.w-full { width: 100%; }
.max-w-lg { max-width: 512px; }
.max-w-2xl { max-width: 672px; }
.max-w-3xl { max-width: 768px; }
.max-w-4xl { max-width: 896px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.relative { position: relative; }
.overflow-hidden { overflow: hidden; }
.italic { font-style: italic; }
.font-bold { font-weight: 700; }
.leading-tight { line-height: 1.2; }
.leading-relaxed { line-height: 1.7; }
.space-y-6 > * + * { margin-top: 24px; }
.space-y-8 > * + * { margin-top: 32px; }

/* Background gradients */
.bg-purple-gradient { background: linear-gradient(180deg, #0A0612 0%, #150B2E 100%); }
.bg-purple-gradient-rev { background: linear-gradient(180deg, #150B2E 0%, #0A0612 100%); }
.bg-purple-gradient-mid { background: linear-gradient(180deg, #0A0612 0%, #150B2E 50%, #0A0612 100%); }

/* Spinner */
.spinner {
  width: 20px; height: 20px;
  border: 2px solid rgba(10,6,18,0.3);
  border-top-color: var(--tk-black);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════════════
   BLOG FILTER BUTTONS
   ══════════════════════════════════════════════════════════════ */
.blog-filter-btn {
  padding: 10px 20px;
  border: 1px solid rgba(201,168,76,0.3);
  background: transparent;
  color: rgba(250,248,255,0.6);
  font-family: var(--font-sans);
  font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.blog-filter-btn:hover { border-color: rgba(201,168,76,0.6); color: var(--tk-white); }
.blog-filter-btn.active {
  border-color: var(--tk-gold);
  background: var(--tk-gold);
  color: var(--tk-black);
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════════════
   NEWSLETTER SECTION
   ══════════════════════════════════════════════════════════════ */
.newsletter-section {
  background: linear-gradient(135deg, rgba(45,27,78,0.6) 0%, rgba(74,44,122,0.4) 100%);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 48px 32px;
  text-align: center;
  margin: 40px 0;
}
.newsletter-section h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--tk-white); margin-bottom: 12px;
}
.newsletter-section p {
  font-family: var(--font-body);
  font-size: 0.95rem; color: rgba(250,248,255,0.6);
  margin-bottom: 24px; max-width: 480px; margin-left: auto; margin-right: auto;
}
.newsletter-form {
  display: flex; gap: 12px; max-width: 440px;
  margin: 0 auto; flex-wrap: wrap; justify-content: center;
}
.newsletter-form input[type="email"] {
  flex: 1; min-width: 200px;
  padding: 14px 16px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--tk-white);
  font-family: var(--font-sans); font-size: 0.85rem;
  outline: none; transition: border-color 0.3s;
}
.newsletter-form input[type="email"]:focus {
  border-color: rgba(201,168,76,0.6);
}
.newsletter-form input[type="email"]::placeholder {
  color: rgba(250,248,255,0.35);
}
.newsletter-disclaimer {
  font-family: var(--font-sans);
  font-size: 0.65rem; color: rgba(250,248,255,0.3);
  margin-top: 12px;
}

/* ══════════════════════════════════════════════════════════════
   COOKIE BANNER (ADA/TX Compliance)
   ══════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(10,6,18,0.97);
  border-top: 1px solid rgba(201,168,76,0.3);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 16px; flex-wrap: wrap;
  animation: slideUp 0.5s ease;
  backdrop-filter: blur(10px);
}
.cookie-banner p {
  font-family: var(--font-sans);
  font-size: 0.75rem; color: rgba(250,248,255,0.7);
  margin: 0;
}
.cookie-banner a {
  color: var(--tk-gold); text-decoration: underline;
}
.cookie-banner button {
  padding: 8px 24px;
  font-family: var(--font-sans); font-size: 0.7rem;
  font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.1em; border: none; cursor: pointer;
}
.cookie-accept {
  background: var(--tk-gold); color: var(--tk-black);
}
.cookie-decline {
  background: transparent; color: rgba(250,248,255,0.5);
  border: 1px solid rgba(250,248,255,0.2) !important;
}
