/* ===== NOIRBLUSH - Luxury Feminine Financial Services ===== */

:root {
  --black: #0a0a0a;
  --deep-black: #050505;
  --charcoal: #1a1a1a;
  --dark-gray: #2a2a2a;
  --medium-gray: #4a4a4a;
  --light-gray: #8a8a8a;
  --soft-gray: #c5c0bc;

  /* Muted champagne gold — warm, sophisticated, not shiny */
  --gold: #b8986a;
  --gold-light: #d4c4a8;
  --gold-dark: #9e8260;
  --gold-muted: rgba(184, 152, 106, 0.10);

  /* Champagne rose — subtle, restrained, for accents only */
  --blush: #c4a8a8;
  --blush-light: #dcc4c4;
  --blush-dark: #a08080;

  --nude: #d5c4b4;
  --nude-light: #e8ddd4;
  --nude-muted: rgba(213, 196, 180, 0.08);

  /* Warm champagne — layered depth for backgrounds and borders */
  --champagne: #c4b89c;
  --champagne-light: #d8ccb8;
  --champagne-muted: rgba(196, 184, 156, 0.08);

  --cream: #f5f0eb;
  --warm-white: #faf7f4;
  --white: #ffffff;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;
  --space-2xl: 10rem;

  --ease-luxury: cubic-bezier(0.23, 1, 0.32, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.15;
}

h1 { font-size: clamp(3rem, 7vw, 5.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }

em {
  font-style: italic;
  color: var(--gold);
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  background: rgba(10, 10, 10, 0.88);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  border-radius: 4px;
}

.nav-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2rem;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--soft-gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav { padding: 1rem 1.25rem; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: var(--space-2xl) 2rem var(--space-xl);
  background: var(--deep-black);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(ellipse 80% 60% at 15% 85%, rgba(212, 160, 160, 0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 80% 15%, rgba(201, 169, 110, 0.06) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(213, 196, 180, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-accent-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
  transform: translateX(-50%);
}

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

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.hero-title {
  color: var(--white);
  margin-bottom: var(--space-md);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--soft-gray);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.hero-location {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--light-gray);
  letter-spacing: 0.04em;
}

.hero-dot {
  width: 6px;
  height: 6px;
  background: var(--champagne);
  border-radius: 50%;
  animation: pulse-blush 3s ease-in-out infinite;
}

@keyframes pulse-blush {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Hero decorative circles — champagne and nude tones for warm feminine depth */
.hero-decorative {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  z-index: 1;
}

.hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
}

.hero-circle-1 {
  width: 400px;
  height: 400px;
  top: 50px;
  right: 0;
  border-color: rgba(201, 169, 110, 0.1);
  animation: float-circle 8s var(--ease-luxury) infinite;
}

.hero-circle-2 {
  width: 300px;
  height: 300px;
  top: 100px;
  right: 50px;
  border-color: rgba(196, 184, 156, 0.1);
  animation: float-circle 10s var(--ease-luxury) infinite reverse;
}

.hero-circle-3 {
  width: 180px;
  height: 180px;
  top: 160px;
  right: 110px;
  border-color: rgba(213, 196, 180, 0.1);
  background: radial-gradient(circle, rgba(213, 196, 180, 0.04) 0%, transparent 70%);
  animation: float-circle 12s var(--ease-luxury) infinite;
}

@keyframes float-circle {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@media (max-width: 768px) {
  .hero { padding: 8rem 1.25rem 4rem; min-height: auto; }
  .hero-decorative { display: none; }
  .hero-accent-line { height: 80px; }
}

/* ===== SERVICES ===== */
.services {
  padding: var(--space-xl) 2rem;
  background: linear-gradient(180deg, var(--black) 0%, rgba(213, 196, 180, 0.03) 50%, var(--black) 100%);
}

.services-header {
  max-width: 700px;
  margin: 0 auto var(--space-lg);
  text-align: center;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--champagne);
  margin-bottom: var(--space-sm);
}

.section-title {
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  color: var(--nude);
  font-size: 1.05rem;
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: linear-gradient(180deg, var(--charcoal) 0%, rgba(26, 26, 26, 0.6) 100%);
  border: 1px solid rgba(213, 196, 180, 0.06);
  border-radius: 8px;
  padding: 2.5rem 2rem;
  transition: border-color 0.4s var(--ease-luxury), transform 0.4s var(--ease-luxury), box-shadow 0.4s var(--ease-luxury);
  position: relative;
}

.service-card:hover {
  border-color: rgba(201, 169, 110, 0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 2px 8px rgba(201, 169, 110, 0.06);
}

.service-card-featured {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--charcoal) 0%, rgba(201, 169, 110, 0.06) 100%);
  border-color: rgba(201, 169, 110, 0.12);
}

.service-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.18);
  margin-bottom: 1rem;
  line-height: 1;
}

.service-card h3 {
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--soft-gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.service-tag {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.35rem 1rem;
  background: var(--champagne-muted);
  border: 1px solid rgba(196, 184, 156, 0.12);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--champagne-light);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 768px) {
  .services { padding: var(--space-lg) 1.25rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card-featured { grid-column: span 1; }
}

/* ===== ABOUT ===== */
.about {
  padding: var(--space-xl) 2rem;
  background: var(--deep-black);
  border-top: 1px solid rgba(213, 196, 180, 0.05);
  border-bottom: 1px solid rgba(213, 196, 180, 0.05);
  position: relative;
}

/* Subtle nude gradient wash behind about section */
.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 60% 40% at 70% 50%, rgba(213, 196, 180, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
}

.about-text .section-title {
  margin-bottom: var(--space-md);
}

.about-description {
  color: var(--soft-gray);
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 3rem;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(213, 196, 180, 0.08);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--nude);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about-visual {
  position: relative;
  height: 400px;
}

.about-visual-block {
  position: absolute;
  top: 10%;
  right: 0;
  width: 85%;
  height: 80%;
  background: linear-gradient(160deg, rgba(196, 184, 156, 0.06) 0%, rgba(213, 196, 180, 0.05) 40%, rgba(184, 152, 106, 0.04) 70%, rgba(10, 10, 10, 0.8) 100%);
  border-radius: 8px;
  border: 1px solid rgba(213, 196, 180, 0.06);
}

.about-visual-accent {
  position: absolute;
  bottom: 5%;
  left: 10%;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(196, 184, 156, 0.12);
  border-radius: 50%;
}

@media (max-width: 768px) {
  .about { padding: var(--space-lg) 1.25rem; }
  .about-inner { grid-template-columns: 1fr; }
  .about-visual { height: 200px; }
  .about-stats { gap: 1.5rem; }
  .stat-number { font-size: 2rem; }
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--space-xl) 2rem;
  background: linear-gradient(180deg, var(--black) 0%, rgba(196, 184, 156, 0.02) 50%, var(--black) 100%);
}

.testimonials-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.testimonials-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: linear-gradient(180deg, var(--charcoal) 0%, rgba(26, 26, 26, 0.6) 100%);
  border: 1px solid rgba(213, 196, 180, 0.06);
  border-radius: 8px;
  padding: 2rem;
  transition: border-color 0.4s var(--ease-luxury), transform 0.4s var(--ease-luxury);
}

