/* ════════════════════════════════════════════
   ASESORÍA Y URBANISMO — Premium Redesign
   CSS v1.0 | 2024
   Fonts: Playfair Display · Inter · Montserrat
════════════════════════════════════════════ */

/* ─── Custom Properties ─── */
:root {
  /* Colors */
  --dark:        #07101F;
  --navy:        #0D1E35;
  --navy-mid:    #163252;
  --gold:        #C9923A;
  --gold-lt:     #DCA94E;
  --gold-dim:    rgba(201,146,58,.12);
  --gold-border: rgba(201,146,58,.25);
  --white:       #FFFFFF;
  --off-white:   #F7F8FB;
  --gray-50:     #F4F5F8;
  --gray-100:    #EBEEF4;
  --gray-200:    #D8DDE8;
  --gray-400:    #96A3B5;
  --gray-600:    #5C6B7E;
  --text:        #192233;
  --text-body:   #4A576A;

  /* Type */
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'Inter', system-ui, -apple-system, sans-serif;
  --display: 'Montserrat', system-ui, sans-serif;

  /* Spacing */
  --section-py: 7rem;
  --container:  1200px;

  /* Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  /* Shadows */
  --sh-sm:   0 1px 4px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --sh-md:   0 4px 20px rgba(0,0,0,.09), 0 2px 8px rgba(0,0,0,.06);
  --sh-lg:   0 12px 48px rgba(0,0,0,.13), 0 4px 16px rgba(0,0,0,.07);
  --sh-gold: 0 8px 32px rgba(201,146,58,.28);

  /* Motion */
  --ease: cubic-bezier(.4, 0, .2, 1);
  --dur:  .3s;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Utilities ─── */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 2rem;
}

.section-label {
  display: inline-block;
  font-family: var(--display);
  font-size: .675rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: .3em .85em;
  background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  border-radius: 100px;
  margin-bottom: 1.1rem;
}

.section-label--gold {
  color: var(--gold-lt);
  background: rgba(201,146,58,.15);
  border-color: rgba(201,146,58,.3);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--text);
  margin-bottom: .9rem;
}

.section-title--light { color: var(--white); }

.section-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.78;
  max-width: 580px;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header .section-desc {
  margin-inline: auto;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--display);
  font-size: .84rem;
  font-weight: 600;
  letter-spacing: .025em;
  padding: .85rem 1.8rem;
  border-radius: var(--r-sm);
  border: 2px solid transparent;
  transition: all var(--dur) var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  box-shadow: var(--sh-gold);
}
.btn--gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(201,146,58,.38);
}

.btn--dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--dark:hover {
  background: var(--navy-mid);
  border-color: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn--ghost {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.32);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.6);
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ─── Reveal animation ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s var(--ease), transform .75s var(--ease);
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════ */
.header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  transition: background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.header.scrolled {
  background: rgba(7, 16, 31, .96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(255,255,255,.04), 0 4px 24px rgba(0,0,0,.35);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.nav__logo-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--display);
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .02em;
  border-radius: 8px;
  flex-shrink: 0;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav__logo-name {
  font-family: var(--display);
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}

.nav__logo-sub {
  font-family: var(--sans);
  font-size: .67rem;
  color: var(--gray-400);
  letter-spacing: .04em;
  margin-top: .15rem;
}

/* Menu */
.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav__link {
  font-family: var(--sans);
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--dur) var(--ease);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--dur) var(--ease);
}

.nav__link:hover,
.nav__link.active { color: var(--white); }

.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__link--cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: .5rem 1.3rem;
  border-radius: var(--r-sm);
  font-weight: 600;
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
  background: var(--gold-lt);
  transform: translateY(-1px);
  box-shadow: var(--sh-gold);
}

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}

.nav__toggle span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}

