:root {
  --black: #080808;
  --black-2: #111111;
  --black-3: #1b1b1b;
  --gold: #c8a24a;
  --gold-2: #e0c06a;
  --gold-soft: rgba(200, 162, 74, .16);
  --ink: #17150f;
  --muted: #6b6559;
  --line: #e3dccb;
  --paper: #f7f5ef;
  --paper-2: #efeadd;
  --white: #ffffff;
  --ok: #1f9d78;
  --ok-ink: #0f6b54;
  --alert: #b72b3a;
  --shadow: 0 24px 70px rgba(0, 0, 0, .16);
  --shadow-sm: 0 10px 30px rgba(0, 0, 0, .08);
  --radius: 14px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --max: 1240px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: Inter, system-ui, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

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

h1, h2, h3 {
  font-family: Fraunces, Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -.01em;
  margin: 0;
}

h2 {
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.08;
  color: var(--black);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: Inter, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -60px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--gold);
  color: #111;
  font-weight: 800;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  z-index: 40;
  inset: 0 0 auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 96px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(8, 8, 8, .82);
  border-bottom: 1px solid rgba(200, 162, 74, .22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: min-height .3s var(--ease), background .3s var(--ease), border-color .3s var(--ease);
}
.site-header.is-scrolled {
  min-height: 74px;
  background: rgba(8, 8, 8, .95);
  border-bottom-color: rgba(200, 162, 74, .38);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-size: 14px;
}
.brand-name { font-size: 18px; letter-spacing: .04em; }
.brand-logo {
  display: none;
  width: auto;
  max-width: min(300px, 32vw);
  height: 74px;
  object-fit: contain;
  transition: height .3s var(--ease);
}
.site-header.is-scrolled .brand-logo { height: 58px; }
.brand.has-logo .brand-mark,
.brand.has-logo .brand-name { display: none; }
.brand.has-logo .brand-logo { display: block; }

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, .82);
  font-size: 14px;
  font-weight: 600;
}
.nav > a { position: relative; transition: color .2s var(--ease); }
.nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav > a:not(.nav-cta):hover,
.nav > a.is-current { color: var(--white); }
.nav > a:not(.nav-cta):hover::after,
.nav > a.is-current::after { transform: scaleX(1); }
.nav .nav-cta { display: none; }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-weight: 800;
  font-size: 14px;
  white-space: nowrap;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.header-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(200, 162, 74, .34); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  padding: 12px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span + span { margin-top: 5px; }
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-scrim {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
body.nav-open .nav-scrim { opacity: 1; }

/* ---------- Buttons ---------- */
.primary-button,
.section-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.primary-button:hover,
.section-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 38px rgba(200, 162, 74, .32);
}
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 999px;
  color: var(--white);
  font-weight: 800;
  transition: background .2s var(--ease), border-color .2s var(--ease);
}
.secondary-button:hover { background: rgba(255, 255, 255, .12); border-color: #fff; }
.section-cta { margin-top: 22px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0c0c0c;
}
.hero-image,
.hero-shade { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; }
.hero-shade {
  background:
    linear-gradient(96deg, rgba(0, 0, 0, .94) 8%, rgba(0, 0, 0, .78) 40%, rgba(0, 0, 0, .18) 78%),
    radial-gradient(circle at 82% 12%, rgba(200, 162, 74, .22), transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100% - 36px));
  margin: 0 auto 0 clamp(18px, 7vw, 96px);
  padding: 120px 0 96px;
  color: var(--white);
}
.hero h1 {
  font-size: clamp(42px, 7vw, 92px);
  line-height: 1.02;
  font-weight: 600;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-2);
}
.hero-copy {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, .88);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 1;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid rgba(255, 255, 255, .4);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 7px;
}
.hero-scroll span {
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--gold-2);
  animation: scrollDot 1.7s var(--ease) infinite;
}
@keyframes scrollDot {
  0% { opacity: 0; transform: translateY(0); }
  40% { opacity: 1; }
  80% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 0; }
}

/* ---------- Pillars ---------- */
.pillars {
  max-width: var(--max);
  margin: -70px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 0 clamp(18px, 5vw, 40px);
}
.pillar {
  display: block;
  padding: 28px 26px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: rgba(200, 162, 74, .5); }
