﻿/* =========================================
   BR STUDIO — STYLESHEET
   Theme: Deep Navy · Cormorant Serif · Taupe
   ========================================= */

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --navy:        #0b1729;
  --navy-2:      #0e1e35;
  --navy-3:      #0d2040;

  /* All backgrounds → warm off-white */
  --bg:          #faf8f5;
  --bg-warm:     #f2ede8;
  --bg-section:  #ece6df;

  /* Text → dark navy */
  --text:        #0b1729;
  --text-muted:  rgba(11,23,41,0.70);

  /* Dark aliases (replaces cream on white bg) */
  --cream:       #0b1729;
  --cream-muted: rgba(11,23,41,0.70);

  /* Taupe Accent */
  --gold:        #9a8876;
  --gold-muted:  rgba(154,136,118,0.55);
  --gold-faint:  rgba(154,136,118,0.10);

  /* Borders → dark on light */
  --border:      rgba(11,23,41,0.10);
  --border-gold: rgba(154,136,118,0.28);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

html {
  background: #faf8f5;
}

body {
  font-family: 'Jost', sans-serif;
  background-color: transparent;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.75;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Utility ──────────────────────────────────────────── */

.gradient-text {
  background: linear-gradient(135deg, #9a8876 0%, #2d1e14 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-block;
  background: var(--gold-faint);
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 5px 18px;
  border-radius: 0;
  font-family: 'Courier New', 'Jost', monospace;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-tag::before { content: '[ '; opacity: 0.55; }
.section-tag::after  { content: ' ]'; opacity: 0.55; }

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.section-header p {
  font-size: 1.01rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto;
  font-weight: 400;
}

/* ── Buttons ──────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 38px;
  border-radius: 0;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  border: none;
  font-family: 'Jost', sans-serif;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: #7a6858;
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(154,136,118,0.30);
}

.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(11,23,41,0.22);
}

.btn-secondary:hover {
  border-color: var(--gold-muted);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }

/* =========================================
   NAVBAR
   ========================================= */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(11,23,41,0.08);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  position: relative;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

.logo-icon {
  width: 42px;
  height: 42px;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 0;
}

.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}

/* Store page: navbar always stays light — hero is dark navy */
.store-page .navbar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}

.logo-accent { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--cream-muted);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.25s;
}

.nav-links a:hover { color: var(--cream); }

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 10px 28px;
  font-weight: 600;
  transition: background 0.25s, transform 0.25s;
}

.nav-links .nav-cta:hover {
  background: #7a6858;
  transform: translateY(-1px);
  color: var(--navy) !important;
}

.nav-links .nav-store-pill {
  background: #0b1729;
  color: #f5ede3 !important;
  padding: 6px 16px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.22s, transform 0.22s;
}
.nav-links .nav-store-pill:hover {
  background: #1a2d4a;
  transform: translateY(-1px);
  color: #fff !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  border-radius: 0;
  transition: all 0.35s ease;
}

.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); }

/* =========================================
   HERO
   ========================================= */

.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 90px;
  padding-bottom: 20px;
  background: #ffffff;
}

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

.hero-glow-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(154,136,118,0.07) 0%, transparent 70%);
  top: -100px;
  left: -100px;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(154,136,118,0.05) 0%, transparent 70%);
  bottom: -80px;
  right: -80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
  padding: 0 24px;
}

/* ── Hero Brand (centered big lockup) ── */
.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 2.5vw, 26px);
  margin-bottom: 4px;
  animation: fadeInDown 0.8s ease both;
}

.hero-brand-logo {
  width: clamp(416px, 66vw, 816px);
  height: auto;
  display: block;
  object-fit: contain;
  margin: -70px 0 -54px;
}

.hero-brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(4.2rem, 11vw, 8.8rem);
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--cream);
  line-height: 1;
}

.hero-brand-accent { color: var(--gold); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold-faint);
  border: 1px solid var(--border-gold);
  padding: 7px 22px;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeInDown 0.8s ease 0.05s both;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease 0.1s both;
  color: var(--cream);
  text-shadow: none;
}

.hero-subtitle {
  font-size: clamp(0.92rem, 1.6vw, 1.06rem);
  color: var(--cream-muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.8;
  font-weight: 400;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 48px;
  padding: 28px 52px;
  background: rgba(11,23,41,0.06);
  border: 1px solid rgba(11,23,41,0.12);
  animation: fadeInUp 0.8s ease 0.4s both;
}

.stat { text-align: center; }

.stat-value {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  font-family: 'Cormorant Garamond', serif;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
}

.stat-unit {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--gold);
}

.stat p {
  font-size: 0.70rem;
  color: var(--cream-muted);
  margin-top: 6px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 400;
}

.stat-divider {
  width: 1px;
  height: 44px;
  background: var(--border);
  flex-shrink: 0;
}

.scroll-indicator {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2.5s ease-in-out infinite;
  text-decoration: none;
  z-index: 2;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 1px solid rgba(11,23,41,0.22);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: rgba(11,23,41,0.40);
  border-radius: 2px;
  animation: scrollWheel 2.5s ease-in-out infinite;
}

/* =========================================
   SERVICES
   ========================================= */

