/* ----------------------------------------------------
   PHOENIX PHOTO STUDIO - STYLE GUIDE & CSS
   Light-catching keepsake aesthetic
---------------------------------------------------- */

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

:root {
  /* Color Palette */
  --color-bg-dark: #0F1116;       /* Deep charcoal-indigo */
  --color-bg-light: #FAF7F2;      /* Warm ivory */
  --color-accent-red: #B5474B;    /* Deep rose-red */
  --color-accent-blue: #7C8B9A;   /* Cool slate blue (crystal tone) */
  --color-accent-gold: #D4AF6A;   /* Warm gold */
  
  /* Text Colors */
  --color-text-dark: #1A1D24;
  --color-text-light: #FAF7F2;
  --color-text-muted: #64707D;
  --color-text-gold: #E5C384;
  
  /* Fonts */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-fast: all 0.15s ease-out;
  --transition-slow: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  
  /* Layout constraints */
  --container-max-width: 1200px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body {
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, .logo-serif {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-text-dark);
}

p, span, li, button, input, textarea, cite, .logo-sans {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
}

/* Accessibility Focus States */
a:focus-visible, 
button:focus-visible, 
[role="button"]:focus-visible {
  outline: 3px solid var(--color-accent-red);
  outline-offset: 4px;
}

/* Containers */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-whatsapp, .btn-outline-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.8rem;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 4px;
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background-color: var(--color-accent-red);
  color: var(--color-text-light);
  box-shadow: 0 4px 15px rgba(181, 71, 75, 0.2);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: #9c3c40;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181, 71, 75, 0.3);
}

.btn-secondary {
  background-color: rgba(250, 247, 242, 0.1);
  color: var(--color-text-light);
  border: 1px solid rgba(250, 247, 242, 0.3);
  backdrop-filter: blur(5px);
}

.btn-secondary:hover, .btn-secondary:focus {
  background-color: var(--color-bg-light);
  color: var(--color-bg-dark);
  border-color: var(--color-bg-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp:hover, .btn-whatsapp:focus {
  background-color: #20ba59;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.3);
}

.btn-outline-primary {
  background-color: transparent;
  color: var(--color-accent-red);
  border: 1px solid var(--color-accent-red);
}

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background-color: rgba(181, 71, 75, 0.05);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1.1rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}

/* Glow Background Accents */
.glow-accent-1 {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 50vw;
  height: 50vw;
  background: radial-gradient(circle, rgba(124, 139, 154, 0.08) 0%, rgba(15, 17, 22, 0) 70%);
  z-index: -1;
  pointer-events: none;
}

.glow-accent-2 {
  position: absolute;
  top: 60%;
  right: -10%;
  width: 45vw;
  height: 45vw;
  background: radial-gradient(circle, rgba(212, 175, 106, 0.05) 0%, rgba(15, 17, 22, 0) 75%);
  z-index: -1;
  pointer-events: none;
}

/* ----------------------------------------------------
   SITE HEADER
---------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(15, 17, 22, 0.95);
  border-bottom: 1px solid rgba(212, 175, 106, 0.15);
  backdrop-filter: blur(10px);
  transition: var(--transition-smooth);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 1rem 1.5rem;
}

.site-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.logo-serif {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--color-text-light);
  line-height: 1;
}

.logo-sans {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent-gold);
  margin-top: 0.1rem;
}

.main-nav {
  display: none; /* Mobile first, shown on desktop */
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-list a {
  text-decoration: none;
  color: rgba(250, 247, 242, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-fast);
  padding: 0.5rem 0;
  position: relative;
}

.nav-list a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--color-accent-gold);
  transition: var(--transition-smooth);
}

.nav-list a:hover, .nav-list a:focus {
  color: var(--color-accent-gold);
}

.nav-list a:hover::after, .nav-list a:focus::after {
  width: 100%;
}

.mobile-nav-toggle {
  display: block;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-light);
  position: relative;
  transition: var(--transition-smooth);
}

.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-light);
  transition: var(--transition-smooth);
}

.hamburger::before { top: -6px; }
.hamburger::after { bottom: -6px; }

