/* ============================================
   Silver Fox Barber Co. — Luxury Gentleman's Club
   Forest green + gold/brass on cream
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  --forest: #1e3826;
  --forest-deep: #142619;
  --forest-light: #2a5238;
  --gold: #c5a464;
  --gold-light: #d4bb82;
  --gold-pale: #e8d9b8;
  --cream: #faf5eb;
  --cream-warm: #f5eee0;
  --cream-dark: #e8dfd0;
  --charcoal: #2a2a28;
  --text-dark: #1a1a18;
  --text-mid: #4a4a45;
  --text-light: #8a8a82;
  --white: #fefefe;

  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body: 'DM Sans', 'Helvetica Neue', sans-serif;

  --section-pad: clamp(60px, 10vw, 120px);
  --container: min(1200px, 90vw);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.8rem); }

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* --- Grain Texture Overlay --- */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* --- Linen Texture Mixin (for cream sections) --- */
.linen-bg {
  background-color: var(--cream);
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.008) 2px,
      rgba(0,0,0,0.008) 4px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(0,0,0,0.008) 2px,
      rgba(0,0,0,0.008) 4px
    );
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(20, 38, 25, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(197, 164, 100, 0.2);
  transition: background 0.3s;
}

.header-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-logo span {
  color: var(--cream);
  font-weight: 400;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header-nav a {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dark);
  transition: color 0.3s;
}

.header-nav a:hover { color: var(--gold); }

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--gold);
  color: var(--forest-deep) !important;
  font-weight: 700 !important;
  font-size: 0.78rem !important;
  letter-spacing: 0.1em !important;
  border-radius: 2px;
  transition: background 0.3s, transform 0.2s;
}

.header-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .header-nav a:not(.header-cta) { display: none; }
  .header-cta { padding: 10px 18px; }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest-deep);
  overflow: hidden;
  padding: 72px 24px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(42, 82, 56, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(197, 164, 100, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 100%, rgba(20, 38, 25, 0.9) 0%, transparent 60%);
}

/* Diagonal pinstripe texture */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 8px,
    rgba(197, 164, 100, 0.03) 8px,
    rgba(197, 164, 100, 0.03) 9px
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border: 1px solid rgba(197, 164, 100, 0.4);
  border-radius: 2px;
  margin-bottom: 32px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  animation: fadeSlideUp 0.8s ease-out both;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 8px;
  animation: fadeSlideUp 0.8s 0.15s ease-out both;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  color: var(--gold-pale);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.8s 0.3s ease-out both;
}

.hero-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 28px;
  animation: fadeSlideUp 0.8s 0.4s ease-out both;
}

.hero-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
  animation: fadeSlideUp 0.8s 0.5s ease-out both;
}

.hero-stars {
  display: flex;
  gap: 4px;
}

.hero-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.hero-rating-text {
  font-size: 0.85rem;
  color: var(--cream-dark);
  font-weight: 500;
}

.hero-rating-text strong {
  color: var(--gold);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s 0.6s ease-out both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: var(--gold);
  color: var(--forest-deep);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(197, 164, 100, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 28px;
  border: 1px solid rgba(197, 164, 100, 0.5);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(197, 164, 100, 0.08);
}

.hero-address {
  margin-top: 24px;
  font-size: 0.82rem;
  color: var(--text-light);
  animation: fadeSlideUp 0.8s 0.7s ease-out both;
}

.hero-address a { color: var(--cream-dark); transition: color 0.3s; }
.hero-address a:hover { color: var(--gold); }

/* ============================================
   PHOTO BAND
   ============================================ */
.photo-band {
  display: flex;
  gap: 0;
  overflow: hidden;
  background: var(--forest-deep);
}

.photo-band img {
  width: 20%;
  height: 280px;
  object-fit: cover;
  filter: saturate(0.8) contrast(1.05);
  transition: filter 0.5s;
}

.photo-band img:hover {
  filter: saturate(1) contrast(1.1);
}

@media (max-width: 768px) {
  .photo-band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
    padding: 4px;
  }
  .photo-band img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
}

