/* ============================================
   Texas Tangles Salon
   Professional Salon Website Styles
   Elegant • Timeless • Sophisticated
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Colors - Elegant Salon Palette */
  --black: #0D0D0D;
  --black-soft: #1A1A1A;
  --charcoal: #2D2D2D;
  --charcoal-light: #3D3D3D;

  --gold: #C5A572;
  --gold-light: #D4B896;
  --gold-dark: #A88B5C;
  --gold-glow: rgba(197, 165, 114, 0.15);
  --gold-glow-strong: rgba(197, 165, 114, 0.25);

  --blush: #D4A5A5;
  --blush-light: #E8C8C8;
  --mauve: #C9A0A0;

  /* Neutrals */
  --white: #FFFFFF;
  --off-white: #FAF8F5;
  --cream: #F5F0EB;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Nunito', sans-serif;

  /* Spacing */
  --section-padding: clamp(70px, 9vw, 130px);
  --container-max: 1200px;
  --container-wide: 1400px;

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.08);
  --shadow-gold: 0 10px 40px rgba(197, 165, 114, 0.2);
  --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.3);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  width: 100%;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
  touch-action: manipulation;
}

button {
  touch-action: manipulation;
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

ul { list-style: none; }

/* ---------- Utility Classes ---------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

.container--wide {
  max-width: var(--container-wide);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.section-label--light {
  color: var(--gold-light);
}

.section-label--light::before {
  background: var(--gold-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  color: var(--gray-900);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-title--light {
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 600px;
  line-height: 1.8;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn--primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: var(--shadow-gold);
}

.btn--outline,
.btn--outline:visited {
  background: transparent;
  color: #FFFFFF;
  border: 1.5px solid rgba(255,255,255,0.4);
}

.btn--outline-dark {
  background: transparent;
  color: var(--gold-dark);
  border: 1.5px solid var(--gold);
}

.btn--white {
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow-lg);
}

@media (hover: hover) {
  .btn--primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 44px rgba(197, 165, 114, 0.35);
  }

  .btn--outline:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-2px);
  }

  .btn--outline-dark:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
  }

  .btn--white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
  }
}

.btn:active {
  transform: translateY(0);
  opacity: 0.9;
}

.cta__actions .btn--outline,
.cta__actions .btn--outline:visited,
.cta__actions .btn--outline:link {
  color: #FFFFFF;
}

@media (hover: hover) {
  .cta__actions .btn--outline:hover {
    color: var(--black);
    background: var(--white);
    border-color: var(--white);
  }
}

.btn--sm {
  padding: 10px 24px;
  font-size: 0.8rem;
}

.btn--lg {
  padding: 18px 42px;
  font-size: 0.95rem;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  padding: 14px 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 24px;
}

.navbar__logo {
  display: flex;
  flex-direction: column;
  z-index: 1001;
  line-height: 1;
}

.navbar__logo-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1px;
  transition: color var(--transition-smooth);
}

.navbar__logo-sub {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--transition-smooth);
}

.navbar.scrolled .navbar__logo-text {
  color: var(--black);
}

.navbar.scrolled .navbar__logo-sub {
  color: var(--gold-dark);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.navbar__link {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding: 4px 0;
}

.navbar.scrolled .navbar__link {
  color: var(--gray-600);
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-smooth);
}

.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__link:hover {
  color: var(--gold);
}

.navbar.scrolled .navbar__link:hover {
  color: var(--gold-dark);
}

.navbar__cta {
  padding: 10px 28px;
  background: var(--gold);
  color: var(--black) !important;
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(197, 165, 114, 0.3);
}

@media (hover: hover) {
  .navbar__cta:hover {
    background: var(--gold-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(197, 165, 114, 0.4);
  }
}

.navbar__cta::after {
  display: none;
}

/* Mobile Toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
  padding: 4px;
}

.navbar__toggle span {
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition-smooth);
}

.navbar.scrolled .navbar__toggle span {
  background: var(--gray-800);
}

.navbar__toggle.active span {
  background: var(--white) !important;
}

.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}

.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 2px;
  transition: var(--transition-fast);
}

@media (hover: hover) {
  .mobile-menu a:hover {
    color: var(--gold);
  }
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(197, 165, 114, 0.08) 0%, transparent 70%),
              linear-gradient(180deg, rgba(13,13,13,0.3) 0%, rgba(13,13,13,0.6) 50%, rgba(13,13,13,0.9) 100%);
  z-index: 2;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C5A572' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 900px;
  padding: 0 clamp(20px, 4vw, 60px);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197, 165, 114, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(197, 165, 114, 0.2);
  padding: 8px 22px;
  border-radius: var(--radius-full);
  margin-bottom: 32px;
  animation: fadeInDown 0.8s ease;
}

.hero__badge-stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.hero__badge-text {
  color: var(--gold-light);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero__est {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 24px;
  animation: fadeInUp 1s ease 0.2s both;
}

.hero__est-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.hero__est-text {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease 0.3s both;
  letter-spacing: 2px;
}

.hero__title span {
  display: block;
  font-size: 0.45em;
  letter-spacing: 12px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-top: 8px;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 10px;
  animation: fadeInUp 1s ease 0.4s both;
  letter-spacing: 1px;
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: clamp(0.8rem, 1.3vw, 0.92rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 44px;
  animation: fadeInUp 1s ease 0.5s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  animation: fadeInUp 1s ease 0.6s both;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-family: var(--font-accent);
  animation: fadeInUp 1s ease 1s both;
}

.hero__scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.4;
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 0.15; transform: scaleY(0.6); }
}

/* ---------- Trust Strip ---------- */
.trust-strip {
  background: var(--white);
  padding: 0;
  position: relative;
  border-bottom: 1px solid var(--gray-100);
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.trust-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 44px 20px;
  position: relative;
}

.trust-strip__item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 28%;
  height: 44%;
  width: 1px;
  background: var(--gray-200);
}

