/* ===================================================================
   JP Soteldo — Hoja de estilos compartida
   Basado en el sistema de diseno derivado del Manual de Identidad Corporativa
   =================================================================== */

:root {
  --wine: #6B0F1A;
  --wine-dark: #500A13;
  --wine-tint: #F6E9EA;
  --petrol: #1E2D3D;
  --petrol-light: #2C4258;
  --petrol-deep: #141F2B;
  --gold: #C7A34B;
  --gold-light: #DEC385;
  --gray-light: #F4F4F4;
  --white: #FFFFFF;
  --ink: #1B1B1B;
  --ink-soft: #5B5F63;
  --border: #E2E1DC;
  --radius-sm: 2px;
  --radius-md: 8px;
  --shadow-card: 0 1px 2px rgba(20,20,20,.04), 0 8px 24px rgba(20,20,20,.06);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
}

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

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, p {
  margin: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- utility type ---------- */

.eyebrow {
  font-size: 11.5px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--wine);
  margin: 0 0 14px;
}

.eyebrow.on-dark {
  color: var(--gold-light);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 40px);
  font-weight: 500;
  color: var(--petrol);
  margin: 0 0 16px;
  line-height: 1.2;
}

.section-desc {
  font-size: 15.5px;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.75;
  margin: 0;
}

.gold-rule {
  width: 52px;
  height: 2px;
  background: var(--gold);
  margin: 22px 0 0;
}

.gold-rule.center {
  margin-left: auto;
  margin-right: auto;
}

section {
  padding: 88px 0;
}

section.tight {
  padding: 64px 0;
}

.bg-light {
  background: var(--gray-light);
}

.bg-petrol {
  background: var(--petrol);
  color: var(--white);
}

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

.bg-petrol .section-desc {
  color: #C7CDD4;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all .18s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--wine);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--wine-dark);
}

.btn-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold);
  color: var(--petrol);
}

.btn-ghost {
  background: transparent;
  color: var(--petrol);
  border-color: var(--petrol);
}

.btn-ghost:hover {
  background: var(--petrol);
  color: var(--white);
}

.btn-ghost-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.45);
}

.btn-ghost-light:hover {
  background: rgba(255,255,255,.12);
}

.btn-text {
  background: none;
  border: none;
  color: var(--wine);
  padding: 6px 0;
  border-bottom: 1px solid var(--wine);
  border-radius: 0;
  text-transform: none;
  letter-spacing: .02em;
  font-size: 14px;
}

.btn-whatsapp {
  background: #1E2D3D;
  color: #fff;
}

.btn-whatsapp:hover {
  background: var(--wine-dark);
}

.btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ---------- badges ---------- */

.badge {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 999px;
}

.badge-outline {
  border: 1px solid var(--gold);
  color: var(--wine-dark);
  background: var(--wine-tint);
}

.badge-line {
  border: 1px solid var(--petrol);
  color: var(--petrol);
}

/* ---------- navbar ---------- */

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

.wordmark .jp {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--wine);
}

.wordmark .soteldo {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: .24em;
  color: var(--petrol);
  margin-top: 1px;
}

.wordmark .reg {
  font-size: .55em;
  vertical-align: super;
}

.wordmark.on-dark .jp {
  color: var(--gold-light);
}

.wordmark.on-dark .soteldo {
  color: #fff;
}

.jps-mark {
  display: flex;
  align-items: center;
  gap: 9px;
  line-height: 1;
}

.jps-mark svg {
  width: 26px;
  height: 26px;
  stroke: var(--gold);
  flex-shrink: 0;
}

.jps-mark .jps-text .top {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--petrol);
  letter-spacing: .02em;
}

.jps-mark .jps-text .bottom {
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 700;
  margin-top: 1px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.nav-links {
  display: flex;
  gap: 30px;
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--petrol);
}

.nav-links a {
  text-decoration: none;
  transition: color .15s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--wine);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 18px;
}

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

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--petrol);
}

@media (max-width: 860px) {
  .nav-links {
    position: fixed;
    inset: 70px 0 0 0;
    background: #fff;
    flex-direction: column;
    padding: 36px 24px;
    gap: 26px;
    font-size: 14px;
    transform: translateX(100%);
    transition: transform .22s ease;
    overflow-y: auto;
    height: fit-content;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-cta .btn {
    display: none;
  }

  .wordmark {
    margin-left: 5vw;
  }
}

/* ---------- hero ---------- */

.hero {
  background: var(--petrol);
  color: #fff;
  padding: 96px 0 84px;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 5vw, 54px);
  max-width: 820px;
  margin: 0 auto 22px;
  line-height: 1.18;
}

