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

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7A2F;
  --black: #080808;
  --dark: #0E0E0E;
  --dark2: #161616;
  --dark3: #1F1F1F;
  --white: #F5F0E8;
  --white2: #EDE8DC;
  --muted: #888878;
  --glass: rgba(255,255,255,0.04);
  --glass-border: rgba(201,168,76,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
}

/* ─── CUSTOM CURSOR ─────────────────────────── */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9999;
  pointer-events: none;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.1s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.15s ease, width 0.3s, height 0.3s, border-color 0.3s;
}
body:has(a:hover) .cursor-ring,
body:has(button:hover) .cursor-ring {
  width: 52px; height: 52px;
  border-color: var(--gold);
}

/* ─── ANIMATED BORDER ───────────────────────── */
@keyframes borderRotate {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes shimmer {
  0%   { opacity: 0.4; }
  50%  { opacity: 1; }
  100% { opacity: 0.4; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideRight {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-12px); }
}
@keyframes pulse-gold {
  0%, 100% { box-shadow: 0 0 20px rgba(201,168,76,0.2); }
  50%       { box-shadow: 0 0 50px rgba(201,168,76,0.5); }
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes grain {
  0%, 100% { transform: translate(0,0); }
  10%       { transform: translate(-2%,-3%); }
  30%       { transform: translate(3%,2%); }
  50%       { transform: translate(-1%,4%); }
  70%       { transform: translate(2%,-2%); }
  90%       { transform: translate(-3%,1%); }
}

/* ─── NAV ───────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 4rem;
  display: flex; align-items: center; justify-content: space-between;
  height: 80px;
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.3s;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.08em;
}
.nav-links {
  display: flex; gap: 2.5rem; list-style: none;
}
.nav-links a {
  color: var(--white2);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-social { display: flex; gap: 1rem; align-items: center; }
.nav-social a {
  color: var(--muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.3s, transform 0.2s;
  display: flex; align-items: center;
}
.nav-social a:hover { color: var(--gold); transform: scale(1.2); }
.nav-book {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.5rem 1.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.nav-book:hover { background: var(--gold); color: var(--black); }

/* hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--white); transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

.mobile-menu {
  display: none;
  position: fixed; inset: 80px 0 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center; justify-content: center; gap: 2.5rem;
  padding: 2rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white); text-decoration: none;
  font-size: 1.8rem; font-family: 'Cormorant Garamond', serif;
  font-weight: 300; letter-spacing: 0.1em;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold); }

/* ─── ORNAMENTAL BORDER FRAME ───────────────── */
.border-frame {
  position: relative;
}
.border-frame::before, .border-frame::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(201,168,76,0.35);
  transition: all 0.6s ease;
}
.border-frame::before {
  inset: 12px; border-right: none; border-bottom: none;
}
.border-frame::after {
  inset: 12px; border-left: none; border-top: none;
}

/* ─── GOLD DIVIDER ──────────────────────────── */
.gold-divider {
  display: flex; align-items: center; gap: 1.2rem;
  margin: 2.5rem auto;
}
.gold-divider::before, .gold-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-divider span {
  font-size: 1.2rem; color: var(--gold);
}

/* ─── SECTION LABEL ─────────────────────────── */
.section-label {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
  display: block;
}

/* ─── HEADING STYLES ────────────────────────── */
.display-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: var(--white);
}
.display-heading em {
  font-style: italic; color: var(--gold);
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
}
.section-heading em { font-style: italic; color: var(--gold); }

/* ─── BUTTONS ───────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: var(--gold);
  color: var(--black);
  padding: 1rem 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; border: none; cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 0.3s;
}
.btn-primary::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.15);
  transform: skewX(-20deg);
  transition: left 0.4s ease;
}
.btn-primary:hover::before { left: 100%; }
.btn-primary:hover { transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: transparent;
  color: var(--gold);
  padding: 1rem 2.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; border: 1px solid var(--gold); cursor: pointer;
  transition: background 0.3s, color 0.3s, transform 0.3s;
}
.btn-outline:hover {
  background: var(--gold); color: var(--black);
  transform: translateY(-2px);
}

/* ─── GLASS CARD ────────────────────────────── */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  padding: 2.5rem;
  position: relative;
  transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.glass-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: 0 20px 60px rgba(201,168,76,0.12);
}
.glass-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.glass-card:hover::before { height: 100%; }

