@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&family=Inter:wght@100;200;300;400;500;600;700;800;900&display=swap');

:root {
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Inter', sans-serif;
  --black: #050505;
  --charcoal: #111111;
  --white: #ffffff;
  --gold: #d4af37;
  --gold-deep: #b88a12;
  --champagne: #f4d98b;
  --ivory: #f8f4ec;
  --taupe: #c8afa2;
  --gold-rgb: 212, 175, 55;
  --champagne-rgb: 244, 217, 139;
  --line: rgba(212, 175, 55, 0.28);
  --line-strong: rgba(212, 175, 55, 0.6);
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  --shadow-soft: 0 20px 55px rgba(0, 0, 0, 0.18);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --content-width: min(1200px, calc(100vw - 48px));
  --hero-image-main: url("https://images.unsplash.com/photo-1515377905703-c4788e51af15?auto=format&fit=crop&w=1600&q=80");
  --hero-image-postop: url("https://images.unsplash.com/photo-1552693673-1bf958298935?auto=format&fit=crop&w=1600&q=80");
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* Reset & Base */
html,
body {
  background-color: #050505 !important;
  color: #ffffff !important;
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: var(--sans) !important;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
  overflow-x: hidden;
  /* Premium Dark Background with 'Chispas' (Grain) and 'Destellos' (Glows) */
  background:
    radial-gradient(circle at 10% 10%, rgba(var(--gold-rgb), 0.15), transparent 20%),
    radial-gradient(circle at 90% 15%, rgba(var(--champagne-rgb), 0.12), transparent 25%),
    radial-gradient(circle at 50% 50%, rgba(var(--gold-rgb), 0.05), transparent 40%),
    linear-gradient(180deg, #050505 0%, #090909 30%, #0c0c0c 70%, #050505 100%) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--serif) !important;
  font-weight: 300 !important;
}

.service-card h3 {
  font-weight: 500 !important;
  /* Slightly thicker */
}

p,
a,
span,
li,
div {
  font-family: var(--sans);
}

.button,
.btn-glow,
.btn-outline,
button,
.lux-btn {
  font-family: var(--sans) !important;
  font-weight: 400 !important;
  /* "fina" */
  letter-spacing: 0.15em !important;
}

/* Strategic Gold Dust 'Chispas' */
body::before {
  content: "" !important;
  position: fixed !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: 0.25 !important;
  background-image:
    radial-gradient(1.5px 1.5px at 15% 25%, rgba(var(--gold-rgb), 0.9), transparent),
    radial-gradient(2px 2px at 35% 45%, rgba(var(--champagne-rgb), 0.8), transparent),
    radial-gradient(1px 1px at 55% 15%, rgba(255, 255, 255, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 75% 35%, rgba(var(--gold-rgb), 0.85), transparent),
    radial-gradient(2.5px 2.5px at 85% 65%, rgba(var(--champagne-rgb), 0.9), transparent),
    radial-gradient(1px 1px at 25% 75%, rgba(255, 255, 255, 0.6), transparent),
    radial-gradient(2px 2px at 45% 85%, rgba(var(--gold-rgb), 0.8), transparent),
    radial-gradient(1.5px 1.5px at 65% 55%, rgba(var(--champagne-rgb), 0.75), transparent),
    radial-gradient(2px 2px at 95% 85%, rgba(var(--gold-rgb), 0.9), transparent);
  background-size: 250px 250px !important;
  /* Fade out sparkles in the very center to keep content clean */
  mask-image: radial-gradient(ellipse at 50% 50%, transparent 10%, black 80%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 50%, transparent 10%, black 80%);
}

/* Large Glow 'Destellos' */
.site-glow-top,
.site-glow-bottom {
  position: fixed !important;
  border-radius: 999px !important;
  filter: blur(140px) !important;
  pointer-events: none !important;
  z-index: -1 !important;
  opacity: 0.45 !important;
}

.site-glow-top {
  width: 800px;
  height: 800px;
  top: -200px;
  right: -300px;
  background: radial-gradient(circle, rgba(var(--gold-rgb), 0.25), transparent 75%) !important;
}

.site-glow-bottom {
  width: 700px;
  height: 700px;
  bottom: -200px;
  left: -250px;
  background: radial-gradient(circle, rgba(var(--champagne-rgb), 0.2), transparent 75%) !important;
}

/* Secondary Glow Layers */
.site-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px),
    radial-gradient(circle at 77% 24%, rgba(var(--gold-rgb), 0.2) 0 1px, transparent 1px);
  background-size: 280px 280px, 360px 360px;
  opacity: 0.5;
  z-index: -1;
}

.topbar,
.site-header,
main,
.site-footer {
  width: 100%;
  max-width: var(--content-width);
  margin-left: auto;
  margin-right: auto;
}

.site-shell {
  width: 100%;
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 20px 0 10px;
  /* Restored more balanced padding */
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 10;
  background: transparent !important;
  border: none !important;
}

.topbar a {
  color: #d8b75a !important;
  text-decoration: none !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.topbar a:hover {
  color: #ffffff !important;
  opacity: 1 !important;
}

.topbar::after {
  content: "";
  position: absolute;
  left: 25%;
  right: 25%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(var(--gold-rgb), 0.2), transparent);
}

.site-header {
  position: relative;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 50px !important;
  margin: 10px auto 0;
  width: 95%;
  max-width: 1200px;
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}

.brand-script {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-style: italic;
  color: var(--champagne);
  text-shadow: 0 0 18px rgba(var(--champagne-rgb), 0.2);
}

.brand-main {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white !important;
}

/* Global Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.woocommerce-main-wrapper {
  min-height: 60vh;
}

.site-nav a:not(.button) {
  color: rgba(255, 255, 255, 0.85) !important;
  /* Force white nav links */
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.84);
}

.site-nav a:not(.button) {
  position: relative;
}

.site-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* Nav Dropdown Logic */
.nav-item.has-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 260px;
  background: rgba(12, 12, 12, 0.95);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: 18px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  z-index: 1000;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 20px;
}

.nav-item.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block !important;
  padding: 10px 24px !important;
  font-size: 0.88rem !important;
  color: rgba(255, 255, 255, 0.8) !important;
  transition: all 0.2s ease !important;
}

.nav-dropdown a::after {
  display: none !important;
  /* Remove underline effect for dropdown links */
}

.nav-dropdown a:hover {
  background: rgba(var(--gold-rgb), 0.08);
  color: var(--gold) !important;
  padding-left: 28px !important;
}