.testimonial-card:hover {
  border-color: rgba(184, 152, 106, 0.2);
  transform: translateY(-2px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
}

.testimonial-text {
  color: var(--soft-gray);
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--champagne), var(--nude-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
}

.testimonial-name {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--nude);
}

@media (max-width: 768px) {
  .testimonials { padding: var(--space-lg) 1.25rem; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ===== CLOSING ===== */
.closing {
  padding: var(--space-xl) 2rem;
  background: var(--deep-black);
  text-align: center;
  position: relative;
}

/* Soft radial glow behind closing CTA */
.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(201, 169, 110, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.closing-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto var(--space-lg);
}

.closing-title {
  color: var(--white);
  margin-bottom: var(--space-md);
  position: relative;
}

.closing-text {
  max-width: 600px;
  margin: 0 auto var(--space-md);
  color: var(--soft-gray);
  font-size: 1.1rem;
  line-height: 1.8;
  position: relative;
}

.closing-services {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  color: var(--nude);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  position: relative;
}

.closing-divider {
  color: var(--gold);
}

@media (max-width: 768px) {
  .closing { padding: var(--space-lg) 1.25rem; }
}

/* ===== FOOTER ===== */
.footer {
  padding: var(--space-md) 2rem;
  background: var(--deep-black);
  border-top: 1px solid rgba(213, 196, 180, 0.06);
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-logo {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 4px;
}

.footer-name {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
}

.footer-sub {
  display: block;
  font-size: 0.75rem;
  color: var(--nude);
  font-weight: 300;
}

.footer-info {
  display: flex;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--nude);
}

.footer-sep {
  color: var(--gold);
}

.footer-bottom {
  font-size: 0.75rem;
  color: var(--medium-gray);
  padding-top: 1rem;
  border-top: 1px solid rgba(213, 196, 180, 0.04);
  width: 100%;
  text-align: center;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-luxury);
  border-radius: 2px;
  white-space: nowrap;
  position: relative;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  font-weight: 600;
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(213, 196, 180, 0.3);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.05);
  box-shadow: 0 0 20px rgba(201, 169, 110, 0.06);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(213, 196, 180, 0.2);
  padding: 0.65rem 1.5rem;
  font-size: 0.78rem;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.04);
}

