@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Montserrat:wght@300;400;500;600&display=swap');

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

:root {
  --c-bg:       #131210;
  --c-bg-alt:   #1C1916;
  --c-bg-deep:  #0D0B08;
  --c-gold:     #C4963A;
  --c-gold-lt:  #DDB96A;
  --c-gold-dk:  #8A6520;
  --c-cream:    #F0EBE0;
  --c-cream-dk: #C8BEA8;
  --c-muted:    #A09080;
  --c-border:   rgba(196,150,58,.18);
  --c-border-lt:rgba(196,150,58,.08);

  --f-disp: 'Cormorant Garamond', Georgia, serif;
  --f-ui:   'Montserrat', sans-serif;

  --nav-h: 72px;
  --ease:  0.32s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--c-bg);
  color: var(--c-cream);
  font-family: var(--f-ui);
  font-weight: 400;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--c-gold); text-decoration: none; }
a:hover { color: var(--c-gold-lt); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* ── UTILITIES ────────────────────────────── */

.container {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 2rem;
}

.label {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: var(--c-gold);
}

/* ── ORNAMENT DIVIDER ─────────────────────── */

.ornament {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-block: 1.8rem;
}
.ornament--center { justify-content: center; }
.ornament__line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--c-gold-dk));
}
.ornament__line--rev {
  background: linear-gradient(to left, transparent, var(--c-gold-dk));
}
.ornament__diamond {
  width: 5px;
  height: 5px;
  background: var(--c-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ── NAVIGATION ───────────────────────────── */

.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 2.5rem;
  background: rgba(13,11,8,.97);
  border-bottom: 1px solid var(--c-border);
  backdrop-filter: blur(14px);
  transition: box-shadow var(--ease);
}
.nav.scrolled {
  box-shadow: 0 4px 40px rgba(0,0,0,.55);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav__logo-img {
  height: 64px;
  width: auto;
}
.nav__logo-text {
  font-family: var(--f-disp);
  font-size: 1.32rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--c-gold);
  text-transform: uppercase;
  white-space: nowrap;
}

.nav__links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}
.nav__link {
  position: relative;
  font-family: var(--f-ui);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-cream-dk);
  transition: color var(--ease);
  padding-bottom: 3px;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-gold);
  transition: width var(--ease);
}
.nav__link:hover,
.nav__link--active { color: var(--c-gold); }
.nav__link:hover::after,
.nav__link--active::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__toggle span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--c-cream);
  transition: var(--ease);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── PAGE WRAP ────────────────────────────── */

.page-wrap { padding-top: var(--nav-h); }

/* ── HOME HERO ────────────────────────────── */

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--c-bg-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% 0%,   rgba(196,150,58,.07) 0%, transparent 65%),
    radial-gradient(ellipse 60% 35% at 50% 100%,  rgba(196,150,58,.04) 0%, transparent 70%);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    0deg,
    transparent 0px, transparent 3px,
    rgba(255,255,255,.011) 3px, rgba(255,255,255,.011) 4px
  );
}

/* Corner ornaments */
.hero__corner {
  position: absolute;
  width: 60px;
  height: 60px;
}
.hero__corner--tl { top: 2rem; left: 2rem; border-top: 1px solid var(--c-gold-dk); border-left: 1px solid var(--c-gold-dk); }
.hero__corner--tr { top: 2rem; right: 2rem; border-top: 1px solid var(--c-gold-dk); border-right: 1px solid var(--c-gold-dk); }
.hero__corner--bl { bottom: 2rem; left: 2rem; border-bottom: 1px solid var(--c-gold-dk); border-left: 1px solid var(--c-gold-dk); }
.hero__corner--br { bottom: 2rem; right: 2rem; border-bottom: 1px solid var(--c-gold-dk); border-right: 1px solid var(--c-gold-dk); }

.hero__content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 820px;
}

.hero__eyebrow {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 2rem;
}

.hero__logo {
  height: clamp(155px, 18vw, 230px);
  width: auto;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 12px 50px rgba(196,150,58,.32));
}

.hero__title {
  font-family: var(--f-disp);
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--c-cream);
  line-height: 1.12;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  font-family: var(--f-disp);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--c-muted);
  margin-bottom: 3rem;
  letter-spacing: 0.03em;
}