a.service-card {
  display: block;
  text-decoration: none;
  color: inherit !important;
}

/* Hide site-nav on mobile, show on desktop */
@media (max-width: 991px) {
  .site-nav {
    display: none !important;
  }
}

.nav-toggle {
  display: none !important;
  /* Hide on desktop by default */
  width: 50px;
  height: 50px;
  border: 1px solid rgba(var(--gold-rgb), 0.24);
  border-radius: 999px;
  background: transparent;
  color: var(--white) !important;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

main {
  padding-bottom: 60px;
}

main>section {
  position: relative;
  padding: 80px 0;
  /* Reduced from 112px */
}

.hero-section {
  min-height: auto;
  padding-top: 50px;
  /* Reduced from 78px */
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--champagne);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.02;
}

h1 {
  max-width: 11ch;
  font-size: clamp(2rem, 3vw, 2.8rem);
  letter-spacing: 0.01em;
  text-wrap: balance;
  text-shadow: 0 8px 34px rgba(0, 0, 0, 0.22);
}

h2 {
  font-size: clamp(2.1rem, 3.2vw, 3rem);
}

h3 {
  font-size: clamp(1.45rem, 2vw, 1.8rem);
}

p {
  margin: 0;
  line-height: 1.75;
}

.hero-content {
  position: relative;
  z-index: 5;
  max-width: 900px;
  /* Increased from ~500px */
  padding: 0 80px;
}

.hero-text {
  max-width: 45rem;
  /* Increased to allow more horizontal expansion */
  margin-top: 24px;
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--white);
  opacity: 0.9;
}

.specialty-copy p,
.panel-note,
.gallery-quote p {
  color: var(--white);
}

.hero-slider {
  position: relative;
  min-height: 680px;
  /* Reduced from 760px */
  border: 1px solid rgba(var(--gold-rgb), 0.14);
  border-radius: 44px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.24);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    visibility 260ms ease;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.hero-slide-brand {
  background-image: var(--hero-image-main);
}

.hero-slide-postop {
  background-image: var(--hero-image-postop);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.76) 0%, rgba(5, 5, 5, 0.56) 46%, rgba(5, 5, 5, 0.34) 100%),
    linear-gradient(180deg, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.3));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  max-width: 800px;
  min-height: 680px;
  /* Synchronized with slider */
  padding: 60px 80px 60px 100px;
  /* Reduced top/bottom padding */
}

.hero-logo {
  width: min(160px, 32vw);
  margin: 4px 0 18px;
  object-fit: contain;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.32));
}

.hero-slide .eyebrow {
  margin-bottom: 14px;
}

.hero-slide h1 {
  max-width: 15ch;
  line-height: 1.05;
}

.hero-controls {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.hero-dot {
  width: 44px;
  height: 12px;
  border: 1px solid var(--gold) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  cursor: pointer;
  outline: none !important;
  box-shadow: none !important;
  transition: all 180ms ease;
  border-radius: 999px;
  /* Added back radius */
}

.hero-dot.is-active {
  background: linear-gradient(90deg, var(--champagne), var(--gold)) !important;
  border-color: var(--gold) !important;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.2) !important;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-gold {
  background: linear-gradient(135deg, var(--champagne), var(--gold));
  color: var(--black);
  box-shadow:
    0 18px 45px rgba(var(--gold-rgb), 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.button-outline {
  border-color: rgba(var(--gold-rgb), 0.42);
  background: rgba(255, 255, 255, 0.02);
  color: var(--white);
}

.button-outline-dark {
  border-color: rgba(5, 5, 5, 0.16);
  color: var(--black);
  background: rgba(255, 255, 255, 0.22);
}

.button-small {
  min-height: 46px;
  padding-inline: 22px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 46px;
}

.hero-metrics>div {
  padding: 18px 18px 20px;
  border: 1px solid rgba(var(--gold-rgb), 0.18);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at top right, rgba(var(--champagne-rgb), 0.09), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.metric-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(var(--champagne-rgb), 0.76);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.gallery-tall::before,
.gallery-small::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(255, 255, 255, 0.08), transparent 48%),
    radial-gradient(circle at 20% 86%, rgba(var(--champagne-rgb), 0.3), transparent 30%),
    radial-gradient(circle at 80% 90%, rgba(var(--gold-rgb), 0.15), transparent 25%);
  z-index: 0;
  pointer-events: none;
}

.image-chip {
  display: none;
}

.image-copy,
.gallery-tall span,
.gallery-small span {
  position: absolute;
  left: 28px;
  bottom: 26px;
  z-index: 1;
}

.image-copy {
  display: none;
}

.image-copy span,
.gallery-tall span,
.gallery-small span {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(var(--gold-rgb), 0.12);
  font-size: 0.78rem;
}

.section-light {
  position: relative;
  padding-inline: 52px;
  border: 1px solid rgba(var(--gold-rgb), 0.12);
  border-radius: calc(var(--radius-xl) + 8px);
  background:
    radial-gradient(circle at 100% 0%, rgba(var(--champagne-rgb), 0.18), transparent 24%),
    linear-gradient(180deg, rgba(248, 244, 236, 0.985), rgba(255, 255, 255, 0.955)),
    linear-gradient(135deg, rgba(var(--champagne-rgb), 0.08), transparent);
  color: var(--black);
  box-shadow: var(--shadow-soft);
}

.section-light::before {
  content: "";
  position: absolute;
  top: 22px;
  right: 28px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    10px 9px 0 -1px rgba(var(--champagne-rgb), 0.8),
    24px 1px 0 -2px rgba(var(--gold-rgb), 0.95);
  opacity: 0.8;
}

.section-light .hero-text,
.section-light .section-heading p,
.section-light .trust-card p,
.section-light .service-card p {
  color: rgba(17, 17, 17, 0.72);
}

.section-light .eyebrow {
  color: #8d6c14;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading p,
.specialty-copy p,
.trust-card p,
.cta-copy p,
.service-card p {
  font-size: 0.98rem;
}

.section-heading h2,
.gallery-lead h2 {
  position: relative;
  padding-bottom: 18px;
}

.section-heading h2::after,
.gallery-lead h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 110px;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--gold-rgb), 0.9), transparent);
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 24px;
  align-items: end;
  max-width: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  overflow: hidden;
  grid-column: span 4;
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%) !important;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
  transform: translateY(-6px);
  border-color: rgba(var(--gold-rgb), 0.42);
  box-shadow: 0 20px 40px rgba(28, 20, 4, 0.1);
}

