/*
Theme Name: Texas Fadez
Theme URI: https://texasfadez.com
Author: Texas Fadez Barbershop
Author URI: https://texasfadez.com
Description: Premium barbershop website for Texas Fadez Barbershop Co. 2 in Killeen, TX. Features hero section with admin-editable images, services, barbers, gallery, reviews, FAQ, and contact sections.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: texas-fadez
Tags: business, custom-background, custom-logo, featured-images, full-width-template, one-page, responsive-layout
*/

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --clr-dark:   #0b0a09;
  --clr-dark2:  #171412;
  --clr-red:    #C81E2C;
  --clr-red-hover: #a51423;
  --clr-gold:   #C9A227;
  --clr-gold-hover: #E0B93A;
  --clr-cream:  #F4EFE6;
  --clr-body:   #4a453f;
  --clr-mid:    #161311;
  --max-w:      1280px;
  --radius:     4px;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;
}

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

::selection { background: var(--clr-gold); color: var(--clr-dark); }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--clr-dark);
  color: var(--clr-cream);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: var(--clr-gold); transition: color 0.2s; }
a:hover { color: var(--clr-gold-hover); }
button { cursor: pointer; font-family: var(--font-body); }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes tfb-kenburns {
  0%   { transform: scale(1.06) translate(0, 0); }
  100% { transform: scale(1.16) translate(-1%, -1%); }
}
@keyframes tfb-fadeup {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes tfb-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200, 20, 44, 0.5); }
  50%       { box-shadow: 0 0 0 10px rgba(200, 20, 44, 0); }
}

.tfb-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.tfb-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.tfb-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section-label {
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 54px);
  line-height: 1;
  margin: 0;
}
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

/* =============================================
   NAVIGATION
   ============================================= */
.tfb-navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 10, 9, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: background 0.3s;
  border-bottom: 1px solid rgba(201, 162, 39, 0.15);
}
.tfb-navbar.scrolled {
  background: rgba(11, 10, 9, 0.92);
}
.tfb-nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.tfb-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--clr-cream);
}
.tfb-logo:hover { color: var(--clr-cream); }
.tfb-logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.5px;
  line-height: 1;
  color: var(--clr-cream);
}
.tfb-logo-text span { color: var(--clr-red); }

.tfb-desktop-nav {
  display: none;
  gap: 32px;
  align-items: center;
}
.tfb-desktop-nav a {
  color: var(--clr-cream);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.tfb-desktop-nav a:hover { color: var(--clr-gold); }

.tfb-nav-social {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-left: 8px;
  padding-left: 20px;
  border-left: 1px solid rgba(244, 239, 230, 0.15);
}
.tfb-nav-social a { color: var(--clr-cream); display: flex; }
.tfb-nav-social a:hover { color: var(--clr-gold); }

.tfb-btn-book-nav {
  background: var(--clr-red) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: var(--radius) !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
  display: inline-block !important;
}
.tfb-btn-book-nav:hover {
  background: var(--clr-red-hover) !important;
  color: #fff !important;
}

.tfb-mobile-btn {
  display: flex;
  background: none;
  border: none;
  color: var(--clr-cream);
  padding: 4px;
}

.tfb-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 8px 24px 20px;
  border-top: 1px solid rgba(201, 162, 39, 0.15);
}
.tfb-mobile-menu.open { display: flex; }

.tfb-mobile-menu a {
  color: var(--clr-cream);
  padding: 12px 0;
  font-weight: 600;
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
  font-size: 15px;
}
.tfb-mobile-menu a:last-child { border-bottom: none; }
.tfb-mobile-menu a:hover { color: var(--clr-gold); }

.tfb-mobile-menu .tfb-btn-mobile-book {
  background: var(--clr-red);
  color: #fff;
  text-align: center;
  padding: 12px;
  margin-top: 14px;
  border-radius: var(--radius);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.5px;
  border-bottom: none !important;
}
.tfb-mobile-menu .tfb-btn-mobile-book:hover {
  background: var(--clr-red-hover);
  color: #fff;
}

/* =============================================
   HERO SECTION
   ============================================= */
