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

:root {
  --bg: #080808;
  --surface: #111111;
  --surface-2: #1a1a1a;
  --border: #252525;
  --gold: #c9a96e;
  --gold-light: #dfc08a;
  --text: #ede9e2;
  --text-muted: #7a7570;
  --white: #ffffff;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --nav-h: 72px;
  --max-w: 1240px;
  --pad: clamp(1.25rem, 4vw, 3rem);
  --radius: 3px;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { background: var(--bg); color: var(--text); font-family: var(--font-sans); font-size: 1rem; line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* === TYPOGRAPHY === */
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.2; font-weight: 600; }
h1 { font-size: clamp(2rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
.text-gold { color: var(--gold); }

/* === LAYOUT === */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad); }
section { padding: clamp(3.5rem, 9vw, 7rem) 0; }

/* === NAVIGATION === */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h); display: flex; align-items: center;
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(8,8,8,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
.nav .container { width: 100%; display: flex; align-items: center; justify-content: space-between; }

.nav-logo { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; letter-spacing: 0.04em; color: var(--white); }
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-links a { font-size: 0.8125rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-muted); transition: color var(--transition); }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--white); }

.nav-cta { background: var(--gold) !important; color: #000 !important; padding: 0.5rem 1.25rem; border-radius: var(--radius); font-weight: 600 !important; transition: background var(--transition), transform var(--transition) !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); transition: var(--transition); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: rgba(8,8,8,0.98); padding: 2rem var(--pad) 3rem; border-top: 1px solid var(--border); }
  .nav-menu.open { display: block; }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .nav-links a { font-size: 1rem; }
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.875rem 2rem; font-family: var(--font-sans);
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; cursor: pointer; border: none;
  border-radius: var(--radius); transition: all var(--transition); white-space: nowrap;
}
.btn-primary { background: var(--gold); color: #000; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,169,110,0.28); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 1.125rem 2.75rem; font-size: 0.875rem; }

/* === HERO === */
.hero {
  position: relative; height: 100dvh; min-height: 640px;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06);
  transition: transform 9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero.loaded .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(130deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.42) 55%, rgba(0,0,0,0.18) 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 680px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--gold); }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { font-size: 1.125rem; color: rgba(255,255,255,0.72); margin-bottom: 2.5rem; max-width: 540px; line-height: 1.75; }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.4); font-size: 0.625rem; letter-spacing: 0.15em;
  text-transform: uppercase; animation: bounce 2.5s ease-in-out infinite;
}
.hero-scroll::after { content: ''; display: block; width: 1px; height: 40px; background: rgba(255,255,255,0.25); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* === SECTION HEADER === */
.section-header { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 4.5rem); }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 0.75rem;
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1rem;
}
.section-eyebrow::before, .section-eyebrow::after { content: ''; display: block; width: 1.5rem; height: 1px; background: var(--gold); }
.section-header h2 { color: var(--white); margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); max-width: 520px; margin: 0 auto; font-size: 1.0625rem; line-height: 1.75; }

/* === SERVICES === */
.services { background: var(--surface); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5px; background: var(--border); }
.service-card {
  background: var(--surface); padding: clamp(1.75rem, 4vw, 2.5rem);
  position: relative; overflow: hidden; transition: background var(--transition);
}
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.35s ease; transform-origin: left; }
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover { background: var(--surface-2); }
.service-icon { font-size: 1.75rem; margin-bottom: 1.25rem; }
.service-card h3 { color: var(--white); margin-bottom: 0.75rem; }
.service-card p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.7; margin-bottom: 1.25rem; }
.service-link { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 0.5rem; transition: gap var(--transition); }
.service-link:hover { gap: 0.75rem; }

/* === STATS === */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 3rem 2rem; text-align: center; }
.stat-number { font-family: var(--font-serif); font-size: clamp(2.75rem, 6vw, 4.5rem); font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 0.5rem; }
.stat-label { font-size: 0.875rem; color: var(--text-muted); line-height: 1.5; max-width: 160px; margin: 0 auto; }