.service-card.feature {
  grid-column: span 6;
  background:
    radial-gradient(circle at top right, rgba(var(--champagne-rgb), 0.2), transparent 28%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.98), rgba(248, 244, 236, 0.98));
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border: 1px solid rgba(var(--gold-rgb), 0.34);
  border-radius: 50%;
  color: #7b6110;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.7), rgba(var(--champagne-rgb), 0.55));
  box-shadow:
    0 10px 20px rgba(var(--gold-rgb), 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.services-section .service-card {
  min-height: 240px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(250, 247, 241, 0.98));
  box-shadow: 0 10px 28px rgba(25, 20, 10, 0.05);
}

.services-section .service-card::before,
.services-section .service-card::after {
  display: none;
}

.services-section .service-card.feature {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 244, 236, 0.98));
}

.services-section .service-card h3 {
  line-height: 1.02;
}

.services-section .service-card p {
  color: rgba(17, 17, 17, 0.66);
}

.service-card h3,
.trust-card h3 {
  margin-bottom: 12px;
}

.specialty-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
  gap: 34px;
  align-items: center;
}

.specialty-section::before {
  content: "";
  position: absolute;
  inset: 42px 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-strong), transparent);
}

.specialty-points {
  margin: 26px 0 32px;
  padding: 0;
  list-style: none;
}

.specialty-points li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.specialty-points li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--champagne), var(--gold));
  box-shadow: 0 0 18px rgba(var(--gold-rgb), 0.32);
}

.specialty-panel {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: calc(var(--radius-xl) + 12px);
  background:
    radial-gradient(circle at top, rgba(var(--champagne-rgb), 0.15), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
  box-shadow:
    0 22px 56px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.specialty-panel::before {
  content: "";
  position: absolute;
  inset: 20px;
  border-radius: calc(var(--radius-xl) - 4px);
  border: 1px solid rgba(var(--gold-rgb), 0.08);
  pointer-events: none;
}

.specialty-orbit {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 1;
}

.orbit-ring {
  position: absolute;
  inset: 6%;
  border: 1px solid rgba(var(--gold-rgb), 0.32);
  border-radius: 50%;
  box-shadow:
    inset 0 0 60px rgba(var(--gold-rgb), 0.08),
    0 0 30px rgba(var(--gold-rgb), 0.06);
}

.orbit-ring::before,
.orbit-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.orbit-ring::before {
  inset: 16%;
  border: 1px dashed rgba(var(--champagne-rgb), 0.28);
}

.orbit-ring::after {
  top: 12%;
  right: 14%;
  width: 16px;
  height: 16px;
  background: linear-gradient(135deg, var(--champagne), var(--gold));
  box-shadow: 0 0 22px rgba(var(--gold-rgb), 0.42);
}

.orbit-core {
  position: relative;
  display: grid;
  gap: 14px;
  width: 58%;
  aspect-ratio: 1;
  place-content: center;
  border: 1px solid rgba(var(--gold-rgb), 0.34);
  border-radius: 50%;
  background:
    radial-gradient(circle at top, rgba(var(--champagne-rgb), 0.22), transparent 32%),
    rgba(11, 11, 11, 0.96);
  text-align: center;
  box-shadow: inset 0 0 0 12px rgba(255, 255, 255, 0.015);
}

.orbit-core span {
  color: var(--champagne);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
}

.panel-note {
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(var(--gold-rgb), 0.16);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.trust-card {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(var(--gold-rgb), 0.16);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at top right, rgba(var(--champagne-rgb), 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.92)),
    linear-gradient(135deg, rgba(var(--champagne-rgb), 0.14), transparent);
  box-shadow: 0 16px 34px rgba(26, 20, 8, 0.06);
}

.trust-card p {
  color: rgba(17, 17, 17, 0.72);
}

.gallery-section {
  padding-top: 96px;
}

.gallery-lead {
  max-width: 760px;
  margin-bottom: 36px;
}

.gallery-composition {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.72fr) minmax(260px, 0.72fr);
  gap: 22px;
}

.gallery-tall,
.gallery-small,
.gallery-quote {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid rgba(var(--gold-rgb), 0.18);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.gallery-tall {
  min-height: 560px;
  background: linear-gradient(145deg, #100d08, #1c150d, #090909);
}

.gallery-stack {
  display: grid;
  gap: 22px;
}

.gallery-small {
  background: linear-gradient(145deg, #0d0d0d, #151515, #211a10);
}

.gallery-small.warm {
  background: linear-gradient(145deg, #2c2416, #17120c, #0f0d0a);
}

.gallery-quote {
  display: grid;
  place-items: end start;
  padding: 30px;
  background:
    linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url('https://tan-partridge-469165.hostingersite.com/wp-content/uploads/2026/05/Shapewear-Online-Shop.jpg') center/cover no-repeat;
}

.gallery-quote p {
  max-width: 16ch;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  line-height: 1.02;
}

.cta-section {
  padding-top: 116px;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.74fr);
  gap: 28px;
  padding: 34px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb), 0.22);
  border-radius: calc(var(--radius-xl) + 12px);
  background:
    radial-gradient(circle at top right, rgba(var(--champagne-rgb), 0.42), transparent 28%),
    linear-gradient(135deg, rgba(244, 217, 139, 0.96), rgba(255, 255, 255, 0.96)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(248, 244, 236, 0.94));
  color: var(--black);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

.cta-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  top: -52px;
  right: -48px;
  border-radius: 50%;
  border: 1px solid rgba(var(--gold-rgb), 0.28);
  box-shadow:
    inset 0 0 0 18px rgba(255, 255, 255, 0.16),
    0 0 0 1px rgba(var(--gold-rgb), 0.08);
}

.cta-card::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 38px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(var(--gold-rgb), 0.95);
  box-shadow:
    8px 10px 0 -1px rgba(var(--champagne-rgb), 0.9),
    20px 2px 0 -2px rgba(var(--gold-rgb), 0.8);
}

.cta-card .eyebrow {
  color: #8d6c14;
}

.cta-card p {
  color: rgba(17, 17, 17, 0.72);
}

.visit-card {
  display: grid;
  gap: 14px;
}

.visit-item {
  padding: 20px 22px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.56));
}

.visit-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(17, 17, 17, 0.54);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.booking-section {
  margin-top: 56px;
}

.booking-form-area {
  margin-top: 48px;
}

