/* Castle Valeting and Detailing — styles */

:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #161616;
  --gold: #d4af37;
  --gold-light: #f4d47c;
  --gold-dark: #8a6d1c;
  --gold-grad: linear-gradient(135deg, #8a6d1c 0%, #f4d47c 50%, #d4af37 100%);
  --gold-grad-soft: linear-gradient(135deg, rgba(138,109,28,0.15), rgba(244,212,124,0.15));
  --text: #e8e8e8;
  --text-muted: #a0a0a0;
  --border: rgba(212,175,55,0.18);
  --border-strong: rgba(212,175,55,0.4);
  --shadow-glow: 0 10px 40px -10px rgba(212,175,55,0.35);
  --shadow-card: 0 20px 60px -20px rgba(0,0,0,0.8);
  --radius: 14px;
  --radius-lg: 22px;
  --nav-h: 72px;
  --content-w: 1200px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-light); }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--gold); color: #000; }

:focus-visible {
  outline: 2px solid var(--gold-light);
  outline-offset: 3px;
  border-radius: 6px;
}

.skip-link {
  position: absolute; top: -100px; left: 12px;
  background: var(--gold); color: #000; padding: 10px 16px;
  border-radius: 8px; font-weight: 600; z-index: 1000;
}
.skip-link:focus { top: 12px; }

/* --- Typography helpers ------------------------------------------------- */
.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  display: inline-block;
}

h1, h2, h3 {
  font-family: 'Cinzel', 'Playfair Display', Georgia, serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.2rem;
  font-weight: 500;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  margin-bottom: 0.5em;
}

.section-lede {
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
}

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; gap: 0.6em;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { flex-shrink: 0; }

.btn-primary {
  background: var(--gold-grad);
  color: #1a1204;
  box-shadow: var(--shadow-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 50px -10px rgba(212,175,55,0.55); color: #000; }

.btn-ghost {
  color: var(--gold);
  border: 1px solid var(--border-strong);
  background: rgba(212,175,55,0.04);
}
.btn-ghost:hover { background: rgba(212,175,55,0.12); color: var(--gold-light); transform: translateY(-2px); }

/* --- Header / Nav ------------------------------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 50;
  transition: background .3s var(--ease), border-color .3s var(--ease), backdrop-filter .3s var(--ease);
  background: linear-gradient(180deg, rgba(10,10,10,0.6), rgba(10,10,10,0));
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,10,0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--border);
}

.nav-inner {
  max-width: var(--content-w);
  height: 100%;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex; align-items: center; gap: 0.75rem;
  color: var(--text);
}
.brand img { height: 40px; width: auto; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-title {
  font-family: 'Cinzel', serif; font-weight: 700;
  font-size: 1.15rem; letter-spacing: 0.14em;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.brand-sub {
  font-size: 0.7rem; letter-spacing: 0.22em;
  color: var(--text-muted); margin-top: 3px;
  text-transform: uppercase;
}

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.4em 0;
  transition: color .2s var(--ease);
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--gold-grad);
  transform: scaleX(0); transform-origin: right;
  transition: transform .3s var(--ease);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links .nav-cta {
  padding: 0.55em 1.3em;
  border-radius: 999px;
  background: var(--gold-grad);
  color: #1a1204;
  font-weight: 600;
}
.nav-links .nav-cta:hover { color: #000; }
.nav-links .nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  border-radius: 10px;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--gold);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0;
  background: rgba(10,10,10,0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  z-index: 40;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1.8rem;
  padding: 2rem;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  pointer-events: none;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu:not([hidden]) { pointer-events: auto; }
.mobile-menu.open { opacity: 1; transform: translateY(0); }
.mobile-menu a {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  color: var(--text);
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .nav-cta {
  margin-top: 1rem;
  padding: 0.9em 2.2em;
  border-radius: 999px;
  background: var(--gold-grad);
  color: #1a1204;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.08), transparent 55%),
    radial-gradient(ellipse at 80% 100%, rgba(212,175,55,0.06), transparent 50%),
    var(--bg);
}

.hero::before {
  /* subtle noise + starry sparkle like the flyer */
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, rgba(244,212,124,0.5), transparent 50%),
    radial-gradient(1px 1px at 70% 80%, rgba(244,212,124,0.35), transparent 50%),
    radial-gradient(1.5px 1.5px at 50% 50%, rgba(244,212,124,0.25), transparent 50%),
    radial-gradient(1px 1px at 85% 20%, rgba(244,212,124,0.3), transparent 50%),
    radial-gradient(1px 1px at 15% 75%, rgba(244,212,124,0.3), transparent 50%);
  opacity: 0.6;
  pointer-events: none;
  z-index: -1;
}

