@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Montserrat:wght@300;400;500;600;700;800&family=Dancing+Script:wght@600;700&display=swap');

:root {
  --black: #080808;
  --black-2: #0f0f0f;
  --black-3: #141414;
  --gold: #c9a84c;
  --gold-light: #e8d08a;
  --gold-dim: rgba(201,168,76,0.15);
  --teal: #4ecdc4;
  --teal-dim: rgba(78,205,196,0.15);
  --white: #ffffff;
  --off-white: #f5f0e8;
  --gray: #888888;
  --gray-light: #bbbbbb;
  --border-gold: rgba(201,168,76,0.3);
  --border-teal: rgba(78,205,196,0.3);
  --font-script: 'Dancing Script', cursive;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  --max-width: 1200px;
  --header-height: 80px;
}

/* ─── Reset ─────────────────────────────────────────── */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; font-size:16px; }
body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width:100%; display:block; }
a { text-decoration:none; color:inherit; }
ul { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }

/* ─── Utilities ──────────────────────────────────────── */
.container { max-width:var(--max-width); margin:0 auto; padding:0 24px; }
.section-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}
.gold-text { color: var(--gold); }
.teal-text { color: var(--teal); }
.script-text { font-family: var(--font-script); }
.gradient-text {
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.divider-gold {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 16px auto;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-gold {
  border: 1.5px solid var(--gold);
  color: var(--gold);
  background: transparent;
}
.btn-gold:hover {
  background: var(--gold);
  color: var(--black);
}
.btn-gold-fill {
  background: var(--gold);
  color: var(--black);
  border: 1.5px solid var(--gold);
}
.btn-gold-fill:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-teal {
  border: 1.5px solid var(--teal);
  color: var(--teal);
  background: transparent;
}
.btn-teal:hover {
  background: var(--teal);
  color: var(--black);
}
.btn svg, .btn .icon { width:16px; height:16px; flex-shrink:0; }

/* ─── Header ─────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
}
.header-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon {
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-icon svg { width:28px; height:28px; }
.logo-icon img { width:62px; height:62px; object-fit:contain; border-radius: 50%; }
.logo-text { line-height: 1; }
.logo-royal {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--teal);
  display: block;
  line-height: 1;
}
.logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  display: block;
  margin-top: 2px;
}
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.header-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0; right: 0;
  background: rgba(8,8,8,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-gold);
  padding: 24px;
  z-index: 999;
  flex-direction: column;
  gap: 20px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-gold);
  transition: color 0.3s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--gold); }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ─── Page Offset ─────────────────────────────────────── */
.page-top { padding-top: var(--header-height); }

/* ─── Hero ────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 60px 0 40px;
  background:
    radial-gradient(ellipse 60% 80% at 70% 50%, rgba(201,168,76,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 30% 50%, rgba(78,205,196,0.03) 0%, transparent 60%),
    var(--black);
}
.hero-deco {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 55%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-content {}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title .line2 {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 1rem;
  color: var(--gray-light);
  margin-bottom: 24px;
}
.hero-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.hero-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--gray-light);
}
.check-icon {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
}
.check-icon svg { width:10px; height:10px; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.btn-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  transition: all 0.3s;
}
.btn-phone:hover { border-color: var(--teal); color: var(--teal); }
.btn-phone .phone-icon { color: var(--teal); }
.btn-phone span { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.05em; }

/* Hero Portrait */
.hero-visual { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.portrait-frame {
  position: relative;
  width: clamp(260px, 38vw, 420px);
  height: clamp(260px, 38vw, 420px);
}
.portrait-ring {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  animation: spin-ring 20s linear infinite;
}
.portrait-ring-2 {
  position: absolute;
  inset: -24px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
}
@keyframes spin-ring {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.portrait-glow {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow:
    0 0 40px rgba(201,168,76,0.25),
    0 0 80px rgba(201,168,76,0.1),
    inset 0 0 40px rgba(0,0,0,0.5);
}
.portrait-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--gold);
  background: linear-gradient(135deg, var(--black-3) 0%, #1a1410 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.portrait-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
  flex-direction: column;
  gap: 12px;
  color: var(--border-gold);
  font-size: 0.75rem;
  text-align: center;
  padding: 20px;
}
.hero-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 100%;
}
.thumb {
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
  background: var(--black-3);
}
.thumb img { width:100%; height:100%; object-fit:cover; }
.thumb-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1610, #0f0f0f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border-gold);
  font-size: 0.6rem;
}

/* ─── Features Bar ────────────────────────────────────── */
.features-bar {
  background: var(--black-2);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 24px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 24px;
  border-right: 1px solid var(--border-gold);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  color: var(--gold);
}
.feature-icon svg { width:100%; height:100%; }
.feature-text {}
.feature-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.feature-desc {
  font-size: 0.72rem;
  color: var(--gray);
}

/* ─── Section Shared ──────────────────────────────────── */
.section { padding: 90px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
}

/* ─── About ───────────────────────────────────────────── */
.about-section {
  padding: 90px 0;
  position: relative;
  background:
    radial-gradient(ellipse 50% 80% at 0% 50%, rgba(78,205,196,0.03) 0%, transparent 60%),
    var(--black);
}
.about-inner {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.about-logo-wrap {
  position: relative;
  width: 180px;
  flex-shrink: 0;
}
.about-logo-outer {
  width: 180px; height: 180px;
  border-radius: 50%;
  border: 1.5px solid var(--border-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: radial-gradient(circle, rgba(78,205,196,0.08) 0%, transparent 70%);
  box-shadow: 0 0 30px rgba(78,205,196,0.15), 0 0 60px rgba(78,205,196,0.05);
}
.about-logo-inner {
  width: 160px; height: 160px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black-2);
  overflow: hidden;
}
.about-logo-inner img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.about-logo-text {
  text-align: center;
  line-height: 1;
}
.about-logo-r {
  font-family: var(--font-script);
  font-size: 3rem;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}
.about-logo-crown-small { color: var(--gold); font-size: 1rem; display: block; margin-bottom: -4px; }
.about-heading {}
.about-heading .section-label { text-align: left; }
.about-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0;
}
.about-headline .italic { font-style: italic; }
.about-headline .script {
  font-family: var(--font-script);
  font-weight: 600;
  color: var(--gold);
}
.about-body { font-size: 0.9rem; color: var(--gray-light); line-height: 1.8; }
.about-signature {
  font-family: var(--font-script);
  font-size: 1.3rem;
  color: var(--teal);
  margin: 20px 0 16px;
  display: block;
}
.about-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--gray);
}
.about-location svg { color: var(--gold); flex-shrink:0; }

