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

:root {
  --black:       #0d0d0f;
  --gray-dark:   #2c2c2e;
  --gray-mid:    #6e6e73;
  --gray-light:  #aeaeb2;
  --bg-soft:     #f5f5f7;
  --bg-white:    #ffffff;
  --navy:        #1a2e4a;
  --navy-light:  #243d62;
  --navy-glow:   rgba(26,46,74,0.18);
  --gold:        #c9a96e;
  --gold-light:  #e8d5b0;
  --gold-glow:   rgba(201,169,110,0.2);
  --font-serif:  'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --nav-h:       86px;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--black);
  background: var(--bg-white);
  overflow-x: hidden;
}

@media (hover: none) { body { cursor: auto; } }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =============================================
   SCROLL PROGRESS
   ============================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  width: 0%;
  z-index: 1001;
  transition: width 0.1s linear;
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
.section-eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.section-eyebrow.center {
  justify-content: center;
}
.section-eyebrow.center::before { display: none; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.12;
  color: var(--black);
  margin-bottom: 28px;
}

.section-title em {
  font-style: italic;
  color: var(--navy);
  position: relative;
}

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

.section-lead {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--gray-mid);
  max-width: 580px;
  margin: 0 auto 64px;
  text-align: center;
}

.body-text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--gray-dark);
  margin-bottom: 20px;
}

/* =============================================
   LAYOUT HELPERS
   ============================================= */
.section-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 110px 48px;
}

.section-header {
  text-align: center;
  margin-bottom: 20px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 17px 38px;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s var(--ease);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy-light), var(--navy));
  opacity: 0;
  transition: opacity 0.3s;
  border-radius: inherit;
}

.btn-primary::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -100%;
  background: radial-gradient(circle, rgba(255,255,255,0.12) 0%, transparent 60%);
  transform: scale(0);
  transition: transform 0.5s var(--ease);
}

.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 48px var(--navy-glow); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover::after { transform: scale(1); }
.btn-primary span { position: relative; z-index: 1; }

.btn-primary.full-width { width: 100%; cursor: pointer; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 17px 38px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1.5px solid rgba(26,46,74,0.22);
  border-radius: 50px;
  cursor: pointer;
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease-spring);
}

.btn-ghost:hover {
  border-color: var(--navy);
  background: rgba(26,46,74,0.04);
  transform: translateY(-2px);
}

/* =============================================
   REVEAL ANIMATIONS
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

/* =============================================
   NAVIGATION
   ============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.5s var(--ease), backdrop-filter 0.5s, box-shadow 0.4s;
}

#navbar.scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(200%) blur(24px);
  -webkit-backdrop-filter: saturate(200%) blur(24px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}

.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
  transition: opacity 0.2s;
}
.nav-brand:hover { opacity: 0.75; }

.brand-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.brand-sub {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.245em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-top: 4px;
  text-align: center;
}

.nav-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11.5px;
  font-weight: 400;
  color: var(--gray-mid);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-contact-item svg {
  color: var(--gold);
  opacity: 0.85;
}

.nav-contact-item:hover { color: var(--navy); }
.nav-contact-item:hover svg { opacity: 1; }

.nav-contact-divider {
  width: 1px;
  height: 12px;
  background: rgba(0,0,0,0.12);
}

.nav-links a {
  position: relative;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--gray-dark);
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--navy);
  transition: width 0.3s var(--ease);
}

.nav-links a:hover { color: var(--navy); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--navy); }

.nav-links .nav-cta {
  padding: 10px 26px;
  background: var(--navy);
  color: #fff !important;
  border-radius: 50px;
  font-weight: 500;
  transition: background 0.3s, transform 0.3s var(--ease-spring), box-shadow 0.3s !important;
}

.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover {
  background: var(--navy-light);
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px var(--navy-glow);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.35s var(--ease), opacity 0.35s, width 0.35s;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* =============================================
   HERO
   ============================================= */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--nav-h) 48px 80px;
  overflow: hidden;
  background: #f7f5f1;
}

/* Animated orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  animation: orbFloat 12s ease-in-out infinite;
}

.hero-orb-1 {
  width: 600px; height: 600px;
  top: -150px; right: -100px;
  background: radial-gradient(circle, rgba(201,169,110,0.15), transparent 70%);
  animation-duration: 14s;
}

.hero-orb-2 {
  width: 500px; height: 500px;
  bottom: -100px; left: -100px;
  background: radial-gradient(circle, rgba(26,46,74,0.1), transparent 70%);
  animation-duration: 18s;
  animation-delay: -6s;
}

.hero-orb-3 {
  width: 300px; height: 300px;
  top: 40%; left: 35%;
  background: radial-gradient(circle, rgba(201,169,110,0.08), transparent 70%);
  animation-duration: 10s;
  animation-delay: -3s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -20px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.97); }
}

/* Grid lines decoration */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26,46,74,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26,46,74,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
  pointer-events: none;
}

.hero-content {
  max-width: 900px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition-delay: 0s !important;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 7.5vw, 6rem);
  font-weight: 500;
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 32px;
  transition-delay: 0.12s !important;
  letter-spacing: -0.01em;
}