/* Premium CTA Section */
.cta-section {
  padding: 120px 0;
}

.cta-premium-container {
  position: relative;
  overflow: hidden;
  border-radius: 48px;
  background: #080808;
  border: 1px solid rgba(var(--gold-rgb), 0.24);
  box-shadow:
    0 24px 60px -12px rgba(0, 0, 0, 0.6),
    inset 0 0 40px rgba(var(--gold-rgb), 0.04);
}

.cta-glow-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 10% 20%, rgba(var(--gold-rgb), 0.08), transparent 40%);
  pointer-events: none;
}

.cta-sparkles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 30%, var(--gold), transparent),
    radial-gradient(1.5px 1.5px at 50% 70%, rgba(var(--gold-rgb), 0.6), transparent),
    radial-gradient(1px 1px at 80% 40%, var(--gold), transparent);
  background-size: 200px 200px;
  opacity: 0.2;
  pointer-events: none;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 720px;
}

/* Left Visual Column */
.cta-visual-col {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 80px 40px 80px 80px;
}

.cta-image-curve {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 460px;
  height: 110%;
  z-index: 0;
}

.cta-image-curve img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: ellipse(50% 100% at 0% 50%);
  filter: brightness(0.7) contrast(1.1);
}

.curve-border-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  clip-path: ellipse(50% 100% at 0% 50%);
  border-right: 2px solid var(--gold);
  filter: blur(2px) drop-shadow(0 0 12px var(--gold));
  pointer-events: none;
}

.cta-content-main {
  position: relative;
  z-index: 2;
  margin-top: auto;
  margin-bottom: auto;
  padding-left: 0;
}

.cta-headline {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.5rem, 4.5vw, 4.2rem);
  line-height: 1;
  margin-bottom: 24px;
  color: white;
}

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

.cta-subtext {
  max-width: 520px;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

.cta-button-group {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.button-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: 100px;
  font-family: var(--main-font);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  background: transparent;
  transition: all 0.3s ease;
}

.button-outline-gold:hover {
  background: rgba(var(--gold-rgb), 0.1);
  color: var(--white) !important;
  border-color: var(--white) !important;
  transform: translateY(-2px);
}

.button-outline-gold:hover svg {
  color: var(--white) !important;
  stroke: var(--white) !important;
}

.cta-benefits {
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 40px;
}

.benefit-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

.benefit-icon {
  color: var(--gold);
  opacity: 0.8;
}

.benefit-item span {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  max-width: 80px;
}

/* Right Contact Column */
.cta-contact-col {
  padding: 80px 80px 80px 40px;
  background: rgba(255, 255, 255, 0.01);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: block;
  margin-bottom: 8px;
}

.footer-links a:hover {
  color: var(--gold) !important;
  padding-left: 5px;
}

.contact-card:hover {
  background: rgba(var(--gold-rgb), 0.04);
  border-color: rgba(var(--gold-rgb), 0.3);
  transform: translateX(6px);
}

.contact-card.highlight {
  border-color: rgba(var(--gold-rgb), 0.4);
  background: linear-gradient(90deg, rgba(var(--gold-rgb), 0.05), transparent);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.card-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.card-value {
  font-size: 0.95rem;
  color: white;
  font-weight: 500;
}

/* Map Card */
.map-card-container {
  margin-top: auto;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb), 0.2);
}

.map-visual {
  height: 200px;
  background: #111;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Mock Map Background */
.map-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-marker {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 10px var(--gold));
}

.map-text {
  position: absolute;
  bottom: 20px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}

.map-text strong {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: white;
}

.map-text span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.5);
}

.map-line {
  position: absolute;
  top: 50%;
  right: -50px;
  width: 400px;
  height: 2px;
  background: var(--gold);
  transform: rotate(-25deg);
  opacity: 0.4;
}