.services {
  padding: 64px 0;
  position: relative;
  background: rgba(11,23,41,0.92);
  --bg: #0b1729;
  --navy-2: #0e1e35;
  --cream: #f0ebe0;
  --cream-muted: rgba(240,235,224,0.75);
  --text-muted: rgba(240,235,224,0.75);
  --border: rgba(240,235,224,0.09);
  color: #f0ebe0;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154,136,118,0.14), transparent);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.service-card {
  background: var(--bg);
  padding: 44px 36px;
  transition: background 0.35s ease, transform 0.55s cubic-bezier(0.23,1,0.32,1);
  opacity: 0;
  transform: translateY(28px);
  position: relative;
  overflow: hidden;
  will-change: transform;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

.service-card:hover::after { transform: scaleX(1); }

.service-card:hover {
  background: var(--navy-2);
}

.service-card.visible {
  opacity: 1;
  transform: translateY(0);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 18px;
  display: block;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.80;
  font-size: 0.95rem;
  font-weight: 400;
}

/* =========================================
   DEMO SHOWCASE — PORTFOLIO CARDS
   ========================================= */

.demos {
  padding: 64px 0;
  position: relative;
  background: rgba(255,255,255,0.97);
}

.demos::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154,136,118,0.14), transparent);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-card {
  background: #6b4a28;
  --cream: #f0ebe0;
  --text-muted: rgba(240,235,224,0.68);
  --border-gold: rgba(154,136,118,0.32);
  overflow: hidden;
  transition: background 0.3s ease, transform 0.55s cubic-bezier(0.23,1,0.32,1);
  cursor: none;
  will-change: transform;
}

.portfolio-card:hover {
  background: #3d2a18;
}

.portfolio-thumb {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: var(--navy-light);
}

.portfolio-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
  display: block;
}

.portfolio-card:hover .portfolio-thumb img {
  transform: scale(1.04);
}

.portfolio-thumb--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-section);
}

.thumb-icon { font-size: 5rem; opacity: 0.35; }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(11,23,41,0.76);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.preview-btn {
  background: var(--gold);
  color: var(--navy);
  border: none;
  padding: 12px 32px;
  font-size: 0.72rem;
  font-weight: 700;
  font-family: 'Jost', sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateY(10px);
  transition: transform 0.35s ease, background 0.25s ease;
}

.portfolio-card:hover .preview-btn {
  transform: translateY(0);
}

.preview-btn:hover {
  background: #7a6858;
}

.portfolio-info {
  padding: 26px 28px;
}

.portfolio-tag {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--border-gold);
  padding: 3px 12px;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.portfolio-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  color: var(--cream);
}

.portfolio-info p {
  color: var(--text-muted);
  font-size: 0.93rem;
  line-height: 1.70;
  font-weight: 400;
}

/* =========================================
   PREVIEW MODAL
   ========================================= */

.preview-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.preview-modal.open {
  opacity: 1;
  pointer-events: all;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6,11,22,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
}

.modal-window {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  height: 90vh;
  background: var(--navy-2);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 60px 140px rgba(0,0,0,0.80);
  transform: scale(0.93) translateY(20px);
  transition: transform 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
  --cream: #f0ebe0;
  --cream-muted: rgba(240,235,224,0.58);
  --text-muted: rgba(240,235,224,0.58);
  --border: rgba(240,235,224,0.09);
}

.preview-modal.open .modal-window {
  transform: scale(1) translateY(0);
}

/* Modal Header */
.modal-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 20px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.browser-dots { display: flex; gap: 7px; flex-shrink: 0; }

.dot { width: 13px; height: 13px; border-radius: 50%; }
.dot-red    { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green  { background: #28c840; }

#modal-close-dot { cursor: pointer; }
#modal-close-dot:hover { filter: brightness(1.25); }

.modal-url-bar {
  flex: 1;
  min-width: 0;
  background: rgba(0,0,0,0.30);
  border: 1px solid var(--border);
  padding: 7px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.83rem;
  color: var(--cream-muted);
  overflow: hidden;
}

.url-lock { font-size: 0.75rem; flex-shrink: 0; }

#modal-url-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.modal-close-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cream-muted);
  width: 34px;
  height: 34px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s, color 0.25s;
}

.modal-close-btn:hover {
  background: rgba(239,68,68,0.25);
  border-color: rgba(239,68,68,0.4);
  color: #fff;
}

/* Modal Body */
.modal-body {
  position: relative;
  flex: 1;
  overflow: hidden;
  background: #fff;
}

.modal-loader {
  position: absolute;
  inset: 0;
  z-index: 10;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: opacity 0.45s ease;
}

.modal-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-spinner {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.modal-loader p { color: var(--cream-muted); font-size: 0.85rem; font-weight: 300; }

#modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Lock body scroll when modal open */
body.modal-open { overflow: hidden; }

/* =========================================
   WHY US
   ========================================= */

.why-us {
  padding: 64px 0;
  position: relative;
  background: #ede6de;
  color: var(--text);
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154,136,118,0.14), transparent);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-us-text .section-tag { display: inline-block; }

.why-us-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.8vw, 3.2rem);
  font-weight: 400;
  line-height: 1.18;
  margin-bottom: 22px;
  letter-spacing: 0.01em;
}

