/* ============================================================
   SHAPES GLOW STUDIO — MODERN LUXURY EDITORIAL STYLE LAYER
   ============================================================ */

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

:root {
  /* High-Contrast Luxury Colors */
  --bg-cream:         #faf9f5;  /* Soft premium off-white canvas */
  --bg-dark:          #111111;  /* Pure editorial velvet black */
  --text-dark:        #191919;  /* Deep readable text body color */
  --text-muted:       #5d5a54;  /* Refined gray-brown accent text */
  --accent-gold:      #b39156;  /* High-end champagne gold finish */
  --accent-gold-soft: #f2ede2;  /* Light accent backdrop tint */
  --card-bg:          #ffffff;  /* Pure white crisp surface elements */
  --border-light:     rgba(25, 25, 25, 0.08);

  /* Clean Typography Systems */
  --font-serif:       'Playfair Display', Georgia, serif;
  --font-sans:        'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition:       all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset and Global Settings */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; background-color: var(--bg-cream); }

body {
  background-color: var(--bg-cream);
  color: var(--text-dark);
  font-family: var(--font-sans);
  line-height: 1.75;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

/* Luxury Bold Typography Hierarchy */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700; /* Bold elegant headings */
  color: var(--text-dark);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 em, h2 em { font-style: italic; font-weight: 400; }
h1 strong, h2 strong, b, strong { font-weight: 700; }
p { font-size: 1rem; font-weight: 400; color: var(--text-muted); }

.container {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

.section { padding: 8rem 0; }
.label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Custom Interactive Cursor Rings */
.cursor {
  width: 8px; height: 8px; background: var(--accent-gold);
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s;
}
.cursor-ring {
  width: 36px; height: 36px; border: 1px solid var(--accent-gold);
  position: fixed; border-radius: 50%; pointer-events: none; z-index: 9998;
  transform: translate(-50%, -50%); transition: all 0.1s ease-out;
}

/* Fixed Glassmorphism Header Bar */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(250, 249, 245, 0.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-light); padding: 1.5rem 0;
  transition: var(--transition);
}
.site-header.scrolled { padding: 1rem 0; background: rgba(250, 249, 245, 0.98); }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.nav-logo { text-decoration: none; color: var(--text-dark); }
.wordmark { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; }
.wordmark span { font-weight: 300; font-style: italic; color: var(--accent-gold); }
.tagline { display: block; font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted); margin-top: 2px; }

.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-dark); text-decoration: none; font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--accent-gold); }

.btn-luxury {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 1rem 2.25rem; background: var(--bg-dark); color: #fff;
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em;
  text-decoration: none; font-weight: 500; border: 1px solid var(--bg-dark);
  transition: var(--transition); cursor: pointer;
}
.btn-luxury:hover { background: transparent; color: var(--text-dark); border-color: var(--text-dark); }

.btn-outline {
  display: inline-flex; padding: 1rem 2.25rem; background: transparent;
  color: var(--text-dark); font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.2em; text-decoration: none; font-weight: 500;
  border: 1px solid var(--text-dark); transition: var(--transition);
}
.btn-outline:hover { background: var(--bg-dark); color: #fff; }

/* Asymmetrical Hero Showcase Block */
.hero { min-height: 100vh; display: flex; align-items: center; padding-top: 8rem; position: relative; overflow: hidden; }
.hero-inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center; width: 100%; }
.hero h1 { font-size: clamp(3.5rem, 6vw, 5.2rem); margin: 1.5rem 0; }
.hero-sub { font-size: 1.15rem; max-width: 520px; margin-bottom: 2.5rem; }
.hero-actions { display: flex; gap: 1.5rem; }

