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

:root {
  --black:      #0d0d0d;
  --white:      #ffffff;
  --gold:       #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark:  #a8872e;
  --off-white:  #fafaf8;
  --alt-bg:     #f5f3ef;
  --border:     #e0dbd3;
  --text:       #1a1a1a;
  --muted:      #666666;
  --radius:     10px;
  --shadow:     0 4px 24px rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

.container {
  width: min(92%, 1160px);
  margin: 0 auto;
}

/* ===========================
   NAVIGATION
=========================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid rgba(201,168,76,0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 5%;
  min-height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  flex-shrink: 0;
}

.logo img {
  width: auto;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.nav-list a {
  color: rgba(255,255,255,0.8);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}

.nav-list a:hover {
  color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.nav-cta {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}

.btn-call:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-book {
  display: inline-flex;
  align-items: center;
  padding: 9px 20px;
  background: var(--gold);
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s;
}

.btn-book:hover {
  background: var(--gold-light);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s;
}

/* Mobile nav open state */
.mobile-menu-panel {
  display: contents;
}

@keyframes sectionReveal {
  0%   { opacity: 0.5; transform: translateY(6px); }
  100% { opacity: 1;   transform: translateY(0); }
}

.section-reveal {
  animation: sectionReveal 0.7s ease forwards;
}

@media (max-width: 900px) {
  .hamburger { display: flex; }

  .mobile-menu-panel {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--black);
    border-bottom: 1px solid rgba(201,168,76,0.3);
    padding: 8px 5% 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s;
    will-change: transform, opacity;
  }

  .site-header.open .mobile-menu-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav, .nav-cta { display: flex; }

  .nav-inner {
    position: relative;
    padding: 0 5%;
  }

  .nav {
    width: 100%;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 8px 0 4px;
  }

  .nav-cta {
    width: 100%;
    padding-top: 8px;
  }
}

/* ===========================
   HERO
=========================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('img/sill_upperleft.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.62) 0%,
    rgba(0,0,0,0.50) 60%,
    rgba(0,0,0,0.70) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 40px 20px;
  max-width: 800px;
}

.hero-eyebrow {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 1.0;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.hero-address {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.8);
  margin-bottom: 10px;
}

.hero-tagline {
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 36px;
  font-style: italic;
}

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

.hero-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.25s;
}

.hero-btn-outline {
  border: 1px solid var(--white);
  color: var(--white);
}

.hero-btn-outline:hover {
  background: var(--white);
  color: var(--black);
}

.hero-btn-gold {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  border: 1px solid var(--gold);
}

.hero-btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

/* ===========================
   HOURS STRIP
=========================== */
.hours-strip {
  background: var(--black);
  padding: 18px 5%;
}

.hours-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  max-width: 960px;
  margin: 0 auto;
}

.hours-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255,255,255,0.85);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
  gap: 2px;
}

.hours-item strong {
  color: var(--gold);
  letter-spacing: 0.06em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.hours-item a {
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

.hours-item a:hover { color: var(--gold); }

.hours-divider {
  width: 1px;
  height: 34px;
  background: rgba(201,168,76,0.3);
}

/* ===========================
   SECTION TITLES
=========================== */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.gold-label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--text);
}

/* ===========================
   SERVICE SECTIONS
=========================== */
.service-section {
  padding: 88px 0;
}

#manicures, #nails, #more {
  background-color: #fdfaf7;
}

#manicures, #pedicures, #nails, #more {
  position: relative;
  overflow: hidden;
}

.bg-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.bg-slideshow .bg-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.bg-slideshow .bg-slide.active {
  opacity: 1;
}

#manicures .container, #pedicures .container, #nails .container, #more .container {
  position: relative;
  z-index: 1;
}

/* ===========================
   MANICURES — luxury menu
=========================== */
#manicures .section-title h2,
#manicures .gold-label {
  color: #fff;
}

#manicures .bg-slideshow {
  filter: blur(1.5px) brightness(1.62) saturate(0.7);
}

#manicures::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.45) 0%, rgba(10,5,0,0.25) 100%);
  z-index: 0;
  pointer-events: none;
}