/* ─── TICKER ────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 1rem 0;
  background: var(--dark);
}
.ticker-inner {
  display: flex; gap: 3rem;
  width: max-content;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}
.ticker-inner:hover { animation-play-state: paused; }
.ticker-item {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted);
}
.ticker-item .dot { color: var(--gold); font-size: 0.5rem; }

/* ─── FOOTER ────────────────────────────────── */
footer {
  background: var(--dark);
  border-top: 1px solid var(--glass-border);
  padding: 5rem 4rem 2.5rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600;
  color: var(--gold); margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.82rem; line-height: 1.7;
  color: var(--muted); max-width: 300px;
}
.footer-col h4 {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  color: var(--muted); text-decoration: none;
  font-size: 0.82rem; transition: color 0.3s;
}
.footer-col ul a:hover { color: var(--white); }
.footer-social {
  display: flex; gap: 1rem; margin-top: 1.5rem;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); text-decoration: none; font-size: 0.85rem;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.footer-bottom {
  border-top: 1px solid var(--glass-border);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p {
  font-size: 0.72rem; color: var(--muted);
}

/* ─── REVEAL ANIMATION ──────────────────────── */
.reveal {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ─── NOISE OVERLAY ─────────────────────────── */
.noise::before {
  content: '';
  position: fixed; inset: -50%;
  width: 200%; height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.035;
  pointer-events: none;
  animation: grain 8s steps(10) infinite;
  z-index: 1000;
}

/* ─── RESPONSIVE (MERGED) ──────────────────────── */

/* Tablet / Small Desktop */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links, .nav-social { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  footer { padding: 3rem 1.5rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

/* Large Phone */
@media (max-width: 600px) {
  .cursor, .cursor-ring, .cursor-dot { display: none !important; }
  body { cursor: auto; }

  nav { height: 64px; padding: 0 1rem !important; }

  .hero { min-height: 85vh; padding: 0 1.2rem !important; }
  .hero-titles { padding-top: 0; }
  .hero-title { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-subtitle { font-size: 0.78rem; padding: 0 0.5rem; }
  .hero-ctas { flex-direction: column; align-items: center; gap: 1rem; }
  .hero-ctas .btn-primary,
  .hero-ctas .btn-outline { width: 100%; justify-content: center; }
  .hero-eyebrow { font-size: 0.55rem; }
  .hero-scroll { display: none; }
  .hero-corner { display: none; }

  .display-heading { font-size: clamp(2.5rem, 12vw, 3.5rem); }
  .section-heading { font-size: clamp(1.6rem, 7vw, 2.4rem); }

  .btn-primary, .btn-outline, .btn-dark {
    padding: 0.85rem 1.8rem;
    font-size: 0.65rem;
  }

  .about { padding: 3rem 1.2rem !important; gap: 2rem; }
  .about-img { width: 100%; max-width: 280px; height: auto; margin: 0 auto; display: block; }
  .about-text { text-align: center; padding: 1rem 0; }
  .about-body { font-size: 0.85rem; }

  .services-section { padding: 3rem 1.2rem !important; }
  .services-grid { gap: 1.2rem; }

  .testimonials { padding: 3rem 1.2rem !important; }
  .testimonials-grid { gap: 1.2rem; }
  .testimonial-card { padding: 1.5rem; }

  footer { padding: 2.5rem 1.2rem 1rem !important; }
  .footer-tagline { max-width: 100%; }

  .blog-grid { padding: 3rem 1.2rem !important; grid-template-columns: 1fr; }
  .blog-card { padding: 1.5rem !important; }
  .blog-card h3 { font-size: 1.3rem; }
  .blog-hero { height: 35vh !important; min-height: 280px; }

  .article-wrapper { padding-top: 64px; }
  .article-hero { padding: 3rem 1.2rem !important; height: auto; min-height: 300px; display: flex; align-items: flex-end; }
  .article-hero-title { font-size: clamp(1.8rem, 7vw, 2.5rem); }
  .article-body { padding: 2.5rem 1.2rem !important; }
  .article-body h2 { font-size: 1.5rem; margin: 2rem 0 0.8rem; }
  .article-body h3 { font-size: 1.15rem; }
  .article-body p { font-size: 0.88rem; }
  .article-body th, .article-body td { padding: 0.5rem 0.6rem; font-size: 0.7rem; }
  .article-body blockquote { padding: 1rem 1.2rem; margin: 1.5rem 0; font-size: 0.9rem; }
  .article-cta-box { padding: 1.5rem !important; margin: 2rem 0; }
  .article-meta-bar { flex-wrap: wrap; gap: 0.5rem; }
  .article-tags span { font-size: 0.55rem; }
  .toc { padding: 1.2rem !important; }

  .page-hero { padding: 3rem 1.2rem !important; }
  .services-intro { padding: 3rem 1.2rem !important; }
  .intro-grid { grid-template-columns: 1fr !important; gap: 1.5rem; }
  .intro-text { text-align: center; }

  .service-detail { padding: 2.5rem 1.2rem !important; gap: 1.5rem; }
  .service-detail-sep { margin: 0 1.2rem !important; }
  .all-services { padding: 2.5rem 1.2rem !important; }
  .all-services-grid { grid-template-columns: 1fr !important; gap: 0.8rem; }

  .entrance-package-card { padding: 1.5rem !important; }
  .entrance-hero { padding: 4rem 1.2rem !important; min-height: 60vh; }

  .contact-grid { grid-template-columns: 1fr !important; gap: 2rem; }
  .contact-left { padding: 3rem 1.5rem !important; }
  .contact-right { padding: 3rem 1.2rem !important; }

  .testimonial-carousel { padding: 0 1.2rem !important; }

  .glass-card:hover { transform: none; border-color: var(--glass-border); box-shadow: none; }
  .blog-card:hover { transform: none; border-color: var(--glass-border); box-shadow: none; }
}

/* Small Phone */
@media (max-width: 400px) {
  nav { height: 56px; padding: 0 0.8rem; }
  .nav-logo { font-size: 1.1rem; }

  .hero-title { font-size: clamp(1.6rem, 8vw, 2rem); }
  .hero-subtitle { font-size: 0.7rem; }
  .hero-eyebrow { font-size: 0.5rem; }

  .section-heading { font-size: clamp(1.3rem, 6vw, 1.6rem); }

  .blog-card h3 { font-size: 1.1rem; }
  .blog-card p { font-size: 0.78rem; }
  .blog-hero { min-height: 240px; }

  .article-hero-title { font-size: clamp(1.4rem, 6vw, 1.8rem); }
  .article-body p { font-size: 0.82rem; }
  .article-body h2 { font-size: 1.3rem; }
  .article-body h3 { font-size: 1rem; }
  .article-body th, .article-body td { font-size: 0.65rem; padding: 0.35rem 0.4rem; }

  .service-detail-icon-wrap { width: 64px; height: 64px; font-size: 1.4rem; }

  .entrance-package-card h3 { font-size: 1.1rem; }
  .entrance-package-price { font-size: 1.4rem; }

  .btn-primary, .btn-outline, .btn-dark {
    padding: 0.75rem 1.5rem;
    font-size: 0.6rem;
  }
}

/* ─── BLOG STYLES ────────────────────────────── */
.blog-wrapper {
  min-height: 100vh;
  padding-top: 80px;
}
.blog-hero {
  height: 40vh; min-height: 350px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.blog-hero-bg {
  position: absolute; inset: -10%;
  background: linear-gradient(135deg, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.7) 100%),
              url('../assets/hero-main.webp');
  background-size: cover; background-position: center;
  filter: saturate(0.3) brightness(0.3);
}
.blog-hero-content { position: relative; z-index: 2; padding: 0 1.5rem; max-width: 800px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 5rem 4rem;
}
.blog-card {
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
}
.blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(201,168,76,0.1);
}
.blog-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.blog-card:hover::before { height: 100%; }
.blog-card-tag {
  display: inline-block;
  font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.25rem 0.8rem;
  margin-bottom: 1.2rem;
}
.blog-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.blog-card p {
  font-size: 0.82rem; line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.blog-card-meta {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: flex; gap: 1rem;
}
.blog-card-meta span { color: var(--gold); }

/* ─── ARTICLE PAGE ──────────────────────────── */
.article-wrapper {
  min-height: 100vh;
  padding-top: 80px;
}
.article-hero {
  height: 50vh; min-height: 400px;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 5rem 4rem;
  overflow: hidden;
}
.article-hero-bg {
  position: absolute; inset: -10%;
  background-size: cover; background-position: center;
  filter: brightness(0.22) saturate(0.4);
}
.article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--black) 0%, transparent 60%);
}
.article-hero-content { position: relative; z-index: 2; max-width: 900px; }
.article-hero-content .breadcrumb {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block;
}
.article-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300; line-height: 1.05;
  color: var(--white);
}
.article-hero-title em { font-style: italic; color: var(--gold); }
.article-meta-bar {
  display: flex; gap: 2rem; align-items: center;
  margin-top: 1.5rem;
}
.article-meta-bar span {
  font-size: 0.7rem; color: var(--muted);
  letter-spacing: 0.1em;
}
.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 4rem;
}
.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 400;
  color: var(--white); margin: 3rem 0 1.2rem;
}
.article-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400;
  color: var(--gold); margin: 2.5rem 0 1rem;
}
.article-body h4 {
  font-size: 0.9rem; font-weight: 700;
  color: var(--white); margin: 2rem 0 0.8rem;
  letter-spacing: 0.05em;
}
.article-body p {
  font-size: 0.95rem; line-height: 1.9;
  color: rgba(245,240,232,0.75);
  margin-bottom: 1.5rem;
}
.article-body ul, .article-body ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}
.article-body li {
  font-size: 0.9rem; line-height: 1.8;
  color: rgba(245,240,232,0.7);
  margin-bottom: 0.5rem;
}
.article-body li::marker { color: var(--gold); }
.article-body strong { color: var(--white); font-weight: 600; }
.article-body a { color: var(--gold); text-decoration: underline; }
.article-body a:hover { color: var(--gold-light); }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: rgba(201,168,76,0.04);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.8);
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}
.article-body th, .article-body td {
  border: 1px solid var(--glass-border);
  padding: 0.8rem 1rem;
  text-align: left;
  font-size: 0.85rem;
}
.article-body th {
  background: var(--dark);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.65rem;
}
.article-body td {
  color: rgba(245,240,232,0.7);
}
.article-body hr {
  border: none;
  border-top: 1px solid var(--glass-border);
  margin: 3rem 0;
}
.article-tags {
  display: flex; gap: 0.8rem; flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}