/* ─── Services ────────────────────────────────────────── */
.services-section {
  padding: 90px 0;
  background: var(--black-2);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.service-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--black-3);
  border: 1px solid var(--border-gold);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: 0 8px 30px rgba(201,168,76,0.15);
}
.service-img {
  aspect-ratio: 3/4;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #1a1610, #0f0f0f);
}
.service-img img { width:100%; height:100%; object-fit:cover; transition: transform 0.4s; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-badge {
  position: absolute;
  bottom: 10px; left: 10px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.85rem;
}
.service-info { padding: 14px 12px; }
.service-name {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 4px;
}
.service-price {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 4px;
}
.service-desc { font-size: 0.72rem; color: var(--gray); line-height: 1.5; }
.services-cta { text-align: center; margin-top: 40px; }

/* Services Page Extended */
.services-page-section { padding: 90px 0; }
.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-full-card {
  border-radius: 10px;
  overflow: hidden;
  background: var(--black-2);
  border: 1px solid var(--border-gold);
  transition: all 0.3s;
}
.service-full-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(201,168,76,0.15);
  transform: translateY(-4px);
}
.service-full-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1610, #0f0f0f);
}
.service-full-img img { width:100%; height:100%; object-fit:cover; }
.service-full-body { padding: 24px; }
.service-full-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.service-full-desc { font-size: 0.85rem; color: var(--gray-light); line-height: 1.7; margin-bottom: 16px; }
.service-full-details {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.service-detail-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  color: var(--gray);
  background: rgba(255,255,255,0.05);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
}
.service-detail-tag svg { width:12px; height:12px; color: var(--gold); }
.service-note { font-size: 0.72rem; color: var(--gray); font-style: italic; margin-top: 8px; }

