/* ==========================================================================
   Dohyeon — Minimal Portfolio (recreation)
   ========================================================================== */

@font-face {
  font-family: "Junicode VF Variable";
  src: url('https://raw.githubusercontent.com/psb1558/Junicode-font/master/webfiles/JunicodeVF-Roman.woff2') format('woff2-variations'),
       url('https://raw.githubusercontent.com/psb1558/Junicode-font/master/webfiles/JunicodeVF-Roman.woff2') format('woff2');
  font-weight: 300 700;
  font-stretch: 75% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Junicode VF Variable";
  src: url('https://raw.githubusercontent.com/psb1558/Junicode-font/master/webfiles/JunicodeVF-Italic.woff2') format('woff2-variations'),
       url('https://raw.githubusercontent.com/psb1558/Junicode-font/master/webfiles/JunicodeVF-Italic.woff2') format('woff2');
  font-weight: 300 700;
  font-stretch: 75% 125%;
  font-style: italic;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --fg: #0d0d0d;
  --muted: #6f6f6f;
  --muted-2: #9a9a9a;
  --border: #e8e8e6;
  --surface: #f6f5f3;
  --accent: #0d0d0d;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --container: 1180px;
  --ease: cubic-bezier(.16,.84,.44,1);
  --dur: .7s;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

@media (max-width: 700px) {
  .container { padding: 0 20px; }
}

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--fg);
  display: inline-block;
}

.section {
  padding: 110px 0;
}
@media (max-width: 700px) {
  .section { padding: 64px 0; }
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 0;
  letter-spacing: -0.02em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--fg);
  color: #fff;
}
.btn-primary:hover { transform: translateY(-2px); background: #2a2a2a; }
.btn-outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.btn-outline:hover { border-color: var(--fg); transform: translateY(-2px); }
.btn-arrow {
  display: inline-flex;
  width: 20px; height: 20px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  font-size: 12px;
  transition: transform .35s var(--ease);
}
.btn:hover .btn-arrow { transform: translate(2px,-2px); }

/* ---------- Top banner ---------- */
.topbar {
  background: var(--fg);
  color: #fff;
  text-align: center;
  font-size: 13px;
  padding: 10px 16px;
  letter-spacing: .01em;
}
.topbar a { border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 1px; }
.topbar a:hover { border-color: #fff; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--muted);
  transition: background .3s var(--ease), color .3s var(--ease);
}
.nav-links a:hover, .nav-links a.active {
  background: var(--surface);
  color: var(--fg);
}
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: none;
  align-items: center;
  justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 16px; height: 1.5px;
  background: var(--fg);
  position: relative;
  transition: all .3s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -5px; }
.nav-toggle span::after { position: absolute; top: 5px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-cta .btn-primary { display: none; }
}