.pillar-num {
  font-family: Fraunces, serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
}
.pillar h3 {
  margin: 10px 0 8px;
  font-size: 22px;
  color: var(--black);
}
.pillar p { margin: 0 0 14px; color: var(--muted); font-size: 15px; }
.pillar-link {
  font-family: Inter, sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--ink);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
}
.pillar:hover .pillar-link { color: var(--gold); }

/* ---------- Sections ---------- */
.product-section,
.contempladas-section,
.contact-section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 120px) clamp(18px, 5vw, 40px);
}

.product-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 68px);
  align-items: center;
}
.product-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.72;
}
.product-media { margin: 0; }
.product-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.steps {
  grid-column: 1 / -1;
  margin: clamp(20px, 4vw, 44px) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  counter-reset: step;
}
.steps li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.steps li:hover { transform: translateY(-4px); border-color: rgba(200, 162, 74, .5); }
.steps li span {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-family: Fraunces, serif;
  font-weight: 600;
}

/* Dark product section (Seguros) */
.product-section.dark {
  max-width: none;
  margin: 0;
  background: var(--black);
  color: var(--white);
}
.product-section.dark > * { max-width: calc(var(--max) / 2 - 34px); }
.product-section.dark > .parceria-card { max-width: none; }
.product-section.dark {
  padding-left: max(clamp(18px, 5vw, 40px), calc((100% - var(--max)) / 2 + clamp(18px, 5vw, 40px)));
  padding-right: max(clamp(18px, 5vw, 40px), calc((100% - var(--max)) / 2 + clamp(18px, 5vw, 40px)));
}
.product-section.dark h2 { color: var(--white); }
.product-section.dark .product-copy p { color: rgba(255, 255, 255, .9); }

.ramo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.ramo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 122px;
  padding: 22px 16px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  background: linear-gradient(160deg, #2b2418, #1a1610);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  text-align: center;
  transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.ramo-card .ramo-ico {
  width: 34px;
  height: 34px;
  color: var(--gold-2);
  transition: color .25s var(--ease);
}
.ramo-card:hover {
  transform: translateY(-4px);
  border-color: transparent;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #111;
  box-shadow: 0 16px 38px rgba(200, 162, 74, .3);
}
.ramo-card:hover .ramo-ico { color: #111; }

.parceria-card {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 22px 36px;
  margin-top: 10px;
  padding: 30px clamp(22px, 3vw, 40px);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  background: linear-gradient(120deg, rgba(200, 162, 74, .24), rgba(200, 162, 74, .05));
}
.parceria-text { max-width: 680px; }
.parceria-tag {
  display: inline-block;
  margin: 0 0 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--gold);
  color: #111;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.parceria-card h3 {
  color: #fff;
  font-size: clamp(22px, 2.8vw, 30px);
}
.parceria-card p {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 500;
  line-height: 1.55;
}
.parceria-card p strong { color: var(--gold-2); font-weight: 800; }
.parceria-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: none;
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  color: #111;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  font-weight: 800;
  font-size: 15px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.parceria-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(200, 162, 74, .32); }

/* ---------- Carta contemplada ---------- */
.contempladas-section {
  background:
    linear-gradient(180deg, var(--white), var(--paper) 70%),
    radial-gradient(circle at 12% 0%, var(--gold-soft), transparent 34%);
  border-radius: 0;
}
.contempladas-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}
.contempladas-head p:not(.eyebrow) {
  max-width: 640px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
}
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.teaser-card {
  display: block;
  padding: 24px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.teaser-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(200, 162, 74, .5);
}
.teaser-card strong {
  display: block;
  margin-bottom: 8px;
  font-family: Fraunces, serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--black);
}
.teaser-card span { color: var(--muted); font-size: 15px; }