.hero__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero__divider-line {
  width: 90px;
  height: 1px;
}
.hero__divider-line--l { background: linear-gradient(to right, transparent, var(--c-gold-dk)); }
.hero__divider-line--r { background: linear-gradient(to left, transparent, var(--c-gold-dk)); }
.hero__divider-diamond { width: 5px; height: 5px; background: var(--c-gold); transform: rotate(45deg); }

/* ── BUTTON ───────────────────────────────── */

.btn {
  display: inline-block;
  font-family: var(--f-ui);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  padding: 1rem 2.8rem;
  border: 1px solid var(--c-gold-dk);
  color: var(--c-gold);
  position: relative;
  overflow: hidden;
  transition: color var(--ease);
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--c-gold);
  transform: translateX(-101%);
  transition: transform var(--ease);
}
.btn:hover { color: var(--c-bg-deep); }
.btn:hover::before { transform: translateX(0); }
.btn span { position: relative; z-index: 1; }

/* Teléfono visible en el hero (para clientes que prefieren marcar) */
.hero__tel {
  display: block;
  margin-top: 1.4rem;
  font-family: var(--f-ui);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-muted);
}
.hero__tel strong {
  color: var(--c-gold-lt);
  font-weight: 600;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.hero__tel:hover strong { color: var(--c-gold); }

/* Párrafo introductorio de la sección Trayectoria */
.tray-lead {
  max-width: 62ch;
  margin: 0 auto;
  text-align: center;
  font-family: var(--f-disp);
  font-size: 1.28rem;
  line-height: 1.85;
  color: var(--c-muted);
}

/* ── INNER PAGE HERO ──────────────────────── */

.page-hero {
  padding-block: 4rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--c-border-lt);
  background: linear-gradient(180deg, rgba(196,150,58,.045) 0%, transparent 100%);
}
.page-hero__title {
  font-family: var(--f-disp);
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 300;
  color: var(--c-cream);
  letter-spacing: 0.06em;
  margin-top: 0.6rem;
}

/* ── SECTION BASE ─────────────────────────── */

.section { padding-block: 5rem; }
.section__header { margin-bottom: 3rem; }
.section__title {
  font-family: var(--f-disp);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--c-cream);
  line-height: 1.2;
  margin-top: 0.5rem;
}
.section__title em { font-style: italic; color: var(--c-gold-lt); }

/* ── VALUES ───────────────────────────────── */

.values {
  background: var(--c-bg-alt);
  border-block: 1px solid var(--c-border-lt);
}
.values__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(440px, 1fr));
  gap: 1.5rem;
}
.value-card {
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto 1fr;
  column-gap: 1.6rem;
  padding: 1.8rem 2rem;
  border: 1px solid var(--c-border);
  position: relative;
  transition: border-color var(--ease), background var(--ease);
}
.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 0;
  background: var(--c-gold);
  transition: height 0.45s ease;
}
.value-card:hover { border-color: rgba(196,150,58,.38); background: rgba(196,150,58,.025); }
.value-card:hover::before { height: 100%; }
.value-card__num {
  grid-column: 1;
  grid-row: 1 / 3;
  font-family: var(--f-disp);
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(196,150,58,.18);
  line-height: 1;
  padding-top: 0.1rem;
}
.value-card__name {
  grid-column: 2;
  grid-row: 1;
  align-self: end;
  font-family: var(--f-ui);
  font-size: 0.56rem;
  font-weight: 600;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
}
.value-card__text {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  font-family: var(--f-disp);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--c-muted);
  line-height: 1.85;
}

/* ── SERVICES ─────────────────────────────── */

.services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  border: 1px solid var(--c-border-lt);
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.3rem 1.8rem;
  border-bottom: 1px solid var(--c-border-lt);
  border-right: 1px solid var(--c-border-lt);
  transition: background var(--ease);
}
.service-item:hover { background: rgba(196,150,58,.04); }
.service-item__dot {
  width: 4px;
  height: 4px;
  background: var(--c-gold);
  transform: rotate(45deg);
  margin-top: 0.58rem;
  flex-shrink: 0;
}
.service-item__name {
  font-family: var(--f-disp);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--c-cream-dk);
  line-height: 1.4;
}

/* ── CV ───────────────────────────────────── */

.cv-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 4rem;
  align-items: start;
}
.cv-sidebar {
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.cv-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--c-bg-alt);
  border: 1px solid var(--c-border);
  overflow: hidden;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cv-photo img { width: 100%; height: 100%; object-fit: cover; }
