:root {
  /* Colors */
  --color-bg: #0b0b0b;
  --color-text: #f5f5f5;
  --color-muted: #b3b3b3;
  --color-gold: #d4af37; /* accessible gold on dark */
  --color-gold-soft: #b89623;
  --color-accent: var(--color-gold);

  /* Typography */
  --font-base: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont,
    'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
  --text-size: 16px;
  --lh-base: 1.65;
  --lh-heading: 1.25;

  /* Spacing */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;

  /* Layout */
  --container: 1200px;
  --radius: 10px;
  --radius-pill: 999px;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.4);
  --shadow-hover: 0 16px 40px rgba(0, 0, 0, 0.6);

  /* Effects */
  --glow: 0 0 40px rgba(212, 175, 55, 0.35), 0 0 120px rgba(212, 175, 55, 0.18);
}

/* 1. Reset */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-base);
  font-size: var(--text-size);
  line-height: var(--lh-base);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: var(--color-text);
  text-decoration: none;
}

/* 2. Base */
.container {
  width: 100%;
  max-width: var(--container);
  padding: 0 var(--space-3);
  margin: 0 auto;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
}
.skip-link:focus {
  left: var(--space-3);
  top: var(--space-3);
  background: #111;
  color: #fff;
  padding: var(--space-2) var(--space-3);
  border-radius: var(--radius);
}

/* 3. Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(6px);
  background: rgba(0, 0, 0, 0.5);
  border-bottom: 1px solid rgba(212, 175, 55, 0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-2) 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-weight: 600;
  letter-spacing: 0.3px;
}
.brand img {
  border-radius: 8px;
  box-shadow: var(--glow);
}
/* Desktop gold effect for brand image already uses glow; match stronger mobile gold shine */
.brand .brand-logo {
  border-radius: 8px;
  box-shadow: var(--glow);
}

/* Gold shimmer for brand title (used on desktop heading and mirrored for mobile logo text when visible) */
.brand-title { position: relative; }
.brand-title.gold-text { background: linear-gradient(90deg, #f7e7b7 0%, #d4af37 40%, #b89623 60%, #f7e7b7 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.brand-title.gold-text::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.2) 45%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.2) 55%, transparent 100%); mix-blend-mode: screen; animation: shimmer 3.5s ease-in-out infinite; pointer-events: none; }
.site-nav ul {
  display: flex;
  gap: var(--space-4);
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  color: var(--color-muted);
}
.site-nav a:hover {
  color: var(--color-gold);
}
.nav-toggle {
  display: none;
  background: none;
  color: var(--color-text);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 8px 12px;
  border-radius: var(--radius);
  line-height: 1;
  cursor: pointer;
  position: relative;
}
.nav-toggle::before {
  content: '';
  display: inline-block;
  width: 18px;
  height: 2px;
  background: currentColor;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
  vertical-align: middle;
  margin-right: 6px;
}

/* 4. Components */
.cta {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-soft));
  color: #0a0a0a;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  letter-spacing: 0.4px;
  box-shadow: var(--glow);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}
.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(212, 175, 55, 0.4);
  filter: brightness(1.05);
}
.cta-header {
  display: none;
}
.link {
  color: var(--color-gold);
  font-weight: 600;
}

/* 5. Hero */
.hero {
  position: relative;
  overflow: clip;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: var(--space-6);
  align-items: center;
  min-height: min(90vh, 900px);
  padding: var(--space-7) 0;
}
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.25rem);
  line-height: var(--lh-heading);
  margin: 0 0 var(--space-3);
  letter-spacing: 0.2px;
  text-wrap: balance;
}
.title-subline { display: block; }
.gold-text {
  background: linear-gradient(90deg, #f7e7b7 0%, #d4af37 40%, #b89623 60%, #f7e7b7 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}
.gold-text::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.2) 45%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.2) 55%, transparent 100%);
  mix-blend-mode: screen;
  animation: shimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0% { transform: translateX(-120%); opacity: 0.0; }
  20% { opacity: 1; }
  50% { transform: translateX(120%); }
  80% { opacity: 0; }
  100% { transform: translateX(120%); opacity: 0; }
}
.hero-subtitle {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--color-muted);
  margin: 0 0 var(--space-5);
}
.hero-actions {
  display: flex;
  gap: var(--space-3);
  align-items: center;
}
.hero-visual { 
  position: relative; 
  min-height: 360px; 
  display: flex;
  align-items: center;
  justify-content: center;
}
.ring-container {
  width: min(45vmin, 380px);
  height: min(45vmin, 380px);
  filter: drop-shadow(0 10px 40px rgba(212, 175, 55, 0.3));
  transform: translateY(-20px);
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(1000px 400px at 20% 10%, rgba(212, 175, 55, 0.12), transparent 60%),
              radial-gradient(800px 300px at 80% 20%, rgba(212, 175, 55, 0.09), transparent 60%),
              linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.3) 65%, rgba(0, 0, 0, 0.6));
  pointer-events: none;
}

/* 6. Sections */
.section {
  padding: var(--space-7) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.section h2 {
  font-size: clamp(1.6rem, 2.4vw, 2rem);
  margin: 0 0 var(--space-4);
  line-height: var(--lh-heading);
}
.section-subtle {
  margin: -12px 0 var(--space-4);
  color: var(--color-muted);
  opacity: 0.8;
}

/* Intro */
.intro-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: var(--space-6);
}
.intro-text p { color: var(--color-muted); }
.intro-badges { display: flex; flex-wrap: wrap; gap: var(--space-2); align-content: start; }
.badge {
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: var(--color-gold);
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(212, 175, 55, 0.06);
}