.tfb-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.tfb-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  animation: tfb-kenburns 18s ease-in-out infinite alternate;
}
.tfb-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.tfb-hero-overlay-v {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,10,9,0.55) 0%, rgba(11,10,9,0.75) 55%, rgba(11,10,9,0.96) 100%);
  pointer-events: none;
  z-index: 1;
}
.tfb-hero-overlay-h {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11,10,9,0.85) 0%, rgba(11,10,9,0.1) 45%, rgba(11,10,9,0.1) 100%);
  pointer-events: none;
  z-index: 2;
}
.tfb-hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}
.tfb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(244, 239, 230, 0.08);
  border: 1px solid rgba(201, 162, 39, 0.4);
  padding: 9px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.tfb-hero-badge .stars { color: var(--clr-gold); font-size: 15px; letter-spacing: 1px; }
.tfb-hero-badge .label { font-size: 13px; font-weight: 600; color: var(--clr-cream); }

.tfb-hero-heading {
  font-family: var(--font-display);
  font-size: clamp(48px, 9vw, 110px);
  line-height: 0.95;
  margin: 0 0 20px;
  letter-spacing: 0.5px;
  max-width: 900px;
}
.tfb-hero-heading span { color: var(--clr-red); }
.tfb-hero-sub {
  font-size: 19px;
  color: rgba(244, 239, 230, 0.85);
  max-width: 560px;
  margin: 0 0 40px;
  line-height: 1.6;
}
.tfb-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.tfb-btn-primary {
  background: var(--clr-red);
  color: #fff;
  padding: 18px 36px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 15px;
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(200, 20, 44, 0.35);
  animation: tfb-pulse 2.5s ease-in-out infinite;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.tfb-btn-primary:hover {
  background: var(--clr-red-hover);
  color: #fff;
  transform: translateY(-2px);
}
.tfb-btn-outline {
  border: 1px solid rgba(244, 239, 230, 0.35);
  color: var(--clr-cream);
  padding: 18px 36px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 15px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: border-color 0.2s, color 0.2s;
}
.tfb-btn-outline:hover {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.tfb-about {
  background: var(--clr-cream);
  color: var(--clr-dark2);
  padding: 110px 24px;
}
.tfb-about-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}
.tfb-about-label { color: var(--clr-red); }
.tfb-about-heading { color: var(--clr-dark2); }
.tfb-about p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--clr-body);
  margin: 0 0 20px;
}
.tfb-about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 8px;
  border-top: 1px solid rgba(23, 20, 18, 0.12);
  margin-top: 32px;
}
.tfb-stat { padding-top: 24px; }
.tfb-stat-num {
  font-family: var(--font-display);
  font-size: 38px;
  color: var(--clr-red);
  line-height: 1;
}
.tfb-stat-label { font-size: 13px; color: var(--clr-body); font-weight: 600; margin-top: 4px; }

.tfb-about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  height: 520px;
}
.tfb-about-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}
.tfb-about-col2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 100%;
  min-height: 0;
}
.tfb-about-col2 img {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  border-radius: var(--radius);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.tfb-services {
  background: var(--clr-dark);
  padding: 110px 24px;
}
.tfb-services .section-label { color: var(--clr-gold); }
.tfb-services .section-heading { color: var(--clr-cream); }
.tfb-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(244, 239, 230, 0.1);
}
.tfb-service-card {
  background: var(--clr-dark);
  padding: 36px 32px;
  transition: background 0.25s;
}
.tfb-service-card:hover { background: var(--clr-mid); }
.tfb-service-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 10px;
  gap: 12px;
}
.tfb-service-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: var(--clr-cream);
}
.tfb-service-price {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--clr-red);
  white-space: nowrap;
}
.tfb-service-desc {
  font-size: 14.5px;
  color: rgba(244, 239, 230, 0.65);
  line-height: 1.6;
}
.tfb-services-note {
  text-align: center;
  color: rgba(244, 239, 230, 0.4);
  font-size: 13px;
  margin-top: 28px;
}

/* =============================================
   BARBERS SECTION
   ============================================= */
.tfb-barbers {
  background: var(--clr-dark2);
  padding: 110px 24px;
}
.tfb-barbers .section-label { color: var(--clr-red); }
.tfb-barbers .section-heading { color: var(--clr-cream); }
.tfb-barbers-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
}
.tfb-barber-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 380px;
  background: var(--clr-dark);
}
.tfb-barber-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.tfb-barber-card:hover img { transform: scale(1.04); }
.tfb-barber-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(11,10,9,0.95) 100%);
  pointer-events: none;
}
.tfb-barber-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 22px;
}
.tfb-barber-name {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--clr-cream);
  line-height: 1.1;
}
.tfb-barber-specialty {
  font-size: 13px;
  color: var(--clr-gold);
  font-weight: 600;
  letter-spacing: 0.3px;
  margin-top: 4px;
}