.trust-strip__icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.trust-strip__value {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1;
  letter-spacing: -0.5px;
}

.trust-strip__star {
  color: var(--gold);
  font-size: 0.55em;
  vertical-align: middle;
  margin-left: 2px;
}

.trust-strip__label {
  font-family: var(--font-accent);
  font-size: 0.75rem;
  color: var(--gray-500);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ---------- About Section ---------- */
.about {
  padding: var(--section-padding) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__content {
  position: relative;
}

.about__text {
  font-size: 1.02rem;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 20px;
}

.about__highlight {
  background: var(--gold-glow);
  border-left: 3px solid var(--gold);
  padding: 24px 28px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 32px 0;
}

.about__highlight p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gray-800);
  line-height: 1.7;
}

.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

.about__feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-accent);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gray-700);
}

.about__feature i {
  color: var(--gold);
  font-size: 0.85rem;
}

.about__image-wrapper {
  position: relative;
}

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}

.about__image-placeholder {
  width: 100%;
  height: 520px;
  background: linear-gradient(145deg, var(--black-soft) 0%, var(--charcoal) 50%, var(--charcoal-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.about__image-placeholder i {
  font-size: 4rem;
  color: rgba(197, 165, 114, 0.2);
}

.about__image-placeholder span {
  color: rgba(197, 165, 114, 0.4);
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  letter-spacing: 2px;
}

.about__image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.about__image:hover img {
  transform: scale(1.03);
}

.about__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 160px;
  height: 160px;
  border: 2px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

.about__image-badge {
  position: absolute;
  bottom: -20px;
  left: 30px;
  background: var(--black);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-dark);
  text-align: center;
  border: 1px solid rgba(197, 165, 114, 0.2);
}

.about__image-badge .number {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1;
  color: var(--gold);
  letter-spacing: 1px;
}

.about__image-badge .year {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--white);
}

.about__image-badge .text {
  font-family: var(--font-accent);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.6;
  margin-top: 2px;
}

/* ---------- Heritage / Timeline Section ---------- */
.heritage {
  position: relative;
  padding: 100px 0;
  background: var(--black);
  overflow: hidden;
}

.heritage::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(197, 165, 114, 0.06) 0%, transparent 60%);
}

.heritage__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
}

.heritage__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.heritage__text {
  font-size: 1.1rem;
  opacity: 0.7;
  max-width: 700px;
  margin: 0 auto 60px;
  line-height: 1.9;
}

/* Timeline */
.heritage__timeline {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 70px;
  position: relative;
  padding: 0 20px;
}

.heritage__timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), var(--gold), transparent);
  opacity: 0.3;
  transform: translateY(-8px);
}

.heritage__era {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 8px;
  max-width: 200px;
}

.heritage__era-decade {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 12px;
}

.heritage__era-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  margin: 0 auto 12px;
  position: relative;
  box-shadow: 0 0 20px rgba(197, 165, 114, 0.4);
}

.heritage__era-label {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}

.heritage__era-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
}

/* Heritage Stats */
.heritage__stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.heritage__stat {
  text-align: center;
}