.cv-photo__placeholder {
  font-family: var(--f-ui);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-muted);
  text-align: center;
}
.cv-card {
  padding: 1.5rem;
  border: 1px solid var(--c-border);
  background: var(--c-bg-alt);
}
.cv-card__item { margin-bottom: 1.2rem; }
.cv-card__item:last-child { margin-bottom: 0; }
.cv-card__label {
  font-family: var(--f-ui);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold-dk);
  display: block;
  margin-bottom: 0.25rem;
}
.cv-card__value {
  font-family: var(--f-disp);
  font-size: 0.95rem;
  color: var(--c-cream-dk);
  line-height: 1.4;
}
.cv-card__value a { color: var(--c-cream-dk); }
.cv-card__value a:hover { color: var(--c-gold); }

.cv-main { min-width: 0; }
.cv-block {
  margin-bottom: 3.5rem;
  padding-left: 2rem;
  border-left: 1px solid var(--c-border);
}
.cv-block__title {
  font-family: var(--f-ui);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.48em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 1.5rem;
}
.cv-entry {
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--c-border-lt);
}
.cv-entry:last-child { border-bottom: none; margin-bottom: 0; }
.cv-entry__title {
  font-family: var(--f-disp);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--c-cream);
  margin-bottom: 0.2rem;
}
.cv-entry__sub {
  font-family: var(--f-disp);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--c-muted);
}
.cv-entry__detail {
  font-family: var(--f-ui);
  font-size: 0.65rem;
  font-weight: 400;
  color: #9A8060;
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
}
.badge {
  display: inline-block;
  border: 1px solid var(--c-border);
  padding: 0.25rem 0.8rem;
  font-family: var(--f-ui);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--c-gold);
  background: rgba(196,150,58,.06);
  margin-top: 0.5rem;
}
.badge--award { border-color: var(--c-gold-dk); color: var(--c-gold-lt); }

/* ── CONTACT ──────────────────────────────── */

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-row {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--c-border-lt);
}
.contact-row:last-of-type { border-bottom: none; }
.contact-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-icon svg {
  width: 18px; height: 18px;
  stroke: var(--c-gold);
  fill: none;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-label {
  font-family: var(--f-ui);
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--c-gold-dk);
  display: block;
  margin-bottom: 0.3rem;
}
.contact-value {
  font-family: var(--f-disp);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--c-cream);
  line-height: 1.5;
}
.contact-value a { color: var(--c-cream); }
.contact-value a:hover { color: var(--c-gold); }

.map-wrap {
  border: 1px solid var(--c-border);
  overflow: hidden;
  height: 380px;
}
.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(1) contrast(1.1) invert(.88);
}

/* ── GRACIAS ──────────────────────────────── */

.gracias-body {
  text-align: center;
  padding-block: 6rem;
  max-width: 580px;
  margin-inline: auto;
}
.gracias-body p {
  font-family: var(--f-disp);
  font-size: 1.2rem;
  color: var(--c-muted);
  font-style: italic;
  margin-bottom: 2.5rem;
}

/* ── FOOTER ───────────────────────────────── */

.footer {
  background: var(--c-bg-deep);
  border-top: 1px solid var(--c-border);
  padding-block: 3.5rem;
  text-align: center;
}
.footer__logo { display: flex; justify-content: center; margin-bottom: 1.2rem; }
.footer__logo-img { height: 116px; width: auto; }
.footer__tagline {
  font-family: var(--f-disp);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: var(--c-muted);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.footer__links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem 2.5rem;
  margin-bottom: 2rem;
  padding-inline: 1rem;
}
.footer__links a {
  font-family: var(--f-ui);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-muted);
  transition: color var(--ease);
}
.footer__links a:hover { color: var(--c-gold); }
.footer__copy {
  font-family: var(--f-ui);
  font-size: 0.52rem;
  letter-spacing: 0.15em;
  color: rgba(240,235,224,.18);
  text-transform: uppercase;
}

/* ── WHATSAPP FLOAT ───────────────────────── */

.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #1c3528;
  border: 1px solid var(--c-gold-dk);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 26px rgba(0,0,0,.5);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.wa-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 32px rgba(196,150,58,.3);
  border-color: var(--c-gold);
}
.wa-float svg { width: 26px; height: 26px; fill: var(--c-gold); }