.why-us-text > p {
  color: var(--text-muted);
  line-height: 1.90;
  margin-bottom: 36px;
  font-size: 1.01rem;
  font-weight: 400;
}

.feature-list {
  list-style: none;
  margin-bottom: 44px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.97rem;
  font-weight: 400;
  color: var(--text-muted);
}

.check {
  color: var(--gold);
  font-weight: 600;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
}

/* Visual Cards */
.why-us-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 440px;
}

.visual-center-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
}

.visual-card {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(11,23,41,0.10);
  padding: 22px 20px;
  text-align: center;
  width: 130px;
  box-shadow: 0 4px 20px rgba(11,23,41,0.07);
  transition: transform 0.3s, border-color 0.3s;
}

.visual-card:hover {
  transform: scale(1.07) !important;
  border-color: var(--border-gold);
}

.visual-card .card-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.visual-card p {
  font-size: 0.80rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--text-muted);
}

.card-1 { top: 0;    left: 12%;  animation: float1 6s ease-in-out infinite; }
.card-2 { top: 18%;  right: 0;   animation: float2 7s ease-in-out infinite; }
.card-3 { bottom: 8%; left: 4%;  animation: float3 5s ease-in-out infinite; }
.card-4 { bottom: 18%; right: 12%; animation: float1 8s ease-in-out infinite reverse; }

/* =========================================
   CONTACT
   ========================================= */

/* =========================================
   CTA SECTION (replaces contact on index)
   ========================================= */

.cta-section {
  padding: 72px 0;
  background: #7a6145;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154,136,118,0.20), transparent);
}

.cta-section .section-tag {
  color: var(--gold);
  background: var(--gold-faint);
  border-color: var(--border-gold);
}

.cta-inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.cta-inner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 20px;
  color: #ffffff;
}

.cta-inner p {
  color: var(--text-muted);
  font-size: 1.04rem;
  line-height: 1.80;
  margin-bottom: 40px;
  font-weight: 400;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Booking card ── */
.booking-card {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
  padding: 52px 64px 48px;
  text-align: center;
  background: #f5f0ea;
  border: 1px solid rgba(154,136,118,0.22);
  box-shadow: 0 24px 64px rgba(0,0,0,0.18);
}

.booking-card-accent {
  position: absolute;
  top: -1px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.booking-card-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin: 20px 0 18px;
  letter-spacing: 0.01em;
}

.booking-card-heading em {
  color: var(--gold);
  font-style: italic;
}

.booking-card-sub {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.80;
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 36px;
}

.booking-card-btn {
  font-size: 1rem;
  padding: 18px 52px;
  letter-spacing: 0.12em;
}

.booking-card-perks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.perk-dot {
  color: var(--gold-muted);
  font-size: 0.6rem;
}

/* =========================================
   NAV AUTH AREA
   ========================================= */

.nav-auth {
  display: flex;
  align-items: center;
  position: absolute;
  right: 28px;
}

.nav-signin-btn {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 7px 20px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.nav-signin-btn:hover {
  background: var(--gold);
  color: #fff;
}

/* User button + dropdown */
.nav-user { position: relative; }

.nav-user-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-size: 0.80rem;
  font-weight: 500;
  padding: 6px 14px 6px 8px;
  cursor: pointer;
  transition: border-color 0.2s;
  border-radius: 2px;
}
.nav-user-btn:hover { border-color: var(--gold); }

.nav-user-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-user-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  background: #fff;
  border: 1px solid rgba(11,23,41,0.10);
  box-shadow: 0 8px 32px rgba(11,23,41,0.12);
  z-index: 500;
  padding: 6px 0;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 10px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--navy);
  text-decoration: none;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  transition: background 0.15s;
}
.dropdown-item:hover { background: rgba(154,136,118,0.08); color: var(--gold); }
.dropdown-signout { color: #c0392b; }
.dropdown-signout:hover { background: rgba(192,57,43,0.07); color: #c0392b; }

/* =========================================
   AUTH MODAL
   ========================================= */

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.auth-modal[hidden] { display: none; }

.auth-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11,23,41,0.72);
  backdrop-filter: blur(4px);
}

.auth-box {
  position: relative;
  width: 100%;
  max-width: 420px;
  background: #fff;
  border: 1px solid rgba(11,23,41,0.10);
  box-shadow: 0 24px 80px rgba(11,23,41,0.22);
  padding: 40px 40px 36px;
  animation: authSlideIn 0.28s ease;
}

@keyframes authSlideIn {
  from { opacity: 0; transform: translateY(-18px) scale(0.97); }
  to   { opacity: 1; transform: none; }
}

.auth-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: rgba(11,23,41,0.40);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: color 0.2s;
}
.auth-close:hover { color: var(--navy); }

.auth-tabs {
  display: flex;
  border-bottom: 1px solid rgba(11,23,41,0.10);
  margin-bottom: 28px;
}
.auth-tab {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 10px 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(11,23,41,0.45);
  cursor: pointer;
  margin-bottom: -1px;
  transition: color 0.2s, border-color 0.2s;
}
.auth-tab.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.auth-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.auth-logo img {
  width: 32px; height: 32px;
  border-radius: 4px;
}
.auth-logo span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.10rem;
  font-weight: 600;
  color: var(--navy);
}

