:root {
  --white: #ffffff;
  --cream: #fffaf0;
  --paper: #fff5dc;
  --paper-deep: #f7dfaa;
  --yellow: #ffec90;
  --yellow-soft: #fff4bf;
  --yellow-deep: #e2bd4c;
  --brown: #623722;
  --brown-soft: #87553b;
  --brown-dark: #2b170f;
  --ink: #25150f;
  --muted: #7b6557;
  --line: rgba(98, 55, 34, 0.16);
  --line-strong: rgba(98, 55, 34, 0.28);
  --shadow-soft: 0 22px 70px rgba(98, 55, 34, 0.12);
  --shadow-tight: 0 14px 34px rgba(98, 55, 34, 0.12);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --max-width: 1120px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  max-width: 100%;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

::selection {
  color: var(--brown-dark);
  background: var(--yellow);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--brown);
  border-radius: 999px;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-background,
.paper-texture,
#particleCanvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.site-background {
  z-index: -2;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 236, 144, 0.78), transparent 24%),
    radial-gradient(circle at 84% 20%, rgba(98, 55, 34, 0.12), transparent 24%),
    linear-gradient(180deg, var(--white) 0%, var(--cream) 48%, #fff0c6 100%);
}

.paper-texture {
  z-index: -2;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(98, 55, 34, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(98, 55, 34, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 86%);
}

#particleCanvas {
  z-index: -1;
  opacity: 0.4;
}

/* ===== HEADER ===== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 clamp(18px, 4vw, 56px);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 250, 240, 0.86);
  border-color: var(--line);
  box-shadow: 0 12px 40px rgba(98, 55, 34, 0.08);
  backdrop-filter: blur(18px);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: none;
}

.site-logo-mark {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--yellow-soft);
  border: 2px solid var(--yellow);
  box-shadow: var(--shadow-tight);
  object-fit: cover;
}

.site-logo-word {
  display: inline-flex;
  align-items: center;
  color: var(--brown);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 800;
  white-space: nowrap;
}

.site-logo-word strong {
  position: relative;
  padding: 2px 8px 4px;
  margin-left: 2px;
  color: var(--brown-dark);
}

.site-logo-word strong::before {
  content: "";
  position: absolute;
  inset: 4px 0 0;
  z-index: -1;
  background: var(--yellow);
  border-radius: 999px;
  transform: rotate(-2deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(98, 55, 34, 0.06);
}

.site-nav a {
  padding: 9px 12px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--brown-dark);
  background: var(--yellow-soft);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--brown);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-tight);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 999px;
  transition: transform 200ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

/* ===== LAYOUT HELPERS ===== */

.section-pad {
  width: min(var(--max-width), calc(100% - clamp(32px, 8vw, 96px)));
  margin: 0 auto;
  padding: clamp(76px, 11vw, 140px) 0;
}

.section-heading {
  display: grid;
  gap: 14px;
  max-width: 700px;
  margin-bottom: clamp(32px, 6vw, 56px);
}

.section-kicker {
  display: inline-flex;
  width: fit-content;
  margin: 0;
  padding: 8px 12px;
  color: var(--brown);
  background: rgba(255, 236, 144, 0.72);
  border: 1px solid rgba(98, 55, 34, 0.12);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  color: var(--brown-dark);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.4vw, 3.2rem);
  line-height: 1.1;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
}

.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  font-weight: 800;
  border-radius: 999px;
  transition: box-shadow 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.primary-button {
  color: var(--white);
  background: var(--brown);
  box-shadow: 0 16px 34px rgba(98, 55, 34, 0.22);
}

.secondary-button {
  color: var(--brown);
  background: var(--white);
  border: 1px solid var(--line-strong);
  box-shadow: 0 12px 28px rgba(98, 55, 34, 0.08);
}

.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(98, 55, 34, 0.18);
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--brown);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: var(--yellow-deep);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}

/* ===== ICON BADGES (shared) ===== */

.icon-badge {
  display: grid;
  place-items: center;
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}

.icon-badge svg {
  width: 18px;
  height: 18px;
}

.icon-badge-lg {
  width: 46px;
  height: 46px;
}

.icon-badge-lg svg {
  width: 24px;
  height: 24px;
}

.icon-badge-youtube {
  background: #ff2d2d;
}

.icon-badge-instagram {
  background: linear-gradient(135deg, #f9ce34, #ee2a7b 55%, #6228d7);
}

.icon-badge-tiktok {
  background: #131313;
}

.icon-badge-email {
  background: var(--brown);
}

.icon-badge-beacons {
  background: var(--yellow);
}

/* ===== HERO ===== */

.hero-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: center;
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 40px);
  overflow: hidden;
}

.hero-wordmark {
  position: absolute;
  top: 8%;
  left: 50%;
  z-index: 0;
  margin: 0;
  color: var(--brown);
  opacity: 0.05;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(6rem, 18vw, 15rem);
  white-space: nowrap;
  letter-spacing: 0.02em;
  transform: translateX(-50%) rotate(-2deg);
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-width: 0;
}

.role-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}

