/* ============================================
   Billionaire Kings Events — Rose & Blush Theme
   ============================================ */

:root {
  --color-rose: #b76e79;
  --color-rose-light: #d4a0a8;
  --color-rose-dark: #9a5a66;
  --color-blush: #fdf8f6;
  --color-blush-deep: #f5ebe6;
  --color-burgundy: #5c2e36;
  --color-gold-accent: #c98896;

  --bg-primary: #fdf8f6;
  --bg-secondary: #faf0ed;
  --bg-card: #ffffff;
  --bg-glass: rgba(255, 252, 250, 0.95);
  --bg-header-scrolled: rgba(253, 248, 246, 0.98);
  --bg-mobile-nav: rgba(253, 248, 246, 0.99);
  --bg-dark-section: #2a1418;
  --bg-dark-card: #3a1f25;

  --text-primary: #3d2a2e;
  --text-heading: #2a1418;
  --text-muted: #6b5258;
  --text-subtle: #8a7076;
  --text-on-dark: #fdf8f6;

  --gradient-section: linear-gradient(135deg, #fdf8f6 0%, #faf0ed 50%, #f5ebe6 100%);
  --gradient-hero: linear-gradient(to bottom, rgba(26,14,17,0.82) 0%, rgba(26,14,17,0.55) 45%, rgba(26,14,17,0.72) 100%);
  --gradient-hero-page: linear-gradient(to bottom, rgba(26,14,17,0.88) 0%, rgba(26,14,17,0.6) 100%);
  --gradient-rose: linear-gradient(135deg, #9a5a66, #b76e79, #d4a0a8);
  --gradient-cta: linear-gradient(135deg, #9a5a66 0%, #b76e79 50%, #c98896 100%);

  --border-rose: 1px solid rgba(183, 110, 121, 0.35);
  --border-subtle: 1px solid rgba(183, 110, 121, 0.18);
  --shadow-rose: 0 4px 24px rgba(183, 110, 121, 0.18);
  --shadow-card: 0 4px 24px rgba(42, 20, 24, 0.06);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Segoe UI', sans-serif;

  --header-height: 88px;
  --header-height-scrolled: 72px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --container: min(1140px, calc(100vw - 2rem));
  --float-size: 52px;
  color-scheme: light;
}

[data-theme="dark"] {
  --bg-primary: #1a0e11;
  --bg-secondary: #241418;
  --bg-card: #2a1418;
  --bg-glass: rgba(26, 14, 17, 0.95);
  --bg-header-scrolled: rgba(26, 14, 17, 0.98);
  --bg-mobile-nav: rgba(26, 14, 17, 0.99);
  --text-primary: #f5ebe6;
  --text-heading: #fdf8f6;
  --text-muted: #c4a8ae;
  --text-subtle: #9a8086;
  --gradient-section: linear-gradient(135deg, #1a0e11 0%, #241418 50%, #1a0e11 100%);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
  color-scheme: dark;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-primary);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-rose-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-rose); }

.container { width: var(--container); margin: 0 auto; }

/* --- Header --- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0.65rem 0;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

/* Transparent header over hero — light nav for contrast */
.has-hero .site-header:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(26, 14, 17, 0.88) 0%, rgba(26, 14, 17, 0.55) 65%, transparent 100%);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom-color: rgba(212, 160, 168, 0.12);
}

.has-hero .site-header:not(.scrolled) .logo-line--primary {
  color: #fff;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.45);
}

.has-hero .site-header:not(.scrolled) .logo-line--secondary {
  color: var(--color-rose-light);
}

.has-hero .site-header:not(.scrolled) .nav-link {
  color: rgba(255, 252, 250, 0.95);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.has-hero .site-header:not(.scrolled) .nav-link:hover,
.has-hero .site-header:not(.scrolled) .nav-link.active {
  color: #fff;
}

.has-hero .site-header:not(.scrolled) .nav-link::after {
  background: linear-gradient(90deg, var(--color-rose-light), #fff);
}

.has-hero .site-header:not(.scrolled) .theme-toggle {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff;
}

.has-hero .site-header:not(.scrolled) .theme-toggle:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.has-hero .site-header:not(.scrolled) .nav-toggle span {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

.site-header.scrolled {
  background: var(--bg-header-scrolled);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(42, 20, 24, 0.1);
  padding: 0.35rem 0;
  border-bottom-color: rgba(183, 110, 121, 0.15);
}

[data-theme="dark"] .site-header.scrolled {
  background: var(--bg-header-scrolled);
  border-bottom-color: rgba(212, 160, 168, 0.12);
}

[data-theme="dark"] .has-hero .site-header:not(.scrolled) {
  background: linear-gradient(to bottom, rgba(10, 6, 8, 0.92) 0%, rgba(10, 6, 8, 0.6) 65%, transparent 100%);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text-heading);
}

.logo-img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  transition: width var(--transition), height var(--transition);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.25));
}