.map-bottom-bar {
  background: var(--gold);
  padding: 12px;
  text-align: center;
  color: black;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.map-bottom-bar span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* --- Global Button Hover Fixes --- */
.button-gold:hover {
  background: linear-gradient(135deg, #fff2b3, #d4af37) !important;
  color: #1a1a1a !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(var(--gold-rgb), 0.4) !important;
}

.button-outline:hover {
  background: rgba(var(--gold-rgb), 0.1) !important;
  color: var(--gold) !important;
  border-color: var(--gold) !important;
  transform: translateY(-3px);
}

.hero-actions .button:hover {
  color: inherit;
  /* Prevent theme overrides */
}

/* Responsive CTA */
@media (max-width: 1080px) {
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .cta-image-curve {
    width: 100%;
    height: 300px;
    top: 0;
    left: 0;
  }

  .cta-image-curve img {
    clip-path: ellipse(100% 50% at 50% 0%);
  }

  .curve-border-glow {
    clip-path: ellipse(100% 50% at 50% 0%);
    border-right: none;
    border-bottom: 2px solid var(--gold);
  }

  .cta-content-main {
    padding-left: 0;
    padding-top: 180px;
    text-align: center;
  }

  .cta-subtext {
    margin-inline: auto;
  }

  .cta-button-group {
    justify-content: center;
  }

  .cta-benefits {
    justify-content: center;
  }

  .cta-contact-col {
    padding: 60px;
  }
}

@media (max-width: 640px) {

  .cta-visual-col,
  .cta-contact-col {
    padding: 32px;
  }

  .cta-content-main {
    padding-top: 200px;
  }

  .cta-button-group {
    flex-direction: column;
  }

  .cta-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .benefit-item span {
    max-width: none;
  }
}

.site-footer {
  padding: 100px 0 60px;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  border-top: 1px solid rgba(var(--gold-rgb), 0.14);
}

.footer-inner {
  display: grid;
  gap: 80px;
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-description {
  max-width: 460px;
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.85;
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.footer-nav-col h4 {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  color: var(--champagne);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-nav-col .footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-nav-col p {
  line-height: 1.6;
  opacity: 0.8;
}

.footer-bottom {
  display: flex !important;
  width: 100% !important;
  justify-content: space-between !important;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.85rem;
}

.footer-bottom p {
  opacity: 0.5;
  margin: 0;
}

.footer-developer {
  margin-left: auto;
  /* Force to right if container expands */
}

.footer-developer a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  opacity: 0.35;
  transition: opacity 0.3s;
}

.footer-developer a:hover {
  opacity: 1;
}

.footer-logo {
  max-width: 100px;
  height: auto;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.reviews-section {
  padding: 60px 0;
  background: #050505;
  border-top: 1px solid rgba(var(--gold-rgb), 0.1);
}

.reviews-container {
  max-width: var(--content-width);
  margin: 0 auto;
}

.map-card-container {
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.map-card-container:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(var(--gold-rgb), 0.2);
}

.map-card-container:hover .map-marker {
  transform: scale(1.2);
  filter: drop-shadow(0 0 15px var(--gold));
}

@media (max-width: 1080px) {

  .specialty-section,
  .cta-card,
  .section-heading.split,
  .gallery-composition {
    grid-template-columns: 1fr;
  }

  .hero-section {
    min-height: auto;
    padding-top: 54px;
  }

  .hero-slider,
  .hero-content {
    min-height: 640px;
  }

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

  .service-card,
  .service-card.feature {
    grid-column: auto;
  }

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

  .gallery-tall {
    min-height: 460px;
  }

  .gallery-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-quote {
    min-height: 480px;
  }
}

@media (max-width: 760px) {
  :root {
    --content-width: min(100vw - 28px, 100%);
  }

  .topbar {
    flex-wrap: wrap;
    gap: 10px 18px;
    padding-top: 14px;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .site-header {
    top: 8px;
    padding: 16px 24px;
    border-radius: 28px;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;
    display: grid;
    gap: 14px;
    padding: 18px;
    border: 1px solid rgba(var(--gold-rgb), 0.16);
    border-radius: 28px;
    background: rgba(9, 9, 9, 0.96);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      visibility 180ms ease,
      transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-header.is-open .nav-toggle span:first-child {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-open .nav-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-section {
    gap: 28px;
  }

  .hero-slider {
    min-height: 600px;
  }

  .hero-content {
    width: 100%;
    max-width: none;
    min-height: 600px;
    padding: 60px 24px 80px;
    text-align: center;
    align-items: center;
  }

  h1 {
    max-width: none;
    font-size: clamp(2rem, 8vw, 3rem);
    text-align: center;
    padding-right: 0;
  }

  .hero-text {
    margin-inline: auto;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  h2 {
    font-size: clamp(1.9rem, 4.6vw, 2.5rem);
  }

  main>section {
    padding: 43px 0;
  }

  .hero-metrics,
  .services-grid,
  .trust-grid,
  .gallery-stack,
  .service-features-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-metrics>div,
  .service-card,
  .trust-card {
    min-height: auto;
  }

  .hero-text {
    max-width: 24rem;
    font-size: 0.88rem;
  }

  .section-light {
    padding-inline: 24px;
  }

  .cta-card {
    padding: 24px;
  }

  .site-footer {
    padding: 40px 0 30px;
  }

  .footer-logo {
    max-width: 80px;
    margin-inline: auto;
  }

  .footer-top {
    text-align: center;
  }

  .reviews-section {
    padding: 40px 0;
  }

  .booking-section {
    margin-top: 30px;
  }

  .cta-headline {
    font-size: 2.2rem;
    padding: 0 10px;
  }

  .cta-content-main {
    padding-top: 72px;
  }

  .footer-inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
    text-align: center;
  }

  .footer-links a,
  .footer-nav-col a,
  .footer-bottom a {
    color: rgba(255, 255, 255, 0.85) !important;
  }

  .footer-links a:hover {
    color: var(--gold) !important;
  }

  .footer-nav-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-nav-col .footer-links {
    align-items: center;
  }

  .footer-description {
    margin-inline: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/* Inner Pages Styles - Refined & Balanced */
.inner-hero-advanced {
  position: relative;
  padding: 100px 0 60px;
  border-bottom: 1px solid rgba(var(--gold-rgb), 0.1);
  text-align: center;
}

.inner-hero-container {
  max-width: var(--content-width);
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 0 24px;
}

.inner-hero-text-col {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.inner-hero-text-col h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  line-height: 1.1;
  margin: 20px 0;
  letter-spacing: -0.01em;
  max-width: 20ch;
  /* Increased to avoid unnecessary 3 lines */
}

.inner-hero-text-col .hero-text {
  font-size: 1.1rem;
  line-height: 1.6;
  opacity: 0.75;
  max-width: 65ch;
  margin: 0 auto;
}

/* Booking Portal - No restrictive padding */
.booking-portal-section {
  padding: 0 0 100px;
  background: transparent !important;
}

.portal-container {
  max-width: 1400px;
  /* Wider for LatePoint */
  margin: 0 auto;
  padding: 0 40px;
}

.latepoint-integration {
  background: transparent !important;
  border: none !important;
  border-radius: 0;
  padding: 0;
  box-shadow: none !important;
  overflow: visible;
}

/* Fix for LatePoint widget styles when embedded */
.os-booking-wrapper,
.latepoint-w-container {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

/* Contact Page Enhancements */
.contact-grid-section {
  padding: 100px 0;
}

.contact-container {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0 24px;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-feature-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-decoration: none;
}

.contact-feature-card:hover {
  background: rgba(var(--gold-rgb), 0.08);
  border-color: rgba(var(--gold-rgb), 0.3);
  transform: translateY(-5px);
}

.card-icon-gold {
  width: 60px;
  height: 60px;
  background: rgba(var(--gold-rgb), 0.15);
  color: var(--gold);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 6px;
  font-weight: 600;
}

.card-value {
  font-size: 1.2rem;
  color: white;
  line-height: 1.4;
  font-family: var(--serif);
}

.contact-form-container {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  border-radius: 40px;
  padding: 60px;
}

.form-header h3 {
  font-size: 2.2rem;
  margin-bottom: 12px;
  color: var(--gold);
}

.luxury-contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.luxury-contact-form .form-group {
  margin-bottom: 32px;
}

.luxury-contact-form label {
  font-weight: 500;
  margin-bottom: 12px;
}

.luxury-contact-form input,
.luxury-contact-form select,
.luxury-contact-form textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 24px;
}

/* Map Section */
.contact-map-section {
  padding: 0 24px 80px;
}

.map-full-container {
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb), 0.1);
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .contact-methods-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

@media (max-width: 760px) {
  .inner-hero-advanced {
    padding: 140px 0 80px;
    text-align: center;
  }

  .inner-hero-text-col {
    margin: 0 auto;
  }

  .portal-container {
    padding: 0 16px;
  }

  .latepoint-integration {
    border-radius: 24px;
  }

  .contact-form-container {
    padding: 40px 24px;
    border-radius: 24px;
  }

  .luxury-contact-form .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* Service Detail Template Styles */
.service-detail-main {
  padding-top: 40px;
}

.service-hero {
  padding: 40px 0;
}

.service-hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: rgba(18, 18, 18, 0.4);
  border-radius: 44px;
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb), 0.15);
}

.service-hero-content {
  padding: 60px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb span {
  display: block;
  width: 100%;
  margin-top: 4px;
  color: var(--white);
  font-weight: 500;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

.service-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  color: var(--white);
}

.service-tagline {
  font-size: 1.1rem;
  color: var(--champagne);
  opacity: 0.8;
}

.service-hero-image {
  position: relative;
  height: 100%;
  min-height: 400px;
}

.service-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient overlay to blend image into content */
.service-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18, 18, 18, 1) 0%, rgba(18, 18, 18, 0.7) 15%, transparent 40%);
  pointer-events: none;
}

.service-content-section {
  padding: 48px 0;
}

.service-grid-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 2px;
  background: var(--gold);
}

.wp-content-area {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.service-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.feature-item {
  background: rgba(255, 255, 255, 0.03);
  padding: 30px;
  border-radius: 24px;
  border: 1px solid rgba(var(--gold-rgb), 0.1);
  text-align: center;
}

.feature-icon {
  font-size: 2rem;
  margin-bottom: 15px;
  display: block;
}

.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--gold);
}

.feature-item p {
  font-size: 0.9rem;
  opacity: 0.7;
}

/* Sidebar & Booking Card */
.booking-card {
  background: rgba(18, 18, 18, 0.8);
  border: 1px solid rgba(var(--gold-rgb), 0.3);
  border-radius: 32px;
  padding: 30px;
  position: sticky;
  top: 100px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(20px);
}

.booking-card h3 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  text-align: center;
}

.booking-fake-calendar {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 25px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-weight: 600;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.7rem;
  opacity: 0.5;
  margin-bottom: 10px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  text-align: center;
}

.calendar-grid span {
  font-size: 0.8rem;
  padding: 8px 0;
  border-radius: 8px;
  transition: all 0.2s;
}

.calendar-grid span.is-today {
  background: var(--gold);
  color: var(--black);
  font-weight: bold;
}

.time-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 20px;
}

.time-slots span {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 10px;
  text-align: center;
  border-radius: 10px;
  font-size: 0.85rem;
}

.time-slots span.selected {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.1);
}