.role-pill {
  padding: 8px 14px;
  color: var(--brown-dark);
  background: var(--yellow);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.role-pill-ghost {
  color: var(--brown);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line-strong);
}

.hero-title {
  margin: 0;
  color: var(--brown-dark);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8.6vw, 6.4rem);
  line-height: 1;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.hero-title .accent-word {
  position: relative;
  display: inline-block;
  color: var(--brown-dark);
  z-index: 0;
}

.hero-title .accent-word::after {
  content: "";
  position: absolute;
  inset: 46% -6% 4%;
  z-index: -1;
  background: var(--yellow);
  border-radius: 999px 999px 40% 40%;
  transform: rotate(-1.4deg);
}

.hero-tagline {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--brown-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.4;
}

.hero-description {
  max-width: 500px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 6px 16px 6px 6px;
  color: var(--brown);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  box-shadow: var(--shadow-tight);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.social-chip:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(98, 55, 34, 0.22);
}

.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-portrait {
  position: relative;
  width: min(380px, 82%);
  aspect-ratio: 0.88;
}

.portrait-blob {
  position: absolute;
  z-index: 0;
  filter: blur(1px);
}

.blob-a {
  inset: -6% 4% 6% -4%;
  background: linear-gradient(135deg, var(--yellow), var(--paper-deep));
  border-radius: 44% 56% 62% 38% / 48% 42% 58% 52%;
}

.blob-b {
  width: 60%;
  height: 60%;
  right: -12%;
  bottom: -14%;
  background: var(--brown);
  opacity: 0.14;
  border-radius: 38% 62% 55% 45% / 55% 45% 55% 45%;
}

.portrait-image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 44% 56% 62% 38% / 48% 42% 58% 52%;
  border: 6px solid var(--white);
  box-shadow: var(--shadow-soft);
}

.floating-tag {
  position: absolute;
  z-index: 2;
  display: grid;
  gap: 3px;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 42px rgba(98, 55, 34, 0.14);
}

.floating-tag span {
  color: var(--brown-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.floating-tag strong {
  color: var(--brown-dark);
  font-family: var(--font-display);
  font-size: 1.02rem;
  line-height: 1.15;
  white-space: nowrap;
}

.tag-content {
  top: 4%;
  left: -6%;
  transform: rotate(-4deg);
}

/* ===== ABOUT ===== */

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: start;
}

.about-copy {
  display: grid;
  gap: 20px;
  max-width: 700px;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
}

.about-copy p {
  margin: 0;
  color: var(--muted);
}

.about-copy p:first-child {
  color: var(--brown-dark);
  font-size: clamp(1.14rem, 2vw, 1.42rem);
  line-height: 1.5;
}

.about-tags {
  display: grid;
  gap: 8px;
  margin: 4px 0 0;
  padding: 0;
  list-style: none;
}

.about-tags li {
  padding: 10px 16px;
  color: var(--brown);
  font-size: 0.86rem;
  font-weight: 700;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-tight);
}

/* ===== WHAT I DO ===== */

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.focus-card {
  padding: 30px 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow-deep);
  border-radius: 22px;
  box-shadow: var(--shadow-tight);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.focus-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: var(--brown);
  background: var(--yellow-soft);
  border-radius: 14px;
}

.focus-card h3 {
  margin: 0;
  color: var(--brown-dark);
  font-family: var(--font-display);
  font-size: 1.14rem;
  line-height: 1.2;
}

.focus-card p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.focus-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(98, 55, 34, 0.16);
}

/* ===== CONTENT / SOCIAL ===== */

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.platform-card {
  display: grid;
  gap: 10px;
  padding: 26px 22px;
  color: var(--brown-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-left: 4px solid var(--yellow-deep);
  border-radius: 20px;
  box-shadow: var(--shadow-tight);
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.platform-card-accent {
  border-left-color: var(--brown);
  background: var(--brown);
}

.platform-card-accent .platform-name {
  color: var(--white);
}

.platform-card-accent .platform-handle {
  color: rgba(255, 236, 144, 0.86);
}

.platform-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
}

.platform-handle {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  word-break: break-word;
}

.platform-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(98, 55, 34, 0.16);
}