.hero-title em {
  font-style: italic;
  color: var(--navy);
  display: inline-block;
  position: relative;
}

.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.2s var(--ease-out) 0.8s;
}

.hero-title.visible em::after { transform: scaleX(1); }

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-mid);
  margin-bottom: 52px;
  transition-delay: 0.22s !important;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  transition-delay: 0.32s !important;
}

/* Scroll indicator */
.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 1.4s forwards;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}

body.scrolled .hero-scroll-hint {
  opacity: 0 !important;
}

.hero-scroll-hint span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-light);
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}

@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  60% { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateX(-50%) translateY(12px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* =============================================
   STATS BAR
   ============================================= */
#stats {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  top: -60%; left: 10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,169,110,0.08), transparent 70%);
  pointer-events: none;
}

.stats-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 56px 48px;
  gap: 20px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.stat-label {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* =============================================
   DESPRE
   ============================================= */
#despre { background: var(--bg-white); }

.credentials {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.credential {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--gray-dark);
  padding: 12px 16px;
  background: var(--bg-soft);
  border-radius: 10px;
  border-left: 2px solid var(--gold);
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
}

.credential:hover {
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.credential svg { color: var(--gold); flex-shrink: 0; }

/* Portrait */
.portrait-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #edf0f7, #d8dfe9);
  aspect-ratio: 3/4;
  max-width: 420px;
  margin-left: auto;
  box-shadow: 0 40px 100px rgba(26,46,74,0.18), 0 0 0 1px rgba(255,255,255,0.5);
  transform: perspective(1200px) rotateY(-4deg) rotateX(1deg);
  transition: transform 0.5s var(--ease);
}

.portrait-frame:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
}

.portrait-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 20px;
  color: var(--gray-mid);
  font-size: 13px;
  text-align: center;
  padding: 40px;
}

.portrait-placeholder svg { width: 120px; height: 140px; }

.portrait-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26,46,74,0.9);
  backdrop-filter: blur(16px);
  padding: 22px 30px;
  color: #fff;
  font-size: 13.5px;
  font-weight: 400;
  letter-spacing: 0.04em;
  border-top: 1px solid rgba(201,169,110,0.3);
}

/* =============================================
   SERVICII
   ============================================= */
#servicii { background: var(--bg-soft); position: relative; overflow: hidden; }

#servicii::before {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--gold-glow), transparent 70%);
  pointer-events: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 900px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .services-grid { grid-template-columns: 1fr; }
}

.service-card {
  background: var(--bg-white);
  border-radius: 22px;
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.045);
  transform-style: preserve-3d;
  transform: perspective(800px);
  transition: box-shadow 0.4s var(--ease), border-color 0.4s;
  will-change: transform;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,169,110,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover { box-shadow: 0 28px 72px rgba(26,46,74,0.12); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { transform: scaleX(1); }

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  color: var(--gold);
  transition: transform 0.4s var(--ease-spring), color 0.3s;
}

.service-card:hover .service-icon {
  transform: scale(1.15) rotate(-5deg);
  color: var(--navy);
}

.service-icon svg { width: 100%; height: 100%; }

.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  transition: color 0.3s;
}

.service-card p {
  font-size: 13.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--gray-mid);
}

/* =============================================
   VALORI
   ============================================= */
#valori { background: var(--bg-white); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 56px 80px;
  margin-top: 64px;
}

.value-item {
  position: relative;
  padding-top: 24px;
  padding-left: 24px;
  border-left: 1px solid rgba(0,0,0,0.07);
  transition: border-color 0.3s;
}

.value-item:hover { border-color: var(--gold); }

.value-number {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(245,245,247,1);
  position: absolute;
  top: -18px;
  left: 12px;
  line-height: 1;
  user-select: none;
  pointer-events: none;
  transition: color 0.4s;
}

.value-item:hover .value-number { color: var(--gold-light); }

.value-item h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.value-item p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--gray-dark);
  position: relative;
  z-index: 1;
}

/* =============================================
   QUOTE
   ============================================= */
#quote {
  background: var(--navy);
  padding: 120px 48px;
  position: relative;
  overflow: hidden;
}

#quote::before {
  content: '\201C';
  font-family: var(--font-serif);
  font-size: 28rem;
  font-weight: 700;
  color: rgba(255,255,255,0.025);
  position: absolute;
  top: -80px;
  left: 40px;
  line-height: 1;
  pointer-events: none;
}

.quote-inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.quote-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.quote-line-bar {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

#quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  margin-bottom: 36px;
}

#quote cite {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

/* =============================================
   CONTACT
   ============================================= */
#contact { background: var(--bg-soft); position: relative; overflow: hidden; }

#contact::before {
  content: '';
  position: absolute;
  top: -100px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(26,46,74,0.05), transparent 70%);
  pointer-events: none;
}

.contact-split {
  gap: 80px;
  align-items: start;
}

.contact-details {
  margin-top: 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  transition: background 0.3s, transform 0.3s var(--ease);
}

.contact-item:hover { background: rgba(255,255,255,0.8); transform: translateX(6px); }