.site-header.scrolled .logo-img {
  width: 48px;
  height: 48px;
}

.logo-text { display: flex; flex-direction: column; line-height: 1.15; }

.logo-line--primary {
  font-family: var(--font-heading);
  font-size: clamp(0.95rem, 2.2vw, 1.15rem);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.logo-line--secondary {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-rose);
}

.main-nav .nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-primary);
  position: relative;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active { color: var(--color-rose-dark); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.theme-toggle,
.nav-toggle {
  width: 42px;
  height: 42px;
  border: var(--border-subtle);
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--color-rose-dark);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}

.theme-toggle:hover,
.nav-toggle:hover {
  background: var(--color-blush-deep);
  color: var(--color-rose);
}

.theme-icon-dark { display: none; }
[data-theme="dark"] .theme-icon-light { display: none; }
[data-theme="dark"] .theme-icon-dark { display: block; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: transparent; border: none; }
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-rose-dark);
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(42, 20, 24, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}

.nav-overlay.visible { opacity: 1; }

/* --- Buttons --- */
.rose-button,
.gold-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  background: var(--gradient-cta);
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-rose);
}

.rose-button:hover,
.gold-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(183, 110, 121, 0.35);
  color: #fff;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-rose-dark);
  background: transparent;
  border: 1px solid var(--color-rose);
  border-radius: 2px;
  transition: background var(--transition), color var(--transition);
}

.outline-button:hover {
  background: rgba(183, 110, 121, 0.1);
  color: var(--color-rose-dark);
}

.outline-button--light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
}

.outline-button--light:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  border-color: #fff;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: calc(var(--header-height) + 2rem) 1.5rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  filter: brightness(0.5) saturate(1.1);
}

.page-hero .hero-bg img {
  object-position: center 40%;
  filter: brightness(0.45) saturate(1.08);
}

.content-image {
  border-radius: 12px;
  border: var(--border-rose);
  box-shadow: var(--shadow-card);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-hero);
  z-index: 1;
}

.page-hero .hero-overlay {
  background: var(--gradient-hero-page);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1rem;
  margin-bottom: 1.25rem;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-rose-light);
  border: 1px solid rgba(212, 160, 168, 0.5);
  border-radius: 999px;
  background: rgba(42, 20, 24, 0.4);
  backdrop-filter: blur(6px);
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 5vw, 3.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.55);
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: rgba(255, 252, 250, 0.92);
  max-width: 620px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.page-hero {
  position: relative;
  min-height: min(48vh, 420px);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 1.5rem) 0 2.5rem;
  overflow: hidden;
}

.page-hero .hero-content { text-align: left; width: var(--container); margin: 0 auto; }

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 0.5rem;
}

.breadcrumb {
  font-size: 0.78rem;
  color: rgba(255, 252, 250, 0.75);
}

.breadcrumb a { color: var(--color-rose-light); }
.breadcrumb span { margin: 0 0.4rem; opacity: 0.6; }

/* --- Sections --- */
.section {
  padding: 5rem 0;
}

.section--blush { background: var(--bg-secondary); }
.section--dark {
  background: var(--bg-dark-section);
  color: var(--text-on-dark);
}

.section--dark .section-title { color: #fff; }
.section--dark .section-subtitle { color: rgba(253, 248, 246, 0.75); }

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3.5vw, 2.5rem);
  font-weight: 600;
  text-align: center;
  color: var(--text-heading);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.section-kicker {
  display: block;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-rose);
  margin-bottom: 0.5rem;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
}

.rose-divider,
.gold-divider {
  width: 60px;
  height: 2px;
  background: var(--gradient-rose);
  margin: 1rem auto 1.5rem;
}

.rose-divider--left,
.gold-divider { margin-left: 0; margin-right: auto; }

.text-center { text-align: center; }

/* --- Stats --- */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: var(--border-rose);
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  margin-top: -2.5rem;
  position: relative;
  z-index: 3;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 600;
  color: var(--color-rose-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.35rem;
}