.mobile-menu {
  position: fixed;
  inset: 0;
  top: 0;
  background: #fff;
  z-index: 99;
  display: flex;
  flex-direction: column;
  padding: 110px 28px 40px;
  transform: translateY(-100%);
  transition: transform .5s var(--ease);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu a {
  font-size: 30px;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.01em;
}
.mobile-menu .btn { margin-top: 28px; align-self: flex-start; }

/* ---------- Hero ---------- */
.hero {
  padding-top: 90px;
  padding-bottom: 60px;
  text-align: center;
}
@media (max-width: 700px) {
  .hero {
    padding-top: 28px;
    padding-bottom: 40px;
  }
}
.hero h1 {
  font-size: clamp(38px, 7vw, 84px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin: 0 auto 22px;
  max-width: 920px;
}
.hero .lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 36px;
}
.hero .lead b, .hero .lead strong { color: var(--fg); font-weight: 600; }

/* Home hero — left aligned, serif */
.hero.hero-left {
  text-align: left;
}
.hero.hero-left h1 {
  margin: 0 0 30px;
  max-width: 900px;
  font-family: "Junicode VF Variable", serif;
  letter-spacing: -0.008em;
  line-height: 1.12;
  font-weight: 600;
}
.hero.hero-left h1 .line-bold {
  display: block;
  color: var(--fg);
  font-weight: 700;
}
.hero.hero-left h1 .line-light {
  display: block;
  color: var(--muted);
  font-weight: 600;
}
.hero.hero-left h1 .amp {
  font-family: "Junicode VF Variable", serif;
}
.hero.hero-left .hero-actions {
  justify-content: flex-start;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}
@media (max-width: 860px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-photo { order: -1; }
}
.hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1/1;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
[data-reveal].in-view {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
[data-reveal-group].in-view > * { opacity: 1; transform: translateY(0); }
[data-reveal-group].in-view > *:nth-child(1) { transition-delay: .04s; }
[data-reveal-group].in-view > *:nth-child(2) { transition-delay: .12s; }
[data-reveal-group].in-view > *:nth-child(3) { transition-delay: .2s; }
[data-reveal-group].in-view > *:nth-child(4) { transition-delay: .28s; }
[data-reveal-group].in-view > *:nth-child(5) { transition-delay: .36s; }
[data-reveal-group].in-view > *:nth-child(6) { transition-delay: .44s; }

/* ---------- Project cards ---------- */
.project-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
@media (max-width: 760px) {
  .project-grid { grid-template-columns: 1fr; }
}
.project-card {
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
}
.project-card .thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.project-card .thumb img,
.project-card .thumb .ph {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.project-card:hover .thumb img,
.project-card:hover .thumb .ph { transform: scale(1.06); }
.project-card .ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted-2);
  background: linear-gradient(135deg,#efeeea,#e2e0da);
}
.project-card .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 24px;
}
.project-card .meta h3 {
  margin: 0 0 4px;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.project-card .meta p {
  margin: 0;
  font-size: 13.5px;
  color: var(--muted);
}
.project-card .go {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex: none;
  transition: background .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.project-card:hover .go {
  background: var(--fg);
  color: #fff;
  border-color: var(--fg);
  transform: rotate(45deg);
}

.see-all-wrap { text-align: center; margin-top: 44px; }

/* ---------- Filter tabs ---------- */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 8px;
}
.filter-tab {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  background: transparent;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.filter-tab:hover { border-color: var(--fg); color: var(--fg); }
.filter-tab.active {
  background: var(--fg);
  color: #fff;
  border-color: var(--fg);
}
.project-card.is-hidden { display: none; }

/* ---------- Testimonial ---------- */
.testimonial {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.testimonial img {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
}
.testimonial .name { font-weight: 600; font-size: 15px; }
.testimonial .role { color: var(--muted); font-size: 13.5px; margin-bottom: 24px; }
.testimonial blockquote {
  margin: 0;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-weight: 500;
}

/* ---------- Services ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
@media (max-width: 700px) {
  .service-grid { grid-template-columns: 1fr; }
}
.service-item {
  background: #fff;
  padding: 40px;
  transition: background .35s var(--ease);
}
.service-item:hover { background: var(--surface); }
.service-item .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.service-item .icon img { width: 20px; height: 20px; }
.service-item h3 { margin: 0 0 10px; font-size: 18px; }
.service-item p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 90px 32px;
}
.cta-band h2 {
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.cta-band p {
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 32px;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--border);
  padding: 56px 0 30px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 34px;
}
.footer-links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-links a { color: var(--muted); font-size: 14px; transition: color .3s; }
.footer-links a:hover { color: var(--fg); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--muted-2);
}
.footer-bottom a { color: var(--muted-2); }
.footer-bottom a:hover { color: var(--fg); }

/* ---------- About page ---------- */
.about-hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) {
  .about-hero { grid-template-columns: 1fr; }
}
.about-hero h1 {
  font-size: clamp(30px, 4.4vw, 48px);
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.about-hero p { color: var(--muted); font-size: 16px; margin: 0 0 14px; max-width: 480px; }
.about-portrait {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-portrait img { width: 100%; height: 100%; object-fit: cover; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin-top: 70px;
  padding-top: 44px;
  border-top: 1px solid var(--border);
}
@media (max-width: 700px) { .stat-row { grid-template-columns: 1fr; gap: 30px; } }
.stat-row .num { font-size: clamp(32px,4vw,44px); font-weight: 700; letter-spacing: -0.02em; }
.stat-row .label { color: var(--muted); font-size: 14px; margin-top: 6px; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
}
@media (max-width: 860px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .process-grid { grid-template-columns: 1fr; } }
.process-item .index {
  font-size: 14px;
  color: var(--muted-2);
  font-weight: 600;
  margin-bottom: 18px;
}
.process-item h3 { font-size: 17px; margin: 0 0 10px; }
.process-item p { color: var(--muted); font-size: 14px; margin: 0; line-height: 1.6; }

.approach {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 760px) { .approach { grid-template-columns: 1fr; } }
.approach h2 { font-size: clamp(26px,3.2vw,36px); letter-spacing: -0.02em; margin:0 0 18px;}
.approach p { color: var(--muted); }

.exp-list { border-top: 1px solid var(--border); }
.exp-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
}
.exp-row img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; flex: none; }
.exp-row .who { flex: 1; }
.exp-row .who h4 { margin: 0 0 3px; font-size: 16px; }
.exp-row .who span { color: var(--muted); font-size: 13.5px; }
.exp-row .when { color: var(--muted-2); font-size: 13.5px; }

/* ---------- Store / templates ---------- */
.template-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 28px;
}
@media (max-width: 760px) { .template-grid { grid-template-columns: 1fr; } }
.template-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.template-card:hover { border-color: var(--fg); transform: translateY(-4px); }
.template-card .thumb {
  aspect-ratio: 16/10;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg,#efeeea,#e2e0da);
  margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted-2); font-weight: 600;
}
.template-card .row { display: flex; align-items: center; justify-content: space-between; }
.template-card h3 { margin: 0 0 6px; font-size: 18px; }
.template-card .price { font-size: 13px; font-weight: 600; padding: 6px 12px; border-radius: var(--radius-pill); background: var(--surface); }

.avatar-quote-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 24px;
}
@media (max-width: 760px) { .avatar-quote-grid { grid-template-columns: 1fr; } }
.quote-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.quote-card .who { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.quote-card .who img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.quote-card .who h4 { margin: 0; font-size: 15px; }
.quote-card .who span { color: var(--muted); font-size: 13px; }
.quote-card p { margin: 0; color: var(--fg); font-size: 15px; line-height: 1.65; }

/* ---------- Blog ---------- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 28px;
}
@media (max-width: 760px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card {
  display: block;
}
.blog-card .thumb {
  aspect-ratio: 16/10;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.blog-card:hover .thumb img { transform: scale(1.05); }
.blog-card .date { color: var(--muted-2); font-size: 13px; margin-bottom: 8px; }
.blog-card h3 { margin: 0; font-size: 20px; letter-spacing: -0.01em; }

.post-hero { text-align: center; max-width: 760px; margin: 0 auto; }
.post-hero .date { color: var(--muted); font-size: 14px; margin-bottom: 16px; }
.post-hero h1 { font-size: clamp(30px,4.6vw,50px); letter-spacing: -0.02em; margin: 0; }
.post-cover { border-radius: var(--radius-lg); overflow: hidden; margin: 50px 0; }
.post-body {
  max-width: 700px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.85;
  color: #262626;
}
.post-body h2 {
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 46px 0 16px;
}
.post-body p { margin: 0 0 22px; color: #3b3b3b; }
.more-blogs-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--border); }
.more-blogs-list a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; border-bottom: 1px solid var(--border);
  font-size: 16px; font-weight: 500;
  transition: padding-left .3s var(--ease), color .3s var(--ease);
}
.more-blogs-list a:hover { padding-left: 10px; color: var(--muted); }
.more-blogs-list a span { color: var(--muted-2); font-size: 13px; font-weight: 400; }

/* ---------- Project detail ---------- */
.pd-hero { text-align: center; max-width: 760px; margin: 0 auto 50px; }
.pd-hero h1 { font-size: clamp(32px,5vw,58px); letter-spacing: -0.02em; margin: 0 0 18px; }
.pd-hero p { color: var(--muted); font-size: 17px; }
.pd-cover { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 60px; }
.pd-cover img { width: 100%; }
.pd-meta {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 24px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  margin-bottom: 70px;
}
@media (max-width: 700px) { .pd-meta { grid-template-columns: 1fr 1fr; } }
.pd-meta .label { font-size: 12px; text-transform: uppercase; letter-spacing: .04em; color: var(--muted-2); margin-bottom: 8px; }
.pd-meta .value { font-size: 16px; font-weight: 500; }
.pd-block { max-width: 700px; margin: 0 auto 60px; }
.pd-block h2 { font-size: clamp(22px,2.8vw,28px); letter-spacing: -0.01em; margin: 0 0 18px; }
.pd-block p { color: var(--muted); font-size: 16px; line-height: 1.8; margin: 0 0 16px; }
.pd-image { border-radius: var(--radius-lg); overflow: hidden; margin: 60px 0; }
.pd-gallery { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin: 60px 0; }
@media (max-width: 760px) { .pd-gallery { grid-template-columns: 1fr; } }
.pd-gallery img { border-radius: var(--radius-md); aspect-ratio: 4/3; object-fit: cover; }
.pd-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  padding-top: 30px;
  margin-bottom: 60px;
  font-size: 15px;
  font-weight: 500;
}
.pd-nav a { transition: opacity .3s; }
.pd-nav a:hover { opacity: .55; }