/* ===== NAV ENHANCEMENTS ===== */
.nav-links a {
  text-decoration: none;
  color: var(--soft-gray);
  transition: color 0.3s var(--ease-luxury);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-luxury);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: none; }
@media (min-width: 769px) { .nav-cta { display: inline-flex; } }

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-mobile-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--soft-gray);
  transition: all 0.3s var(--ease-luxury);
}
@media (max-width: 768px) {
  .nav-mobile-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(24px);
    padding: 1.5rem 1.25rem;
    flex-direction: column;
    gap: 1.25rem;
    border-bottom: 1px solid rgba(213, 196, 180, 0.06);
  }
  .nav-links.nav-links-open { display: flex; }
  .nav-links a::after { display: none; }
}

/* ===== HERO ACTIONS ===== */
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

/* ===== CONTACT FORM ===== */
.contact {
  padding: var(--space-xl) 2rem;
  background: linear-gradient(180deg, var(--charcoal) 0%, rgba(213, 196, 180, 0.04) 50%, var(--charcoal) 100%);
  border-top: 1px solid rgba(213, 196, 180, 0.05);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-header {
  max-width: 600px;
  margin-bottom: var(--space-lg);
}

.contact-subtitle {
  color: var(--nude);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-top: var(--space-sm);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: var(--space-lg);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { order: -1; }
}

/* Form elements */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }

.form-group { margin-bottom: 1rem; }
.form-group:last-child { margin-bottom: 0; }

.form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--nude);
  margin-bottom: 0.5rem;
}
.form-required { color: var(--champagne); }

.form-input {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(42, 42, 42, 0.6);
  border: 1px solid rgba(213, 196, 180, 0.1);
  border-radius: 2px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  transition: border-color 0.3s var(--ease-luxury), background 0.3s var(--ease-luxury), box-shadow 0.3s var(--ease-luxury);
  -webkit-appearance: none;
  appearance: none;
}
.form-input::placeholder { color: var(--medium-gray); }
.form-input:focus {
  outline: none;
  border-color: rgba(201, 169, 110, 0.35);
  background: rgba(42, 42, 42, 0.85);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.06);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a8a8a' 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-select option { background: var(--dark-gray); color: var(--cream); }

.form-textarea {
  min-height: 130px;
  resize: vertical;
  line-height: 1.7;
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.form-privacy {
  font-size: 0.78rem;
  color: var(--medium-gray);
  font-style: italic;
}
.form-submit { min-width: 160px; }

.form-success {
  text-align: center;
  padding: 3rem 2rem;
}
.form-success-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem;
}
.form-success h3 {
  font-family: var(--font-display);
  color: var(--white);
  margin-bottom: 0.5rem;
}
.form-success p { color: var(--soft-gray); }

.form-error-msg {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(196, 184, 156, 0.06);
  border: 1px solid rgba(196, 184, 156, 0.15);
  border-radius: 2px;
  color: var(--champagne-light);
  font-size: 0.9rem;
}

/* Contact info sidebar */
.contact-info {
  padding: 2rem;
  background: linear-gradient(180deg, var(--dark-gray) 0%, rgba(42, 42, 42, 0.6) 100%);
  border: 1px solid rgba(213, 196, 180, 0.06);
  border-radius: 4px;
}
.contact-info-item {
  margin-bottom: 1.5rem;
}
.contact-info-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.contact-info-value {
  color: var(--cream);
  font-size: 0.95rem;
}
.contact-info-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(213, 196, 180, 0.08), transparent);
  margin: 1.5rem 0;
}
.contact-services-list ul {
  list-style: none;
  padding: 0;
}
.contact-services-list li {
  color: var(--soft-gray);
  font-size: 0.9rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid rgba(213, 196, 180, 0.04);
  transition: color 0.2s ease;
}
.contact-services-list li:last-child { border-bottom: none; }
.contact-services-list li:hover { color: var(--nude-light); }

/* Closing CTA */
.closing-cta {
  margin-bottom: var(--space-md);
  position: relative;
}

@media (max-width: 768px) {
  .contact { padding: var(--space-lg) 1.25rem; }
  .hero-actions { gap: 0.75rem; }
  .btn { padding: 0.75rem 1.5rem; }
}

/* ===== SELECTION STYLE ===== */
::selection {
  background: rgba(201, 169, 110, 0.25);
  color: var(--white);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--deep-black);
}
::-webkit-scrollbar-thumb {
  background: rgba(213, 196, 180, 0.15);
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(201, 169, 110, 0.3);
}