.booking-trigger-area {
  margin-top: 20px;
  text-align: center;
}

/* Fix Request Appointment Button */
.booking-trigger-area .button-gold {
  color: #000000 !important;
  font-weight: 600 !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none !important;
  outline: none !important;
  border-radius: 100px !important;
  /* Rounded capsule shape */
  box-shadow: 0 10px 25px rgba(var(--gold-rgb), 0.3) !important;
}

.booking-note {
  font-size: 0.8rem;
  opacity: 0.5;
  margin-bottom: 10px;
}

.service-meta-box {
  margin-top: 25px;
}

.meta-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
}

.meta-item .label {
  opacity: 0.6;
  font-size: 0.9rem;
}

.meta-item .value {
  font-weight: 600;
  color: var(--gold);
}

.border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Base Grid Styles for Service Features (Desktop) */
.service-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3 columns on PC */
  gap: 20px;
  margin-top: 60px;
  width: 100%;
}

.feature-item {
  text-align: center;
  border: 1px solid rgba(var(--gold-rgb), 0.12);
  padding: 32px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-item:hover {
  border-color: rgba(var(--gold-rgb), 0.3);
  background: rgba(var(--gold-rgb), 0.03);
}

.feature-icon {
  font-size: 32px;
  margin-bottom: 15px;
}

.feature-item h3 {
  margin-bottom: 10px;
  font-weight: 500;
}

.feature-item p {
  font-size: 0.95rem;
  opacity: 0.8;
}

@media (max-width: 991px) {
  .service-hero-container {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .service-hero-content {
    padding: 40px 30px;
    text-align: center;
  }

  .breadcrumb {
    justify-content: center;
    display: flex;
    gap: 5px;
  }

  .service-hero-image {
    min-height: 300px;
  }

  .service-hero-image::after {
    background: linear-gradient(0deg, rgba(18, 18, 18, 1) 0%, rgba(18, 18, 18, 0.8) 25%, transparent 60%);
  }

  .service-grid-container {
    grid-template-columns: 1fr !important;
    gap: 40px;
    width: 100% !important;
    overflow-x: hidden !important;
  }

  .service-sidebar {
    order: -1;
    /* Move booking card to top on mobile */
    width: 100% !important;
  }

  .service-features-grid {
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 480px !important;
    margin: 40px auto 0 !important;
    /* Center the whole grid on mobile */
    gap: 30px !important;
    justify-items: center !important;
  }

  .feature-item {
    width: 100% !important;
    text-align: center !important;
  }

  .booking-card {
    padding: 24px 16px !important;
    border-radius: 24px !important;
    position: relative !important;
    top: 0 !important;
    width: 100% !important;
  }

  .booking-fake-calendar {
    padding: 15px !important;
  }
}



/* ACF: Results Gallery Styles */
.service-results-section {
  margin-top: 60px;
}

.results-grid-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2 columns on mobile by default, will override if needed */
  gap: 15px;
  margin-top: 30px;
}

@media (min-width: 768px) {
  .results-grid-gallery {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
  }
}

.result-image-wrapper {
  aspect-ratio: 1/1;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  transition: transform 0.3s ease;
}

.result-image-wrapper:hover {
  transform: scale(1.03);
  border-color: var(--gold);
}

.result-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ACF: FAQ Styles */
.service-faq-section {
  margin-top: 80px;
}

.faq-accordion-wrapper {
  margin-top: 30px;
  display: grid;
  gap: 15px;
}

.faq-item-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(var(--gold-rgb), 0.1);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 1.1rem;
  font-family: inherit;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item-box.is-active {
  border-color: rgba(var(--gold-rgb), 0.4);
  background: rgba(var(--gold-rgb), 0.05);
}

.faq-item-box.is-active .faq-question {
  color: var(--gold);
}

.faq-question:hover {
  background: rgba(var(--gold-rgb), 0.08);
}

.faq-question .arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

.faq-item-box.is-active .faq-question .arrow {
  transform: rotate(-135deg);
}

.faq-answer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
  padding: 0 28px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.faq-item-box.is-active .faq-answer-content {
  max-height: 1000px;
  padding-bottom: 22px;
  transition: max-height 0.3s cubic-bezier(1, 0, 1, 0);
}

/* ACF: Custom Form Styles */
.service-custom-form-section {
  margin-top: 48px;
}

.form-card-wide {
  background: rgba(var(--gold-rgb), 0.03);
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  border-radius: 32px;
  padding: 40px;
}

@media (max-width: 768px) {
  .form-card-wide {
    padding: 24px 8px;
    border-radius: 24px;
  }

  .service-custom-form-section .section-title {
    font-size: 1.5rem;
    text-align: center;
    width: 100%;
  }
}

.form-embed-area {
  margin-top: 30px;
  width: 100%;
}

.form-embed-area .latepoint-wrapper,
.form-embed-area .latepoint-wraper {
  max-width: 100% !important;
  margin: 0 auto;
}



/* Services Page Refined Styles */
.services-main {
  overflow-x: hidden;
}

.services-grid-section {
  padding: 100px 0 140px;
  background: linear-gradient(180deg, transparent 0%, rgba(var(--gold-rgb), 0.03) 100%);
}

.services-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 40px !important;
  max-width: 1240px !important;
  margin: 0 auto !important;
  padding: 0 20px !important;
}