/* ============================================
   ABOUT / INTRO SECTION
   ============================================ */
.about-section {
  padding: var(--section-pad) 24px;
  background: var(--cream);
}

.about-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 {
  color: var(--forest);
  margin-bottom: 20px;
}

.about-text h2 em {
  font-style: italic;
  color: var(--gold);
}

.about-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.highlight-item {
  padding: 20px;
  background: var(--cream-warm);
  border-left: 3px solid var(--gold);
}

.highlight-item h4 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--forest);
  margin-bottom: 4px;
}

.highlight-item span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2px;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
}

@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-image { order: -1; }
  .about-image img { height: 350px; }
  .about-image::after { bottom: -8px; right: -8px; }
}

/* ============================================
   SERVICES
   ============================================ */
.services-section {
  padding: var(--section-pad) 24px;
  background: var(--forest-deep);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(42, 82, 56, 0.4) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(197, 164, 100, 0.06) 0%, transparent 40%);
}

.services-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}

.services-section h2 {
  color: var(--cream);
  margin-bottom: 12px;
}

.services-section h2 em { color: var(--gold); font-style: italic; }

.services-intro {
  color: var(--cream-dark);
  max-width: 600px;
  margin: 0 auto 48px;
  font-size: 1.02rem;
  opacity: 0.85;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 40px 28px;
  background: rgba(250, 245, 235, 0.04);
  border: 1px solid rgba(197, 164, 100, 0.15);
  border-radius: 2px;
  text-align: left;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover {
  background: rgba(250, 245, 235, 0.07);
  border-color: rgba(197, 164, 100, 0.35);
  transform: translateY(-4px);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(197, 164, 100, 0.12);
  border-radius: 2px;
  margin-bottom: 20px;
  font-size: 1.4rem;
}

.service-card h3 {
  color: var(--cream);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.service-card p {
  color: var(--cream-dark);
  font-size: 0.92rem;
  opacity: 0.75;
  line-height: 1.65;
}

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

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: var(--section-pad) 24px;
  background: var(--cream);
  position: relative;
}

.testimonials-inner {
  max-width: var(--container);
  margin: 0 auto;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials-header h2 {
  color: var(--forest);
}

.testimonials-header h2 em { color: var(--gold); font-style: italic; }

/* Featured testimonial */
.featured-testimonial {
  position: relative;
  padding: 48px;
  background: var(--forest-deep);
  border-radius: 2px;
  margin-bottom: 32px;
  overflow: hidden;
}

.featured-testimonial::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), transparent);
}

.featured-quote-mark {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 0.5;
  margin-bottom: 16px;
}

.featured-testimonial blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--cream);
  line-height: 1.7;
  margin-bottom: 24px;
}

.featured-testimonial .reviewer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.reviewer-stars {
  display: flex;
  gap: 3px;
}

.reviewer-stars svg {
  width: 14px; height: 14px;
  fill: var(--gold);
}

.reviewer-name {
  font-weight: 700;
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.reviewer-meta {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* Other testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
  background: var(--cream-warm);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.testimonial-card:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.testimonial-card .quote-mark {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 0.5;
  margin-bottom: 12px;
}

.testimonial-card blockquote {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-card .reviewer-stars { margin-bottom: 8px; }

.google-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 32px;
  padding: 12px 24px;
  border: 1px solid var(--gold);
  color: var(--forest);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
}

.google-link:hover {
  background: var(--gold);
  color: var(--forest-deep);
}

@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .featured-testimonial { padding: 32px 24px; }
}

/* ============================================
   GALLERY SECTION
   ============================================ */
.gallery-section {
  padding: var(--section-pad) 24px;
  background: var(--forest-deep);
  position: relative;
}

.gallery-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(42, 82, 56, 0.5) 0%, transparent 60%);
}