/* Category headers on services page */
.service-category-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-gold);
}
.service-category { margin-bottom: 60px; }

/* ─── Gallery ─────────────────────────────────────────── */
.gallery-section { padding: 90px 0; background: var(--black); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.gallery-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid transparent;
  transition: border-color 0.3s, transform 0.3s;
  background: var(--black-3);
  cursor: pointer;
}
.gallery-item:hover {
  border-color: var(--gold);
  transform: scale(1.02);
  z-index: 2;
  position: relative;
}
.gallery-item img { width:100%; height:100%; object-fit:cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-placeholder {
  width:100%; height:100%;
  background: linear-gradient(135deg, #1a1610, #0f0f0f);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border-gold);
  font-size: 0.6rem;
  text-align: center;
}
.gallery-cta { text-align: center; margin-top: 40px; }

/* Full Gallery Page */
.gallery-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gallery-full-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--border-gold);
  cursor: pointer;
  transition: all 0.3s;
  background: var(--black-3);
}
.gallery-full-item:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201,168,76,0.15);
}
.gallery-full-item img { width:100%; height:100%; object-fit:cover; }
.gallery-full-item:nth-child(3n+1) { grid-column: span 1; }
.gallery-full-item.large { grid-column: span 2; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; border-radius: 4px; border: 1px solid var(--border-gold); }
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
}
.lightbox-close:hover { background: var(--gold); }

/* ─── Policies ────────────────────────────────────────── */
.policies-bar {
  padding: 50px 0;
  background: var(--black-2);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.policies-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.policy-item {
  background: var(--black-3);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  padding: 20px 14px;
  text-align: center;
}
.policy-icon {
  width: 36px; height: 36px;
  margin: 0 auto 12px;
  color: var(--gold);
}
.policy-icon svg { width:100%; height:100%; }
.policy-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.policy-text { font-size: 0.72rem; color: var(--gray-light); line-height: 1.5; }

/* Policies Full Page */
.policies-page { padding: 90px 0; }
.policies-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.policy-full-card {
  background: var(--black-2);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 32px;
  display: flex;
  gap: 20px;
}
.policy-full-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  color: var(--gold);
}
.policy-full-icon svg { width:100%; height:100%; }
.policy-full-content {}
.policy-full-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.policy-full-text { font-size: 0.88rem; color: var(--gray-light); line-height: 1.7; }
.policy-full-text ul { list-style: disc; padding-left: 20px; margin-top: 8px; }
.policy-full-text li { margin-bottom: 4px; }

/* ─── CTA Section ─────────────────────────────────────── */
.cta-section {
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(201,168,76,0.05) 0%, transparent 50%, rgba(78,205,196,0.05) 100%),
    var(--black-2);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-content {}
.cta-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.cta-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.cta-note {
  font-size: 0.72rem;
  color: var(--gray);
  margin-top: 8px;
  text-align: center;
}

