@font-face {
  font-family: "Cinzel";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/cinzel-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Cinzel";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/cinzel-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/cormorant-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/cormorant-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-italic-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
  font-family: "Cormorant Garamond";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/cormorant-italic-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url("../fonts/inter-latin.woff2") format("woff2");
}

:root {
  --bg: #070605;
  --bg-2: #120f0c;
  --gold: #c6a35a;
  --gold-hi: #ead7a4;
  --gold-lo: #8d6b32;
  --ink: #f6f1e6;
  --muted: #b9a88a;
  --line: rgba(198, 163, 90, 0.35);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

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

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.atmosphere {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(198, 163, 90, 0.16), transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 110%, rgba(139, 90, 60, 0.12), transparent 50%),
    var(--bg);
}

.watermark {
  position: absolute;
  left: 50%;
  top: 42%;
  width: min(92vw, 520px);
  opacity: 0.045;
  transform: translate(-50%, -50%);
  filter: blur(0.2px);
}

.page {
  position: relative;
  z-index: 1;
  width: min(100% - 2rem, 420px);
  margin: 0 auto;
  padding: 2.4rem 0 2.8rem;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.monogram {
  width: 58px;
  height: auto;
  margin-bottom: 1.15rem;
}

.avatar {
  width: 118px;
  height: 118px;
  padding: 3px;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--gold-hi), var(--gold) 42%, var(--gold-lo));
  box-shadow: var(--shadow), 0 0 0 8px rgba(198, 163, 90, 0.08);
  margin-bottom: 1.25rem;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 14%;
  border-radius: 50%;
  display: block;
  background: var(--bg-2);
}

.name {
  margin: 0;
  font-family: "Cinzel", "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(1.05rem, 4.6vw, 1.28rem);
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  text-transform: uppercase;
  color: var(--gold-hi);
}

.rule {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.7rem;
  width: 100%;
  margin: 0.7rem 0 0.15rem;
}

.rule span {
  font-family: "Cinzel", serif;
  font-size: 0.68rem;
  letter-spacing: 0.42em;
  text-indent: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
}

.rule::before,
.rule::after {
  content: "";
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}

.oab {
  margin: 0.15rem 0 0;
  font-size: 1.05rem;
  font-style: italic;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.city {
  margin: 0.15rem 0 0;
  font-family: "Cinzel", serif;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  text-transform: uppercase;
  color: rgba(234, 215, 164, 0.55);
}

.links {
  display: grid;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 3.35rem;
  padding: 0.7rem 1rem;
  color: inherit;
  text-decoration: none;
  border: 1px solid var(--line);
  background: rgba(18, 15, 12, 0.72);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(234, 215, 164, 0.08);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.link:hover,
.link:focus-visible {
  transform: translateY(-1px);
  border-color: var(--gold);
  background: rgba(198, 163, 90, 0.1);
  outline: none;
}

.link--whatsapp {
  border-color: rgba(198, 163, 90, 0.65);
  background: linear-gradient(180deg, rgba(198, 163, 90, 0.18), rgba(198, 163, 90, 0.06));
}

.link--whatsapp:hover,
.link--whatsapp:focus-visible {
  background: linear-gradient(180deg, rgba(198, 163, 90, 0.28), rgba(198, 163, 90, 0.1));
}

.icon {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
  color: var(--gold-hi);
}

.copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.copy strong {
  font-family: "Cinzel", serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.copy small {
  font-size: 0.98rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.phone {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: var(--ink);
}

.foot {
  margin-top: 1.8rem;
  text-align: center;
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--muted);
}

.foot a {
  color: var(--gold-hi);
  text-decoration: none;
}

.foot a:hover,
.foot a:focus-visible {
  text-decoration: underline;
}

.credit {
  margin: 1.55rem 0 0;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: lowercase;
  color: rgba(185, 168, 138, 0.52);
}

.credit a {
  color: rgba(234, 215, 164, 0.62);
  text-decoration: none;
}

.credit a:hover,
.credit a:focus-visible {
  color: var(--gold-hi);
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  .link {
    transition: none;
  }
}