/* Mobile nav */
@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__menu {
    position: fixed;
    inset-block-start: 70px;
    inset-inline: 0;
    background: rgba(7,16,31,.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 2rem 2rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
    border-top: 1px solid rgba(255,255,255,.06);
  }

  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__menu li { border-bottom: 1px solid rgba(255,255,255,.05); }

  .nav__link {
    display: block;
    padding: 1rem 0;
    font-size: .95rem;
  }

  .nav__link--cta {
    display: block;
    margin-top: 1rem;
    text-align: center;
    padding: .85rem;
  }
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

/* Background layers */
.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,146,58,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,146,58,.035) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}

.hero__glow--1 {
  width: 600px;
  height: 600px;
  top: -100px;
  right: 0;
  background: radial-gradient(ellipse, rgba(22,50,82,.7) 0%, transparent 70%);
}

.hero__glow--2 {
  width: 500px;
  height: 500px;
  bottom: 0;
  left: -100px;
  background: radial-gradient(ellipse, rgba(201,146,58,.07) 0%, transparent 70%);
}

.hero__glow--3 {
  width: 400px;
  height: 400px;
  top: 30%;
  left: 30%;
  background: radial-gradient(ellipse, rgba(13,30,53,.5) 0%, transparent 70%);
}

/* Vertical accent lines */
.hero__lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__vline {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent 0%, rgba(201,146,58,.18) 40%, transparent 100%);
}

.hero__vline--1 { left: 22%; animation: vline-drift 12s ease-in-out infinite alternate; }
.hero__vline--2 { left: 58%; animation: vline-drift 16s ease-in-out infinite alternate-reverse; opacity: .5; }
.hero__vline--3 { left: 85%; animation: vline-drift 10s ease-in-out infinite alternate; opacity: .3; }

@keyframes vline-drift {
  from { opacity: .2; }
  to   { opacity: .7; }
}

/* Skyline SVG */
.hero__skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 280px;
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 1;
  padding-block: 9rem 6rem;
  max-width: 700px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--display);
  font-size: .67rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-lt);
  border: 1px solid rgba(201,146,58,.28);
  padding: .38em 1em;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  animation: fade-up .8s var(--ease) both;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2.5s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: .6; }
}

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5.5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.14;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fade-up .9s var(--ease) .18s both;
}

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

.hero__subtitle {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,.62);
  line-height: 1.82;
  margin-bottom: 2.5rem;
  animation: fade-up .9s var(--ease) .35s both;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-bottom: 3.5rem;
  animation: fade-up .9s var(--ease) .52s both;
}

.hero__stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.75rem;
  animation: fade-up .9s var(--ease) .68s both;
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-num {
  font-family: var(--display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.hero__stat-lbl {
  font-size: .67rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
  margin-top: .3rem;
  text-transform: uppercase;
}

.hero__stat-sep {
  width: 1px;
  height: 38px;
  background: rgba(255,255,255,.14);
}

/* Scroll cue */
.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  font-size: .65rem;
  font-family: var(--display);
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  transition: color var(--dur) var(--ease);
  animation: fade-up .9s var(--ease) 1s both;
}

.hero__scroll:hover { color: var(--gold); }

.hero__scroll svg { animation: bob 2s ease infinite; }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* Shared entry animation */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
.about {
  padding-block: var(--section-py);
  background: var(--off-white);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Visual card */
.about__visual { position: relative; }

.about__card {
  position: relative;
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: 2.75rem;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid rgba(255,255,255,.05);
}

.about__card-bg {
  position: absolute;
  inset: 0;
}

.about__card-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 28px 28px;
}

.about__card-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  width: 200px;
  height: auto;
  opacity: .7;
}