#manicures .mani-item {
  padding: 38px 42px;
  border-right: 1px solid rgba(201,168,76,0.5);
  border-bottom: 1px solid rgba(201,168,76,0.5);
}

#manicures .mani-menu {
  border-top: 1px solid rgba(201,168,76,0.5);
  border-left: 1px solid rgba(201,168,76,0.5);
}

#manicures .mani-name {
  font-size: 1.35rem;
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
  letter-spacing: 0.04em;
}

#manicures .mani-price {
  color: var(--gold-light);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
  font-size: 1.35rem;
}

#manicures .mani-desc {
  color: rgba(220,210,195,0.82);
  font-size: 0.95rem;
  line-height: 1.7;
}

.mani-menu {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 960px;
  margin: 0 auto;
  border-top: 1px solid rgba(201,168,76,0.35);
  border-left: 1px solid rgba(201,168,76,0.35);
}

.mani-item {
  padding: 32px 36px;
  border-right: 1px solid rgba(201,168,76,0.35);
  border-bottom: 1px solid rgba(201,168,76,0.35);
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.mani-item.visible {
  opacity: 1;
  transform: translateY(0);
}

.mani-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 10px;
}

.mani-name {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.03em;
}

.mani-price {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.mani-desc {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
}

@media (max-width: 640px) {
  .mani-menu {
    grid-template-columns: 1fr;
  }
}

#pedicures .section-title h2,
#pedicures .gold-label,
#nails .section-title h2,
#nails .gold-label,
#more .section-title h2,
#more .gold-label,
#drinks .section-title h2,
#drinks .gold-label,
#brows .section-title h2,
#brows .gold-label {
  color: #fff;
}

#brows {
  position: relative;
  overflow: hidden;
}

#brows .bg-slideshow {
  filter: blur(1.5px) brightness(1.62) saturate(0.7);
}

#brows::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,0.45) 0%, rgba(10,5,0,0.25) 100%);
  z-index: 0;
  pointer-events: none;
}

#brows .container {
  position: relative;
  z-index: 1;
}

#brows .mani-item {
  padding: 38px 42px;
  border-right: 1px solid rgba(201,168,76,0.5);
  border-bottom: 1px solid rgba(201,168,76,0.5);
}

#brows .mani-menu {
  border-top: 1px solid rgba(201,168,76,0.5);
  border-left: 1px solid rgba(201,168,76,0.5);
}

#brows .mani-name {
  color: #ffffff;
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
  letter-spacing: 0.04em;
}

#brows .mani-price {
  color: var(--gold-light);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

#brows .mani-desc {
  color: rgba(220,210,195,0.82);
  line-height: 1.7;
}

.mani-combo {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  color: var(--gold-light);
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.mani-category {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,168,76,0.4);
}

.mani-sublist {
  list-style: none;
}

.mani-sublist li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
}

.mani-sublist li span {
  color: rgba(255,255,255,0.75);
}

.mani-sublist li strong {
  color: var(--gold);
  white-space: nowrap;
  font-size: 0.95rem;
}

.mani-note {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-alt {
  background: var(--alt-bg);
}

#drinks {
  background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('img/gallery/bar1.jpeg');
  background-size: cover;
  background-position: center;
  min-height: 400px;
}

#drinks .section-title h2 {
  color: #fff;
}

#lashes {
  position: relative;
  min-height: 400px;
  overflow: hidden;
}

#lashes::before,
#lashes::after {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: lashesFade 14s infinite;
}

#lashes::before {
  background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('img/eyelash/pexels-estoymhrb-20765765.jpg');
  filter: blur(1.5px) saturate(0.7);
}

#lashes::after {
  background-image: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), url('img/eyelash/pexels-milangel-melendez-1162121836-21412169.jpg');
  animation-delay: 7s;
  filter: blur(1.5px) saturate(0.7);
}

@keyframes lashesFade {
  0%, 45%  { opacity: 1; }
  50%, 95% { opacity: 0; }
  100%     { opacity: 1; }
}

#lashes .container {
  position: relative;
  z-index: 1;
}

