/* =====================================================
   AUR — Contact · Premium Design
   ===================================================== */

#aur-contact-main {
  --ink:      #050D19;
  --navy:     #0D1F35;
  --navy-mid: #162D4A;
  --gold:     #C9963A;
  --gold-lt:  #DFB462;
  --cream:    #F5F2EB;
  --cream-dk: #EAE6DC;
  --white:    #FDFCFA;
  --muted:    #7A8494;
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:  'Jost', system-ui, sans-serif;
  --wrap:     1160px;
  display: block;
  width: 100%;
  overflow-x: hidden;
  background: var(--cream);
  font-family: var(--ff-sans);
  color: var(--ink);
}

/* ── HERO ── */
.nc-hero {
  position: relative;
  background: var(--ink);
  padding: 6rem 2rem 5rem;
  overflow: hidden;
  text-align: center;
}

.nc-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.nc-hero__grid {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: .45;
}

.nc-hero__glow {
  position: absolute;
  width: 600px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,150,58,.13) 0%, transparent 70%);
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
}

.nc-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}

.nc-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,150,58,.35);
  border-radius: 100px;
  padding: .35rem 1.1rem;
  margin-bottom: 1.75rem;
}

.nc-hero__title {
  font-family: var(--ff-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--white);
  margin: 0 0 1.25rem;
}

.nc-hero__title em {
  font-style: italic;
  color: var(--gold-lt);
}

.nc-hero__sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(253,252,250,.6);
  line-height: 1.65;
  margin: 0;
}

/* ── BODY ── */
.nc-body {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

/* ── Coordonnées ── */
.nc-label {
  display: inline-block;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.nc-label--inv { color: var(--gold-lt); }

.nc-coords__title {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 2rem;
}

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

.nc-info-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nc-info {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.nc-info__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201,150,58,.1);
  border: 1px solid rgba(201,150,58,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.nc-info__icon svg {
  width: 16px;
  height: 16px;
}

.nc-info__text strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .2rem;
}

.nc-info__text a,
.nc-info__text span {
  font-size: .88rem;
  font-weight: 300;
  color: var(--muted);
  text-decoration: none;
  line-height: 1.5;
}

.nc-info__text a:hover { color: var(--gold); }

/* Socials */
.nc-social-block { margin-bottom: 2.5rem; }

.nc-social-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1rem;
}

.nc-socials {
  display: flex;
  gap: .75rem;
}

.nc-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(201,150,58,.35);
  transition: background .25s, border-color .25s, transform .2s;
}

.nc-social:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.nc-social svg {
  width: 15px;
  height: 15px;
  fill: var(--gold);
  transition: fill .25s;
}

.nc-social:hover svg { fill: var(--ink); }

/* Map */
.nc-map {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--cream-dk);
}

.nc-map iframe {
  width: 100%;
  height: 220px;
  border: none;
  display: block;
}

/* ── CTA Card ── */
.nc-cta-card {
  background: var(--navy);
  border-radius: 14px;
  padding: 3rem;
  position: sticky;
  top: 2rem;
  overflow: hidden;
}

.nc-cta-card__deco {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,150,58,.12) 0%, transparent 65%);
  bottom: -100px;
  right: -80px;
  pointer-events: none;
}

.nc-cta-card__inner { position: relative; z-index: 1; }

.nc-cta-card__title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin: .5rem 0 1.25rem;
}

.nc-cta-card__title em {
  font-style: italic;
  color: var(--gold-lt);
}

.nc-cta-card__lead {
  font-size: .95rem;
  font-weight: 300;
  color: rgba(253,252,250,.65);
  line-height: 1.7;
  margin: 0 0 1.75rem;
}

.nc-cta-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.nc-cta-list li {
  font-size: .88rem;
  font-weight: 400;
  color: rgba(253,252,250,.75);
  padding-left: 1.25rem;
  position: relative;
}

.nc-cta-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.nc-cta-btn {
  display: inline-block;
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--ink) !important;
  border-radius: 100px;
  text-decoration: none !important;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 20px rgba(201,150,58,.35);
}

.nc-cta-btn:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,150,58,.45);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nc-body {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 3rem 1.25rem;
  }
  .nc-cta-card { position: static; }
}

@media (max-width: 600px) {
  .nc-hero { padding: 5rem 1.25rem 4rem; }
  .nc-cta-card { padding: 2rem; }
}