.auth-field {
  margin-bottom: 18px;
}
.auth-field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(11,23,41,0.60);
  margin-bottom: 6px;
}
.auth-field input,
.auth-field select,
.auth-field textarea {
  width: 100%;
  background: #f7f9fc;
  border: 1px solid rgba(11,23,41,0.14);
  border-radius: 2px;
  padding: 11px 14px;
  font-family: 'Jost', sans-serif;
  font-size: 0.90rem;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}
.auth-field textarea { resize: vertical; min-height: 100px; }
.auth-field input:focus,
.auth-field select:focus,
.auth-field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(154,136,118,0.12);
  background: #fff;
}
.auth-hint {
  font-size: 0.70rem;
  color: rgba(11,23,41,0.45);
  margin-top: 4px;
  display: block;
}
.char-count { text-align: right; }

/* Password visibility toggle */
.password-wrap {
  position: relative;
}
.password-wrap input {
  padding-right: 42px;
  width: 100%;
  box-sizing: border-box;
}
.pwd-toggle {
  position: absolute;
  right: 11px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px;
  color: rgba(11,23,41,0.38);
  display: flex;
  align-items: center;
  transition: color 0.15s;
}
.pwd-toggle:hover { color: var(--navy); }

/* Info banner (e.g. verified success inside login modal) */
.auth-info {
  background: rgba(154,136,118,0.09);
  border: 1px solid rgba(154,136,118,0.30);
  color: #1a5fa8;
  font-size: 0.82rem;
  padding: 10px 14px;
  margin-bottom: 16px;
  border-radius: 2px;
  text-align: center;
}

/* Verify pending panel shown inside register form after submission */
.auth-verify-panel {
  text-align: center;
  padding: 8px 0 4px;
}
.verify-icon { font-size: 2.2rem; margin-bottom: 10px; }
.verify-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 6px;
}
.verify-sub {
  font-size: 0.83rem;
  color: rgba(11,23,41,0.60);
  margin: 0 0 18px;
  line-height: 1.55;
}
.auth-resend-btn {
  display: block;
  width: 100%;
  background: none;
  border: 1px solid rgba(11,23,41,0.20);
  border-radius: 2px;
  padding: 10px;
  font-family: 'Jost', sans-serif;
  font-size: 0.80rem;
  color: rgba(11,23,41,0.65);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  margin-bottom: 4px;
}
.auth-resend-btn:hover { border-color: var(--navy); color: var(--navy); }

.auth-error {
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.25);
  color: #c0392b;
  font-size: 0.82rem;
  padding: 10px 14px;
  margin-bottom: 16px;
  border-radius: 2px;
}
.auth-success {
  background: rgba(39,174,96,0.08);
  border: 1px solid rgba(39,174,96,0.28);
  color: #1e7e34;
  font-size: 0.82rem;
  padding: 10px 14px;
  margin-bottom: 16px;
  border-radius: 2px;
}

.auth-submit {
  width: 100%;
  background: var(--navy);
  color: #fff;
  border: none;
  padding: 13px;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  margin-top: 4px;
}
.auth-submit:hover:not(:disabled) { background: var(--gold); }
.auth-submit:disabled { opacity: 0.55; cursor: not-allowed; }

.auth-switch {
  text-align: center;
  font-size: 0.80rem;
  color: rgba(11,23,41,0.55);
  margin-top: 18px;
  margin-bottom: 0;
}
.auth-switch-btn {
  background: none;
  border: none;
  color: var(--gold);
  font-family: inherit;
  font-size: inherit;
  font-weight: 600;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
}

/* =========================================
   DASHBOARD
   ========================================= */

.dashboard-page { background: #f2ede8; min-height: 100vh; }

.dashboard-main {
  padding: 100px 0 72px;
  min-height: 100vh;
}

.dash-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.dash-greeting {
  font-size: 0.80rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.dash-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--navy);
  margin: 0;
}

.dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.dash-stat-card {
  background: #fff;
  border: 1px solid rgba(11,23,41,0.08);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dash-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: var(--navy);
}
.dash-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(11,23,41,0.50);
}

.dash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.dash-card {
  background: #fff;
  border: 1px solid rgba(11,23,41,0.08);
  padding: 32px;
}
.dash-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.30rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 24px;
}

.request-card {
  border: 1px solid rgba(11,23,41,0.08);
  padding: 18px;
  margin-bottom: 12px;
  background: #f9fafc;
}
.request-card:last-child { margin-bottom: 0; }