.heritage__stat-value {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.heritage__stat-label {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 8px;
}

/* ---------- Services Section ---------- */
.services {
  padding: var(--section-padding) 0;
  background: var(--off-white);
  position: relative;
}

.services__header {
  text-align: center;
  margin-bottom: 60px;
}

.services__header .section-subtitle {
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.services__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--gray-100);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.services__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition-smooth);
}

.services__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.services__card:hover::before {
  opacity: 1;
}

.services__card-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-glow);
  border-radius: 50%;
  margin: 0 auto 20px;
  color: var(--gold-dark);
  font-size: 1.3rem;
  transition: all var(--transition-smooth);
}

.services__card:hover .services__card-icon {
  background: var(--gold);
  color: var(--white);
  transform: scale(1.08);
}

.services__card-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--gray-900);
  margin-bottom: 10px;
}

.services__card-desc {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.services__cta {
  text-align: center;
  padding-top: 20px;
}

.services__cta-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-style: italic;
  color: var(--gray-600);
  margin-bottom: 20px;
}

/* ---------- Why Choose Us Section ---------- */
.why-us {
  padding: var(--section-padding) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(197, 165, 114, 0.05) 0%, transparent 50%);
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.why-us__text {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.9;
}

.why-us__cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-us__card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(197, 165, 114, 0.1);
  background: rgba(255,255,255,0.02);
  transition: all var(--transition-smooth);
}

.why-us__card:hover {
  border-color: rgba(197, 165, 114, 0.3);
  background: rgba(197, 165, 114, 0.05);
}

.why-us__card-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 165, 114, 0.1);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1rem;
}

.why-us__card-content h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}

.why-us__card-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ---------- Reviews Section ---------- */
.reviews {
  padding: var(--section-padding) 0;
  background: var(--white);
  overflow: hidden;
}

.reviews__header {
  text-align: center;
  margin-bottom: 60px;
}

.reviews__header .section-subtitle {
  margin: 0 auto;
}

.reviews__overall {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.reviews__overall-stars {
  color: var(--gold);
  font-size: 1.3rem;
  letter-spacing: 2px;
  white-space: nowrap;
}

.reviews__overall-text {
  font-family: var(--font-accent);
  font-size: 0.95rem;
  color: var(--gray-500);
  font-weight: 600;
}

.reviews__slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

.reviews__track {
  display: flex;
  transition: transform var(--transition-slow);
}

.reviews__card {
  min-width: 100%;
  padding: 0 20px;
}

.reviews__card-inner {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 48px;
  position: relative;
  border: 1px solid var(--gray-100);
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.reviews__card-quote {
  color: var(--gold);
  opacity: 0.3;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.reviews__card-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 3px;
  margin-bottom: 24px;
}

.reviews__card-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 28px;
}

.reviews__card-author {
  font-family: var(--font-accent);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gray-900);
}

.reviews__card-source {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 4px;
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 40px;
}

.reviews__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  cursor: pointer;
  transition: all var(--transition-smooth);
}

.reviews__dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.reviews__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}

.reviews__nav-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-500);
  font-size: 1rem;
  transition: all var(--transition-smooth);
}

.reviews__nav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ---------- Hours & Location ---------- */
.location {
  padding: var(--section-padding) 0;
  background: var(--off-white);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.location__info {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.location__block {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.location__block-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-glow);
  border-radius: var(--radius-md);
  color: var(--gold-dark);
  font-size: 1.1rem;
}

.location__block-content h4 {
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 6px;
}

.location__block-content p,
.location__block-content a:not(.btn) {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.7;
}

.location__block-content a:not(.btn):hover {
  color: var(--gold-dark);
}

.location__phone {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: var(--gold-dark) !important;
}

.hours-table {
  width: 100%;
  margin-top: 8px;
}

.hours-table tr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  gap: 16px;
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table .day {
  font-weight: 600;
  color: var(--gray-700);
  font-size: 0.93rem;
  min-width: 110px;
}

.hours-table .time {
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.93rem;
  white-space: nowrap;
  text-align: right;
}

.hours-table .time.closed {
  color: var(--gray-400);
  font-style: italic;
}

/* Today highlight */
.hours-table tr.today {
  background: var(--gold-glow);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  margin: -1px -12px;
}

.hours-table tr.today .day {
  color: var(--gold-dark);
}

.hours-table tr.today .day::after {
  content: ' (Today)';
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--gold);
}

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  height: 100%;
  min-height: 480px;
}

.location__map iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: none;
}

/* ---------- CTA Section ---------- */
.cta {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(197, 165, 114, 0.08) 0%, transparent 60%);
}