.service-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(var(--gold-rgb), 0.1);
  border-radius: 40px;
  padding: 50px 40px;
  text-decoration: none !important;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.service-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.5s ease;
  transform-origin: right;
}

.service-card:hover {
  transform: translateY(-15px);
  border-color: rgba(var(--gold-rgb), 0.4);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.service-card:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(var(--gold-rgb), 0.1);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 30px;
  transition: all 0.5s ease;
}

.service-card:hover .service-icon {
  background: var(--gold);
  color: var(--black);
  transform: rotateY(360deg);
}

.service-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 18px;
  font-family: var(--font-main);
  line-height: 1.3;
}

.service-card p {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* Global Booking Section Styling */
.global-booking-section {
  padding: 140px 25px !important;
}

/* --- Enhanced Branding & Sparkles (Luxury Deep Green Edition - High Visibility) --- */
body {
  background-color: #040807;
  /* Deepest Forest Green/Black */
  background-image:
    radial-gradient(circle at 50% 50%, rgba(var(--gold-rgb), 0.1) 0%, transparent 80%),
    url('data:image/svg+xml,<svg width="400" height="400" viewBox="0 0 400 400" xmlns="http://www.w3.org/2000/svg"><g fill="white" fill-opacity="0.2"><circle cx="20" cy="30" r="1"/><circle cx="150" cy="80" r="0.5"/><circle cx="280" cy="150" r="1"/><circle cx="350" cy="220" r="0.5"/><circle cx="50" cy="320" r="1"/><circle cx="200" cy="380" r="0.5"/><circle cx="110" cy="180" r="1"/></g><g fill="%23d4af37" fill-opacity="0.55"><circle cx="80" cy="50" r="2"/><circle cx="230" cy="120" r="1.5"/><circle cx="310" cy="280" r="2.2"/><circle cx="120" cy="340" r="1.5"/><circle cx="380" cy="40" r="2"/><circle cx="250" cy="250" r="1.5"/><circle cx="50" cy="50" r="1"/><circle cx="180" cy="300" r="2"/><circle cx="320" cy="60" r="1.2"/><circle cx="60" cy="160" r="1.8"/></g></svg>');
  background-attachment: fixed;
}

.brand {
  text-shadow: 0 0 15px rgba(var(--gold-rgb), 0.4);
  transition: all 0.5s ease;
}

.brand:hover {
  text-shadow: 0 0 25px rgba(var(--gold-rgb), 0.7);
  transform: scale(1.02);
}

.brand-script {
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  /* Or similar script font */
  font-style: italic;
}

.brand-main {
  letter-spacing: 0.15em;
  filter: drop-shadow(0 0 8px rgba(var(--gold-rgb), 0.3));
}

.site-glow-top {
  background: radial-gradient(circle at top center, rgba(var(--gold-rgb), 0.15) 0%, transparent 70%);
}

/* Specialized Features Grid (Home) */
.features-section {
  padding: 100px 20px;
  position: relative;
  z-index: 2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1240px;
  margin: 60px auto 0;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(var(--gold-rgb), 0.1);
  border-radius: 40px;
  padding: 60px 40px;
  text-align: left;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.feature-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.feature-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(var(--gold-rgb), 0.1);
  border: 1px solid rgba(var(--gold-rgb), 0.3);
  border-radius: 20px;
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.feature-card h3 {
  font-family: var(--font-secondary);
  font-size: 1.8rem;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.2;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  line-height: 1.6;
}

@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .feature-card {
    padding: 40px 30px;
  }
}

.booking-form-container {
  max-width: 900px;
  margin: 60px auto 0;
  background: #ffffff;
  border-radius: 40px;
  padding: 10px;
  box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);
  position: relative;
}

.booking-form-container .latepoint-w {
  border-radius: 35px !important;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr !important;
  }

  .service-card {
    padding: 40px 30px;
  }
}


/* Reset main padding to allow full bleed hero */
main {
  padding-top: 0 !important;
}

/* The Full-Screen Immersive Hero */
.immersive-hero {
  position: relative;
  width: 100vw !important;
  margin-left: calc(-50vw + 50%) !important;
  height: 95vh;
  /* Restored balance */
  min-height: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background-color: #050505;
  margin-top: 0;
  padding: 0 5% 40px;
  /* Balanced padding */
}

.video-background-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.immersive-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.immersive-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.95) 100%);
  /* Even darker */
  z-index: 2;
}

.immersive-content {
  position: relative;
  z-index: 3;
  text-align: center;
  /* Centered */
  padding: 0;
  max-width: 1200px;
  /* Increased width */
  margin: auto 0;
  /* Perfectly centered and balanced */
}

.hero-brand-tag {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  opacity: 0;
  animation: stitchFadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.2s;
}

.immersive-title {
  color: #fff !important;
  font-family: 'Cormorant Garamond', serif !important;
  font-size: clamp(2.8rem, 6.5vw, 5.8rem) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.01em !important;
  margin-bottom: 25px !important;
  font-weight: 300 !important;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
  opacity: 0;
  max-width: 1400px !important;
  /* Increased width for 3 lines */
  margin-left: auto !important;
  margin-right: auto !important;
  animation: stitchFadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.4s;
}