.request-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.request-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.request-status {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
}
.status-pending     { background: rgba(243,156,18,0.12);  color: #d4a017; }
.status-in_review   { background: rgba(154,136,118,0.12);  color: #5a3e2b; }
.status-in_progress { background: rgba(39,174,96,0.12);   color: #1a7a42; }
.status-completed   { background: rgba(39,174,96,0.18);   color: #1a7a42; }
.status-cancelled   { background: rgba(192,57,43,0.10);   color: #c0392b; }

.request-budget {
  font-size: 0.78rem;
  color: rgba(11,23,41,0.55);
  margin-bottom: 6px;
}
.request-desc {
  font-size: 0.85rem;
  color: rgba(11,23,41,0.75);
  line-height: 1.60;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.request-date {
  font-size: 0.70rem;
  color: rgba(11,23,41,0.40);
  margin: 0;
}

.requests-loading,
.requests-empty {
  text-align: center;
  color: rgba(11,23,41,0.45);
  font-size: 0.88rem;
  padding: 32px 0;
}

@media (max-width: 900px) {
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .dash-grid  { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .dash-stats { grid-template-columns: repeat(2, 1fr); }
  .auth-box   { padding: 32px 24px 28px; }
}

/* =========================================
   BILLING
   ========================================= */

.dash-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 32px;
  border-bottom: 2px solid rgba(11,23,41,0.08);
}
.dash-tab {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  padding: 10px 26px;
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(11,23,41,0.42);
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s;
}
.dash-tab:hover   { color: var(--navy); }
.dash-tab.active  { color: var(--navy); border-bottom-color: var(--gold); }

.billing-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.invoice-card {
  border: 1px solid rgba(11,23,41,0.08);
  padding: 20px 22px;
  margin-bottom: 12px;
  background: #f9fafc;
}
.invoice-card:last-child { margin-bottom: 0; }

.invoice-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}
.invoice-number {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(11,23,41,0.40);
}
.invoice-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.invoice-desc {
  font-size: 0.85rem;
  color: rgba(11,23,41,0.72);
  line-height: 1.55;
  margin-bottom: 12px;
}
.invoice-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.invoice-meta-item {
  font-size: 0.70rem;
  color: rgba(11,23,41,0.42);
}
.invoice-meta-item strong { color: rgba(11,23,41,0.60); }

.status-unpaid    { background: rgba(243,156,18,0.12);  color: #b8860b; }
.status-paid      { background: rgba(39,174,96,0.12);   color: #1a7a42; }

.invoice-pay-btn {
  display: inline-block;
  padding: 9px 24px;
  background: var(--navy);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
}
.invoice-pay-btn:hover { background: var(--gold); }

.invoice-paid-badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #1a7a42;
}

@media (max-width: 600px) {
  .billing-stats { grid-template-columns: repeat(2, 1fr); }
  .dash-tab { padding: 10px 16px; }
}

/* =========================================
   SERVICES SECTION (index.html)
   ========================================= */

.services-section {
  padding: 100px 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 8px;
}

.service-card {
  position: relative;
  border: 1px solid rgba(11,23,41,0.10);
  padding: 44px 40px 40px;
  background: var(--bg);
  transition: border-color 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  border-color: var(--gold-muted);
  box-shadow: 0 8px 40px rgba(154,136,118,0.08);
  background: var(--bg);
}
.service-card--featured {
  border-color: var(--gold);
  background: linear-gradient(160deg, rgba(154,136,118,0.05) 0%, var(--bg) 60%);
}
.service-card--featured:hover {
  box-shadow: 0 8px 48px rgba(154,136,118,0.14);
  background: linear-gradient(160deg, rgba(154,136,118,0.08) 0%, var(--bg) 60%);
}

.service-card-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-family: 'Jost', sans-serif;
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 12px;
}

.service-card-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
  line-height: 1;
}
.service-card-tag {
  display: inline-block;
  font-family: 'Courier New', monospace;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.65rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.25;
}
.service-card > p {
  font-size: 0.90rem;
  color: rgba(11,23,41,0.68);
  line-height: 1.65;
  margin-bottom: 22px;
}
.service-card-list {
  list-style: none;
  margin-bottom: 28px;
}
.service-card-list li {
  font-size: 0.84rem;
  color: rgba(11,23,41,0.68);
  padding: 7px 0 7px 18px;
  border-bottom: 1px solid rgba(11,23,41,0.05);
  position: relative;
}
.service-card-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.7;
}
.service-card-list li:last-child { border-bottom: none; }
.service-card-btn {
  font-size: 0.74rem;
  padding: 12px 28px;
  display: inline-block;
  margin-bottom: 0;
}
.service-card-note {
  display: none;
  font-size: 0.68rem;
  color: rgba(11,23,41,0.38);
  letter-spacing: 0.06em;
  margin: 0;
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* =========================================
   STORE PAGE
   ========================================= */

.store-page { background: var(--bg); }

/* ── Store Hero ─────────────────────────────────────────── */
.store-hero {
  position: relative;
  background: var(--navy);
  padding: 90px 0 60px;
  overflow: hidden;
}
.store-hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.18;
}
.store-hero-glow-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, #9a8876 0%, transparent 70%);
  top: -200px; left: -200px;
}
.store-hero-glow-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #c4b5a5 0%, transparent 70%);
  bottom: -150px; right: 5%;
  opacity: 0.10;
}

.store-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}
.store-hero-text { max-width: 540px; }