.article-tags span {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--glass-border);
  padding: 0.3rem 1rem;
}
.article-cta-box {
  background: var(--dark);
  border: 1px solid var(--gold);
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
}
.article-cta-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300;
  color: var(--white); margin-bottom: 0.8rem;
}
.article-cta-box p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

/* ─── ARTICLE TABLE OF CONTENTS ─────────────── */
.toc {
  background: var(--dark);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  margin-bottom: 3rem;
}
.toc h4 {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.toc a {
  display: block;
  font-size: 0.85rem;
  color: rgba(245,240,232,0.7);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.3s, padding-left 0.3s;
}
.toc a:hover { color: var(--gold); padding-left: 0.5rem; }

/* ─── CAROUSEL ───────────────────────────────── */
.carousel-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.carousel-slide {
  min-width: 100%;
  padding: 0 1rem;
}
.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  border: 1px solid var(--gold);
  background: rgba(8,8,8,0.8);
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover { background: var(--gold); color: var(--black); }
.carousel-prev { left: 0.5rem; }
.carousel-next { right: 0.5rem; }
.carousel-dots {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-top: 1.5rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.carousel-dot.active { background: var(--gold); transform: scale(1.3); }

/* ─── ENHANCED IMAGE BORDERS ─────────────────── */
.img-frame {
  position: relative;
  display: inline-block;
}
.img-frame::before {
  content: '';
  position: absolute; inset: -12px;
  border: 1px solid rgba(201,168,76,0.3);
  transition: inset 0.3s;
  pointer-events: none;
}
.img-frame::after {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 20px; height: 20px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.img-frame:hover::before { inset: -16px; }
.img-frame img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ─── HERO IMAGE ENHANCEMENT ─────────────────── */
.hero-with-image .hero-bg {
  background-image: url('../assets/hero.png');
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
  filter: brightness(0.35) saturate(0.6);
}
.hero-with-image .hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--black) 40%, transparent 70%);
}