.gallery-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  text-align: center;
}

.gallery-section h2 {
  color: var(--cream);
  margin-bottom: 48px;
}

.gallery-section h2 em { color: var(--gold); font-style: italic; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 2px;
  filter: saturate(0.85) contrast(1.05);
  transition: all 0.5s;
  border: 1px solid rgba(197, 164, 100, 0.1);
}

.gallery-grid img:hover {
  filter: saturate(1) contrast(1.1);
  border-color: rgba(197, 164, 100, 0.4);
  transform: scale(1.02);
}

.gallery-grid img:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: 100%;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
  .gallery-grid img {
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .gallery-grid img:first-child {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 2 / 1;
  }
}

/* ============================================
   HOURS & LOCATION
   ============================================ */
.hours-section {
  padding: var(--section-pad) 24px;
  background: var(--cream);
}

.hours-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.hours-card {
  padding: 40px;
  background: var(--cream-warm);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
}

.hours-card h3 {
  color: var(--forest);
  margin-bottom: 24px;
  font-size: 1.5rem;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--cream-dark);
  font-size: 0.92rem;
  color: var(--text-mid);
}

.hours-list li:last-child { border-bottom: none; }

.hours-list li .day {
  font-weight: 600;
  color: var(--text-dark);
}

.hours-list li .time {
  color: var(--forest);
}

.location-card {
  padding: 40px;
  background: var(--forest-deep);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-card h3 {
  color: var(--cream);
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.location-card p {
  color: var(--cream-dark);
  margin-bottom: 16px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.location-card .location-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.location-card .location-detail svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.location-card .location-detail span {
  color: var(--cream-dark);
  font-size: 0.92rem;
}

.location-card .location-detail a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.location-amenities {
  display: flex;
  gap: 16px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.amenity-tag {
  padding: 6px 14px;
  border: 1px solid rgba(197, 164, 100, 0.3);
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 768px) {
  .hours-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: var(--section-pad) 24px;
  background: var(--forest);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(197, 164, 100, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 50%, rgba(42, 82, 56, 0.4) 0%, transparent 50%);
}

.cta-inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--cream);
  margin-bottom: 16px;
}

.cta-section h2 em { color: var(--gold); font-style: italic; }

.cta-section p {
  color: var(--cream-dark);
  font-size: 1.05rem;
  margin-bottom: 32px;
  opacity: 0.85;
}

.cta-phone {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 24px;
  transition: color 0.3s;
}

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

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  padding: 40px 24px;
  background: var(--forest-deep);
  border-top: 1px solid rgba(197, 164, 100, 0.15);
}

.footer-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
}

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

.footer-links a {
  font-size: 0.8rem;
  color: var(--cream-dark);
  opacity: 0.6;
  transition: all 0.3s;
}

.footer-links a:hover { opacity: 1; color: var(--gold); }

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-light);
  opacity: 0.5;
}

/* ============================================
   FLOATING CTA (Mobile)
   ============================================ */
.floating-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 900;
  padding: 16px 24px;
  background: var(--gold);
  color: var(--forest-deep);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.35);
  transition: all 0.3s;
  align-items: center;
  gap: 8px;
}

.floating-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 36px rgba(0,0,0,0.45);
}

.floating-cta.visible { display: inline-flex; }

@media (max-width: 768px) {
  .floating-cta.visible { display: inline-flex; }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Gold shimmer effect on headings */
.gold-shimmer {
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    var(--gold-light) 25%,
    var(--gold) 50%,
    var(--gold-light) 75%,
    var(--gold) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 6s linear infinite;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--forest-deep); }
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--gold-light); }

/* --- SVG Section Divider --- */
.section-divider {
  display: block;
  width: 100%;
  height: auto;
  margin: -1px 0;
}

.divider-cream { fill: var(--cream); }
.divider-forest { fill: var(--forest-deep); }