.store-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.10;
  margin: 16px 0 22px;
}
.store-hero-accent {
  background: linear-gradient(135deg, #c4b5a5 0%, #9a8876 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.store-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.70;
  margin-bottom: 32px;
}
.store-hero-stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 36px;
}
.store-stat { text-align: center; }
.store-stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.store-stat-label {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
}
.store-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}
.store-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── Phone Mockup ─────────────────────────────────────── */
.store-hero-phone {
  position: relative;
  flex-shrink: 0;
}
.phone-glow {
  position: absolute;
  inset: -30px;
  background: radial-gradient(circle at 50% 50%, rgba(154,136,118,0.30) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  filter: blur(20px);
}
.phone-frame {
  position: relative;
  z-index: 1;
  width: 280px;
  background: #0d1b2e;
  border: 2px solid rgba(255,255,255,0.12);
  border-radius: 36px;
  padding: 16px 12px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
}
.phone-notch {
  width: 90px;
  height: 6px;
  background: rgba(255,255,255,0.10);
  border-radius: 3px;
  margin: 0 auto 14px;
}
.phone-screen { display: flex; flex-direction: column; min-height: 400px; }

.phone-status-bar {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.55);
  padding: 0 6px 10px;
}
.phone-contact-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 6px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 12px;
}
.phone-avatar {
  width: 36px; height: 36px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.phone-contact-name {
  font-size: 0.80rem;
  font-weight: 600;
  color: #fff;
}
.phone-contact-sub {
  font-size: 0.60rem;
  color: rgba(255,255,255,0.45);
}

.phone-messages {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 2px;
}
.phone-msg {
  position: relative;
  font-size: 0.70rem;
  line-height: 1.50;
  padding: 8px 10px;
  border-radius: 14px;
  max-width: 88%;
  opacity: 0;
  animation: msgAppear 0.4s ease forwards;
}
.phone-msg--anim-1 { animation-delay: 0.5s; }
.phone-msg--anim-2 { animation-delay: 1.4s; }
.phone-msg--anim-3 { animation-delay: 2.3s; }

@keyframes msgAppear {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.phone-msg--missed {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.45);
  font-size: 0.62rem;
  text-align: center;
  border-radius: 6px;
  align-self: center;
  max-width: 100%;
  opacity: 1;
}
.phone-missed-icon { margin-right: 4px; }

.phone-msg--out {
  background: var(--gold);
  color: var(--navy);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.phone-msg--in {
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.85);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}
.phone-msg-time {
  display: block;
  font-size: 0.55rem;
  opacity: 0.60;
  margin-top: 3px;
  text-align: right;
}
.phone-msg--in .phone-msg-time { text-align: left; }

.phone-input-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 8px 6px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.phone-input-field {
  flex: 1;
  background: rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 7px 12px;
  font-size: 0.65rem;
  color: rgba(255,255,255,0.30);
}
.phone-send-btn {
  width: 28px; height: 28px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.70rem;
  flex-shrink: 0;
}

/* ── How It Works ─────────────────────────────────────── */
.how-it-works {
  padding: 60px 0;
  background: var(--bg-section);
  position: relative;
  overflow: hidden;
}
.hiw-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hiw-glow-1 {
  width: 360px;
  height: 360px;
  background: rgba(154,136,118,0.22);
  top: -120px;
  right: -80px;
}
.hiw-glow-2 {
  width: 260px;
  height: 260px;
  background: rgba(11,23,41,0.06);
  bottom: -60px;
  left: -60px;
}
.hiw-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0;
  margin-top: 36px;
  flex-wrap: wrap;
}
.hiw-step {
  position: relative;
  flex: 1;
  min-width: 180px;
  max-width: 228px;
  text-align: center;
  padding: 38px 22px 32px;
  background: var(--bg);
  border: 1px solid rgba(154,136,118,0.18);
  border-top: 3px solid var(--gold);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  opacity: 0;
  transform: translateY(28px);
}
.hiw-step:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 20px 50px rgba(11,23,41,0.11), 0 0 0 1px rgba(154,136,118,0.32);
  border-color: var(--gold);
}
.hiw-step--visible {
  animation: hiwFadeUp 0.6s cubic-bezier(0.22,1,0.36,1) forwards;
}
.hiw-step[data-step="1"].hiw-step--visible { animation-delay: 0.05s; }
.hiw-step[data-step="2"].hiw-step--visible { animation-delay: 0.20s; }
.hiw-step[data-step="3"].hiw-step--visible { animation-delay: 0.35s; }
.hiw-step[data-step="4"].hiw-step--visible { animation-delay: 0.50s; }
@keyframes hiwFadeUp {
  to { opacity: 1; transform: translateY(0); }
}
.hiw-step-watermark {
  position: absolute;
  top: -6px;
  right: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.8rem;
  font-weight: 700;
  color: rgba(154,136,118,0.10);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  transition: color 0.35s;
}
.hiw-step:hover .hiw-step-watermark {
  color: rgba(154,136,118,0.17);
}
.hiw-step-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(154,136,118,0.14) 0%, rgba(154,136,118,0.06) 100%);
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 2px 16px rgba(154,136,118,0.18), inset 0 1px 0 rgba(255,255,255,0.35);
  transition: background 0.35s, border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}