/* ─── TESTIMONIAL CAROUSEL ───────────────────── */
.testimonial-carousel {
  padding: 0 4rem;
  position: relative;
}

/* ─── DARK BUTTON (Gold Bg - matches Send Enquiry) ── */
.btn-dark {
  display: inline-flex; align-items: center; gap: 0.8rem;
  background: var(--gold);
  color: var(--black);
  padding: 1.1rem 3rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  position: relative; overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  animation: pulse-gold 3s ease-in-out infinite;
}
.btn-dark::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 100%; height: 100%;
  background: rgba(255,255,255,0.15);
  transform: skewX(-20deg);
  transition: left 0.4s ease;
}
.btn-dark:hover::before { left: 100%; }
.btn-dark:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(201,168,76,0.35);
}
/* ─── BLOG STYLES ────────────────────────────── */
.blog-wrapper {
  min-height: 100vh;
  padding-top: 80px;
}
.blog-hero {
  height: 40vh; min-height: 350px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  overflow: hidden;
}
.blog-hero-bg {
  position: absolute; inset: -10%;
  background: linear-gradient(135deg, rgba(8,8,8,0.95) 0%, rgba(8,8,8,0.7) 100%),
              url('../assets/hero-main.webp');
  background-size: cover; background-position: center;
  filter: saturate(0.3) brightness(0.3);
}
.blog-hero-content { position: relative; z-index: 2; padding: 0 1.5rem; max-width: 800px; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 2rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 5rem 4rem;
}
.blog-card {
  border: 1px solid var(--glass-border);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s, box-shadow 0.4s;
  cursor: pointer;
}
.blog-card:hover {
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(201,168,76,0.1);
}
.blog-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.blog-card:hover::before { height: 100%; }
.blog-card-tag {
  display: inline-block;
  font-size: 0.55rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.25rem 0.8rem;
  margin-bottom: 1.2rem;
}
.blog-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400;
  color: var(--white);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}