/* ─── Footer ──────────────────────────────────────────── */
.site-footer {
  background: var(--black-2);
  border-top: 1px solid var(--border-gold);
  padding: 60px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr auto;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand {}
.footer-logo { margin-bottom: 16px; }
.footer-tagline {
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  transition: all 0.3s;
}
.social-link:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.social-link svg { width:16px; height:16px; }
.footer-col-title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-gold);
}
.footer-col p, .footer-col address {
  font-size: 0.8rem;
  color: var(--gray-light);
  font-style: normal;
  line-height: 1.8;
}
.footer-col a {
  font-size: 0.8rem;
  color: var(--teal);
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--gold); }
.hours-table { width: 100%; }
.hours-table td {
  font-size: 0.78rem;
  color: var(--gray-light);
  padding: 2px 0;
}
.hours-table td:first-child {
  color: var(--gray);
  width: 60%;
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.hours-table .closed { color: var(--gray); }
.footer-badge {
  width: 150px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.badge-circle {
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 0 auto;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
  box-shadow: 0 0 20px rgba(201,168,76,0.12);
  padding: 0 14px;
}
.badge-circle .badge-icon { width: 36px; height: 36px; display: block; }
.badge-circle .badge-icon img { width: 100%; height: 100%; object-fit: contain; }
.badge-circle .badge-text {
  font-size: 0.52rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  line-height: 1.5;
}
.footer-bottom {
  border-top: 1px solid var(--border-gold);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.72rem;
  color: var(--gray);
}
.footer-links {
  display: flex;
  gap: 20px;
}
.footer-links a {
  font-size: 0.72rem;
  color: var(--gray);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }

/* ─── Page Hero (inner pages) ─────────────────────────── */
.page-hero {
  padding: 80px 0 60px;
  background:
    linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 50%),
    var(--black);
  border-bottom: 1px solid var(--border-gold);
  text-align: center;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 16px;
}
.page-hero-sub {
  font-size: 1rem;
  color: var(--gray-light);
  max-width: 600px;
  margin: 0 auto;
}

/* ─── Contact Page ────────────────────────────────────── */
.contact-section { padding: 90px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info {}
.contact-info-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.contact-detail {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-gold);
}
.contact-detail:first-of-type { border-top: 1px solid var(--border-gold); }
.contact-detail-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-detail-icon svg { width:20px; height:20px; }
.contact-detail-label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 0.9rem;
  color: var(--white);
}
.contact-detail-value a { color: var(--teal); }
.contact-detail-value a:hover { color: var(--gold); }
.contact-form-wrap {
  background: var(--black-2);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 40px;
}
.form-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-subtitle { font-size: 0.85rem; color: var(--gray-light); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gold);
  border-radius: 4px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: border-color 0.3s;
  outline: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select option { background: var(--black-2); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { font-size: 0.72rem; color: var(--gray); margin-top: 12px; }
.form-note a { color: var(--teal); }

/* ─── Scroll to top ───────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 500;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-light); }
.scroll-top svg { width:18px; height:18px; }

/* ─── Animations ──────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── Responsive ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .policies-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-badge { grid-column: span 2; }
  .about-inner { grid-template-columns: auto 1fr; gap: 40px; }
  .about-body { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-item:nth-child(2) { border-right: none; }
  .feature-item:nth-child(4) { border-right: none; }
  .gallery-grid { grid-template-columns: repeat(4, 1fr); }
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --header-height: 70px; }
  .main-nav, .header-cta .btn { display: none; }
  .hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 2; }
  .hero-visual { order: 1; }
  .portrait-frame { width: 240px; height: 240px; }
  .hero-checks { align-items: center; }
  .hero-actions { justify-content: center; }
  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-logo-wrap { margin: 0 auto; }
  .about-heading .section-label { text-align: center; }
  .about-body { display: block; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-full-grid { grid-template-columns: 1fr; }
  .policies-grid { grid-template-columns: repeat(2, 1fr); }
  .policies-full-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-badge { grid-column: 1; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-full-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full-item.large { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .hero-thumbnails { grid-template-columns: repeat(4, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-full-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border-gold); }
  .feature-item:last-child { border-bottom: none; }
  .policies-grid { grid-template-columns: 1fr 1fr; }
  .hero-thumbnails { grid-template-columns: repeat(2, 1fr); }
}