.immersive-subtitle {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: clamp(1rem, 1.8vw, 1.35rem) !important;
  line-height: 1.6 !important;
  max-width: 800px !important;
  /* Increased width */
  margin: 0 auto 45px !important;
  opacity: 0;
  animation: stitchFadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.6s;
}

.immersive-actions {
  display: flex;
  gap: 25px;
  justify-content: center;
  /* Centered */
  opacity: 0;
  animation: stitchFadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards 0.8s;
}

@keyframes stitchFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn-glow {
  background: var(--gold);
  color: #000 !important;
  padding: 18px 20px;
  min-width: 260px;
  /* Equal size */
  text-align: center;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  box-shadow: 0 0 25px rgba(216, 183, 90, 0.4);
  transition: all 0.3s ease;
}

.btn-glow:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 35px rgba(216, 183, 90, 0.7);
  background: #f5d978;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.1);
  /* Subtle glass effect */
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* Softer border */
  color: #fff !important;
  padding: 18px 20px;
  min-width: 260px;
  /* Equal size */
  text-align: center;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.9rem;
  backdrop-filter: blur(8px);
  /* Increased blur */
  -webkit-backdrop-filter: blur(8px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.2);
/* --- WooCommerce Premium Aesthetic --- */
.woocommerce-page {
  background-color: transparent !important;
}

.woocommerce div.product {
  padding: 60px 0;
  max-width: 1200px;
  margin: 0 auto;
}

/* Product Gallery */
.woocommerce div.product div.images {
  margin-bottom: 40px;
}

.woocommerce div.product div.images img {
  border-radius: 32px;
  border: 1px solid rgba(var(--gold-rgb), 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.5s ease;
}

.woocommerce div.product div.images img:hover {
  transform: scale(1.02);
}

/* Product Title & Price */
.woocommerce div.product .product_title {
  font-family: var(--serif) !important;
  color: var(--white) !important;
  font-size: 3rem !important;
  margin-bottom: 20px !important;
  letter-spacing: -0.02em;
}

.woocommerce div.product p.price, 
.woocommerce div.product span.price {
  color: var(--gold) !important;
  font-family: var(--serif) !important;
  font-size: 1.8rem !important;
  font-weight: 300 !important;
}

/* Form Fields & Variations */
.woocommerce div.product form.cart .variations label {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.8rem;
}

.woocommerce div.product form.cart select,
.woocommerce-page input.input-text,
.woocommerce-page textarea {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(var(--gold-rgb), 0.2) !important;
  color: white !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  font-family: var(--sans) !important;
  transition: all 0.3s ease;
}

.woocommerce div.product form.cart select:focus,
.woocommerce-page input.input-text:focus,
.woocommerce-page textarea:focus {
  border-color: var(--gold) !important;
  background: rgba(255, 255, 255, 0.08) !important;
  outline: none;
  box-shadow: 0 0 15px rgba(var(--gold-rgb), 0.2);
}

/* Add to Cart Button */
.woocommerce div.product form.cart .button {
  background: linear-gradient(135deg, var(--gold), #b38f00) !important;
  color: #121212 !important;
  font-family: var(--sans) !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.15em !important;
  padding: 18px 40px !important;
  border-radius: 999px !important;
  border: none !important;
  margin-top: 20px !important;
  transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1) !important;
  box-shadow: 0 10px 25px rgba(var(--gold-rgb), 0.3) !important;
}

.woocommerce div.product form.cart .button:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 15px 35px rgba(var(--gold-rgb), 0.5) !important;
  background: linear-gradient(135deg, #fff2b3, var(--gold)) !important;
}

/* Tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin-bottom: 30px !important;
  display: flex;
  gap: 30px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  color: rgba(255, 255, 255, 0.5) !important;
  font-family: var(--sans) !important;
  font-weight: 500 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  font-size: 0.9rem !important;
  padding: 10px 0 !important;
  position: relative;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: var(--gold) !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
}

.woocommerce div.product .woocommerce-tabs .panel {
  background: rgba(255, 255, 255, 0.03) !important;
  border: 1px solid rgba(var(--gold-rgb), 0.1) !important;
  border-radius: 24px !important;
  padding: 40px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.8 !important;
}

.woocommerce div.product .woocommerce-tabs h2 {
  color: var(--white) !important;
  font-family: var(--serif) !important;
  margin-bottom: 20px !important;
}

/* Breadcrumbs */
.woocommerce-breadcrumb {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 0.8rem !important;
  margin-bottom: 30px !important;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.woocommerce-breadcrumb a {
  color: rgba(255, 255, 255, 0.6) !important;
  text-decoration: none !important;
}

.woocommerce-breadcrumb a:hover {
  color: var(--gold) !important;
}

/* Responsive */
@media (max-width: 768px) {
  .woocommerce div.product {
    padding: 30px 20px;
  }
  
  .woocommerce div.product .product_title {
    font-size: 2rem !important;
    text-align: center;
  }
  
  .woocommerce div.product p.price {
    text-align: center;
  }
  
  .woocommerce div.product .woocommerce-tabs ul.tabs {
    justify-content: center;
    gap: 15px;
  }
}
  border-color: rgba(255, 255, 255, 0.8);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

@keyframes stitchFadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .transparent-header .header-container {
    padding: 10px 20px;
  }

  .immersive-title {
    font-size: 3rem !important;
  }

  .immersive-actions {
    flex-direction: column;
    width: 100%;
    align-items: center;
  }

  .btn-glow,
  .btn-outline {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .signature-gallery-section .hero-content {
    margin-left: 0;
    padding: 30px !important;
  }
}

/* Submenu Styles */
.nav-item.has-submenu {
  position: relative;
  display: flex;
  align-items: center;
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: rgba(10, 10, 10, 0.98);
  border: 1px solid rgba(216, 183, 90, 0.15);
  border-radius: 16px;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1000;
  padding: 15px 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
}

.nav-item.has-submenu:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
}

.submenu a {
  display: block !important;
  padding: 12px 25px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  text-decoration: none !important;
  font-size: 0.85rem !important;
  letter-spacing: 0.05em !important;
  text-transform: none !important;
  transition: all 0.3s ease !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03) !important;
  margin: 0 !important;
  text-align: left !important;
}

.submenu a:last-child {
  border-bottom: none !important;
}

.submenu a:hover {
  background: rgba(216, 183, 90, 0.08) !important;
  color: #d8b75a !important;
  padding-left: 32px !important;
}

.submenu-arrow {
  font-size: 10px;
  margin-left: 6px;
  opacity: 0.7;
}