/* === PORTFOLIO GRID === */
.portfolio-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 0.75rem; }
.portfolio-item { overflow: hidden; position: relative; }
.portfolio-item:nth-child(1) { grid-column: span 7; grid-row: span 2; }
.portfolio-item:nth-child(2) { grid-column: span 5; }
.portfolio-item:nth-child(3) { grid-column: span 5; }
.portfolio-item:nth-child(4), .portfolio-item:nth-child(5), .portfolio-item:nth-child(6) { grid-column: span 4; }
.portfolio-img { width: 100%; height: 100%; min-height: 250px; object-fit: cover; transition: transform 0.65s ease; display: block; }
.portfolio-item:hover .portfolio-img { transform: scale(1.05); }
.portfolio-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 55%); opacity: 0; transition: opacity var(--transition); display: flex; align-items: flex-end; padding: 1.25rem; }
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); }
@media (max-width: 768px) {
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .portfolio-item:nth-child(1) { grid-column: span 2; }
}

/* === PORTFOLIO FILTER === */
.portfolio-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn { background: none; border: 1px solid var(--border); color: var(--text-muted); padding: 0.5rem 1.25rem; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; border-radius: 100px; transition: all var(--transition); font-family: var(--font-sans); }
.filter-btn:hover, .filter-btn.active { border-color: var(--gold); color: var(--gold); background: rgba(201,169,110,0.07); }
.portfolio-full-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 0.75rem; }
.portfolio-full-item { overflow: hidden; position: relative; aspect-ratio: 4/3; }
.portfolio-full-item.hidden { display: none; }
.portfolio-full-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.portfolio-full-item:hover img { transform: scale(1.04); }
.portfolio-full-item .portfolio-overlay { display: flex; }

