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

:root {
  --black: #0d0d0d;
  --black-light: #1a1a1a;
  --black-card: #1f1f1f;
  --black-border: #2a2a2a;
  --charcoal: #333333;
  --grey: #666666;
  --grey-light: #999999;
  --cream: #F5E6C8;
  --cream-light: #FAF3E8;
  --cream-dim: rgba(245, 230, 200, 0.08);
  --crimson: #8B0000;
  --red: #B91C1C;
  --red-bright: #DC2626;
  --red-glow: rgba(185, 28, 28, 0.25);
  --gold: #FFFFFF;
  --gold-dim: rgba(255, 255, 255, 0.15);

  --font-display: 'Pirata One', cursive;
  --font-serif: 'Libre Baskerville', Georgia, serif;
  --font-body: 'Source Sans 3', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;

  --radius: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;

  --shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lifted: 0 8px 40px rgba(0, 0, 0, 0.5);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-body);
  color: var(--cream-light);
  background: var(--black);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Noise texture overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--black-border);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0, 0, 0, 0.6); border-bottom-color: var(--crimson); }
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-logo span { color: var(--red); }
.nav-logo:hover { color: var(--gold); }
.nav-links {
  display: none;
  list-style: none;
  gap: 2rem;
}
.nav-links a {
  text-decoration: none;
  color: var(--grey-light);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: white;
  text-decoration: none;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  border: 1px solid var(--red-bright);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta svg { width: 16px; height: 16px; flex-shrink: 0; }
.nav-cta:hover {
  background: var(--red-bright);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px var(--red-glow);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--black);
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  transform: translateY(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--red); }

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

/* ── Sections ── */
section { position: relative; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: var(--space-sm);
}
.section-subtitle {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--grey-light);
  max-width: 560px;
  line-height: 1.8;
  font-style: italic;
}

/* ── Decorative divider ── */
.divider-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: var(--space-lg) auto;
  max-width: 200px;
}
.divider-ornament::before,
.divider-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--crimson), transparent);
}
.divider-ornament svg { width: 20px; height: 20px; color: var(--crimson); flex-shrink: 0; }

/* ── Hero ── */
.hero {
  padding: calc(var(--space-2xl) + 80px) 0 var(--space-2xl);
  text-align: center;
  overflow: hidden;
  position: relative;
  background: var(--black);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(139, 0, 0, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(185, 28, 28, 0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(185, 28, 28, 0.04) 0%, transparent 50%);
  pointer-events: none;
}
/* Subtle rose watermark */
.hero::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200' fill='none' stroke='rgba(139,0,0,0.06)' stroke-width='0.5'%3E%3Cpath d='M100 30 C100 30 130 50 130 80 C130 95 120 105 110 105 C100 105 95 90 100 70 C105 90 100 105 90 105 C80 105 70 95 70 80 C70 50 100 30 100 30Z'/%3E%3Cpath d='M100 105 L100 170'/%3E%3Cpath d='M100 120 C100 120 80 108 65 112'/%3E%3Cpath d='M100 135 C100 135 120 124 135 128'/%3E%3Cpath d='M65 112 C65 112 75 100 65 85 C60 95 55 100 65 112Z'/%3E%3Cpath d='M135 128 C135 128 125 116 135 101 C140 111 145 116 135 128Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
  opacity: 0.7;
}

.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(139, 0, 0, 0.2);
  border: 1px solid rgba(185, 28, 28, 0.4);
  padding: 0.4rem 1.2rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: var(--space-lg);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.hero-badge svg { width: 14px; height: 14px; }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw, 6rem);
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: var(--space-sm);
}
.hero h1 .highlight {
  color: var(--red);
  position: relative;
  display: inline-block;
}
.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 0.08em;
  left: -0.03em;
  right: -0.03em;
  height: 0.08em;
  background: var(--red);
  border-radius: 2px;
  z-index: -1;
  opacity: 0.5;
}
.hero-sub {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 2.5vw, 1.15rem);
  color: var(--grey-light);
  max-width: 520px;
  margin: 0 auto var(--space-lg);
  line-height: 1.8;
  font-style: italic;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: var(--space-lg);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--red);
  color: white;
  border: 1px solid var(--red-bright);
  box-shadow: 0 4px 16px var(--red-glow);
}
.btn-primary:hover {
  background: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px var(--red-glow);
}
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--charcoal);
}
.btn-secondary:hover {
  border-color: var(--red-bright);
  color: var(--red-bright);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px var(--red-glow);
}
.btn-gold {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--red);
}
.btn-gold:hover {
  background: var(--red);
  color: white;
  transform: translateY(-2px);
}

