@font-face {
  font-family: "Eina";
  src: url("/fonts/Eina02-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Eina";
  src: url("/fonts/Eina02-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

:root {
  --ink: #202024;
  --paper: #f5f2ec;
  --sand: #ddd4c5;
  --line: rgba(32, 32, 36, 0.17);
  --quiet: #726f69;
}

* { box-sizing: border-box; }

html { background: #d8d3cb; }

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 10%, rgba(255,255,255,.72), transparent 32%),
    linear-gradient(135deg, #e9e5de 0%, #d2cdc5 100%);
  font-family: "Eina", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.page-shell {
  min-height: 100svh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 32px 18px 18px;
}

.business-card {
  width: min(100%, 940px);
  display: grid;
  grid-template-columns: minmax(340px, .9fr) minmax(430px, 1.1fr);
  grid-template-rows: 83px minmax(610px, auto);
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 32px 100px rgba(35, 33, 30, .19);
}

.brand-bar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 34px;
  border-bottom: 1px solid var(--line);
}

.brand-bar a { display: flex; align-items: center; }
.brand-logo { width: 148px; height: auto; display: block; }
.brand-bar > span { color: var(--quiet); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; }

.portrait-panel { min-height: 610px; position: relative; overflow: hidden; background: #86837f; }
.portrait { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; object-position: center 42%; filter: saturate(.78) contrast(1.03); }
.portrait-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 58%, rgba(22,22,24,.69) 100%); }
.portrait-note {
  max-width: 280px;
  position: absolute;
  right: 28px;
  bottom: 25px;
  left: 28px;
  margin: 0;
  color: #fff;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: .01em;
}

.identity-panel {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 58px 48px 30px;
}

.eyebrow {
  margin: 0 0 25px;
  color: var(--quiet);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 6vw, 77px);
  font-weight: 400;
  line-height: .94;
  letter-spacing: -.058em;
}

.role { margin: 14px 0 0; font-size: 13px; font-weight: 600; letter-spacing: .035em; text-transform: uppercase; }
.role span { margin: 0 4px; color: #9a9183; }
.intro { max-width: 450px; margin: 28px 0 31px; color: #4f4d49; font-size: 15px; line-height: 1.65; }

.service-list { border-top: 1px solid var(--line); }
.service-list > div { min-height: 43px; display: grid; grid-template-columns: 42px 1fr; align-items: center; border-bottom: 1px solid var(--line); }
.service-list span { color: #9a9183; font-size: 9px; letter-spacing: .1em; }
.service-list p { margin: 0; font-size: 11px; letter-spacing: .025em; text-transform: uppercase; }

.contact-actions { margin-top: 34px; }
.primary-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.action {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}
.action-dark { color: #fff; background: var(--ink); }
.action b, .secondary-actions b { font-size: 16px; font-weight: 400; }
.action:hover, .action:focus-visible { color: #fff; background: #6e665c; border-color: #6e665c; }

.secondary-actions { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 8px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.secondary-actions > * {
  min-width: 0;
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 10px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  font: 600 9px "Eina", Arial, sans-serif;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}
.secondary-actions > *:last-child { border-right: 0; }
.secondary-actions > *:hover, .secondary-actions > *:focus-visible { background: #e9e3da; }
.share-status { min-height: 14px; margin: 7px 0 0; color: var(--quiet); font-size: 9px; text-align: right; }

.card-footer { display: flex; justify-content: space-between; margin-top: auto; padding-top: 20px; color: var(--quiet); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.card-footer a { color: var(--ink); font-weight: 600; }
.privacy-note { margin: 0; color: rgba(32,32,36,.55); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }

@media (max-width: 760px) {
  .page-shell { display: block; padding: 0; }
  .business-card { width: 100%; display: flex; flex-direction: column; box-shadow: none; }
  .brand-bar { min-height: 72px; padding: 0 21px; }
  .brand-logo { width: 130px; }
  .portrait-panel { min-height: min(57svh, 540px); }
  .portrait { object-position: center 35%; }
  .portrait-note { right: 21px; bottom: 19px; left: 21px; }
  .identity-panel { min-height: 520px; padding: 39px 21px 24px; }
  .eyebrow { margin-bottom: 21px; }
  h1 { font-size: clamp(54px, 17vw, 76px); }
  .intro { margin: 24px 0 27px; font-size: 14px; }
  .contact-actions { margin-top: 29px; }
  .secondary-actions { grid-template-columns: 1fr; }
  .secondary-actions > * { min-height: 44px; padding-inline: 14px; border-right: 0; border-bottom: 1px solid var(--line); }
  .secondary-actions > *:last-child { border-bottom: 0; }
  .card-footer { margin-top: 31px; }
  .privacy-note { display: none; }
}

@media (max-width: 380px) {
  .primary-actions { grid-template-columns: 1fr; }
  .brand-bar > span { display: none; }
}

@media (prefers-reduced-motion: no-preference) {
  .business-card { animation: appear .7s cubic-bezier(.2,.75,.3,1) both; }
  @keyframes appear { from { opacity: 0; transform: translateY(12px); } }
}