.blog-card p {
  font-size: 0.82rem; line-height: 1.8;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.blog-card-meta {
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--muted);
  display: flex; gap: 1rem;
}
.blog-card-meta span { color: var(--gold); }

/* ─── ARTICLE PAGE ──────────────────────────── */
.article-wrapper {
  min-height: 100vh;
  padding-top: 80px;
}
.article-hero {
  height: 50vh; min-height: 400px;
  position: relative;
  display: flex; align-items: flex-end;
  padding: 5rem 4rem;
  overflow: hidden;
}
.article-hero-bg {
  position: absolute; inset: -10%;
  background-size: cover; background-position: center;
  filter: brightness(0.22) saturate(0.4);
}
.article-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--black) 0%, transparent 60%);
}
.article-hero-content { position: relative; z-index: 2; max-width: 900px; }
.article-hero-content .breadcrumb {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block;
}
.article-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300; line-height: 1.05;
  color: var(--white);
}
.article-hero-title em { font-style: italic; color: var(--gold); }
.article-meta-bar {
  display: flex; gap: 2rem; align-items: center;
  margin-top: 1.5rem;
}
.article-meta-bar span {
  font-size: 0.7rem; color: var(--muted);
  letter-spacing: 0.1em;
}
.article-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 4rem;
}
.article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 400;
  color: var(--white); margin: 3rem 0 1.2rem;
}
.article-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 400;
  color: var(--gold); margin: 2.5rem 0 1rem;
}
.article-body h4 {
  font-size: 0.9rem; font-weight: 700;
  color: var(--white); margin: 2rem 0 0.8rem;
  letter-spacing: 0.05em;
}
.article-body p {
  font-size: 0.95rem; line-height: 1.9;
  color: rgba(245,240,232,0.75);
  margin-bottom: 1.5rem;
}
.article-body ul, .article-body ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}
.article-body li {
  font-size: 0.9rem; line-height: 1.8;
  color: rgba(245,240,232,0.7);
  margin-bottom: 0.5rem;
}
.article-body li::marker { color: var(--gold); }
.article-body strong { color: var(--white); font-weight: 600; }
.article-body a { color: var(--gold); text-decoration: underline; }
.article-body a:hover { color: var(--gold-light); }
.article-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  background: rgba(201,168,76,0.04);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(245,240,232,0.8);
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}
.article-body th, .article-body td {
  border: 1px solid var(--glass-border);
  padding: 0.8rem 1rem;
  text-align: left;
  font-size: 0.85rem;
}
.article-body th {
  background: var(--dark);
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.65rem;
}
.article-body td {
  color: rgba(245,240,232,0.7);
}
.article-body hr {
  border: none;
  border-top: 1px solid var(--glass-border);
  margin: 3rem 0;
}
.article-tags {
  display: flex; gap: 0.8rem; flex-wrap: wrap;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
}
.article-tags span {
  font-size: 0.6rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--glass-border);
  padding: 0.3rem 1rem;
}
.article-cta-box {
  background: var(--dark);
  border: 1px solid var(--gold);
  padding: 2.5rem;
  text-align: center;
  margin: 3rem 0;
}
.article-cta-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300;
  color: var(--white); margin-bottom: 0.8rem;
}
.article-cta-box p {
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

/* ─── ARTICLE TABLE OF CONTENTS ─────────────── */
.toc {
  background: var(--dark);
  border: 1px solid var(--glass-border);
  padding: 2rem;
  margin-bottom: 3rem;
}
.toc h4 {
  font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.toc a {
  display: block;
  font-size: 0.85rem;
  color: rgba(245,240,232,0.7);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.3s, padding-left 0.3s;
}
.toc a:hover { color: var(--gold); padding-left: 0.5rem; }

/* ─── CAROUSEL ───────────────────────────────── */
.carousel-wrap {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.carousel-slide {
  min-width: 100%;
  padding: 0 1rem;
}
.carousel-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  border: 1px solid var(--gold);
  background: rgba(8,8,8,0.8);
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.carousel-btn:hover { background: var(--gold); color: var(--black); }
.carousel-prev { left: 0.5rem; }
.carousel-next { right: 0.5rem; }
.carousel-dots {
  display: flex; justify-content: center; gap: 0.5rem;
  margin-top: 1.5rem;
}
.carousel-dot {
  width: 8px; height: 8px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.carousel-dot.active { background: var(--gold); transform: scale(1.3); }

/* ─── ENHANCED IMAGE BORDERS ─────────────────── */
.img-frame {
  position: relative;
  display: inline-block;
}
.img-frame::before {
  content: '';
  position: absolute; inset: -12px;
  border: 1px solid rgba(201,168,76,0.3);
  transition: inset 0.3s;
  pointer-events: none;
}
.img-frame::after {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 20px; height: 20px;
  border-top: 2px solid var(--gold);
  border-left: 2px solid var(--gold);
}
.img-frame:hover::before { inset: -16px; }
.img-frame img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
}