.hero-social-proof {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--grey);
}
.hero-social-proof .stat {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.hero-social-proof .stat strong { color: var(--gold); font-size: 1rem; }
.hero-social-proof .divider {
  width: 4px;
  height: 4px;
  background: var(--crimson);
  border-radius: 50%;
}

/* ── About ── */
.about {
  padding: var(--space-2xl) 0;
  background: var(--black-light);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}
.about-grid {
  display: grid;
  gap: var(--space-lg);
  align-items: center;
}
.about-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--black);
  border: 1px solid var(--black-border);
}
.about-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2020 50%, #1a1a1a 100%);
  font-size: 4rem;
  opacity: 0.5;
}
.about-image .badge {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: var(--black);
  border: 1px solid var(--crimson);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--gold);
  box-shadow: var(--shadow);
}
.about-text p {
  color: var(--grey-light);
  margin-bottom: var(--space-sm);
  line-height: 1.8;
}
.about-text p:last-of-type { margin-bottom: var(--space-md); }
.about-text strong { color: var(--cream); }
.about-dog {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(139, 0, 0, 0.1);
  border: 1px solid rgba(185, 28, 28, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  margin-top: var(--space-md);
}
.about-dog-icon {
  font-size: 2rem;
  flex-shrink: 0;
}
.about-dog p {
  font-size: 0.9rem;
  color: var(--grey-light);
  margin: 0 !important;
}
.about-dog strong { color: var(--red); }

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

/* ── Services ── */
.services {
  padding: var(--space-2xl) 0;
  background: var(--black);
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(139, 0, 0, 0.07) 0%, transparent 50%);
  pointer-events: none;
}
.services-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}
.services-header .section-subtitle { margin: 0 auto; }
.services-grid {
  display: grid;
  gap: var(--space-md);
  position: relative;
}
.service-card {
  background: var(--black-card);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--black-border);
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--crimson);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(139, 0, 0, 0.15);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}
.service-card:nth-child(1)::before { background: linear-gradient(90deg, var(--crimson), var(--red)); }
.service-card:nth-child(2)::before { background: linear-gradient(90deg, var(--red), var(--red-bright)); }
.service-card:nth-child(3)::before { background: linear-gradient(90deg, var(--red), var(--red-bright)); }
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-sm);
  font-size: 1.5rem;
}
.service-card:nth-child(1) .service-icon { background: rgba(139, 0, 0, 0.2); border: 1px solid rgba(185, 28, 28, 0.3); }
.service-card:nth-child(2) .service-icon { background: rgba(185, 28, 28, 0.15); border: 1px solid rgba(220, 38, 38, 0.3); }
.service-card:nth-child(3) .service-icon { background: rgba(185, 28, 28, 0.15); border: 1px solid rgba(220, 38, 38, 0.3); }
.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--cream);
}
.service-card p {
  color: var(--grey-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.service-tag {
  background: rgba(255, 255, 255, 0.05);
  color: var(--grey-light);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--black-border);
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Gallery ── */
.gallery {
  padding: var(--space-2xl) 0;
  background: var(--black-light);
  border-top: 1px solid var(--black-border);
  border-bottom: 1px solid var(--black-border);
}
.gallery-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}
.gallery-header .section-subtitle { margin: 0 auto; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.3s;
  border: 1px solid var(--black-border);
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 16/9; }
.gallery-item:nth-child(n+2) { aspect-ratio: 1; }
.gallery-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(245, 230, 200, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.gallery-placeholder svg { width: 32px; height: 32px; opacity: 0.4; }
.gallery-item:nth-child(1) .gallery-placeholder { background: linear-gradient(135deg, #1a0a0a 0%, #2a1515 50%, #1a1010 100%); }
.gallery-item:nth-child(2) .gallery-placeholder { background: linear-gradient(135deg, #1a1210 0%, #2a1a15 100%); }
.gallery-item:nth-child(3) .gallery-placeholder { background: linear-gradient(135deg, #15130f 0%, #251f18 100%); }
.gallery-item:nth-child(4) .gallery-placeholder { background: linear-gradient(135deg, #1a1515 0%, #251a1a 100%); }
.gallery-item:nth-child(5) .gallery-placeholder { background: linear-gradient(135deg, #151515 0%, #201818 100%); }
.gallery-item:nth-child(6) .gallery-placeholder { background: linear-gradient(135deg, #181212 0%, #221818 100%); }
.gallery-item:nth-child(7) .gallery-placeholder { background: linear-gradient(135deg, #121518 0%, #1a1e22 100%); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.6));
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

.gallery-cta {
  text-align: center;
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
  }
  .gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
}

/* ── Reviews ── */
.reviews {
  padding: var(--space-2xl) 0;
  background: var(--black);
  position: relative;
}
.reviews::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(139, 0, 0, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.reviews-header {
  text-align: center;
  margin-bottom: var(--space-xl);
  position: relative;
}
.reviews-header .section-subtitle { margin: 0 auto; }
.reviews-grid {
  display: grid;
  gap: var(--space-md);
  position: relative;
}
.review-card {
  background: var(--black-card);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  border: 1px solid var(--black-border);
  position: relative;
  transition: border-color 0.3s;
}
.review-card:hover { border-color: rgba(185, 28, 28, 0.3); }
.review-stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}
.review-card blockquote {
  color: var(--grey-light);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: var(--space-sm);
}
.review-author {
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.review-card .quote-mark {
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(139, 0, 0, 0.15);
  line-height: 1;
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Find Us ── */
.find-us {
  padding: var(--space-2xl) 0;
  background: var(--black-light);
  border-top: 1px solid var(--black-border);
}
.find-us-grid {
  display: grid;
  gap: var(--space-lg);
}
.find-us-info h2 { margin-bottom: var(--space-md); }
.find-us-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.find-us-item {
  display: flex;
  gap: var(--space-sm);
}
.find-us-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(139, 0, 0, 0.15);
  border: 1px solid rgba(185, 28, 28, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.find-us-icon svg { width: 20px; height: 20px; color: var(--red); }
.find-us-item h4 {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.find-us-item p, .find-us-item a {
  color: var(--grey-light);
  font-size: 0.9rem;
  text-decoration: none;
}
.find-us-item a:hover { color: var(--red); }

.hours-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.25rem 1rem;
  font-size: 0.9rem;
}
.hours-grid .day { font-weight: 500; color: var(--cream); }
.hours-grid .time { color: var(--grey-light); }
.hours-grid .closed { color: var(--red); font-weight: 600; }

.find-us-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 300px;
  background: var(--black);
  border: 1px solid var(--black-border);
}
.find-us-map iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
  display: block;
  filter: grayscale(0.5) contrast(1.1) brightness(0.8);
}

.areas-served {
  margin-top: var(--space-lg);
  padding: var(--space-md);
  background: rgba(139, 0, 0, 0.08);
  border: 1px solid rgba(185, 28, 28, 0.2);
  border-radius: var(--radius-md);
}
.areas-served h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.areas-served p {
  font-size: 0.85rem;
  color: var(--grey-light);
  line-height: 1.7;
}
.areas-served strong { color: var(--cream); }

@media (min-width: 768px) {
  .find-us-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Footer ── */
.footer {
  background: var(--black);
  color: var(--grey);
  padding: var(--space-xl) 0 calc(var(--space-xl) + 70px);
  border-top: 1px solid var(--black-border);
}
.footer-inner {
  display: grid;
  gap: var(--space-lg);
  text-align: center;
}
.footer-brand .nav-logo { font-size: 1.75rem; }
.footer-brand p {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--grey);
}
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.footer-social-link {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s, border-color 0.2s;
  text-decoration: none;
  border: 1px solid var(--black-border);
  background: var(--black-card);
}
.footer-social-link svg { width: 22px; height: 22px; }
.footer-social-link.instagram {
  color: #E4405F;
}
.footer-social-link.instagram:hover {
  background: linear-gradient(135deg, #F09433, #E6683C, #DC2743, #CC2366, #BC1888);
  color: white;
  border-color: transparent;
}
.footer-social-link.facebook { color: #1877F2; }
.footer-social-link.facebook:hover { background: #1877F2; color: white; border-color: transparent; }
.footer-social-link.phone-link { color: white; }
.footer-social-link.phone-link:hover { background: white; color: var(--black); border-color: transparent; }
.footer-social-link:hover { transform: translateY(-3px); }
.footer-copy {
  font-size: 0.8rem;
  color: var(--charcoal);
}

@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1fr auto 1fr; align-items: center; text-align: left; }
  .footer-copy { text-align: right; }
  .footer { padding-bottom: var(--space-xl); }
}

/* ── Sticky Mobile CTA ── */
.mobile-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--black);
  border-top: 1px solid var(--crimson);
  padding: 0.6rem 1rem;
  display: flex;
  gap: 0.5rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.6);
}
.mobile-cta-bar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem;
  border-radius: var(--radius);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: transform 0.2s;
}
.mobile-cta-bar a:active { transform: scale(0.97); }
.mobile-cta-bar a svg { width: 18px; height: 18px; }
.mobile-cta-bar .cta-ig {
  background: linear-gradient(135deg, #F09433, #E6683C, #DC2743, #CC2366, #BC1888);
  color: white;
}
.mobile-cta-bar .cta-call {
  background: var(--red);
  color: white;
}
.mobile-cta-bar .cta-fb {
  background: #1877F2;
  color: white;
}

@media (min-width: 768px) {
  .mobile-cta-bar { display: none; }
}

/* ── Animations ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