.hiw-step:hover .hiw-step-badge {
  background: linear-gradient(135deg, rgba(154,136,118,0.24) 0%, rgba(154,136,118,0.10) 100%);
  border-color: var(--gold);
  box-shadow: 0 0 22px rgba(154,136,118,0.42), inset 0 1px 0 rgba(255,255,255,0.35);
  transform: scale(1.08);
}
.hiw-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.06em;
  line-height: 1;
}
.hiw-step-icon {
  font-size: 2rem;
  margin-bottom: 14px;
  line-height: 1;
  display: block;
  transition: transform 0.35s ease;
}
.hiw-step:hover .hiw-step-icon {
  transform: scale(1.18);
}
.hiw-step h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}
.hiw-step p {
  font-size: 0.78rem;
  color: rgba(11,23,41,0.60);
  line-height: 1.65;
}
.hiw-connector {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  position: relative;
  align-self: center;
}
.hiw-connector::before {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 40%, var(--gold) 60%, transparent);
  opacity: 0.45;
}
.hiw-connector-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(154,136,118,0.65);
  position: absolute;
  animation: hiwTravelDot 2.6s ease-in-out infinite;
}
@keyframes hiwTravelDot {
  0%   { left: 2px;                opacity: 0; }
  12%  { opacity: 1; }
  88%  { opacity: 1; }
  100% { left: calc(100% - 10px); opacity: 0; }
}

/* ── Features ─────────────────────────────────────────── */
.store-features {
  padding: 60px 0;
  background: var(--bg);
}
.store-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.store-feature-card {
  border: 1px solid rgba(11,23,41,0.08);
  padding: 32px 28px;
  transition: border-color 0.22s, box-shadow 0.22s;
}
.store-feature-card:hover {
  border-color: var(--gold-muted);
  box-shadow: 0 4px 24px rgba(154,136,118,0.07);
}
.store-feature-icon {
  font-size: 1.8rem;
  margin-bottom: 16px;
  line-height: 1;
}
.store-feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.store-feature-card p {
  font-size: 0.83rem;
  color: rgba(11,23,41,0.62);
  line-height: 1.65;
}

/* ── Impact / Testimonial ─────────────────────────────── */
.store-impact {
  background: var(--navy);
  padding: 48px 0;
}
.store-impact-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.store-impact-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
  margin-bottom: 28px;
}
.store-impact-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.store-impact-avatar {
  width: 44px; height: 44px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.store-impact-author strong {
  display: block;
  color: #fff;
  font-size: 0.88rem;
  font-family: 'Jost', sans-serif;
}
.store-impact-author span {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.50);
}

/* ── Pricing ──────────────────────────────────────────── */
.store-pricing {
  padding: 60px 0;
  background: var(--bg-section);
}
.pricing-wrapper {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 40px;
  align-items: start;
  max-width: 860px;
  margin: 0 auto;
}
.pricing-card {
  position: relative;
  background: var(--navy);
  color: #fff;
  padding: 48px 40px 44px;
  border: 1px solid rgba(154,136,118,0.30);
  box-shadow: 0 16px 64px rgba(11,23,41,0.20);
}
.pricing-card-badge {
  position: absolute;
  top: -1px;
  left: 40px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 4px 14px;
}
.pricing-plan-name {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  margin-top: 8px;
}
.pricing-amount {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 8px;
  line-height: 1;
}
.pricing-currency {
  font-family: 'Jost', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255,255,255,0.70);
  padding-top: 10px;
}
.pricing-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 300;
  color: #fff;
  line-height: 1;
}
.pricing-per {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.50);
  padding-top: 52px;
  padding-left: 4px;
}
.pricing-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.55;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
}
.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}
.pricing-features li {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.80);
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pricing-features li:last-child { border-bottom: none; }

.store-cta-wrap { text-align: center; }
.store-cta-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.50);
  margin-bottom: 14px;
}
.store-cta-btn {
  width: 100%;
  padding: 14px;
  font-size: 0.78rem;
}
.store-activate-msg {
  margin-top: 14px;
  font-size: 0.78rem;
  line-height: 1.55;
  padding: 12px 14px;
  border-radius: 2px;
  text-align: left;
}
.store-activate-success {
  background: rgba(39,174,96,0.15);
  border: 1px solid rgba(39,174,96,0.30);
  color: #7de8a8;
}
.store-activate-error {
  background: rgba(192,57,43,0.12);
  border: 1px solid rgba(192,57,43,0.25);
  color: #f4a0a0;
}

.pricing-addons {
  padding: 32px;
  background: var(--bg);
  border: 1px solid rgba(11,23,41,0.08);
  align-self: start;
}
.pricing-addons h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.10rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}
.pricing-addon-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(11,23,41,0.07);
  font-size: 0.82rem;
  color: rgba(11,23,41,0.68);
}
.pricing-addon-item:last-of-type { border-bottom: none; }
.pricing-addon-item strong {
  color: var(--navy);
  font-weight: 600;
  white-space: nowrap;
}
.pricing-addon-note {
  font-size: 0.72rem;
  color: rgba(11,23,41,0.42);
  margin-top: 16px;
  line-height: 1.55;
}
.pricing-addon-note a { color: var(--gold); }

/* ── FAQ ──────────────────────────────────────────────── */
.store-faq {
  padding: 100px 0;
  background: var(--bg);
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 48px;
  max-width: 960px;
  margin: 0 auto;
}
.faq-item h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.faq-item p {
  font-size: 0.84rem;
  color: rgba(11,23,41,0.62);
  line-height: 1.65;
}