.hero p.lead {
  max-width: 560px;
  margin: 0 auto 34px;
  color: #C7CDD4;
  font-size: 15.5px;
  line-height: 1.75;
}

.hero .btn-row {
  justify-content: center;
}

/* ---------- signals grid ---------- */

.signal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 40px;
}

.signal-item {
  background: #fff;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
}

.signal-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--wine);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ---------- cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 40px;
}

.card-grid.cols-3 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.service-card {
  background: #fff;
  padding: 34px 28px;
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--wine-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 19px;
  height: 19px;
  stroke: var(--wine);
}

.service-title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: .02em;
}

.service-desc {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.65;
  margin: 0 0 14px;
}

.service-list {
  margin-top: 6px;
}

.service-list li {
  font-size: 13px;
  color: var(--ink-soft);
  padding-left: 16px;
  position: relative;
  margin-bottom: 7px;
  line-height: 1.5;
}

.service-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.card-link {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--wine);
  text-decoration: none;
  border-bottom: 1px solid var(--wine);
  padding-bottom: 2px;
}

/* full detail service block (servicios.html) */

.service-detail {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.service-detail:first-of-type {
  border-top: none;
}

.service-detail-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.service-detail-num {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--gold);
  font-weight: 600;
}

.service-detail-title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--petrol);
  font-weight: 500;
}

.service-detail-tag {
  font-size: 18px;
  color: var(--wine);
  font-weight: 500;
  font-style: italic;
  font-family: var(--font-display);
  margin-bottom: 18px;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
}

@media (max-width: 800px) {
  .service-detail-grid {
    grid-template-columns: 1fr;
  }
}

.service-detail-list li {
  font-size: 14.5px;
  padding: 9px 0 9px 22px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.service-detail-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.service-detail-list li:last-child {
  border-bottom: none;
}

.result-box {
  background: var(--gray-light);
  border-radius: var(--radius-md);
  padding: 26px 28px;
  height: fit-content;
}

.result-box .label {
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
  margin-bottom: 8px;
}

.result-box p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
}

/* who-we-help */

.value-card {
  background: #fff;
  padding: 30px 26px;
}

.value-card .t {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--petrol);
}

.value-card .d {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* why-us */

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-top: 44px;
}

.why-item .n {
  font-family: var(--font-display);
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: .16em;
}

.why-item h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--petrol);
  margin-bottom: 10px;
}

.why-item p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ---------- method / step list (genuine sequence) ---------- */

.step-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  margin-top: 48px;
  counter-reset: step;
}

.step-item {
  position: relative;
  padding-top: 8px;
}

.step-num {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 500;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 16px;
}

.step-item h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--petrol);
  margin-bottom: 10px;
}

.step-item p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.step-connector {
  display: none;
}

@media (min-width: 860px) {
  .step-list.arrows .step-item:not(:last-child)::after {
    content: '\2192';
    position: absolute;
    right: -26px;
    top: 14px;
    color: var(--gold);
    font-size: 22px;
  }
}

/* small linear steps (proceso 5 pasos) */

.mini-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 40px;
}

.mini-step {
  background: #fff;
  padding: 26px 22px;
}

.mini-step .k {
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--wine);
  margin-bottom: 10px;
}

.mini-step p {
  font-size: 13.5px;
  color: var(--ink);
  line-height: 1.6;
}

/* ---------- manifesto / quote block ---------- */

.manifesto {
  background: var(--petrol);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 64px 48px;
  text-align: center;
}

.manifesto p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(19px, 2.4vw, 26px);
  line-height: 1.6;
  color: #EDEEEF;
  max-width: 760px;
  margin: 0 auto;
}

.manifesto .gold-rule {
  margin: 28px auto 0;
}

/* ---------- cross-brand banner ---------- */

.cross-banner {
  background: var(--wine);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .cross-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .cross-banner .btn {
    white-space: normal;
    text-align: center;
    justify-content: center;
    width: 100%;
  }
}

.cross-banner .t {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 6px;
}

.cross-banner .d {
  font-size: 13.5px;
  color: #EAD3D6;
}

/* ---------- gateway (index.html) ---------- */

.gateway {
  min-height: 100vh;
  background: var(--petrol);
  color: #fff;
  display: flex;
  flex-direction: column;
}

.gateway-head {
  text-align: center;
  padding: 72px 24px 8px;
}

.gateway-head .wordmark {
  align-items: center;
  margin: 0 auto 22px;
}

.gateway-head .jp {
  font-size: 44px;
}

.gateway-head .soteldo {
  font-size: 16px;
}

.gateway-tag {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
}

