:root {
  --ink: #181818;
  --soft-ink: #686868;
  --paper: #f6f6f6;
  --white: #ffffff;
  --line: #e2e2e2;
  --accent: #707070;
  --accent-light: #ededed;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.09);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #f1f1f1;
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; }

.page-shell {
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 54px 18px;
}

.profile-card {
  position: relative;
  width: min(100%, 620px);
  padding: 40px 48px 28px;
  overflow: hidden;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.brand-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin-bottom: 26px;
  animation: fade-up .7s ease both;
}

.brand-name {
  font-family: Georgia, serif;
  font-size: clamp(21px, 5vw, 27px);
  font-weight: 700;
  letter-spacing: .1em;
}

.brand-rule { position: relative; width: 145px; height: 8px; border-top: 1px solid var(--ink); }
.brand-heart { position: absolute; top: -10px; left: 50%; display: grid; width: 25px; height: 16px; place-items: center; padding: 0 7px; transform: translateX(-50%); color: var(--ink); background: transparent; }
.brand-heart svg { width: 12px; height: 12px; fill: currentColor; }
.brand-title { font-size: 10px; font-weight: 700; letter-spacing: .28em; }

.profile-photo-wrap { position: relative; width: 170px; height: 170px; margin: 0 auto 22px; animation: fade-up .7s .08s ease both; }
.photo-ring { position: absolute; inset: -7px; border: 1px solid var(--accent); border-radius: 50%; transform: rotate(17deg); }
.photo-ring::after { content: ""; position: absolute; width: 8px; height: 8px; right: 18px; top: 5px; border-radius: 50%; background: var(--accent); }
.profile-photo { width: 100%; height: 100%; display: block; border: 6px solid var(--white); border-radius: 50%; object-fit: cover; object-position: 59% 25%; box-shadow: 0 8px 25px rgba(24,24,24,.16); }

.profile-copy { max-width: 430px; margin: 0 auto; text-align: center; animation: fade-up .7s .16s ease both; }
.eyebrow { margin: 0 0 7px; color: var(--accent); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.location { display: inline-flex; align-items: center; gap: 6px; margin: 0 0 15px; color: var(--ink); font-size: 12px; font-weight: 700; letter-spacing: .03em; }
.location-icon { width: 16px; height: 16px; fill: none; stroke: var(--accent); stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
h1 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(31px, 7vw, 42px); line-height: 1.08; font-weight: 600; }
.intro { max-width: 345px; margin: 0 auto 29px; color: var(--soft-ink); font-family: "DM Sans", sans-serif; font-size: 15px; font-weight: 500; letter-spacing: .01em; line-height: 1.55; }

.quick-actions { display: grid; gap: 10px; animation: fade-up .7s .24s ease both; }
.quick-action { position: relative; display: grid; grid-template-columns: 42px 1fr auto; align-items: center; gap: 13px; min-height: 66px; padding: 10px 18px 10px 11px; overflow: hidden; border: 1px solid var(--line); border-radius: 14px; background: var(--white); box-shadow: 0 2px 0 rgba(0, 0, 0, .02); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.quick-action::after { content: ""; position: absolute; inset: 0; pointer-events: none; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .65); }
.quick-action:hover { border-color: #a6a6a6; box-shadow: 0 10px 24px rgba(0, 0, 0, .09); transform: translateY(-3px); }
.quick-action.primary { color: var(--white); border-color: var(--ink); background: var(--ink); box-shadow: 0 7px 16px rgba(0, 0, 0, .14); }
.quick-action.primary:hover { border-color: #555555; box-shadow: 0 13px 26px rgba(0, 0, 0, .2); }
.action-icon { display: grid; width: 42px; height: 42px; place-items: center; border-radius: 50%; color: var(--ink); background: var(--accent-light); font-size: 20px; }
.icon-svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.7; }
.action-icon .icon-svg { width: 21px; height: 21px; }
.primary .action-icon { color: var(--ink); background: var(--accent); }
.action-icon.outline { color: var(--accent); background: #f2f2f2; }
.quick-action strong, .quick-action small { display: block; }
.quick-action strong { font-size: 14px; font-weight: 700; }
.quick-action small { margin-top: 3px; color: #777777; font-size: 11px; }
.primary small { color: #c5c5c5; }
.arrow { display: grid; width: 29px; height: 29px; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--accent); font-size: 17px; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.primary .arrow { border-color: #4d4d4d; }
.quick-action:hover .arrow { border-color: var(--accent); background: var(--accent-light); }
.quick-action:hover .arrow { transform: translateX(4px); }

.footer { display: grid; gap: 18px; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--line); animation: fade-up .7s .32s ease both; }
.social-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.social-links a { display: grid; width: 100%; min-height: 46px; place-items: center; border: 1px solid var(--line); border-radius: 12px; color: var(--soft-ink); box-shadow: 0 2px 0 rgba(0, 0, 0, .02); transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease; }
.social-links a span { color: var(--accent); line-height: 1; }
.social-icon { display: block; width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-linecap: round; stroke-linejoin: round; stroke-width: 1.8; }
.social-icon .icon-fill { fill: currentColor; stroke: none; }
.google-icon { fill: currentColor; stroke: none; }
.social-links a:hover { color: var(--ink); border-color: var(--accent); background: #f3f3f3; box-shadow: 0 7px 16px rgba(0, 0, 0, .07); transform: translateY(-2px); }
.footer-note { display: grid; gap: 4px; color: #999999; font-size: 10px; text-align: center; }
.footer-note strong { color: var(--soft-ink); font-size: 11px; font-weight: 700; }

@keyframes fade-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 560px) {
  .page-shell { padding: 18px 10px; }
  .profile-card { padding: 30px 20px 22px; }
  .footer { margin-top: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
}