/* =============================================
   GALLERY SECTION
   ============================================= */
.tfb-gallery {
  background: var(--clr-cream);
  padding: 110px 24px;
}
.tfb-gallery .section-label { color: var(--clr-red); }
.tfb-gallery .section-heading { color: var(--clr-dark2); }
.tfb-gallery-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 12px;
}
.tfb-gallery-grid .gal-item {
  overflow: hidden;
  border-radius: 2px;
}
.tfb-gallery-grid .gal-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tfb-gallery-grid .gal-item:hover img { transform: scale(1.06); }
.gal-1 { grid-column: span 2; grid-row: span 2; }
.gal-6 { grid-column: span 2; }
.gal-7 { grid-column: span 2; grid-row: span 2; }

/* =============================================
   REVIEWS SECTION
   ============================================= */
.tfb-reviews {
  background: var(--clr-dark);
  padding: 110px 24px;
}
.tfb-reviews .section-label { color: var(--clr-gold); }
.tfb-reviews .section-heading { color: var(--clr-cream); }
.tfb-reviews-stars { color: var(--clr-gold); font-size: 20px; letter-spacing: 3px; margin-top: 16px; }
.tfb-reviews-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.tfb-review-card {
  background: var(--clr-dark2);
  padding: 32px;
  border-radius: var(--radius);
  border-top: 2px solid var(--clr-gold);
}
.tfb-review-stars { color: var(--clr-gold); font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.tfb-review-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(244, 239, 230, 0.85);
  margin: 0 0 20px;
}
.tfb-reviewer-name { font-weight: 700; font-size: 14px; color: var(--clr-cream); }
.tfb-reviewer-source { font-size: 12.5px; color: rgba(244, 239, 230, 0.45); margin-top: 2px; }

/* =============================================
   LOYALTY SECTION
   ============================================= */
