:root {
  --ink: #181310;
  --muted: #746b65;
  --soft: #f4eee9;
  --cream: #fffaf6;
  --blush: #dfc2b8;
  --blush-deep: #a87668;
  --gold: #c59a54;
  --champagne: #f6dfad;
  --line: rgba(24, 19, 16, 0.12);
  --shadow: 0 28px 80px rgba(18, 14, 12, 0.2);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(223, 194, 184, 0.7), transparent 28rem),
    radial-gradient(circle at bottom right, rgba(24, 19, 16, 0.18), transparent 24rem),
    linear-gradient(145deg, #fffaf6 0%, #eee0d8 48%, #fbf7f2 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 70%);
}

.card-shell {
  width: min(100%, 520px);
  margin: 0 auto;
  padding: max(18px, env(safe-area-inset-top)) 16px max(34px, env(safe-area-inset-bottom));
}

.card-section {
  position: relative;
  overflow: hidden;
  background: rgba(255, 250, 246, 0.9);
  border: 1px solid rgba(24, 19, 16, 0.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 24px;
  margin: 14px 0;
}

.hero {
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 28px 22px 30px;
  background:
    linear-gradient(155deg, rgba(24, 19, 16, 0.97), rgba(53, 39, 34, 0.95) 54%, rgba(113, 78, 63, 0.94)),
    radial-gradient(circle at 18% 10%, rgba(246, 223, 173, 0.22), transparent 17rem);
  color: var(--cream);
}

.hero-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  top: -90px;
  right: -80px;
  background: radial-gradient(circle, rgba(184, 138, 68, 0.22), transparent 65%);
}

.profile-frame {
  width: min(100%, 292px);
  height: 355px;
  border-radius: 34px;
  padding: 7px;
  background: linear-gradient(135deg, rgba(255, 250, 246, 0.95), #dfc2b8 42%, #c59a54);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.28);
  margin-bottom: 24px;
}

.profile-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: 28px;
  border: 3px solid #fffaf6;
  object-position: center top;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 11vw, 4rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

h2 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

p {
  color: var(--muted);
  line-height: 1.62;
  font-size: 1rem;
}

.title {
  margin-bottom: 2px;
  color: var(--cream);
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brokerage {
  margin-bottom: 16px;
  color: rgba(255, 250, 246, 0.74);
  font-size: 0.95rem;
}

.tagline {
  max-width: 340px;
  margin: 0 auto 22px;
  color: rgba(255, 250, 246, 0.86);
  font-size: 1.03rem;
}

.trust-strip {
  display: inline-flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.09);
  border: 1px solid rgba(255, 250, 246, 0.18);
}

.trust-strip span {
  min-width: 72px;
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(255, 250, 246, 0.92);
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 800;
}

.section-heading {
  margin-bottom: 16px;
}

.action-grid,
.social-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.action-button,
.social-grid a,
.share-button {
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  text-decoration: none;
  font-weight: 850;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
  -webkit-tap-highlight-color: transparent;
}

.action-button:active,
.social-grid a:active,
.share-button:active {
  transform: scale(0.98);
}

.action-button.primary {
  background: linear-gradient(135deg, #1f1a17, #3a2b25);
  color: #fffaf6;
  box-shadow: 0 16px 32px rgba(31, 26, 23, 0.24);
}

.action-button.wide,
.share-button {
  grid-column: 1 / -1;
}

.action-button.subtle {
  background: rgba(234, 211, 202, 0.34);
}

.icon {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(184, 138, 68, 0.12);
  color: var(--gold);
  font-weight: 900;
}

.primary .icon {
  background: rgba(255, 255, 255, 0.16);
  color: #f5d69a;
}

.share-button {
  width: 100%;
  margin-top: 12px;
  padding: 14px 16px;
  flex-direction: column;
  font: inherit;
  cursor: pointer;
}

.share-button small {
  color: var(--muted);
  font-weight: 650;
}

.share-status {
  min-height: 24px;
  margin: 9px 0 0;
  color: var(--gold);
  font-weight: 800;
  font-size: 0.9rem;
  text-align: center;
}


.language-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.language-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.66);
  padding: 17px;
}

.language-card p:last-child {
  margin-bottom: 0;
}

.accent-card {
  background: linear-gradient(135deg, rgba(31, 26, 23, 0.94), rgba(58, 43, 37, 0.94));
}

.accent-card p {
  color: #fff7ef;
}

.language-label {
  display: inline-flex;
  margin-bottom: 10px;
  border-radius: 999px;
  padding: 7px 10px;
  background: rgba(184, 138, 68, 0.13);
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.accent-card .language-label {
  background: rgba(245, 214, 154, 0.12);
  color: #f5d69a;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-list span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  padding: 10px 13px;
  color: #403732;
  font-size: 0.92rem;
  font-weight: 750;
}

.broker-row {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 15px;
  align-items: center;
}

.broker-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 10px;
}

.social-grid a {
  min-height: 72px;
  padding: 13px;
  flex-direction: column;
  gap: 4px;
}

.social-grid span {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.qr-note {
  background: linear-gradient(135deg, rgba(31, 26, 23, 0.94), rgba(77, 54, 43, 0.93));
}

.qr-note h2,
.qr-note p {
  color: #fffaf6;
}

.qr-note .eyebrow {
  color: #f1cf94;
}

.footer {
  padding: 18px 10px 8px;
  text-align: center;
}

.footer p {
  margin-bottom: 7px;
  font-size: 0.82rem;
}

.fine-print {
  font-size: 0.74rem !important;
  opacity: 0.76;
}

@media (min-width: 620px) {
  .card-shell {
    padding-top: 38px;
    padding-bottom: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

.hero h1 {
  color: var(--cream);
  text-shadow: 0 18px 36px rgba(0, 0, 0, 0.22);
}

.hero .eyebrow {
  color: var(--champagne);
}

.hero .brokerage {
  color: rgba(255, 250, 246, 0.74);
}

.social-grid-clean {
  grid-template-columns: 1fr 1fr;
}



.about-bilingual { }

.about-bilingual {
  padding: 28px 22px;
}

.about-heading {
  margin-bottom: 18px;
  text-align: center;
}

.about-heading .eyebrow {
  display: inline-flex;
  margin-bottom: 0;
  border-radius: 999px;
  padding: 9px 14px;
  background: rgba(197, 154, 84, 0.12);
  color: var(--gold);
}

.about-bilingual .language-pair {
  gap: 14px;
}

.about-bilingual .language-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px 20px;
}

.about-bilingual .language-card p {
  font-size: 1.03rem;
  line-height: 1.72;
}