#lashes .section-title h2,
#lashes .gold-label {
  color: #fff;
}

#lashes .mani-item {
  padding: 38px 42px;
  border-right: 1px solid rgba(201,168,76,0.5);
  border-bottom: 1px solid rgba(201,168,76,0.5);
}

#lashes .mani-menu {
  border-top: 1px solid rgba(201,168,76,0.5);
  border-left: 1px solid rgba(201,168,76,0.5);
}

#lashes .mani-category {
  text-shadow: 0 1px 10px rgba(0,0,0,0.7);
  letter-spacing: 0.05em;
}

#lashes .mani-sublist li span {
  color: rgba(220,210,195,0.82);
}

#lashes .mani-sublist li strong {
  color: var(--gold-light);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}

.lashes-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.lashes-content.visible {
  opacity: 1;
  transform: translateY(0);
}

.drinks-content {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.6s, transform 0.8s ease 0.6s;
}

.drinks-content.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.service-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.service-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.section-alt .service-card {
  background: var(--white);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.12);
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 6px;
  color: var(--text);
}

.service-card p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

.service-price {
  font-size: 1.5rem !important;
  font-weight: 700;
  color: var(--gold-dark) !important;
  margin-bottom: 10px !important;
}

.combo-note {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem !important;
  color: var(--muted) !important;
  margin-bottom: 8px !important;
}

/* Price list inside cards */
.price-list {
  margin-top: 8px;
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
}

.price-list li span { color: var(--muted); }
.price-list li strong { color: var(--text); white-space: nowrap; }

.simple-list {
  margin-top: 8px;
}

.simple-list li {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  padding: 5px 0;
  border-bottom: 1px solid var(--border);
}

/* Enhancement list */
.enhancements-card { grid-column: span 1; }

.enhancement-list li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
}

.enhancement-list span { color: var(--muted); }
.enhancement-list strong { color: var(--text); }

/* Price table inside card */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.88rem;
}

.price-table th,
.price-table td {
  padding: 8px 4px;
  border-bottom: 1px solid var(--border);
  text-align: left;
}

.price-table th {
  font-weight: 700;
  color: var(--text);
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-table td { color: var(--muted); }
.price-table td:first-child { color: var(--text); }

/* ===========================
   GALLERY
=========================== */
.gallery-section {
  padding: 88px 0;
  background: var(--black);
}

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

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

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-hidden {
  display: none;
}

.gallery-load-more {
  text-align: center;
  margin-top: 40px;
}

.btn-load-more {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 12px 36px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-load-more:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-load-more.hidden {
  display: none;
}

/* ===========================
   CONTACT
=========================== */
.contact-section {
  padding: 88px 0;
  background: var(--off-white);
}

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

.contact-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.contact-block h3 {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-family: Arial, Helvetica, sans-serif;
  margin-bottom: 12px;
}

.contact-block p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

.contact-block a {
  color: var(--text);
  transition: color 0.2s;
}

.contact-block a:hover { color: var(--gold-dark); }

.btn-book-lg {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  padding: 12px 26px;
  background: var(--gold);
  color: var(--black);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background 0.2s;
}

.btn-book-lg:hover { background: var(--gold-light); }

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.75);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding: 60px 5%;
  max-width: 1160px;
  margin: 0 auto;
}

.footer-brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  margin-bottom: 16px;
  object-fit: cover;
}

.footer-brand p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
}

.footer-brand p:first-of-type {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}

.footer-brand a {
  color: var(--gold);
  transition: color 0.2s;
}

.footer-brand a:hover { color: var(--gold-light); }

.footer-nav h4,
.footer-hours h4 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-nav ul li {
  margin-bottom: 8px;
}

.footer-nav ul li a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.footer-nav ul li a:hover { color: var(--gold); }

.footer-hours p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 5%;
  text-align: center;
}

.footer-bottom p {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1040px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  .service-grid-2,
  .service-grid-3 {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hours-divider { display: none; }
}

@media (max-width: 540px) {
  .hero-content h1 {
    font-size: clamp(3rem, 14vw, 5rem);
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .service-section {
    padding: 60px 0;
  }
}