.mini-card-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.mini-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow-tight);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.mini-card svg {
  flex: none;
  width: 24px;
  height: 24px;
  margin-top: 4px;
  fill: none;
  stroke: var(--brown);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mini-card-kicker {
  display: block;
  margin-bottom: 4px;
  color: var(--brown-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mini-card h3 {
  margin: 0;
  color: var(--brown-dark);
  font-family: var(--font-display);
  font-size: 1.12rem;
  line-height: 1.25;
  word-break: break-word;
}

.mini-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.mini-card-dark {
  background: var(--brown);
  border-color: transparent;
}

.mini-card-dark svg {
  stroke: var(--yellow);
}

.mini-card-dark .mini-card-kicker {
  color: rgba(255, 236, 144, 0.86);
}

.mini-card-dark h3 {
  color: var(--white);
}

.mini-card-dark p {
  color: rgba(255, 255, 255, 0.76);
}

.mini-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 50px rgba(98, 55, 34, 0.16);
}

/* ===== PROJECT ===== */

.project-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.feature-project {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-tight);
}

.feature-project-art {
  display: grid;
  place-items: center;
  min-height: 220px;
  background:
    radial-gradient(circle at 24% 25%, var(--white), transparent 28%),
    linear-gradient(135deg, var(--yellow), var(--paper-deep));
}

.feature-project-art span {
  color: var(--brown);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
}

.feature-project-content {
  padding: clamp(26px, 3.4vw, 40px);
}

.feature-project-label {
  display: inline-block;
  margin: 0 0 12px;
  color: var(--brown-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.feature-project-content h3 {
  margin: 0;
  color: var(--brown-dark);
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.15;
}

.feature-project-content p {
  max-width: 460px;
  margin: 14px 0 0;
  color: var(--muted);
}

.feature-project-soon {
  display: grid;
  align-content: center;
  gap: 6px;
  padding: clamp(26px, 3vw, 34px);
  background: rgba(255, 255, 255, 0.44);
  border: 2px dashed var(--line-strong);
  border-radius: 28px;
}

.feature-project-soon h3 {
  margin: 0;
  color: var(--brown-dark);
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.feature-project-soon p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ===== FOOTER ===== */

.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max-width), calc(100% - clamp(32px, 8vw, 96px)));
  margin: 0 auto;
  padding: 28px 0 42px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--brown);
  font-weight: 800;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.9rem;
}

/* ===== ANIMATION STATES ===== */

body.animations-ready .reveal-line,
body.animations-ready .hero-title,
body.animations-ready .hero-visual,
body.animations-ready .section-heading,
body.animations-ready .about-copy,
body.animations-ready .about-tags,
body.animations-ready .focus-card,
body.animations-ready .platform-card,
body.animations-ready .mini-card,
body.animations-ready .feature-project,
body.animations-ready .feature-project-soon {
  opacity: 0;
}

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

  .reveal-line,
  .hero-title,
  .section-heading,
  .about-copy,
  .about-tags,
  .focus-card,
  .platform-card,
  .mini-card,
  .feature-project,
  .feature-project-soon {
    opacity: 1;
  }
}

/* ===== RESPONSIVE ===== */

/* Laptops / small desktops */
@media (max-width: 1180px) {
  .hero-wordmark {
    font-size: clamp(5rem, 17vw, 11rem);
  }

  .focus-grid {
    gap: 14px;
  }
}

/* Tablets */
@media (max-width: 980px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    left: 18px;
    right: 18px;
    display: grid;
    gap: 6px;
    padding: 14px;
    background: rgba(255, 250, 240, 0.96);
    border-radius: 24px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
    backdrop-filter: blur(18px);
  }

  body.menu-open .site-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 13px;
    text-align: center;
  }

  .hero-section {
    grid-template-columns: 1fr;
    min-height: unset;
    padding-bottom: 48px;
  }

  .hero-visual {
    min-height: 340px;
    order: -1;
  }

  .hero-wordmark {
    top: 3%;
  }

  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-tags {
    grid-auto-flow: column;
    grid-template-columns: none;
    width: fit-content;
  }

  .focus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .feature-project-soon {
    min-height: 140px;
  }
}

/* Large phones */
@media (max-width: 720px) {
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .mini-card-row {
    grid-template-columns: 1fr;
  }

  .feature-project {
    grid-template-columns: 1fr;
  }
}

/* Phones */
@media (max-width: 640px) {
  :root {
    --header-height: 66px;
  }

  .section-pad {
    width: min(100% - 32px, var(--max-width));
    padding: 64px 0;
  }

  .site-header {
    padding: 0 14px;
  }

  .site-logo-mark {
    width: 34px;
    height: 34px;
  }

  .site-logo-word {
    font-size: 0.94rem;
  }

  .hero-section {
    padding-top: calc(var(--header-height) + 18px);
  }

  .hero-title {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
  }

  .hero-tagline,
  .hero-description {
    max-width: 100%;
  }

  .hero-actions,
  .site-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-button,
  .secondary-button {
    width: 100%;
  }

  .social-row {
    gap: 8px;
  }

  .social-chip {
    padding: 5px 12px 5px 5px;
    font-size: 0.8rem;
  }

  .icon-badge {
    width: 28px;
    height: 28px;
  }

  .icon-badge svg {
    width: 15px;
    height: 15px;
  }

  .hero-visual {
    min-height: 300px;
    padding: 0 6%;
  }

  .hero-portrait {
    width: min(240px, 78%);
  }

  .floating-tag {
    padding: 9px 13px;
    border-radius: 16px;
  }

  .floating-tag strong {
    font-size: 0.82rem;
  }

  .tag-content {
    top: 0;
    left: -2%;
  }

  .about-tags {
    grid-auto-flow: row;
    width: 100%;
  }

  .about-tags li {
    text-align: center;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .role-pills {
    gap: 6px;
  }

  .role-pill {
    font-size: 0.7rem;
    padding: 7px 11px;
  }
}