/* --- Cards & Grids --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.5rem;
}

.service-card {
  padding: 2rem 1.5rem;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
  border: var(--border-subtle);
  border-radius: 12px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-rose);
  border-color: rgba(183, 110, 121, 0.35);
}

.icon-ring {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(154, 90, 102, 0.45);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(183, 110, 121, 0.14) 0%, rgba(253, 248, 246, 0.95) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), 0 2px 8px rgba(183, 110, 121, 0.12);
}

.icon-ring i {
  font-size: 1.35rem;
  color: var(--color-rose-dark);
  line-height: 1;
}

.section--dark .icon-ring {
  background: linear-gradient(145deg, rgba(183, 110, 121, 0.2) 0%, rgba(58, 31, 37, 0.6) 100%);
  border-color: rgba(212, 160, 168, 0.4);
}

.section--dark .icon-ring i {
  color: var(--color-rose-light);
}

.service-card h3,
.feature-item h3,
.capability-item h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
}

.service-card p { font-size: 0.88rem; color: var(--text-muted); }

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-item i {
  font-size: 1.5rem;
  color: var(--color-rose);
  margin-top: 0.15rem;
}

.feature-item p { font-size: 0.88rem; color: var(--text-muted); }

.section--dark .feature-item p { color: rgba(253, 248, 246, 0.75); }
.section--dark .feature-item i { color: var(--color-rose-light); }

/* --- Capabilities (services page) --- */
.capabilities-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
}

.capability-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: 8px;
}

.capability-item i {
  font-size: 1.35rem;
  color: var(--color-rose-dark);
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(154, 90, 102, 0.35);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(183, 110, 121, 0.12) 0%, rgba(253, 248, 246, 0.95) 100%);
}

.capability-item p { font-size: 0.88rem; color: var(--text-muted); margin-top: 0.25rem; }

.deliverables {
  list-style: none;
  margin-top: 0.75rem;
}

.deliverables li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 0.25rem 0 0.25rem 1.25rem;
  position: relative;
}

.deliverables li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  background: var(--color-rose);
  border-radius: 50%;
}

/* --- Process --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
}

.process-num {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  background: var(--gradient-rose);
  border-radius: 50%;
}

.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.35rem;
  color: var(--text-heading);
}

.process-step p { font-size: 0.82rem; color: var(--text-muted); }

/* --- Gallery --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 260px), 1fr));
  gap: 1.25rem;
}

.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
  border: var(--border-subtle);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(42, 20, 24, 0.85));
  color: #fff;
}

.gallery-caption h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}

.gallery-caption p { font-size: 0.75rem; opacity: 0.85; margin-top: 0.15rem; }

.gallery-placeholder {
  display: none;
}

/* --- About --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

.value-card {
  padding: 2rem 1.5rem;
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: 8px;
  text-align: center;
}

.value-card .icon-ring {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1rem;
}

.value-card .icon-ring i {
  font-size: 1.25rem;
}

.value-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.value-card p { font-size: 0.85rem; color: var(--text-muted); }

.trust-block {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--bg-secondary);
  border: var(--border-rose);
  border-radius: 8px;
  text-align: center;
}

.trust-block p { color: var(--text-muted); margin-bottom: 1rem; }

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 1rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: 8px;
}

.contact-card i {
  font-size: 1.25rem;
  color: var(--color-rose-dark);
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(154, 90, 102, 0.35);
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(183, 110, 121, 0.12) 0%, rgba(253, 248, 246, 0.95) 100%);
}

.contact-card h4 {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 0.25rem;
}

.contact-card a,
.contact-card p { font-size: 0.92rem; color: var(--text-primary); }

.contact-form {
  padding: 2rem;
  background: var(--bg-card);
  border: var(--border-subtle);
  border-radius: 8px;
}

.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-subtle);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-primary);
  background: var(--bg-primary);
  border: var(--border-subtle);
  border-radius: 4px;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-rose);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.map-wrap {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  border: var(--border-subtle);
  aspect-ratio: 16/6;
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* --- CTA --- */
.cta-section {
  padding: 5rem 0;
  background: var(--gradient-cta);
  text-align: center;
  color: #fff;
}

.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.75rem;
}

.cta-section p {
  opacity: 0.92;
  max-width: 520px;
  margin: 0 auto 1.75rem;
}

.cta-section .outline-button {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}

.cta-section .outline-button:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.cta-section .rose-button {
  background: #fff;
  color: var(--color-rose-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* --- Footer --- */
.site-footer {
  background: var(--bg-dark-section);
  color: var(--text-on-dark);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(253, 248, 246, 0.7);
  margin: 1rem 0;
  line-height: 1.7;
}

.footer-brand .logo-line--primary { color: #fff; }

.footer-brand .logo-line--secondary {
  color: var(--color-rose-light);
}

.footer-social {
  display: flex;
  gap: 0.65rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 160, 168, 0.35);
  border-radius: 50%;
  color: var(--color-rose-light);
  font-size: 0.85rem;
  transition: background var(--transition), color var(--transition);
}

.footer-social a:hover {
  background: var(--color-rose);
  color: #fff;
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-rose-light);
  margin-bottom: 1rem;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(253, 248, 246, 0.7);
}

.footer-links a:hover { color: var(--color-rose-light); }

.footer-venture {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 160, 168, 0.2);
  font-size: 0.8rem;
  color: rgba(253, 248, 246, 0.6);
}