/* Services */
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
}
.card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.35));
  border-radius: var(--radius);
  padding: var(--space-4);
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover, .card:focus {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(212, 175, 55, 0.35);
}
.card h3 { margin-top: 0; }
.card p { color: var(--color-muted); }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
}
.gallery-grid figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: #111;
}
.gallery-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-grid figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 10px 12px;
  font-size: 0.9rem;
  color: var(--color-text);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}
.contact-card, .hours-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.35));
  border-radius: var(--radius);
  padding: var(--space-4);
}
.contact-list { list-style: none; padding: 0; margin: 0 0 var(--space-4); }
.contact-list li { margin-bottom: var(--space-2); color: var(--color-muted); }
.hours { margin: 0; }
.hours div { display: grid; grid-template-columns: 1fr auto; padding: 8px 0; border-bottom: 1px dashed rgba(255, 255, 255, 0.08); }
.hours dt { color: var(--color-text); }
.hours dd { margin: 0; color: var(--color-muted); }
.note { color: var(--color-muted); margin-top: var(--space-2); }

/* Footer */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: var(--space-5) 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-inner .brand img { box-shadow: none; }
.copyright {
  color: var(--color-muted);
  margin: 0;
}

/* Mobile footer */
@media (max-width: 768px) {
  .site-footer {
    padding: var(--space-4) 0;
  }
  .footer-inner {
    flex-direction: column;
    gap: var(--space-3);
    text-align: center;
  }
  .footer-inner .brand {
    justify-content: center;
  }
  .copyright {
    font-size: 0.9rem;
  }
}

/* 7. Utilities */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 8. Responsive */
@media (max-width: 1024px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .intro-grid { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { min-height: 300px; }
}
@media (max-width: 768px) {
  .site-header { z-index: 100; }
  .header-inner { padding: 10px 12px; gap: 8px; min-height: 56px; }
  .brand { max-width: 50%; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; gap: 10px; }
  /* Show only logo image by default on mobile; title can be toggled if needed */
  .brand .brand-title { display: none; }
  .brand img { width: 36px; height: 36px; }
  .site-nav { position: relative; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; gap: 0; width: 44px; height: 44px; font-size: 0; }
  .site-nav ul { display: none; }

  /* Fullscreen overlay menu */
  .site-nav ul.open {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: fixed;
    inset: 0;
    background: rgba(8, 8, 8, 0.96);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 96px 24px 24px;
    z-index: 120;
    animation: menuIn 220ms ease-out both;
  }
  @keyframes menuIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .site-nav li { list-style: none; }
  .site-nav li a {
    display: block;
    padding: 16px 14px;
    border-radius: 10px;
    font-size: 1.025rem;
    text-align: center;
    color: var(--color-text);
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(0,0,0,0.2));
    border: 1px solid rgba(255,255,255,0.08);
  }
  .site-nav li a:focus, .site-nav li a:hover { background: rgba(255, 255, 255, 0.08); }

  .contact-grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* Prevent body scroll when mobile menu is open */
body.nav-open { overflow: hidden; }

/* Overlay for drawer */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 110;
}
.nav-overlay.open { opacity: 1; visibility: visible; }

/* Drawer styles (mobile) */
@media (max-width: 768px) {
  .site-nav { position: static; }
  .site-nav ul { display: none; }
  .site-nav ul.open {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: fixed;
    top: 0; bottom: 0; right: 0;
    width: min(84vw, 340px);
    background: #0b0b0b;
    border-left: 1px solid rgba(255,255,255,0.08);
    padding: 80px 16px 16px;
    z-index: 120;
    transform: translateX(100%);
    transition: transform 0.24s ease-out;
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
  }
  .site-nav ul.open { transform: translateX(0); }
  .site-nav li a { display: block; padding: 14px 10px; border-radius: 8px; text-align: left; font-size: 1rem; }
  .site-nav li a:focus, .site-nav li a:hover { background: rgba(255, 255, 255, 0.06); color: var(--color-text); }

  /* Gold glow effect on mobile logo image (same as desktop) */
  .brand img {
    border-radius: 8px;
    box-shadow: var(--glow);
  }
}

/* Floating call button */
.call-fab {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-soft));
  color: #0b0b0b;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(0,0,0,0.45), 0 0 0 2px rgba(212,175,55,0.2) inset;
  z-index: 130;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.call-fab:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(0,0,0,0.55), 0 0 0 2px rgba(212,175,55,0.28) inset; }
.call-fab svg { display: block; }

/* Show call button only on mobile */
@media (min-width: 769px) {
  .call-fab { display: none; }
}

/* Force simple inline mobile navigation (final override) */
@media (max-width: 768px) {
  .site-nav { position: relative; }
  .site-nav ul {
    display: flex !important;
    flex-direction: row;
    gap: 12px;
    position: static !important;
    inset: auto !important;
    width: auto !important;
    background: transparent !important;
    padding: 0 !important;
    transform: none !important;
    overflow: visible !important;
  }
  .site-nav ul.open { display: flex !important; }
  .site-nav li a {
    display: inline-block !important;
    padding: 8px 6px !important;
    border-radius: 8px;
    font-size: 1rem !important;
    text-align: left !important;
    background: none !important;
    border: 0 !important;
  }
  .nav-overlay { display: none !important; }
  body.nav-open { overflow: auto !important; }
}