/* ── Store responsive ────────────────────────────────── */
.nav-cta-store {
  color: var(--gold) !important;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .store-hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .phone-frame { width: 260px; }
  .store-hero-phone { display: flex; justify-content: center; }
}
@media (max-width: 900px) {
  .store-features-grid { grid-template-columns: 1fr 1fr; }
  .pricing-wrapper { grid-template-columns: 1fr; max-width: 460px; }
  .hiw-connector { display: none; }
  .hiw-steps { gap: 16px; }
  .hiw-step { min-width: 140px; }
}
@media (max-width: 600px) {
  .store-features-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .store-hero-stats { gap: 16px; }
  .store-hero-phone { display: none; }
}

/* =========================================
   CONTACT PAGE
   ========================================= */

.hero--sm {
  min-height: 52vh;
}

.contact-info-section {
  padding: 56px 0;
  background: var(--bg);
  position: relative;
}

.contact-info-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154,136,118,0.20), transparent);
}

.booking-section {
  padding: 64px 0;
  background: var(--bg-warm);
  position: relative;
}

.booking-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(154,136,118,0.20), transparent);
}

.calendly-wrap {
  border: 1px solid var(--border);
  background: var(--bg);
  overflow: hidden;
  margin-top: 16px;
}

.contact {
  padding: 64px 0;
  position: relative;
}

.contact-lead {
  max-width: 580px;
  margin: 0 auto;
  font-size: 1.00rem;
  color: var(--text-muted);
  line-height: 1.80;
  font-weight: 300;
}

.contact-lead strong {
  color: var(--cream);
  font-weight: 500;
}

/* ── CTA banner ── */
.contact-cta-banner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--bg);
  border: 1px solid var(--border-gold);
  padding: 42px 52px;
  margin: 52px auto 0;
  max-width: 560px;
  text-align: center;
}

.cta-banner-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.cta-phone-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.cta-phone-link:hover { color: var(--gold); }

.cta-banner-sub {
  font-size: 0.76rem;
  color: rgba(240,235,224,0.32);
  font-weight: 300;
}

/* ── Contact cards grid ── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  margin-top: 52px;
}

.info-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg);
  padding: 30px 32px;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s ease;
}

.info-card--primary {
  border-left: 2px solid var(--gold);
}

.info-card:hover {
  background: var(--navy-2);
}

.info-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  opacity: 0.70;
}

.info-card h4 {
  font-size: 0.66rem;
  color: var(--gold);
  margin-bottom: 5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.info-card p {
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--cream);
}

.info-card-sub {
  display: block;
  font-size: 0.77rem;
  color: var(--text-muted);
  margin-top: 3px;
  font-weight: 300;
}

.info-card-arrow {
  margin-left: auto;
  font-size: 1.1rem;
  color: var(--gold-muted);
  flex-shrink: 0;
}

/* =========================================
   FOOTER
   ========================================= */

.footer {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 48px 0 24px;
  background: #0b1729;
  color: #f0ebe0;
  --text: #f0ebe0;
  --text-muted: rgba(240,235,224,0.58);
  --cream: #f0ebe0;
  --cream-muted: rgba(240,235,224,0.58);
  --border: rgba(240,235,224,0.09);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .nav-logo { margin-bottom: 14px; }

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.80;
  max-width: 230px;
  font-weight: 400;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links h4 {
  font-size: 0.66rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 300;
  transition: color 0.25s;
}

.footer-links a:hover { color: var(--text); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.80rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}

#sphere-canvas {
  display: block;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  cursor: grab;
}

#sphere-canvas:active { cursor: grabbing; }

.sphere-hint {
  text-align: center;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-top: 18px;
  user-select: none;
  pointer-events: none;
  animation: hint-pulse 2.6s ease-in-out infinite;
}

@keyframes hint-pulse {
  0%, 100% { opacity: 0.40; }
  50%       { opacity: 0.80; }
}

/* =========================================
   ANIMATIONS
   ========================================= */

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}

@keyframes scrollWheel {
  0%   { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes float1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%       { transform: translateY(-22px) rotate(2deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0) rotate(3deg); }
  50%       { transform: translateY(-16px) rotate(-1deg); }
}

@keyframes float3 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%       { transform: translateY(-26px) rotate(3deg); }
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }

  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .why-us-visual { min-height: 360px; }

  .contact-cards { grid-template-columns: 1fr; }
  .contact-cta-banner { padding: 28px 22px; }
  .cta-phone-link { font-size: 1.5rem; }

  .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.99);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 24px 28px;
    gap: 20px;
    z-index: 999;
  }

  .nav-links a {
    color: var(--text-muted);
  }

  .nav-links a:hover {
    color: var(--text);
  }

  .nav-links.open { display: flex; }

  .hamburger { display: flex; position: absolute; right: 28px; }

  .services-grid { grid-template-columns: 1fr; }

  .portfolio-grid { grid-template-columns: 1fr; }

  .hero-stats {
    flex-direction: column;
    gap: 24px;
    padding: 24px;
  }

  .stat-divider { width: 60px; height: 1px; }

  .form-row { grid-template-columns: 1fr; }

  .modal-window { height: 95vh; }

  .footer-content { grid-template-columns: 1fr; gap: 32px; }


}

@media (max-width: 480px) {
  .hero-title { letter-spacing: -0.015em; }
  .hero-stats { width: 100%; }
  .portfolio-thumb { height: 200px; }
  .modal-window { height: 98vh; }
}