/* Active Menu Toggle States */
.mobile-nav-toggle[aria-expanded="true"] .hamburger {
  background-color: transparent;
}
.mobile-nav-toggle[aria-expanded="true"] .hamburger::before {
  transform: rotate(45deg) translate(4px, 4px);
}
.mobile-nav-toggle[aria-expanded="true"] .hamburger::after {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ----------------------------------------------------
   HERO SECTION
---------------------------------------------------- */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  background-color: var(--color-bg-dark);
  text-align: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-slideshow-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  padding: 2rem;
  /* Will have subtle scroll-linked drift */
  transform: translateY(0);
}

.hero-subtitle {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-accent-gold);
  margin-bottom: 1.2rem;
  font-weight: 600;
}

.hero-title {
  font-size: 2.8rem;
  line-height: 1.1;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.highlight-text {
  font-style: italic;
  font-weight: 400;
  color: var(--color-text-light);
  border-bottom: 2px solid var(--color-accent-gold);
  display: inline-block;
  padding-bottom: 2px;
}

.hero-description {
  font-size: 1.1rem;
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: rgba(250, 247, 242, 0.9);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* Scroll Cue */
.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-cue-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(250, 247, 242, 0.6);
}

.scroll-cue-indicator {
  width: 22px;
  height: 36px;
  border: 1px solid rgba(250, 247, 242, 0.4);
  border-radius: 12px;
  position: relative;
}

.scroll-cue-dot {
  width: 4px;
  height: 8px;
  background-color: var(--color-accent-gold);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollCueAni 1.8s infinite;
}

@keyframes scrollCueAni {
  0% { transform: translate(-50%, 0); opacity: 0; }
  30% { opacity: 1; }
  70% { transform: translate(-50%, 12px); opacity: 0; }
  100% { opacity: 0; }
}

/* ----------------------------------------------------
   TRUST STRIP
---------------------------------------------------- */
.trust-strip {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  border-bottom: 1px solid rgba(212, 175, 106, 0.15);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 0;
  gap: 1rem;
  position: relative;
  z-index: 15;
}

.trust-rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-body);
}

.stars-gold {
  color: var(--color-accent-gold);
  font-size: 0.9rem;
  margin-right: 0.2rem;
}

.rating-val {
  font-weight: 700;
  font-size: 1rem;
}

.rating-meta {
  font-size: 0.85rem;
  color: var(--color-accent-blue);
  border-left: 1px solid rgba(250, 247, 242, 0.2);
  padding-left: 0.75rem;
}

.trust-marquee-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
}

.trust-marquee-track {
  display: flex;
  white-space: nowrap;
  gap: 4rem;
  animation: marquee 30s linear infinite;
  padding: 0.2rem 0;
}

.marquee-item {
  font-style: italic;
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.8);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.icon-accent {
  color: var(--color-accent-red);
  font-size: 0.75rem;
  opacity: 0.7;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); } /* Half track length (duplicated items) */
}

/* ----------------------------------------------------
   SECTION LAYOUT TEMPLATE
---------------------------------------------------- */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-title {
  font-size: 2.2rem;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 1rem;
}

.divider-facet {
  width: 120px;
  height: 10px;
  margin: 0 auto;
}

/* ----------------------------------------------------
   SPECIALTIES GRID
---------------------------------------------------- */
.specialties-section {
  padding: 6rem 0;
  background-color: var(--color-bg-light);
  position: relative;
}

.specialties-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.specialty-card {
  background-color: #fff;
  border: 1px solid rgba(124, 139, 154, 0.15);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition-slow);
  box-shadow: 0 4px 20px rgba(15, 17, 22, 0.02);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Faceted Light Corner Motif */
.card-facet-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, transparent 50%, rgba(212, 175, 106, 0.15) 50%);
  transition: var(--transition-smooth);
}

.card-icon {
  font-size: 2.2rem;
  color: var(--color-accent-red);
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.specialty-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  color: var(--color-text-dark);
}

.specialty-card p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.card-footer {
  border-top: 1px solid rgba(124, 139, 154, 0.1);
  padding-top: 1rem;
  margin-top: auto;
}

.delivery-badge {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-accent-red);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* Card Hover Interactions */
.specialty-card:hover, .specialty-card:focus-within {
  transform: translateY(-6px);
  border-color: var(--color-accent-gold);
  box-shadow: 0 12px 30px rgba(212, 175, 106, 0.1);
}

.specialty-card:hover .card-facet-corner {
  background: linear-gradient(135deg, transparent 50%, var(--color-accent-gold) 50%);
  width: 50px;
  height: 50px;
}