.hero-glow {
  position: absolute;
  left: 50%; top: 40%;
  transform: translate(-50%, -50%);
  width: 120vw; max-width: 900px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(212,175,55,0.18) 0%, transparent 55%);
  filter: blur(30px);
  z-index: -1;
  pointer-events: none;
}

.particles { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.particles span {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0.35;
  animation: float 16s ease-in-out infinite;
}
.particles span:nth-child(1)  { top: 10%; left: 12%; animation-delay: 0s; }
.particles span:nth-child(2)  { top: 22%; left: 78%; animation-delay: 1.5s; width: 2px; height: 2px; }
.particles span:nth-child(3)  { top: 65%; left: 20%; animation-delay: 3s; }
.particles span:nth-child(4)  { top: 40%; left: 55%; animation-delay: 4.5s; width: 4px; height: 4px; }
.particles span:nth-child(5)  { top: 80%; left: 70%; animation-delay: 6s; }
.particles span:nth-child(6)  { top: 15%; left: 45%; animation-delay: 2s; width: 2px; height: 2px; }
.particles span:nth-child(7)  { top: 55%; left: 88%; animation-delay: 5s; }
.particles span:nth-child(8)  { top: 75%; left: 8%;  animation-delay: 7s; width: 4px; height: 4px; }
.particles span:nth-child(9)  { top: 30%; left: 30%; animation-delay: 8s; }
.particles span:nth-child(10) { top: 60%; left: 62%; animation-delay: 2.5s; width: 2px; height: 2px; }
.particles span:nth-child(11) { top: 12%; left: 90%; animation-delay: 9s; }
.particles span:nth-child(12) { top: 88%; left: 40%; animation-delay: 3.5s; }
.particles span:nth-child(13) { top: 50%; left: 5%;  animation-delay: 4s; width: 2px; height: 2px; }
.particles span:nth-child(14) { top: 25%; left: 65%; animation-delay: 6.5s; }
.particles span:nth-child(15) { top: 70%; left: 48%; animation-delay: 1s; width: 3px; height: 3px; }

@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.25; }
  50% { transform: translateY(-22px) translateX(10px); opacity: 0.7; }
}

.hero-inner {
  text-align: center;
  max-width: 820px;
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: clamp(220px, 42vw, 380px);
  height: auto;
  margin: 0 auto 0.5rem;
  filter: drop-shadow(0 20px 40px rgba(212,175,55,0.25));
  animation: logoShimmer 6s ease-in-out infinite;
}
@keyframes logoShimmer {
  0%, 100% { filter: drop-shadow(0 20px 40px rgba(212,175,55,0.22)); }
  50%      { filter: drop-shadow(0 24px 55px rgba(244,212,124,0.45)); }
}

.hero-eyebrow {
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 1rem 0 0.8rem;
  font-weight: 500;
}

.hero-title {
  font-size: clamp(2.2rem, 7.5vw, 5rem);
  line-height: 1.08;
  margin: 0.2em 0 0.6em;
  letter-spacing: 0.01em;
}

.hero-sub {
  color: var(--text-muted);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  margin: 0 auto 2.4rem;
  max-width: 560px;
}
.hero-sub strong { color: var(--gold-light); font-weight: 600; }

.hero-ctas {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center;
}

.scroll-cue {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  opacity: 0.6;
  animation: bounce 2.4s ease-in-out infinite;
}
.scroll-cue:hover { opacity: 1; color: var(--gold-light); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* --- Section framework ------------------------------------------------- */
.section {
  padding: clamp(4rem, 9vw, 7rem) 1.5rem;
  position: relative;
}
.section-inner {
  max-width: var(--content-w);
  margin: 0 auto;
  text-align: center;
}
.section + .section { border-top: 1px solid var(--border); }

/* --- Services ---------------------------------------------------------- */
.services { background: linear-gradient(180deg, var(--bg) 0%, #0d0d0d 100%); }

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
  margin-top: 1rem;
  text-align: left;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 1.8rem 2rem;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212,175,55,0.1), transparent 60%);
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(212,175,55,0.15);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 76px; height: 76px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--gold-grad-soft);
  border: 1px solid var(--border-strong);
  margin-bottom: 1.4rem;
}

.service-card h3 {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  margin-bottom: 0.6rem;
  color: var(--text);
  text-transform: uppercase;
}
.service-card p { color: var(--text-muted); margin: 0; }

.price-ribbon {
  position: absolute;
  top: 1.4rem; right: 1.4rem;
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--gold-grad);
  color: #1a1204;
  border-radius: 999px;
}

/* --- Pricing ----------------------------------------------------------- */
.pricing { background: var(--bg); }

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.6rem;
  margin: 1rem 0 2.5rem;
  text-align: left;
}

