:root {
  --bg-main: #050505;
  --bg-dark: #070707;
  --bg-panel: #111111;
  --gold-1: #d4af37;
  --gold-2: #f5e6a4;
  --gold-soft: #b98a2c;
  --text-main: #f5f5f5;
  --text-muted: #c7c7c7;
  --danger: #ff6b6b;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.75);
}

/* Global reset-ish */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1b1b1b 0, #050505 55%, #000 100%);
  color: var(--text-main);
  line-height: 1.6;
}

/* Utility containers */
.container {
  width: min(1120px, 100% - 2.5rem);
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
  gap: 1rem;
}

.branding {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, var(--gold-2), var(--gold-1) 55%, #875b12 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #201400;
  box-shadow: 0 0 18px rgba(212, 175, 55, 0.7);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

/* NAV */
.main-nav {
  display: flex;
  gap: 1.25rem;
  font-size: 0.95rem;
}

.main-nav a {
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: linear-gradient(120deg, var(--gold-1), var(--gold-2));
  transition: width 0.25s ease-out;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a.active {
  color: var(--gold-2);
}

/* HERO */
.hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: center;
  padding: 4rem 0 3rem;
  background-image:
    linear-gradient(to bottom, rgba(0,0,0,0.85), rgba(0,0,0,0.9)),
    url("https://images.pexels.com/photos/3738347/pexels-photo-3738347.jpeg");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  mix-blend-mode: soft-light;
  opacity: 0.4;
  background:
    radial-gradient(circle at 5% 0, rgba(245,230,164,0.2), transparent 55%),
    radial-gradient(circle at 95% 100%, rgba(212,175,55,0.3), transparent 55%);
}

.hero-content {
  position: relative;
  max-width: 720px;
  padding: 2.5rem 2.75rem;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.1rem, 4vw, 2.8rem);
  margin-top: 0;
  margin-bottom: 1rem;
}

.hero p {
  margin-top: 0;
  color: var(--text-muted);
  font-size: 1rem;
}

.hero-cta {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.hero-contact span {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.hero-contact a {
  color: var(--gold-2);
  text-decoration: none;
}

.hero-contact a:hover {
  text-decoration: underline;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
  color: #201400;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7);
}

.btn-gold:hover {
  filter: brightness(1.05);
}

.btn-outline-gold {
  background: transparent;
  border: 1px solid rgba(245, 230, 164, 0.7);
  color: var(--gold-2);
}

.btn-outline-gold:hover {
  background: radial-gradient(circle at 20% 0, rgba(245, 230, 164, 0.12), transparent 60%);
}

/* SECTIONS */
.section {
  padding: 3.5rem 0;
}

.section-dark {
  background: var(--bg-dark);
}

.section-goldband {
  background:
    linear-gradient(to bottom, #050505 0, #050505 12%, #14100b 12%, #14100b 88%, #050505 88%, #050505 100%);
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-heading h1,
.section-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-heading p {
  color: var(--text-muted);
}

/* LIQUID GOLD FRAME */
.liquid-gold-frame {
  position: relative;
  padding: 1px;
  border-radius: 22px;
  background: linear-gradient(120deg, rgba(212,175,55,0.9), rgba(245,230,164,0.8), rgba(185,138,44,0.95));
  background-size: 220% 220%;
  animation: goldFlow 18s ease-in-out infinite;
  box-shadow: var(--shadow-soft);
}

.liquid-gold-frame > * {
  background: radial-gradient(circle at top left, #15110a 0, #050505 55%, #000 100%);
  border-radius: inherit;
  padding: 1.75rem 1.9rem;
}

@keyframes goldFlow {
  0% { background-position: 0% 30%; }
  50% { background-position: 100% 70%; }
  100% { background-position: 0% 30%; }
}

/* GRID & CARDS */
.grid-2 {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .grid-2 {
    grid-template-columns: 1.1fr 1.05fr;
  }
}

.checklist {
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 0;
}

.checklist li::before {
  content: "•";
  color: var(--gold-2);
  margin-right: 0.5rem;
}

.section-note {
  margin-top: 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.highlight {
  margin-top: 1.25rem;
  color: var(--gold-2);
}

/* Cards on home services row */
.card-row {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .card-row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.service-card {
  background: #0b0b0b;
  border-radius: 20px;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(212,175,55,0.35);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.7);
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  margin-top: 0;
  margin-bottom: 0.6rem;
}

/* SERVICES PAGE */
.services-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.service-detail h2 {
  font-family: "Playfair Display", serif;
  margin-top: 0;
}

.service-benefits {
  list-style: none;
  padding-left: 0;
  margin: 0.75rem 0 1.2rem;
}

.service-benefits li::before {
  content: "›";
  color: var(--gold-1);
  margin-right: 0.4rem;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
}

.price-table td {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.price-table td.price {
  text-align: right;
  color: var(--gold-2);
  font-weight: 600;
}

/* BOOKING PANEL */
.booking-panel h2 {
  margin-top: 0;
}

.booking-panel p {
  margin-top: 0;
  margin-bottom: 1.2rem;
}

/* CTA */
.centered-cta {
  text-align: center;
  margin-top: 2.3rem;
}

/* FOOTER */
.site-footer {
  background: #020202;
  border-top: 1px solid rgba(212, 175, 55, 0.35);
  padding: 1.2rem 0 1.4rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.footer-right span {
  margin-left: 1rem;
}

.site-footer a {
  color: var(--gold-2);
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content {
    padding: 1.9rem 1.7rem;
  }

  .brand-tagline {
    font-size: 0.72rem;
  }
}