.about__card-info {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: .3rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  padding: 1rem 1.25rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.about__card-city {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.about__card-addr {
  font-size: .8rem;
  color: var(--gray-400);
  line-height: 1.5;
}

/* Floating badge */
.about__badge-box {
  position: absolute;
  top: -1.25rem;
  right: -1.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--gold);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: var(--r-md);
  box-shadow: var(--sh-gold);
  max-width: 200px;
}

.about__badge-box svg { flex-shrink: 0; }

.about__badge-box div {
  display: flex;
  flex-direction: column;
}

.about__badge-box strong {
  font-family: var(--display);
  font-size: .8rem;
  font-weight: 700;
  line-height: 1.2;
}

.about__badge-box span {
  font-size: .68rem;
  opacity: .85;
  margin-top: .15rem;
}

/* Text content */
.about__content { padding-left: .5rem; }

.about__lead {
  font-family: var(--serif);
  font-size: 1.175rem;
  line-height: 1.72;
  color: var(--text);
  margin-bottom: 1.1rem;
}

.about__body {
  font-size: .975rem;
  color: var(--text-body);
  line-height: 1.82;
  margin-bottom: 2rem;
}

.about__feats {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  margin-bottom: 2.5rem;
}

.about__feat {
  display: flex;
  align-items: center;
  gap: .7rem;
  font-size: .9rem;
  color: var(--text-body);
}

.about__feat-dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

@media (max-width: 960px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .about__content { padding-left: 0; }
  .about__badge-box {
    right: 0;
    top: -1rem;
  }
}

/* ═══════════════════════════════════════
   SERVICES
═══════════════════════════════════════ */
.services {
  padding-block: var(--section-py);
  background: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* Service card */
.svc-card {
  position: relative;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}

.svc-card:hover {
  border-color: var(--gold-border);
  box-shadow: var(--sh-lg), 0 0 0 1px rgba(201,146,58,.15);
  transform: translateY(-5px);
}

/* Dark featured card */
.svc-card--dark {
  background: var(--navy);
  border-color: var(--navy-mid);
}

.svc-card--dark:hover {
  border-color: var(--gold);
}

/* Top badge */
.svc-card__badge-top {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-family: var(--display);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
  padding: .3em .9em;
  border-radius: 100px;
  box-shadow: 0 2px 10px rgba(201,146,58,.4);
}

/* Card header */
.svc-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.4rem;
}

.svc-card__icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  background: var(--gold-dim);
  color: var(--gold);
  border-radius: var(--r-md);
  border: 1px solid var(--gold-border);
}

.svc-card--dark .svc-card__icon {
  background: rgba(201,146,58,.12);
  border-color: rgba(201,146,58,.2);
}

.svc-card__num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 700;
  color: var(--gray-100);
  line-height: 1;
  user-select: none;
}

.svc-card--dark .svc-card__num {
  color: rgba(255,255,255,.06);
}

/* Card body */
.svc-card__title {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: .6rem;
}

.svc-card--dark .svc-card__title { color: var(--white); }

.svc-card__desc {
  font-size: .9rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.svc-card--dark .svc-card__desc { color: rgba(255,255,255,.6); }

/* List */
.svc-card__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 2rem;
}

.svc-card__list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .84rem;
  color: var(--text-body);
  line-height: 1.55;
}

.svc-card--dark .svc-card__list li { color: rgba(255,255,255,.65); }

.svc-card__list li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: .5rem;
}

/* Footer link */
.svc-card__foot {
  margin-top: auto;
  padding-top: 1.4rem;
  border-top: 1px solid var(--gray-100);
}

.svc-card--dark .svc-card__foot {
  border-top-color: rgba(255,255,255,.09);
}

.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  transition: gap var(--dur) var(--ease), color var(--dur) var(--ease);
}

.svc-card__link:hover { gap: .7rem; color: var(--gold-lt); }

/* Stagger reveal delays for cards */
.services__grid .reveal:nth-child(2) { transition-delay: .12s; }
.services__grid .reveal:nth-child(3) { transition-delay: .24s; }

@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .services__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   WHY US
═══════════════════════════════════════ */
.why {
  padding-block: var(--section-py);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.why::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,146,58,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,146,58,.03) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

.why__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.why__body {
  font-size: 1.025rem;
  color: rgba(255,255,255,.6);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.why__feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.why-feat {
  display: flex;
  flex-direction: column;
  gap: .9rem;
}

.why-feat__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: rgba(201,146,58,.1);
  color: var(--gold);
  border-radius: var(--r-md);
  border: 1px solid rgba(201,146,58,.2);
}

.why-feat div:last-child h4 {
  font-family: var(--display);
  font-size: .92rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: .3rem;
}