.footer-venture a { color: var(--color-rose-light); }

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(212, 160, 168, 0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(253, 248, 246, 0.5);
}

.footer-bottom a { color: var(--color-rose-light); }

/* --- Float actions --- */
.float-actions {
  position: fixed;
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  right: max(1.25rem, env(safe-area-inset-right));
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.back-to-top,
.whatsapp-float {
  width: var(--float-size);
  height: var(--float-size);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), opacity var(--transition);
  opacity: 0;
  visibility: hidden;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  background: var(--bg-card);
  color: var(--color-rose-dark);
  border: var(--border-rose);
  box-shadow: var(--shadow-card);
}

.whatsapp-float {
  opacity: 1;
  visibility: visible;
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

.back-to-top:hover,
.whatsapp-float:hover { transform: translateY(-3px); color: inherit; }

/* --- External banner (group site link) --- */
.group-banner {
  background: var(--bg-secondary);
  border-bottom: var(--border-subtle);
  padding: 0.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
}

.group-banner a { font-weight: 600; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 0; right: -100%;
    width: min(320px, 88vw);
    height: 100dvh;
    background: var(--bg-mobile-nav);
    padding: calc(var(--header-height) + 1.25rem) 1.5rem 2rem;
    transition: right var(--transition);
    z-index: 999;
    box-shadow: -4px 0 32px rgba(42, 20, 24, 0.18);
    overflow-y: auto;
  }

  .main-nav.open { right: 0; }
  .nav-overlay { display: block; pointer-events: none; }
  .nav-overlay.visible { pointer-events: auto; }

  .main-nav .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .main-nav .nav-link {
    padding: 1rem 0;
    border-bottom: var(--border-subtle);
    font-size: 0.82rem;
    color: var(--text-primary) !important;
    text-shadow: none !important;
  }

  .main-nav .nav-link::after { display: none; }

  .services-grid,
  .feature-list,
  .values-grid,
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .stats-bar { grid-template-columns: repeat(2, 1fr); margin-top: -1.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col,
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }

  .section { padding: 4rem 0; }
}

@media (max-width: 768px) {
  :root {
    --header-height: 76px;
    --header-height-scrolled: 68px;
    --float-size: 48px;
  }

  body {
    padding-bottom: calc(var(--float-size) * 2 + 2.5rem);
  }

  .logo-img { width: 50px; height: 50px; }
  .site-header.scrolled .logo-img { width: 44px; height: 44px; }

  .logo-text { display: none; }

  .hero {
    min-height: min(100svh, 860px);
    padding: calc(var(--header-height) + 1.5rem) 1rem 3rem;
  }

  .hero h1 { max-width: none; font-size: clamp(1.65rem, 8vw, 2.25rem); }

  .hero-subtitle { font-size: 0.92rem; margin-bottom: 1.5rem; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-actions .rose-button,
  .hero-actions .outline-button {
    width: 100%;
    justify-content: center;
  }

  .page-hero {
    min-height: 36vh;
    padding-bottom: 2rem;
  }

  .section { padding: 3rem 0; }

  .services-grid,
  .feature-list,
  .values-grid,
  .gallery-grid,
  .process-steps,
  .stats-bar { grid-template-columns: 1fr; }

  .stats-bar {
    margin-top: 0;
    padding: 1.5rem 1rem;
    gap: 1rem;
  }

  .stat-number { font-size: 1.85rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-section { padding: 3.5rem 1rem; }

  .contact-form { padding: 1.5rem; }

  .map-wrap { aspect-ratio: 4/3; }

  .two-col img { max-height: 280px; object-fit: cover; width: 100%; }

  .capability-item { flex-direction: column; text-align: center; }
  .capability-item i { margin: 0 auto; }

  .feature-item { flex-direction: column; text-align: center; align-items: center; }
}

@media (max-width: 480px) {
  .container { width: calc(100vw - 1.25rem); }

  .rose-button,
  .outline-button {
    padding: 0.75rem 1.25rem;
    font-size: 0.7rem;
  }
}

@media (min-width: 1025px) {
  .nav-toggle { display: none !important; }

  .main-nav {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    box-shadow: none;
    background: transparent;
    overflow: visible;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