a.contact-item { cursor: pointer; }

.contact-icon {
  width: 46px;
  height: 46px;
  background: var(--bg-white);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  color: var(--navy);
  transition: box-shadow 0.3s, transform 0.3s var(--ease-spring);
}

.contact-item:hover .contact-icon {
  box-shadow: 0 8px 28px rgba(26,46,74,0.15);
  transform: scale(1.08);
}

.contact-icon svg { width: 20px; height: 20px; }

.contact-label {
  display: block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-mid);
  margin-bottom: 5px;
}

.contact-value {
  display: block;
  font-size: 14.5px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.65;
}

/* MAP LINK — minimal Apple-style */
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.01em;
  transition: gap 0.25s var(--ease), color 0.2s;
  cursor: pointer;
}

.map-link svg {
  transition: transform 0.3s var(--ease);
  opacity: 0.7;
}

.map-link:hover {
  color: var(--gold);
  gap: 10px;
}

.map-link:hover svg {
  transform: translate(2px, -2px);
  opacity: 1;
}

/* FORM */
.contact-form-wrap {
  background: var(--bg-white);
  border-radius: 28px;
  padding: 52px;
  box-shadow: 0 8px 60px rgba(0,0,0,0.07), 0 0 0 1px rgba(0,0,0,0.04);
}

.contact-form { display: flex; flex-direction: column; gap: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 16px;
}

/* Floating label groups */
.form-group {
  position: relative;
  margin-bottom: 6px;
  padding-top: 22px;
}

.form-group label {
  position: absolute;
  top: 36px;
  left: 18px;
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-mid);
  pointer-events: none;
  transition: all 0.25s var(--ease);
  transform-origin: left;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 20px 18px 10px;
  border: none;
  border-bottom: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--black);
  background: transparent;
  transition: border-color 0.25s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

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

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group select:focus + label,
.form-group select.has-value + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
  top: 4px;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  /* Hide placeholder visually (label acts as placeholder) */
}

.form-group textarea { resize: vertical; min-height: 100px; padding-top: 24px; }

.form-divider {
  height: 1px;
  background: rgba(0,0,0,0.05);
  margin: 20px 0 24px;
}

.btn-submit-wrap { margin-top: 28px; }

.form-disclaimer {
  font-size: 11.5px;
  color: var(--gray-light);
  text-align: center;
  line-height: 1.7;
  margin-top: 16px;
}

.form-success {
  text-align: center;
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.form-success svg { width: 56px; height: 56px; color: var(--gold); }

.form-success h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--navy);
}

.form-success p {
  font-size: 14.5px;
  color: var(--gray-mid);
  line-height: 1.75;
  max-width: 340px;
}

/* =============================================
   FOOTER
   ============================================= */
#footer {
  background: var(--black);
  color: rgba(255,255,255,0.5);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  padding: 72px 48px 52px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand { display: flex; flex-direction: column; gap: 6px; }

.footer-brand .brand-name {
  font-family: var(--font-serif);
  font-size: 26px;
  color: var(--bg-white);
  letter-spacing: 0.01em;
}

.footer-brand .brand-sub {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  font-weight: 400;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 13px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s, transform 0.2s;
  display: inline-block;
}

.footer-links a:hover { color: rgba(255,255,255,0.85); transform: translateX(4px); }

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11.5px;
  line-height: 1.7;
  color: rgba(255,255,255,0.28);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .section-inner { padding: 88px 40px; }
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 52px; }
  .values-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-inner { flex-wrap: wrap; justify-content: center; gap: 32px; }
  .stat-divider { display: none; }
  .contact-split { grid-template-columns: 1fr; }
  .portrait-frame { max-width: 340px; margin: 0 auto; transform: none; }
  .split-visual { order: -1; }
  body { cursor: auto; }
  .cursor { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-right {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: stretch;
    padding: 20px 16px 28px;
    gap: 16px;
    box-shadow: 0 24px 48px rgba(0,0,0,0.1);
  }
  .nav-right.open { display: flex; }
  .nav-contact { flex-direction: column; align-items: flex-start; gap: 10px; padding: 12px 16px; border-top: 1px solid rgba(0,0,0,0.06); }
  .nav-contact-divider { display: none; }
  .nav-contact-item { font-size: 13px; }
  .section-inner { padding: 72px 24px; }
  #quote { padding: 80px 24px; }
  #hero { padding: 80px 24px 72px; }

  .nav-inner { padding: 0 24px; }
  .nav-links {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    width: 100%;
  }
  .nav-links a { padding: 14px 16px; border-radius: 14px; font-size: 16px; display: block; }
  .nav-links a:hover { background: var(--bg-soft); }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; }

  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 340px; cursor: pointer; }

  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 32px 24px; }
  .footer-inner { flex-direction: column; gap: 32px; padding: 52px 24px 36px; }
  .footer-bottom { flex-direction: column; padding: 20px 24px; }
  #quote::before { font-size: 16rem; }
}

@media (max-width: 480px) {
  .stats-inner { padding: 40px 24px; }
  .stat-number { font-size: 2rem; }
  .hero-title { font-size: 2.8rem; }
}