/* === TESTIMONIALS === */
.testimonials { background: var(--surface); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
.testimonial-card { background: var(--bg); border: 1px solid var(--border); padding: 2rem; border-radius: var(--radius); }
.testimonial-stars { color: var(--gold); font-size: 0.875rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.testimonial-text { font-size: 0.9375rem; color: var(--text); line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--surface-2); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1rem; color: var(--gold); font-weight: 600; flex-shrink: 0; }
.author-name { font-weight: 600; font-size: 0.9375rem; color: var(--white); }
.author-role { font-size: 0.8125rem; color: var(--text-muted); }

/* === PRICING === */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; }
.pricing-card { background: var(--surface); border: 1px solid var(--border); padding: 2.5rem; border-radius: var(--radius); position: relative; transition: all var(--transition); }
.pricing-card:hover { border-color: rgba(201,169,110,0.5); transform: translateY(-4px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }
.pricing-card.featured { border-color: var(--gold); background: var(--surface-2); }
.pricing-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--gold); color: #000; font-size: 0.625rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 0.25rem 1rem; border-radius: 0 0 4px 4px; white-space: nowrap; }
.pricing-name { font-family: var(--font-serif); font-size: 1.375rem; color: var(--white); margin-bottom: 0.5rem; }
.pricing-desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.5; }
.pricing-price { font-family: var(--font-serif); font-size: 3.25rem; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 0.25rem; }
.pricing-price sup { font-size: 1.5rem; font-weight: 400; }
.pricing-period { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 2rem; }
.pricing-features { list-style: none; margin-bottom: 2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.pricing-features li { display: flex; gap: 0.75rem; font-size: 0.9375rem; color: var(--text); }
.pricing-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.pricing-note { font-size: 0.8125rem; color: var(--text-muted); margin-top: 1rem; }

/* === CONTACT FORM === */
.contact-wrapper { display: grid; grid-template-columns: 5fr 4fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
@media (max-width: 860px) { .contact-wrapper { grid-template-columns: 1fr; } }
.contact-form { background: var(--surface); border: 1px solid var(--border); padding: clamp(1.75rem, 4vw, 2.75rem); border-radius: var(--radius); }
.contact-form h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.25rem; }
.contact-form > p { color: var(--text-muted); font-size: 0.9375rem; margin-bottom: 1.75rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (max-width: 560px) { .form-grid { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1/-1; }
label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
input, select, textarea { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); padding: 0.8rem 1rem; font-family: var(--font-sans); font-size: 0.9375rem; color: var(--text); width: 100%; transition: border-color var(--transition); outline: none; -webkit-appearance: none; }
input:focus, select:focus, textarea:focus { border-color: var(--gold); }
input::placeholder, textarea::placeholder { color: var(--text-muted); }
textarea { min-height: 130px; resize: vertical; }
select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7570' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-submit { margin-top: 1.25rem; width: 100%; justify-content: center; }
.form-success { display: none; background: rgba(201,169,110,0.08); border: 1px solid rgba(201,169,110,0.4); color: var(--gold); padding: 1rem 1.25rem; border-radius: var(--radius); font-size: 0.9375rem; margin-top: 1rem; }

.contact-info h3 { color: var(--white); margin-bottom: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.contact-info-icon { width: 40px; height: 40px; background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.contact-info-text strong { display: block; color: var(--white); font-size: 0.875rem; font-weight: 600; margin-bottom: 0.2rem; }
.contact-info-text span, .contact-info-text a { color: var(--text-muted); font-size: 0.9375rem; transition: color var(--transition); }
.contact-info-text a:hover { color: var(--gold); }
.contact-map { margin-top: 2rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.contact-map iframe { width: 100%; height: 250px; border: none; filter: grayscale(1) invert(0.9) contrast(0.85); }

/* === CTA BANNER === */
.cta-banner { background: linear-gradient(135deg, var(--surface-2) 0%, var(--surface) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); text-align: center; padding: clamp(3.5rem, 8vw, 6rem) 0; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: var(--text-muted); max-width: 480px; margin: 0 auto 2.5rem; font-size: 1.0625rem; line-height: 1.7; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* === TWO COLUMN === */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.two-col.reverse > *:first-child { order: 2; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } .two-col.reverse > *:first-child { order: 0; } }
.two-col-img { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.two-col-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.65s ease; }
.two-col-img:hover img { transform: scale(1.04); }
.two-col-text h2 { color: var(--white); margin-bottom: 1rem; }
.two-col-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1rem; font-size: 0.9375rem; }
.two-col-text .section-eyebrow { justify-content: flex-start; }
.two-col-text .section-eyebrow::after { display: none; }

/* === FAQ === */
.faq-list { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
details { border-bottom: 1px solid var(--border); }
details:last-child { border-bottom: none; }
summary { padding: 1.25rem 1.5rem; cursor: pointer; font-weight: 500; color: var(--white); font-size: 0.9375rem; display: flex; justify-content: space-between; align-items: center; list-style: none; background: var(--surface); transition: background var(--transition); user-select: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: '+'; color: var(--gold); font-size: 1.375rem; flex-shrink: 0; font-weight: 300; }
details[open] summary { background: var(--surface-2); }
details[open] summary::after { content: '−'; }
details > div { padding: 1.25rem 1.5rem; background: var(--surface-2); color: var(--text-muted); line-height: 1.75; font-size: 0.9375rem; border-top: 1px solid var(--border); }

/* === PAGE HERO === */
.page-hero { padding-top: calc(var(--nav-h) + clamp(2rem, 5vw, 4rem)); padding-bottom: clamp(2rem, 5vw, 4rem); background: var(--bg); }
.page-hero-inner { position: relative; min-height: 420px; display: flex; align-items: flex-end; border-radius: var(--radius); overflow: hidden; }
.page-hero-img { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(0,0,0,0.88) 35%, rgba(0,0,0,0.35) 100%); }
.page-hero-content { position: relative; z-index: 1; padding: clamp(2rem, 5vw, 3rem); max-width: 680px; }
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.45); margin-bottom: 1rem; list-style: none; flex-wrap: wrap; }
.breadcrumb li+li::before { content: '›'; margin-right: 0.5rem; }
.breadcrumb a { color: rgba(255,255,255,0.45); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.page-hero-content h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero-content p { color: rgba(255,255,255,0.72); font-size: 1.0625rem; max-width: 520px; line-height: 1.75; }

/* === FEATURE LIST === */
.feature-list { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; }
.feature-list li { display: flex; align-items: flex-start; gap: 0.875rem; font-size: 0.9375rem; color: var(--text); }
.feature-list li::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 0.45em; }

/* === FOOTER === */
.footer { background: var(--surface); border-top: 1px solid var(--border); padding: clamp(3rem, 7vw, 5rem) 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 3rem; margin-bottom: 3rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { color: var(--text-muted); font-size: 0.9375rem; line-height: 1.7; margin: 1rem 0 1.5rem; max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; }
.social-link { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--text-muted); transition: all var(--transition); }
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h4 { font-family: var(--font-sans); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { font-size: 0.9375rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-contact-item { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.875rem; color: var(--text-muted); margin-bottom: 0.875rem; line-height: 1.5; }
.footer-contact-item a { color: var(--text-muted); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.8125rem; color: var(--text-muted); }
.footer-bottom a { font-size: 0.8125rem; color: var(--text-muted); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }
.footer-bottom-links { display: flex; gap: 1.5rem; }

/* === FLOATING CTA === */
.float-cta { position: fixed; bottom: 2rem; right: 2rem; z-index: 50; background: var(--gold); color: #000; width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(201,169,110,0.38); transition: all var(--transition); }
.float-cta:hover { transform: scale(1.12); box-shadow: 0 8px 32px rgba(201,169,110,0.5); }
.float-cta svg { width: 22px; height: 22px; stroke: #000; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* === UTILITIES === */
.bg-surface { background: var(--surface); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-2 { margin-bottom: 2rem; }
.divider { border: none; border-top: 1px solid var(--border); margin: 0; }

/* === REVEAL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.08s; }
.reveal:nth-child(3) { transition-delay: 0.16s; }
.reveal:nth-child(4) { transition-delay: 0.24s; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* === HIGHLIGHT BOX === */
.highlight-box { background: var(--surface-2); border-left: 3px solid var(--gold); padding: 1.25rem 1.5rem; border-radius: 0 var(--radius) var(--radius) 0; margin: 1.5rem 0; }
.highlight-box p { color: var(--text); font-size: 0.9375rem; line-height: 1.7; margin: 0; }

/* === TARIFS TABS === */
.tarifs-section { margin-bottom: 4rem; }
.tarifs-section h2 { color: var(--white); margin-bottom: 0.75rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); margin-bottom: 2rem; }
.tarifs-eyebrow { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; display: block; }

/* === Bandeau cookies / RGPD (consent.js) — thème v1 noir & or === */
.cookie-banner {
  position: fixed; right: 1.5rem; bottom: 1.5rem; left: 1.5rem; z-index: 1000;
  max-width: 480px; margin-left: auto;
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 1.5rem 1.6rem calc(1.5rem + env(safe-area-inset-bottom));
  box-shadow: 0 -16px 50px -10px rgba(0,0,0,.6);
  font-size: .92rem; color: var(--text);
}
.cookie-banner h2 { font-size: 1.05rem; color: var(--white); margin-bottom: .5rem; }
.cookie-banner p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.cookie-banner .btn, .cookie-modal .btn { padding: .6rem 1.1rem; font-size: .72rem; }
.btn--primary { background: var(--gold); color: #000; }
.btn--primary:hover { background: var(--gold-light); }
.btn--ghost { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.cookie-modal {
  position: fixed; inset: 0; z-index: 1001; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.65); padding: 1.25rem;
}
.cookie-modal__card {
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius);
  max-width: 520px; width: 100%; padding: 1.75rem; color: var(--text); font-size: .92rem;
}
.cookie-modal__card h2 { font-size: 1.1rem; color: var(--white); margin-bottom: .5rem; }
.cookie-modal__card > p { color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.6; }
.cookie-toggle { display: flex; gap: .75rem; align-items: flex-start; margin-bottom: 1rem; cursor: pointer; }
.cookie-toggle input { margin-top: .25rem; accent-color: var(--gold); width: 1.05rem; height: 1.05rem; flex: 0 0 auto; }
.cookie-toggle span { color: var(--text-muted); line-height: 1.5; }
.cookie-toggle strong { color: var(--white); }
.cookie-modal__actions { display: flex; gap: .5rem; justify-content: flex-end; margin-top: 1.25rem; flex-wrap: wrap; }
@media (max-width: 540px) { .cookie-banner { right: .75rem; left: .75rem; bottom: .75rem; } }