.gateway-body {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.gateway-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  max-width: 960px;
  width: 100%;
  background: rgba(255,255,255,.14);
  border-radius: var(--radius-md);
  overflow: hidden;
}

@media (max-width: 760px) {
  .gateway-cards {
    grid-template-columns: 1fr;
  }
}

.gateway-card {
  background: var(--petrol-deep);
  padding: 56px 40px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  transition: background .2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gateway-card:hover {
  background: #0F1720;
}

.gateway-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 26px;
}

.gateway-card .icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold-light);
}

.gateway-card h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 26px;
  margin-bottom: 10px;
}

.gateway-card .sub {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 16px;
}

.gateway-card p {
  font-size: 13.5px;
  color: #B9C0C7;
  line-height: 1.65;
  max-width: 280px;
  margin: 0 auto 26px;
}

.gateway-card .enter {
  font-size: 11.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255,255,255,.4);
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  transition: all .18s ease;
}

.gateway-card:hover .enter {
  border-color: var(--gold);
  color: var(--gold-light);
}

.gateway-foot {
  text-align: center;
  padding: 30px 24px 44px;
  font-size: 11.5px;
  color: #8B939A;
}

.gateway-foot .social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}

.gateway-foot .social a {
  color: #B9C0C7;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  transition: all .18s ease;
}

.gateway-foot .social a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.gateway-foot .social svg {
  width: 15px;
  height: 15px;
}

/* ---------- pricing ---------- */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 40px;
}

.pricing-card {
  background: #fff;
  padding: 32px 26px;
}

.pricing-card .t {
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.pricing-card .p {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 6px;
}

.pricing-card .note {
  font-size: 12px;
  color: var(--ink-soft);
}

.pricing-disclaimer {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin-top: 20px;
  font-style: italic;
}

/* ---------- FAQ accordion ---------- */

.faq-list {
  margin-top: 36px;
  border-top: 1px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--petrol);
}

.faq-q .plus {
  font-size: 20px;
  color: var(--gold);
  transition: transform .2s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
}

.faq-a p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
  padding: 0 4px 22px;
}

/* ---------- forms ---------- */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

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

.field {
  margin-bottom: 22px;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink-soft);
  margin-bottom: 8px;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #C9C7C0;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14.5px;
  padding: 9px 2px;
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease;
  border-radius: 0;
}

.field select {
  background: #fff;
  cursor: pointer;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--wine);
}

.field-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 26px;
}

.field-check input {
  margin-top: 3px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 860px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.contact-info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 26px;
}

.contact-info-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--wine);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-item .l {
  font-size: 10.5px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
  margin-bottom: 4px;
}

.contact-info-item .v {
  font-size: 14.5px;
  color: var(--ink);
}

.contact-form-panel {
  background: var(--gray-light);
  border-radius: var(--radius-md);
  padding: 40px;
}

@media (max-width: 600px) {
  .contact-form-panel {
    padding: 28px 22px;
  }
}

/* ---------- placeholder note (quien-soy) ---------- */

.placeholder-box {
  border: 1px dashed #C9A45B;
  background: var(--wine-tint);
  border-radius: var(--radius-md);
  padding: 32px 36px;
  margin-top: 32px;
}

.placeholder-box .tag {
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--wine);
  margin-bottom: 12px;
}

.placeholder-box p {
  font-size: 14.5px;
  color: var(--ink);
  line-height: 1.75;
  margin-bottom: 12px;
}

.placeholder-box p:last-child {
  margin-bottom: 0;
}

.placeholder-photo {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: #fff;
  border: 1px dashed #C9A45B;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  font-size: 11px;
  text-align: center;
  color: var(--ink-soft);
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 12px;
}

/* ---------- footer ---------- */

.site-footer {
  background: var(--petrol-deep);
  color: #B7BEC4;
  padding: 64px 0 0;
  font-size: 13px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

@media (max-width: 760px) {
  .footer-cols {
    grid-template-columns: 1fr 1fr;
    row-gap: 32px;
  }
}

.footer-cols h4 {
  color: #fff;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.footer-cols p,
.footer-cols a {
  color: #9199A0;
  text-decoration: none;
  display: block;
  margin-bottom: 9px;
  line-height: 1.5;
}

.footer-cols a:hover {
  color: var(--gold-light);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 6px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #B7BEC4;
  transition: all .18s ease;
}

.footer-social a:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.footer-social svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: #6E777E;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom a {
  color: #6E777E;
  text-decoration: none;
}

.footer-bottom a:hover {
  color: var(--gold-light);
}

/* misc */

.mt-lg {
  margin-top: 56px;
}

.center {
  text-align: center;
}

.max-w {
  max-width: 720px;
  margin: 0 auto;
}