.specialty-card:hover .card-icon {
  color: var(--color-accent-gold);
}

/* ----------------------------------------------------
   GALLERY (PARALLAX ROWS)
---------------------------------------------------- */
.gallery-section {
  padding: 6rem 0;
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  border-top: 1px solid rgba(250, 247, 242, 0.1);
  border-bottom: 1px solid rgba(250, 247, 242, 0.1);
}

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

.gallery-section .section-subtitle {
  color: var(--color-accent-blue);
}

.parallax-gallery {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 4rem;
}

.gallery-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
}

.gallery-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(250, 247, 242, 0.1);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  filter: grayscale(15%) contrast(105%);
}

.item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 17, 22, 0.95) 0%, rgba(15, 17, 22, 0.2) 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0.85;
  transition: var(--transition-smooth);
}

.item-overlay span {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-text-light);
  transform: translateY(10px);
  transition: var(--transition-smooth);
}

/* Hover Zoom */
.gallery-item:hover img, .gallery-item:focus-within img {
  transform: scale(1.06);
}

.gallery-item:hover .item-overlay, .gallery-item:focus-within .item-overlay {
  opacity: 1;
  background: linear-gradient(to top, rgba(15, 17, 22, 0.95) 0%, rgba(15, 17, 22, 0) 80%);
}

.gallery-item:hover .item-overlay span, .gallery-item:focus-within .item-overlay span {
  transform: translateY(0);
  color: var(--color-accent-gold);
}

/* ----------------------------------------------------
   GIFT SPOTLIGHT (3D CRYSTAL)
---------------------------------------------------- */
.spotlight-section {
  padding: 6rem 0;
  background-color: var(--color-bg-light);
  position: relative;
}

.spotlight-card {
  display: flex;
  flex-direction: column;
  background-color: var(--color-bg-dark);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
  border: 1px solid rgba(212, 175, 106, 0.2);
}

.spotlight-image-side {
  position: relative;
  width: 100%;
  min-height: 350px;
  overflow: hidden;
}

.spotlight-image-side img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* Ethereal Prism Light Flare */
.image-lens-flare {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(212, 175, 106, 0.12) 0%, rgba(124, 139, 154, 0.08) 30%, rgba(0,0,0,0) 65%);
  pointer-events: none;
  animation: lensFlareAni 10s ease-in-out infinite alternate;
}

@keyframes lensFlareAni {
  0% { transform: translate(-5%, -5%) rotate(0deg) scale(0.95); }
  100% { transform: translate(5%, 5%) rotate(15deg) scale(1.05); }
}

.spotlight-content-side {
  padding: 3rem 2rem;
  color: var(--color-text-light);
}