.cta::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C5A572' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta__content {
  position: relative;
  z-index: 2;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 16px;
}

.cta__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.cta__phone {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
  letter-spacing: 2px;
}

.cta__phone:hover {
  color: var(--gold-light);
}

.cta__actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--black);
  color: var(--gray-400);
  padding: 70px 0 0;
  border-top: 1px solid rgba(197, 165, 114, 0.1);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__logo-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__logo-name {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 1px;
}

.footer__logo-est {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.footer__desc {
  font-size: 0.92rem;
  line-height: 1.8;
  max-width: 320px;
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer__social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  color: var(--gray-400);
  font-size: 1.1rem;
  transition: all var(--transition-smooth);
}

.footer__social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.footer__col h4 {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col a {
  font-size: 0.9rem;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__col a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer__col p {
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer__col .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.footer__col .footer-contact-item i {
  color: var(--gold);
  margin-top: 3px;
  min-width: 16px;
  font-size: 0.9rem;
}

.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__bottom-links {
  display: flex;
  gap: 24px;
}

.footer__bottom-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

.footer__bottom-links a:hover {
  color: var(--gold);
}

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition-smooth);
  z-index: 900;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-4px);
}

/* ---------- Mobile Call Button ---------- */
.mobile-call-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 56px;
  height: 56px;
  background: var(--gold);
  color: var(--black);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-gold);
  z-index: 900;
  animation: phonePulse 2s ease-in-out infinite;
}

@keyframes phonePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(197, 165, 114, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(197, 165, 114, 0); }
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.5s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition: all 0.5s ease-out;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition: all 0.5s ease-out;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered reveal */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.45s ease-out;
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.3s; }

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Loading Screen ---------- */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.loader__icon {
  color: var(--gold);
  font-size: 2.4rem;
  animation: pulse 1.5s ease infinite;
}

.loader__text {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 3px;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.95); }
}

.loader__bar {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 8px;
}

.loader__bar-inner {
  height: 100%;
  width: 40%;
  background: var(--gold);
  border-radius: 4px;
  animation: loading 1.2s ease infinite;
}

@keyframes loading {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(400%); }
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .about__grid {
    gap: 50px;
  }

  .why-us__grid {
    gap: 50px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .heritage__stats {
    gap: 40px;
  }

  .heritage__timeline {
    flex-wrap: wrap;
    gap: 24px;
  }

  .heritage__timeline::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .navbar__links {
    display: none;
  }

  .navbar__toggle {
    display: flex;
  }

  .mobile-call-btn {
    display: flex;
  }

  .trust-strip__grid {
    grid-template-columns: 1fr 1fr;
  }

  .trust-strip__item:not(:last-child)::after {
    display: none;
  }

  .trust-strip__item {
    padding: 28px 16px;
  }

  .trust-strip__value {
    font-size: 2rem;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image-wrapper {
    order: -1;
  }

  .about__image-placeholder {
    height: 350px;
  }

  .about__image img {
    height: 350px;
  }

  .about__features {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: 1fr;
  }

  .why-us__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .location__grid {
    grid-template-columns: 1fr;
  }

  .location__map {
    min-height: 300px;
  }

  .location__map iframe {
    min-height: 300px;
  }

  .reviews__card-inner {
    padding: 32px 20px;
  }

  .reviews__card-text {
    font-size: 1.05rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 300px;
  }

  .heritage__stats {
    gap: 30px;
  }

  .heritage__stat-value {
    font-size: 2.4rem;
  }

  .heritage__era {
    max-width: 140px;
  }

  .heritage__era-decade {
    font-size: 1.3rem;
  }

  .cta__actions {
    flex-direction: column;
    align-items: center;
  }

  .back-to-top {
    bottom: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .trust-strip__item {
    padding: 22px 10px;
  }

  .trust-strip__value {
    font-size: 1.7rem;
  }

  .trust-strip__label {
    font-size: 0.68rem;
    letter-spacing: 1px;
  }

  .hero__title {
    font-size: clamp(2.6rem, 10vw, 4rem);
  }

  .heritage__timeline {
    gap: 16px;
  }

  .heritage__era {
    max-width: 120px;
    padding: 0 4px;
  }

  .heritage__era-desc {
    font-size: 0.72rem;
  }
}

/* Print Styles */
@media print {
  .navbar, .back-to-top, .hero__scroll, .loader, .mobile-call-btn {
    display: none !important;
  }

  .hero {
    min-height: auto;
    padding: 40px 0;
  }

  .reveal, .reveal-left, .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
}