/* ---------- Contact ---------- */
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 560px);
  gap: 48px;
  align-items: start;
}
.contact-copy p { margin: 16px 0 0; color: var(--muted); font-size: 17px; }
.whatsapp-panel {
  display: grid;
  gap: 8px;
  max-width: 520px;
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(200, 162, 74, .5);
  border-radius: var(--radius);
  background: #fbf7ea;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.whatsapp-panel:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.whatsapp-panel strong { font-size: 19px; color: var(--black); }
.whatsapp-panel span { color: var(--muted); font-size: 14px; }

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.lead-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  font-weight: 800;
  color: var(--black);
}
.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #d6cfbe;
  border-radius: 10px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px var(--gold-soft);
}
.lead-form textarea { resize: vertical; }
.wide { grid-column: 1 / -1; }
.honeypot { position: absolute; left: -9999px; opacity: 0; }
.form-status { min-height: 22px; margin: 0; font-weight: 700; color: var(--ok-ink); }
.form-status.error { color: #a33a2b; }

/* ---------- Footer ---------- */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  padding: 40px clamp(18px, 6vw, 80px);
  color: rgba(255, 255, 255, .78);
  background: #050505;
  border-top: 1px solid rgba(200, 162, 74, .2);
}
.footer-brand { max-width: 460px; }
.footer-brand strong { display: block; font-family: Fraunces, serif; font-size: 20px; color: var(--white); }
.footer-about { margin: 10px 0 0; font-size: 13px; line-height: 1.6; color: rgba(255, 255, 255, .72); }
.footer-cnpj { display: block; margin-top: 8px; font-size: 12px; font-weight: 700; color: rgba(255, 255, 255, .55); letter-spacing: .02em; }
.footer-contact { display: flex; flex-wrap: wrap; gap: 6px 18px; margin-top: 12px; font-size: 13px; }
.footer-contact a { color: rgba(255, 255, 255, .8); font-weight: 700; border-bottom: 1px solid rgba(200, 162, 74, .5); padding-bottom: 1px; }
.footer-contact a:hover { color: var(--gold-2); }
.footer-nav { display: flex; flex-wrap: wrap; gap: 20px; font-size: 14px; font-weight: 600; }
.footer-nav a:hover { color: var(--gold-2); }
.footer-note { font-size: 12px; color: rgba(255, 255, 255, .5); width: 100%; }

/* ---------- WhatsApp FAB ---------- */
.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  color: #fff;
  background: #25d366;
  box-shadow: 0 12px 30px rgba(37, 211, 102, .4);
  transition: transform .2s var(--ease);
}
.whatsapp-fab:hover { transform: scale(1.08); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-scroll span { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
  .ramo-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 940px) {
  .header-cta { display: none; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    z-index: 40;
    width: min(320px, 82vw);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 108px 26px 32px;
    background: #0c0c0c;
    border-left: 1px solid rgba(200, 162, 74, .28);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    overflow-y: auto;
  }
  body.nav-open .nav { transform: translateX(0); }
  .nav > a {
    padding: 14px 4px;
    font-size: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .9);
  }
  .nav > a:not(.nav-cta)::after { display: none; }
  .nav .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    min-height: 50px;
    border: 0;
    border-radius: 999px;
    color: #111;
    background: linear-gradient(135deg, var(--gold), var(--gold-2));
    font-weight: 800;
  }

  .pillars { grid-template-columns: 1fr; margin-top: -50px; }
  .product-section { grid-template-columns: 1fr; }
  .product-media { order: -1; }
  .contempladas-head { grid-template-columns: 1fr; align-items: start; }
  .teaser-grid { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  html { scroll-padding-top: 90px; }
  .site-header { min-height: 72px; }
  .brand-logo { max-width: 200px; height: 52px; }
  .site-header.is-scrolled .brand-logo { height: 46px; }
  .hero-content { padding: 104px 0 80px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions a { width: 100%; }
  .steps { grid-template-columns: 1fr; }
  .ramo-grid { grid-template-columns: repeat(2, 1fr); }
  .lead-form { grid-template-columns: 1fr; padding: 20px; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

/* ===== Ícone WhatsApp nos CTAs ===== */
.wa-ico { width: 18px; height: 18px; flex: none; }
.header-cta,
.primary-button,
.secondary-button,
.section-cta,
.nav .nav-cta { gap: 8px; }
.footer-nav a.whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-nav a.whatsapp-link .wa-ico { width: 15px; height: 15px; }
.whatsapp-panel strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
@media (max-width: 560px) {
  .header-cta .wa-ico { width: 16px; height: 16px; }
}

/* ===== Localização (contato) ===== */
.contact-place {
  margin: 24px auto 0;
  max-width: 340px;
  text-align: center;
}
.contact-addr {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}
.contact-addr strong {
  display: block;
  margin-bottom: 4px;
  color: var(--black);
  font-size: 13px;
  letter-spacing: .02em;
}
.contact-map {
  display: block;
  width: 100%;
  height: 170px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}
.contact-directions {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 12px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  font-weight: 800;
  font-size: 14px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.contact-directions:hover { border-color: rgba(200, 162, 74, .6); background: #fbf7ea; }