.spotlight-badge {
  display: inline-block;
  background-color: var(--color-accent-red);
  color: var(--color-text-light);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.spotlight-title {
  color: var(--color-text-light);
  font-size: 2.2rem;
  margin-bottom: 1.2rem;
}

.spotlight-intro {
  color: var(--color-accent-blue);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.spotlight-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.spotlight-features li {
  display: flex;
  gap: 1rem;
  font-size: 0.95rem;
}

.feature-bullet {
  color: var(--color-accent-gold);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.spotlight-features strong {
  display: block;
  color: var(--color-text-light);
  margin-bottom: 0.2rem;
}

/* Tip Box (Approachability) */
.tip-box {
  background-color: rgba(250, 247, 242, 0.04);
  border-left: 2px solid var(--color-accent-gold);
  padding: 1.2rem;
  border-radius: 0 4px 4px 0;
  margin-bottom: 2.5rem;
  display: flex;
  gap: 0.8rem;
}

.tip-icon {
  color: var(--color-accent-gold);
  font-size: 1.1rem;
  margin-top: 0.2rem;
}

.tip-text {
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.8);
}

.spotlight-action {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.action-caption {
  font-size: 0.8rem;
  color: var(--color-accent-blue);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

/* ----------------------------------------------------
   REVIEWS SECTION
---------------------------------------------------- */
.reviews-section {
  padding: 6rem 0;
  background-color: var(--color-bg-light);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.review-card {
  background-color: #fff;
  border: 1px solid rgba(124, 139, 154, 0.1);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  box-shadow: 0 4px 15px rgba(15, 17, 22, 0.015);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(15, 17, 22, 0.04);
  border-color: rgba(181, 71, 75, 0.2);
}

.review-rating {
  margin-bottom: 1.2rem;
}

.review-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.review-author {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-accent-blue);
  margin-bottom: 1.5rem;
}

/* Owner Reply - Small and quiet */
.owner-reply {
  border-top: 1px dashed rgba(124, 139, 154, 0.2);
  padding-top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.reply-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-accent-red);
}

.reply-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* ----------------------------------------------------
   CONTACT SECTION
---------------------------------------------------- */
.contact-section {
  padding: 6rem 0;
  background-color: var(--color-bg-light);
  border-top: 1px solid rgba(124, 139, 154, 0.15);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.contact-tagline {
  color: var(--color-text-muted);
  font-size: 1rem;
  margin-bottom: 3rem;
}

.contact-details-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.contact-details-list li {
  display: flex;
  gap: 1.2rem;
}

.detail-icon {
  font-size: 1.5rem;
  color: var(--color-accent-red);
  margin-top: 0.2rem;
  width: 25px;
  text-align: center;
}

.contact-details-list h3 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-accent-blue);
  margin-bottom: 0.3rem;
  font-weight: 600;
}

.contact-details-list p {
  font-size: 1rem;
  color: var(--color-text-dark);
}

.map-link, .phone-link {
  color: var(--color-accent-red);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.3rem;
}

.map-link:hover, .map-link:focus, 
.phone-link:hover, .phone-link:focus {
  color: var(--color-accent-gold);
}

.contact-ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-map-side {
  width: 100%;
}

.map-container {
  height: 350px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(15, 17, 22, 0.05);
  border: 1px solid rgba(124, 139, 154, 0.2);
}

/* ----------------------------------------------------
   SITE FOOTER
---------------------------------------------------- */
.site-footer {
  background-color: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(212, 175, 106, 0.2);
}

.footer-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-brand .logo-serif {
  font-size: 2rem;
}

.footer-brand .logo-sans {
  font-size: 0.8rem;
  color: var(--color-accent-gold);
}

.footer-description {
  color: var(--color-accent-blue);
  font-size: 0.9rem;
  margin-top: 1rem;
  max-width: 320px;
}

.footer-links h3, .footer-delivery h3 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent-gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links a {
  color: rgba(250, 247, 242, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

.footer-links a:hover, .footer-links a:focus {
  color: var(--color-accent-gold);
  padding-left: 4px;
}

.footer-delivery p {
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.7);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.text-gold {
  color: var(--color-accent-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(250, 247, 242, 0.08);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-accent-blue);
}

/* ----------------------------------------------------
   MEDIA QUERIES (RESPONSIVE SYSTEM)
---------------------------------------------------- */

/* Small tablets / landscape phones */
@media (min-width: 576px) {
  .hero-actions {
    flex-direction: row;
  }
  
  .contact-ctas {
    flex-direction: row;
  }
}

/* Medium tablets / portrait iPads */
@media (min-width: 768px) {
  .specialties-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-row {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .hero-title {
    font-size: 3.8rem;
  }
  
  .hero-description {
    font-size: 1.25rem;
  }
  
  .spotlight-content-side {
    padding: 4rem;
  }
  
  .map-container {
    height: 450px;
  }
}

/* Large tablets / Desktop viewports */
@media (min-width: 992px) {
  .main-nav {
    display: block;
  }
  
  .mobile-nav-toggle {
    display: none;
  }
  
  .site-header {
    background-color: rgba(15, 17, 22, 0.9);
  }
  
  .spotlight-card {
    flex-direction: row;
  }
  
  .spotlight-image-side {
    width: 45%;
    min-height: auto;
  }
  
  .spotlight-content-side {
    width: 55%;
  }
  
  .contact-grid {
    grid-template-columns: 55% 45%;
  }
  
  .footer-container {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

/* ----------------------------------------------------
   ACCESSIBILITY & PREFERS-REDUCED-MOTION
---------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  
  .hero-slide {
    transition: none !important;
  }
  
  .hero-content, .gallery-row, .gallery-item img, .image-lens-flare {
    transform: none !important;
    animation: none !important;
    transition: none !important;
  }
  
  .scroll-cue-dot {
    animation: none !important;
  }
  
  .trust-marquee-track {
    animation: none !important;
    white-space: normal;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
  }
  
  .specialty-card, .review-card {
    transition: none !important;
    transform: none !important;
  }
}