.tfb-loyalty {
  background: var(--clr-red);
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.tfb-loyalty-circle {
  position: absolute;
  top: -40px; right: -40px;
  width: 220px; height: 220px;
  border: 24px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}
.tfb-loyalty-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.tfb-loyalty-label {
  font-weight: 700;
  letter-spacing: 2px;
  font-size: 13px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
}
.tfb-loyalty-heading {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  color: #fff;
  margin: 0;
}
.tfb-loyalty-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  margin: 12px 0 0;
  max-width: 520px;
}
.tfb-btn-loyalty {
  background: var(--clr-dark);
  color: #fff;
  padding: 18px 36px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 15px;
  border-radius: var(--radius);
  white-space: nowrap;
  display: inline-block;
  transition: background 0.2s;
}
.tfb-btn-loyalty:hover { background: var(--clr-dark2); color: #fff; }

/* =============================================
   FAQ SECTION
   ============================================= */
.tfb-faq {
  background: var(--clr-dark2);
  padding: 100px 24px;
}
.tfb-faq .section-label { color: var(--clr-gold); }
.tfb-faq .section-heading { color: var(--clr-cream); }
.tfb-faq-list { max-width: 840px; margin: 0 auto; }
.tfb-faq-item { border-bottom: 1px solid rgba(244, 239, 230, 0.12); }
.tfb-faq-btn {
  width: 100%;
  background: none;
  border: none;
  color: var(--clr-cream);
  text-align: left;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
  gap: 16px;
  transition: color 0.2s;
}
.tfb-faq-btn:hover { color: var(--clr-gold); }
.tfb-faq-icon {
  color: var(--clr-gold);
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
.tfb-faq-item.open .tfb-faq-icon { transform: rotate(45deg); }
.tfb-faq-answer {
  display: none;
  padding: 0 4px 22px;
  color: rgba(244, 239, 230, 0.7);
  font-size: 15px;
  line-height: 1.7;
}
.tfb-faq-item.open .tfb-faq-answer { display: block; }

/* =============================================
   CONTACT SECTION
   ============================================= */
.tfb-contact {
  background: var(--clr-cream);
  color: var(--clr-dark2);
  padding: 110px 24px;
}
.tfb-contact .section-label { color: var(--clr-red); }
.tfb-contact .section-heading { color: var(--clr-dark2); }
.tfb-contact-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.tfb-contact-detail { margin-bottom: 32px; }
.tfb-contact-detail-label {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--clr-red);
  margin-bottom: 10px;
}
.tfb-contact-detail p, .tfb-contact-detail a {
  font-size: 17px;
  line-height: 1.6;
  color: var(--clr-dark2);
}
.tfb-contact-phone {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: var(--clr-dark2) !important;
  transition: color 0.2s !important;
}
.tfb-contact-phone:hover { color: var(--clr-red) !important; }

.tfb-hours-table { width: 100%; font-size: 15px; border-collapse: collapse; }
.tfb-hours-table tr { border-bottom: 1px solid rgba(23, 20, 18, 0.1); }
.tfb-hours-table td { padding: 9px 0; }
.tfb-hours-table td:first-child { font-weight: 600; }
.tfb-hours-table td:last-child { text-align: right; color: var(--clr-body); }

.tfb-contact-social { display: flex; gap: 14px; }
.tfb-social-circle {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--clr-dark2);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.tfb-social-circle:hover { background: var(--clr-red); color: #fff; }

.tfb-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 20px 50px rgba(23, 20, 18, 0.15);
}
.tfb-map-wrap iframe {
  border: 0;
  width: 100%;
  min-height: 420px;
  display: block;
}

/* =============================================
   FOOTER
   ============================================= */
.tfb-footer {
  background: var(--clr-dark);
  padding: 64px 24px 32px;
  border-top: 1px solid rgba(201, 162, 39, 0.15);
}
.tfb-footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
}
.tfb-footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(244, 239, 230, 0.08);
}
.tfb-footer-brand { max-width: 320px; }
.tfb-footer-brand .tfb-logo { margin-bottom: 16px; }
.tfb-footer-tagline {
  color: rgba(244, 239, 230, 0.55);
  font-size: 14px;
  line-height: 1.7;
}
.tfb-footer-links {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}
.tfb-footer-col-title {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--clr-gold);
  margin-bottom: 16px;
}
.tfb-footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tfb-footer-col-links a {
  color: rgba(244, 239, 230, 0.7);
  font-size: 14px;
}
.tfb-footer-col-links a:hover { color: var(--clr-gold); }
.tfb-footer-col-links span {
  color: rgba(244, 239, 230, 0.7);
  font-size: 14px;
}
.tfb-footer-follow { display: flex; gap: 12px; }
.tfb-footer-follow a {
  color: rgba(244, 239, 230, 0.7);
  font-size: 14px;
}
.tfb-footer-follow a:hover { color: var(--clr-gold); }
.tfb-footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
}
.tfb-footer-copy { color: rgba(244, 239, 230, 0.4); font-size: 13px; }

/* =============================================
   ADMIN BAR OFFSET
   ============================================= */
.admin-bar .tfb-navbar { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .tfb-navbar { top: 46px; }
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (min-width: 900px) {
  .tfb-desktop-nav { display: flex !important; }
  .tfb-mobile-btn { display: none !important; }
  .tfb-about-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 768px) {
  .tfb-contact-grid { grid-template-columns: 1fr !important; }
  .tfb-gallery-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-auto-rows: 160px !important;
  }
  .gal-1 { grid-column: span 2; grid-row: span 1; }
  .gal-6 { grid-column: span 2; }
  .gal-7 { grid-column: span 2; grid-row: span 1; }
  .tfb-hero-heading { font-size: clamp(40px, 12vw, 70px); }
  .tfb-hero-sub { font-size: 16px; }
  .tfb-about-images { height: auto; grid-template-columns: 1fr; }
  .tfb-about-col2 { flex-direction: row; height: 220px; }
  .tfb-about-images .tfb-about-img-main { height: 280px; }
  .tfb-footer-links { gap: 32px; }
}

@media (max-width: 480px) {
  .tfb-hero-actions { flex-direction: column; }
  .tfb-btn-primary, .tfb-btn-outline { width: 100%; justify-content: center; text-align: center; }
  .tfb-about-stats { grid-template-columns: 1fr 1fr; }
  .tfb-loyalty-inner { flex-direction: column; }
}