.price-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem 2rem;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  display: flex;
  flex-direction: column;
}
.price-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(212,175,55,0.15);
}

.price-card-feature {
  background:
    linear-gradient(180deg, rgba(212,175,55,0.06), transparent 70%),
    var(--bg-card);
  border-color: var(--border-strong);
}
.price-card-feature::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(212,175,55,0.12), transparent 60%);
  pointer-events: none;
  border-radius: inherit;
}

.price-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 0.85rem;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gold-grad);
  color: #1a1204;
  border-radius: 999px;
  white-space: nowrap;
}

.price-card-head {
  margin-bottom: 1.4rem;
}
.price-card-head h3 {
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.price-card-head p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}
.price-headline {
  font-family: 'Cinzel', serif;
  font-size: 2rem !important;
  background: var(--gold-grad);
  -webkit-background-clip: text; background-clip: text;
  color: transparent !important;
  letter-spacing: 0.04em;
  margin-top: 0.4rem !important;
}

.price-list {
  list-style: none; padding: 0; margin: 0 0 1rem;
}
.price-list li {
  display: flex; align-items: baseline;
  padding: 0.65rem 0;
  border-bottom: 1px dashed rgba(212,175,55,0.12);
  gap: 0.6rem;
}
.price-list li:last-child { border-bottom: 0; }
.price-name { color: var(--text); flex: 0 1 auto; }
.price-dots {
  flex: 1 1 auto;
  border-bottom: 1px dotted rgba(212,175,55,0.25);
  transform: translateY(-4px);
  min-width: 1rem;
}
.price-amount {
  color: var(--gold);
  font-weight: 600;
  white-space: nowrap;
}

.price-features {
  list-style: none; padding: 0; margin: 0;
}
.price-features li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.6rem;
  color: var(--text);
  border-bottom: 1px dashed rgba(212,175,55,0.12);
}
.price-features li:last-child { border-bottom: 0; }
.price-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 1.05rem;
  width: 0.85rem; height: 0.85rem;
  background: var(--gold-grad);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/></svg>") center/contain no-repeat;
}

.price-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 1rem 0 0;
  font-style: italic;
}

.price-enquire {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
}
.price-enquire a {
  color: var(--gold);
  font-weight: 600;
  border-bottom: 1px solid var(--border-strong);
  transition: color .25s var(--ease), border-color .25s var(--ease);
}
.price-enquire a:hover {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

/* --- Gallery (Swiper) -------------------------------------------------- */
.gallery { background: #0d0d0d; overflow: hidden; }
.gallery .section-inner { margin-bottom: 2rem; }

.gallery-swiper {
  width: 100%;
  margin: 0;
  padding: 1rem clamp(1rem, 3vw, 2.5rem) 3rem;
  overflow: hidden;
}

.swiper-wrapper { align-items: stretch; }

.gallery-swiper .swiper-slide {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  transition: transform .5s var(--ease), border-color .5s var(--ease), box-shadow .5s var(--ease);
  aspect-ratio: 4 / 3;
  height: auto;
}
.gallery-swiper .swiper-slide:hover {
  border-color: var(--border-strong);
  box-shadow: var(--shadow-glow);
}

.slide-btn {
  display: block; width: 100%; height: 100%;
  padding: 0; border: 0; background: none; cursor: zoom-in;
  overflow: hidden;
}
.slide-btn img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.gallery-swiper .swiper-slide:hover .slide-btn img { transform: scale(1.06); }

/* Swiper arrows + pagination: gold theme */
.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
  width: 50px; height: 50px;
  background: rgba(20,20,20,0.85);
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--gold);
  transition: background .25s var(--ease), color .25s var(--ease), transform .25s var(--ease);
}
.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
  background: var(--gold-grad);
  color: #1a1204;
  transform: scale(1.06);
}
.gallery-swiper .swiper-button-next::after,
.gallery-swiper .swiper-button-prev::after {
  font-size: 18px; font-weight: 700;
}
.gallery-swiper .swiper-pagination {
  bottom: 6px;
}
.gallery-swiper .swiper-pagination-bullet {
  background: var(--gold-dark);
  opacity: 0.5;
  width: 8px; height: 8px;
  transition: all .25s var(--ease);
}
.gallery-swiper .swiper-pagination-bullet-active {
  background: var(--gold);
  opacity: 1;
  width: 28px;
  border-radius: 4px;
}

/* --- About ------------------------------------------------------------- */
.about { background: var(--bg); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  text-align: left;
}