/* ── CV destacados ────────────────────────── */
.cv-hl {
  display: inline-block;
  font-family: var(--f-disp);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--c-gold);
  line-height: 1.2;
  margin-top: 0.35rem;
}
.cv-entry__link {
  display: inline-block;
  margin-top: 0.5rem;
  font-family: var(--f-ui);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.cv-entry__link:hover { color: var(--c-gold-lt); }
.cv-sidebar__caption {
  text-align: center;
  font-family: var(--f-disp);
  font-size: 1.1rem;
  color: var(--c-cream);
  margin-top: 1rem;
}
.cv-sidebar__caption small {
  display: block;
  font-family: var(--f-ui);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-gold-dk);
  margin-top: 0.4rem;
}

/* ── HERO SLOGAN (home) ───────────────────── */
.hero__title--slogan {
  font-size: clamp(1.7rem, 3.6vw, 3rem);
  line-height: 1.22;
  max-width: 22ch;
  margin-inline: auto;
}

/* ── TRAYECTORIA (highlights en home) ─────── */
.trayectoria { background: var(--c-bg-alt); border-block: 1px solid var(--c-border-lt); }
.hl-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  max-width: 1000px;
  margin-inline: auto;
}
.hl-card {
  padding: 1.6rem 1.4rem;
  text-align: center;
  position: relative;
}
.hl-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 22%;
  height: 56%;
  width: 1px;
  background: var(--c-border-lt);
}
@media (max-width: 760px) { .hl-card:not(:last-child)::after { display: none; } }
.hl-card__big {
  font-family: var(--f-disp);
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  font-weight: 500;
  color: var(--c-gold);
  line-height: 1.1;
  margin-bottom: 0.7rem;
}
.hl-card__sub {
  font-family: var(--f-ui);
  font-size: 0.74rem;
  font-weight: 400;
  color: var(--c-muted);
  line-height: 1.6;
}
@media (max-width: 760px) { .hl-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── INSTAGRAM ────────────────────────────── */

.ig-sec {
  background: var(--c-bg-alt);
  border-block: 1px solid var(--c-border-lt);
}
.ig-sec__header { text-align: center; margin-bottom: 3.2rem; }
.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  max-width: 980px;
  margin-inline: auto;
}
.ig-card {
  display: flex;
  flex-direction: column;
  background: var(--c-bg-deep);
  border: 1px solid var(--c-border);
  overflow: hidden;
  transition: border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.ig-card:hover {
  border-color: rgba(196,150,58,.55);
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0,0,0,.5);
}
.ig-card__head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 15px;
  border-bottom: 1px solid var(--c-border-lt);
}
.ig-card__head svg { color: var(--c-gold); flex-shrink: 0; }
.ig-card__head span {
  font-family: var(--f-ui);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-cream-dk);
}
.ig-card__img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0a0806;
}
.ig-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s var(--ease);
}
.ig-card:hover .ig-card__img img { transform: scale(1.05); }
.ig-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  border-top: 1px solid var(--c-border-lt);
}
.ig-card__foot .lbl {
  font-family: var(--f-ui);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-gold);
}
.ig-card__foot .arr { color: var(--c-gold); transition: transform var(--ease); }
.ig-card:hover .ig-card__foot .arr { transform: translateX(5px); }
.ig-more { text-align: center; margin-top: 3rem; }

@media (max-width: 720px) {
  .ig-grid { grid-template-columns: 1fr; max-width: 340px; }
}

/* ── RESPONSIVE ───────────────────────────── */

@media (max-width: 900px) {
  .cv-layout { grid-template-columns: 1fr; }
  .cv-sidebar { position: static; display: grid; grid-template-columns: 160px 1fr; gap: 1.5rem; align-items: start; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 640px) {
  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    inset-inline: 0;
    flex-direction: column;
    background: rgba(13,11,8,.98);
    padding: 2rem 2.5rem;
    gap: 1.8rem;
    border-bottom: 1px solid var(--c-border);
  }
  .nav__links.open { display: flex; }
  .nav__toggle { display: flex; }
  .footer__links { gap: 0.7rem 1.4rem; }
  .cv-sidebar { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .value-card { grid-template-columns: 40px 1fr; column-gap: 1rem; }
  .value-card__num { font-size: 2.2rem; }
  .hero__corner { display: none; }
  .container { padding-inline: 1.25rem; }
}