/* ---------- Contact ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 60px;
}
@media (max-width: 860px) { .contact-wrap { grid-template-columns: 1fr; } }
.contact-info h1 { font-size: clamp(32px,4.6vw,50px); letter-spacing: -0.02em; margin: 0 0 18px; }
.contact-info p { color: var(--muted); font-size: 16px; margin: 0 0 30px; }
.contact-info p a { color: var(--fg); border-bottom: 1px solid var(--border); }
.social-list { display: flex; gap: 12px; flex-wrap: wrap; }
.social-list a {
  padding: 10px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  transition: border-color .3s, background .3s;
}
.social-list a:hover { border-color: var(--fg); background: var(--surface); }

.form-field { margin-bottom: 22px; }
.form-field label {
  display: block;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 600;
}
.form-field input, .form-field textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 15px 16px;
  font-size: 15px;
  font-family: inherit;
  background: var(--surface);
  transition: border-color .3s, background .3s;
}
.form-field input:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--fg);
  background: #fff;
}
.form-field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 13px; color: var(--muted-2); margin-top: 14px; }

.cal-embed {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 650px;
  background: #fff;
}
.cal-embed #my-cal-inline {
  width: 100%;
  height: 100%;
  min-height: 650px;
}
@media (max-width: 700px) {
  .cal-embed, .cal-embed #my-cal-inline { min-height: 560px; }
}

/* misc */
.divider { height: 1px; background: var(--border); border: none; margin: 0; }