.hero-visual { position: relative; width: 100%; }
.hero-photo-wrap { position: relative; width: 100%; overflow: hidden; background: #eee; }
.hero-photo-main { width: 100%; height: auto; display: block; object-fit: cover; }

/* Smooth Moving Textile Marquee */
.marquee-section { background: var(--bg-dark); padding: 1.5rem 0; overflow: hidden; white-space: nowrap; }
.marquee-track { display: inline-block; animation: marquee linear infinite 35s; }
.marquee-item { font-family: var(--font-serif); font-size: 1.5rem; color: #fff; margin-right: 3rem; text-transform: uppercase; letter-spacing: 0.1em; }
.marquee-item span { color: var(--accent-gold); }
@keyframes marquee { 0% { transform: translate3d(0,0,0); } 100% { transform: translate3d(-50%,0,0); } }

/* Modern Grid Framework for Services */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 4rem; }
.service-card { background: var(--card-bg); border: 1px solid var(--border-light); transition: var(--transition); text-align: left; }
.service-card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(0,0,0,0.04); }
.service-img-container { height: 320px; width: 100%; overflow: hidden; position: relative; }
.service-img-container img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-img-container img { transform: scale(1.06); }
.service-info { padding: 2rem; }
.service-title { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }

/* Tabbed Pricing Interface */
.pricing-tabs-nav { display: flex; justify-content: center; gap: 1rem; margin: 3rem 0; border-bottom: 1px solid var(--border-light); padding-bottom: 1rem; }
.tab-btn { background: none; border: none; font-family: var(--font-sans); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--text-muted); cursor: pointer; padding: 0.5rem 1rem; position: relative; transition: var(--transition); }
.tab-btn.active, .tab-btn:hover { color: var(--text-dark); font-weight: 600; }
.tab-btn.active::after { content: ''; position: absolute; bottom: -1rem; left: 0; width: 100%; height: 2px; background: var(--accent-gold); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards; }

.price-menu-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 4rem; }
.price-item-row { display: flex; justify-content: space-between; align-items: baseline; padding-bottom: 1.2rem; border-bottom: 1px solid rgba(25,25,25,0.05); }
.price-name { font-family: var(--font-serif); font-size: 1.2rem; font-weight: 600; color: var(--text-dark); }
.price-desc { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }
.price-value { font-family: var(--font-sans); font-size: 1.1rem; font-weight: 500; color: var(--accent-gold); padding-left: 1.5rem; }

/* Location and Maps Layout Block */
.location-hub-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 5rem; align-items: stretch; margin-top: 4rem; }
.location-card-box { padding: 3rem; background: var(--card-bg); border: 1px solid var(--border-light); margin-bottom: 2rem; transition: var(--transition); }
.location-card-box:hover { border-color: var(--accent-gold); }
.map-embed-wrapper { width: 100%; min-height: 520px; height: 100%; background: #eee; position: relative; }
.map-embed-wrapper iframe { width: 100%; height: 100%; min-height: 520px; border: 0; filter: grayscale(100%) invert(5%) contrast(95%); }

/* Elegant Minimalist Footer Layer */
.luxury-footer { background: var(--bg-dark); color: rgba(255,255,255,0.7); padding: 6rem 0 3rem; }
.footer-top-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 4rem; margin-bottom: 5rem; }
.footer-brand h3 { color: #fff; font-size: 1.8rem; margin-bottom: 1.5rem; }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.95rem; line-height: 1.8; }
.footer-column-title { font-family: var(--font-sans); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--accent-gold); font-weight: 600; margin-bottom: 1.8rem; }
.footer-links-list { list-style: none; }
.footer-links-list li { margin-bottom: 1rem; }
.footer-links-list a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
.footer-links-list a:hover { color: #fff; padding-left: 4px; }
.footer-base { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 2.5rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* Custom Reveal Scrolling Keyframes */
.rv { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.rv.vi { opacity: 1; transform: translateY(0); }
@keyframes fadeIn { from { opacity:0; transform:translateY(10px); } to { opacity:1; transform:translateY(0); } }

/* Mobile Adaptations */
@media (max-width: 1024px) {
  .hero-inner, .location-hub-grid, .price-menu-list { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top-row { grid-template-columns: 1fr; gap: 3rem; }
  .section { padding: 5rem 0; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .container { padding: 0 1.5rem; }
}