.about-media .frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 3;
}
.about-media .frame::before {
  content: ''; position: absolute; inset: 0;
  box-shadow: inset 0 0 80px rgba(0,0,0,0.45);
  pointer-events: none;
  z-index: 1;
  border-radius: inherit;
}
.about-media .frame::after {
  content: ''; position: absolute; inset: -2px;
  border: 1px solid transparent;
  background: var(--gold-grad) border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  border-radius: var(--radius-lg);
  pointer-events: none;
  opacity: 0.6;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }

.about-copy .section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.about-copy p { color: var(--text); margin: 0 0 1.2rem; }
.about-copy p:last-of-type { margin-bottom: 1.8rem; }

.badges {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 0.8rem 1.4rem;
}
.badges li {
  display: inline-flex; align-items: center; gap: 0.55em;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.5em 1em;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(212,175,55,0.04);
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(212,175,55,0.7);
}

/* --- Contact ----------------------------------------------------------- */
.contact {
  background: linear-gradient(180deg, var(--bg) 0%, #080808 100%);
  position: relative;
}
.contact .wave {
  position: absolute; top: 0; left: 0; right: 0;
  width: 100%; height: 80px;
  opacity: 0.9;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  max-width: 760px;
  margin: 1rem auto 0;
}
@media (max-width: 560px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.6rem;
  padding: 2.2rem 1.6rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  color: var(--text);
  transition: transform .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
  text-align: center;
  word-break: break-word;
}
.contact-card svg { color: var(--gold); }
.contact-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: #181818;
  box-shadow: var(--shadow-glow);
  color: var(--text);
}
.contact-label {
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 0.4rem;
}
.contact-value {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.01em;
  overflow-wrap: anywhere;
}
.contact-card[href^="tel:"] .contact-value {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
}
.contact-card[href^="mailto:"] .contact-value {
  font-size: 0.95rem;
}

/* --- Footer ------------------------------------------------------------ */
.site-footer {
  padding: 3.5rem 1.5rem 2.5rem;
  text-align: center;
  border-top: 1px solid var(--border);
  background: #070707;
}
.footer-inner {
  max-width: 600px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 0.8rem;
}
.footer-inner img { width: 60px; height: auto; opacity: 0.85; }
.footer-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem; letter-spacing: 0.2em;
  margin: 0.4rem 0 0;
  text-transform: uppercase;
}
.footer-meta { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.footer-legal { color: #666; font-size: 0.8rem; margin: 0.8rem 0 0; }
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1.2rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(212,175,55,0.12);
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.footer-credit span { opacity: 0.8; }
.footer-credit a {
  display: inline-flex;
  align-items: center;
  opacity: 0.85;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.footer-credit a:hover { opacity: 1; transform: translateY(-1px); }
.footer-credit img {
  height: 42px;
  width: auto;
  display: block;
}

/* --- Lightbox ---------------------------------------------------------- */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(5,5,5,0.96);
  z-index: 100;
  display: none;
  align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; animation: fadeIn .25s var(--ease); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.lightbox-img {
  max-width: 95vw;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(212,175,55,0.3);
  animation: zoomIn .3s var(--ease);
}
@keyframes zoomIn {
  from { transform: scale(0.95); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(20,20,20,0.9);
  border: 1px solid var(--border-strong);
  color: var(--gold);
  font-size: 28px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s var(--ease), color .2s var(--ease), transform .2s var(--ease);
  z-index: 1;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--gold-grad);
  color: #1a1204;
  transform: scale(1.06);
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1.5rem;  top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.06); }

/* --- Reveal on scroll -------------------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive -------------------------------------------------------- */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; max-width: 520px; margin: 0 auto; }
}

@media (max-width: 560px) {
  .brand img { height: 32px; width: auto; }
  .brand-title { font-size: 0.95rem; letter-spacing: 0.1em; }
  .brand-sub   { font-size: 0.56rem; letter-spacing: 0.14em; margin-top: 2px; }
  .nav-inner   { padding: 0 0.9rem; gap: 0.6rem; }
  .hero { padding-top: calc(var(--nav-h) + 1rem); }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .service-card { padding: 1.8rem 1.4rem; }
  .contact-card { padding: 1.8rem 1.2rem; }
  .contact-value { font-size: 1rem; }
}
@media (max-width: 360px) {
  .brand-title { font-size: 0.85rem; }
  .brand-sub   { font-size: 0.5rem; letter-spacing: 0.12em; }
  .brand img   { height: 28px; width: auto; }
}

/* --- Reduced motion ---------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .particles { display: none; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* --- Print ------------------------------------------------------------- */
@media print {
  .site-header, .mobile-menu, .scroll-cue, .gallery, .lightbox, .particles, .hero-glow { display: none !important; }
  body { background: #fff; color: #000; }
  .gold-text { color: #7a5e12; -webkit-text-fill-color: #7a5e12; }
}
