:root {
  --bg: #ececeb;
  --card: rgba(249, 249, 247, 0.9);
  --card-2: rgba(255, 255, 255, 0.82);
  --text: #17202d;
  --muted: #5f6470;
  --line: rgba(23, 32, 45, 0.18);
  --accent: #132f5c;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  --shadow-soft: 0 16px 38px rgba(0, 0, 0, 0.09);
  --radius: 30px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 28%, rgba(42, 65, 44, 0.12) 0 5%, transparent 6%),
    radial-gradient(circle at 14% 33%, rgba(42, 65, 44, 0.09) 0 4%, transparent 5%),
    linear-gradient(180deg, #efefed 0%, #e6e6e4 100%);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
}

.page-shell {
  min-height: 100%;
  display: grid;
  place-items: center;
  padding: 36px 20px;
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  left: 0;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(78, 98, 72, 0.17) 0, rgba(78, 98, 72, 0.09) 24%, transparent 54%);
  filter: blur(26px);
  transform: rotate(-20deg);
  pointer-events: none;
}

.page-shell::before { top: 40px; left: -70px; }
.page-shell::after { top: 170px; left: -80px; opacity: 0.55; }

.backdrop-card,
.business-card {
  width: min(920px, 100%);
  border-radius: var(--radius);
}

.backdrop-card {
  position: absolute;
  background: rgba(255,255,255,0.62);
  height: clamp(440px, 70vh, 560px);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.business-card {
  position: relative;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  padding: 88px 54px 52px;
  min-height: clamp(420px, 64vh, 530px);
}

.badge {
  position: absolute;
  top: -54px;
  left: 50%;
  transform: translateX(-50%);
  width: 108px;
  height: 108px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 40px rgba(18, 47, 92, 0.28);
}

.badge svg {
  width: 52px;
  height: 52px;
}

.hero {
  text-align: center;
}

.hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(3.4rem, 7vw, 5.3rem);
  line-height: 0.95;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.role {
  margin: 16px 0 0;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
}

.divider {
  margin: 22px auto 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.divider span {
  width: 118px;
  height: 1px;
  background: var(--line);
}

.divider i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(23, 32, 45, 0.45);
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.contact-item {
  padding: 20px 22px 10px;
  text-align: center;
  position: relative;
}

.contact-item + .contact-item::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 18px;
  bottom: 18px;
  width: 1px;
  background: var(--line);
}

.contact-item .icon {
  color: var(--accent);
  width: 46px;
  height: 46px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
}

.contact-item .icon svg {
  width: 42px;
  height: 42px;
}

.label {
  margin: 0 0 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

.value {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.4;
}

.subtle-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

.subtle-link:hover { text-decoration: underline; }

@media (max-width: 860px) {
  .business-card {
    padding: 82px 28px 28px;
  }
  .backdrop-card {
    height: auto;
    inset: 32px 12px;
    width: auto;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contact-item {
    padding: 18px 10px;
  }
  .contact-item + .contact-item::before {
    left: 16px;
    right: 16px;
    top: -1px;
    bottom: auto;
    width: auto;
    height: 1px;
  }
}

@media (max-width: 520px) {
  .page-shell { padding: 28px 12px; }
  .business-card { border-radius: 24px; min-height: auto; }
  .backdrop-card { border-radius: 24px; }
  .badge { width: 94px; height: 94px; top: -48px; }
  .badge svg { width: 46px; height: 46px; }
  .hero h1 { font-size: 3.1rem; }
  .role { letter-spacing: 0.18em; }
  .divider span { width: 74px; }
}
