/* Palette sampled from cynosure.com — brand orange #ff4714 / #e03100, ink #252729 */
:root {
  --bg: #faf8f6;
  --surface: #ffffff;
  --ink: #252729;
  --ink-soft: #6b6560;
  --line: #ebe5e0;
  --heading: #15171a;

  --brand: #ff4714;        /* graphic accents */
  --brand-deep: #e03100;   /* text & buttons (readable) */
  --brand-press: #c22a00;
  --brand-ink: #8f2600;    /* orange text on tinted card */
  --brand-tint: #fff4f0;
  --brand-tint-line: #ffd9cc;

  --radius: 14px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue",
               "Malgun Gothic", "Apple SD Gothic Neo", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.page {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 24px 48px;
}

/* ---------- Hero ---------- */
.hero {
  display: flex;
  align-items: center;
  gap: 28px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.photo {
  width: 132px;
  height: 168px;
  object-fit: cover;
  object-position: center top;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(143, 38, 0, 0.07);
  flex-shrink: 0;
}

.intro { min-width: 0; }

h1 {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.role {
  position: relative;
  margin: 10px 0 0;
  padding-left: 14px;
  color: var(--brand-deep);
  font-size: 1.05rem;
  font-weight: 500;
}

.role::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  bottom: 0.35em;
  width: 3px;
  border-radius: 2px;
  background: var(--brand);
}

.logo {
  display: block;
  width: 172px;
  max-width: 100%;
  height: auto;
  margin: 18px 0 0;
  opacity: 0.85;
}

.contact {
  display: inline-block;
  margin-top: 20px;
  padding: 11px 26px;
  background: var(--brand-deep);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  box-shadow: 0 2px 10px rgba(224, 49, 0, 0.22);
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.contact:hover {
  background: var(--brand-press);
  box-shadow: 0 4px 14px rgba(224, 49, 0, 0.3);
}

.contact:active { transform: translateY(1px); }
.contact:focus-visible { outline: 2px solid var(--brand-deep); outline-offset: 3px; }

/* ---------- Services ---------- */
.services { margin-top: 36px; }

h2 {
  margin: 0 0 20px;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--heading);
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.18s ease;
}

.item:hover { border-color: var(--brand-tint-line); }

.item .name {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: var(--ink);
}

.item.featured {
  background: var(--brand-tint);
  border-color: var(--brand-tint-line);
  box-shadow: inset 3px 0 0 var(--brand);
}

/* Same face, size and spacing as every other item —
   only the weight and the colour set these two apart. */
.item.featured .name {
  font-weight: 700;
  color: var(--brand-press);
}

.mark {
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  fill: var(--brand);
}

/* ---------- Footer ---------- */
.foot {
  margin-top: 40px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.foot a {
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.18s ease;
}

.foot a:hover { color: var(--brand-deep); }
.dot { margin: 0 8px; color: var(--brand); }

/* ---------- Mobile ---------- */
@media (max-width: 560px) {
  .page { padding: 36px 18px 36px; }

  .hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .photo { width: 116px; height: 148px; }

  h1 { font-size: 1.65rem; }

  .role {
    font-size: 1rem;
    padding-left: 0;
    padding-top: 12px;
  }

  .role::before {
    left: 50%;
    top: 0;
    bottom: auto;
    width: 28px;
    height: 3px;
    transform: translateX(-50%);
  }

  .logo { width: 156px; margin-left: auto; margin-right: auto; }

  .contact {
    display: block;
    width: 100%;
    padding: 14px 20px;
    text-align: center;
  }

  h2 { font-size: 0.98rem; }

  .item { padding: 14px 16px; }
  .item .name { font-size: 0.96rem; }
  .item.featured .name { font-size: 0.96rem; }
}