.why-feat div:last-child p {
  font-size: .83rem;
  color: rgba(255,255,255,.5);
  line-height: 1.65;
}

@media (max-width: 960px) {
  .why__grid { grid-template-columns: 1fr; gap: 3.5rem; }
}

@media (max-width: 640px) {
  .why__feats { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact {
  padding-block: var(--section-py);
  background: var(--off-white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.45fr;
  gap: 5rem;
  align-items: start;
}

.contact__desc {
  font-size: .975rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 2.25rem;
}

.contact__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact__item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  transition: border-color var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease);
}

a.contact__item:hover {
  border-color: var(--gold-border);
  box-shadow: 0 4px 18px rgba(201,146,58,.12);
  transform: translateX(5px);
}

.contact__item-ico {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  background: var(--gold-dim);
  color: var(--gold);
  border-radius: var(--r-sm);
  flex-shrink: 0;
  border: 1px solid var(--gold-border);
}

.contact__item-txt {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.contact__item-lbl {
  font-family: var(--display);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}

.contact__item-val {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}

/* Form */
.contact__form-wrap {
  background: var(--white);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  border: 1.5px solid var(--gray-200);
  box-shadow: var(--sh-md);
}

.form__title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.75rem;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.form-label {
  font-family: var(--display);
  font-size: .76rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: .03em;
}

.form-label span { color: var(--gold); }

.form-input {
  width: 100%;
  padding: .78rem 1rem;
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-sm);
  font-family: var(--sans);
  font-size: .9rem;
  color: var(--text);
  outline: none;
  appearance: none;
  transition: border-color var(--dur) var(--ease),
              background var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}

.form-input:focus {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,146,58,.1);
}

.form-input::placeholder { color: var(--gray-400); }

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' fill='none' stroke='%2396A3B5' stroke-width='2' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 105px;
  line-height: 1.65;
}

.form__note {
  font-size: .76rem;
  color: var(--gray-600);
  text-align: center;
  margin-top: -.25rem;
}

@media (max-width: 960px) {
  .contact__grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding-block-start: 5rem;
}

.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 3rem;
  padding-block-end: 4rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer__logo-link { display: inline-flex; margin-bottom: 1.1rem; }

.footer__tagline {
  font-size: .875rem;
  line-height: 1.72;
  color: rgba(255,255,255,.38);
  max-width: 280px;
}

.footer__hdg {
  font-family: var(--display);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: .55rem;
}

.footer__links a {
  font-size: .875rem;
  color: rgba(255,255,255,.46);
  transition: color var(--dur) var(--ease), transform var(--dur) var(--ease);
  display: inline-block;
}

.footer__links a:hover {
  color: var(--gold-lt);
  transform: translateX(3px);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .855rem;
  color: rgba(255,255,255,.45);
  line-height: 1.5;
}

.footer__contact svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: .2rem;
}

.footer__contact a {
  color: rgba(255,255,255,.45);
  transition: color var(--dur) var(--ease);
}

.footer__contact a:hover { color: var(--gold-lt); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
  padding-block: 1.5rem;
}

.footer__bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.28);
}

.footer__sub {
  font-size: .74rem !important;
  color: rgba(255,255,255,.18) !important;
}

@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════ */
.back-top {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  background: var(--gold);
  color: var(--white);
  border-radius: var(--r-sm);
  box-shadow: var(--sh-gold);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(.9);
  transition: all var(--dur) var(--ease);
  z-index: 800;
}

.back-top.show {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0) scale(1);
}

.back-top:hover {
  background: var(--gold-lt);
  transform: translateY(-3px) scale(1.05);
}

/* ═══════════════════════════════════════
   RESPONSIVE TWEAKS
═══════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --section-py: 5rem; }

  .hero__content { padding-block: 8rem 5rem; }

  .hero__stat-sep { display: none; }
  .hero__stats { gap: 1.25rem; }

  .section-header { margin-bottom: 2.75rem; }

  .container { padding-inline: 1.25rem; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn { justify-content: center; }
  .about__badge-box { right: 0; top: -1rem; max-width: 170px; }
}
