@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --bg: #f8f6f1;
  --surface: rgba(255, 255, 255, 0.78);
  --surface-strong: rgba(255, 255, 255, 0.95);
  --ink: #111111;
  --accent: #8c4f2b;
  --accent-soft: rgba(140, 79, 43, 0.12);
  --muted: #cfcfd1;
  --soft: #b8b8bc;
  --line: rgba(17, 17, 17, 0.08);
  --line-strong: rgba(17, 17, 17, 0.14);
  --shadow: 0 28px 60px rgba(0, 0, 0, 0.07);
  --radius: 1.7rem;
  --font: "Poppins", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.95), transparent 20%),
    linear-gradient(180deg, #fcfbf9 0%, #f7f5f0 100%);
  color: var(--ink);
  font-family: var(--font);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

button,
input {
  font: inherit;
}

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

p,
h1,
h2,
h3 {
  margin: 0;
}

.site-shell {
  width: min(calc(100% - 2rem), 1210px);
  margin: 0 auto;
  padding: 1.4rem 0 5rem;
}

.masthead {
  position: sticky;
  top: 0;
  z-index: 20;
  padding-top: 0.3rem;
  background: linear-gradient(180deg, rgba(248, 246, 241, 0.94), rgba(248, 246, 241, 0.84) 80%, rgba(248, 246, 241, 0));
  backdrop-filter: blur(18px);
}

.masthead-top {
  display: grid;
  grid-template-columns: minmax(15rem, 0.82fr) minmax(28rem, 1.18fr);
  gap: 2rem;
  align-items: start;
}

.home-link {
  border: 0;
  padding: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.identity-name {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.identity-location,
.availability,
.view-intro,
.quick-card p,
.contact-note,
.site-footer p,
.message-label {
  color: var(--soft);
}

.identity-location {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.9rem;
  position: relative;
  padding-left: 1.35rem;
}

.identity-location::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.33rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ff89aa, #f31558 72%);
  box-shadow: 0 0 0 3px rgba(243, 21, 88, 0.1);
}

.availability {
  max-width: 48rem;
  font-size: clamp(1.05rem, 1.9vw, 1.72rem);
  line-height: 1.16;
  font-style: italic;
  font-weight: 300;
}

.divider {
  height: 1px;
  margin: 1.85rem 0 1.55rem;
  background: var(--line);
}

.section-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-bottom: 0.9rem;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 180ms ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #6a6a6f;
  outline: none;
}

.nav-link.is-active {
  color: var(--ink);
}

.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.98rem;
  height: 0.98rem;
  opacity: 0.92;
  flex: 0 0 auto;
}

.nav-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.nav-icon rect,
.nav-icon polygon,
.nav-icon path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.view-stack {
  position: relative;
}

.view {
  display: none;
  min-height: calc(100vh - 12rem);
  padding: 1.8rem 0 1rem;
  animation: view-in 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.view.is-active {
  display: block;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(15rem, 0.82fr) minmax(28rem, 1.18fr);
  gap: 2rem;
}

.view[data-view="home"] > .hero-grid,
.view[data-view="tldr"] > .hero-grid {
  grid-template-columns: minmax(15rem, 0.82fr) minmax(28rem, 1.18fr);
  align-items: start;
}

.view[data-view="home"] > .hero-grid {
  min-height: 9rem;
}

.view[data-view="tldr"] > .hero-grid {
  min-height: 20rem;
}

.hero-grid-tight {
  margin-top: 1.15rem;
}

.hero-spacer {
  min-height: 1px;
}

.hero-copy {
  justify-self: start;
  width: 100%;
  max-width: 58rem;
}

.ghost-headline,
.about-title {
  letter-spacing: -0.06em;
}

[data-split-heading] {
  overflow: visible;
}

[data-split-heading] .split-word {
  display: inline-block;
  white-space: nowrap;
  opacity: 0;
  transform: translate3d(0, 0.72em, 0);
  filter: blur(3px);
  will-change: transform, opacity, filter;
}

[data-split-heading].is-split-visible .split-word {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
  transition:
    transform 0.95s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.9s ease,
    filter 0.9s ease;
}

.ghost-headline {
  max-width: 12.6ch;
  font-size: clamp(3.3rem, 5.65vw, 5.1rem);
  line-height: 1.06;
  font-weight: 600;
}

.view[data-view="home"] .ghost-headline {
  max-width: none;
  font-size: clamp(2.35rem, 3.75vw, 3.45rem);
}

.view[data-view="home"] .ghost-line,
.view[data-view="tldr"] .ghost-line {
  flex-wrap: nowrap;
  white-space: nowrap;
}

.view[data-view="tldr"] .ghost-headline,
.view[data-view="work"] .ghost-headline,
.view[data-view="about"] .ghost-headline,
.view[data-view="contact"] .ghost-headline {
  max-width: none;
  font-size: clamp(2.35rem, 3.75vw, 3.45rem);
}

.view[data-view="about"] .about-title {
  font-size: clamp(2.35rem, 3.75vw, 3.45rem);
}

.ghost-headline.compact {
  max-width: none;
}

.ghost-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 0.58rem;
}

.ghost {
  color: #d6d8dd;
}

.strong {
  color: var(--ink);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 5rem;
}

.quick-card,
.ai-card,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.quick-card {
  min-height: 15rem;
  padding: 1.5rem;
}

.kicker {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quick-card h3,
.about-title,
.contact-line {
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 1.08;
}

.quick-card h3 {
  margin: 0.7rem 0 1rem;
  font-size: clamp(1.62rem, 2.15vw, 2.2rem);
}

.quick-card p {
  line-height: 1.5;
}

.ai-section {
  margin-top: 1.15rem;
}

.ai-section .hero-grid {
  min-height: auto;
}

.ai-section .hero-copy {
  max-width: 45rem;
}

.ai-card {
  width: min(100%, 45rem);
  margin-top: 1.15rem;
  margin-left: auto;
  padding: 1.4rem;
}

.ai-log {
  min-height: 25rem;
}

.message {
  max-width: 38rem;
}

.message-text {
  margin-top: 0.45rem;
  font-size: 1.06rem;
  line-height: 1.55;
}

.message.user {
  margin: 1rem 0 0 auto;
  text-align: right;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.chip {
  border: 1px solid var(--line-strong);
  border-radius: 0.8rem;
  background: rgba(248, 246, 241, 0.95);
  padding: 0.65rem 0.95rem;
  color: #36363a;
  cursor: pointer;
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background-color 200ms ease;
}

.chip:hover,
.chip:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(17, 17, 17, 0.2);
  background: #ffffff;
  outline: none;
}

.ai-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  align-items: center;
  margin-top: 1.1rem;
  padding: 0.55rem 0.65rem 0.55rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.75);
}

.ai-input-row input {
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.08rem;
  outline: none;
}

.ai-input-row input::placeholder {
  color: #b4b5b9;
}

.send-button {
  width: 2.7rem;
  height: 2.7rem;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: #141414;
  cursor: pointer;
}

.send-button span {
  width: 0.8rem;
  height: 0.8rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg) translate(-1px, 1px);
}

.view-intro {
  max-width: 38rem;
  margin-top: 1.15rem;
  font-size: 1.02rem;
  line-height: 1.55;
}

.about-title {
  margin-top: 4.3rem;
  font-size: clamp(3.45rem, 6.15vw, 5.55rem);
}

.work-masonry {
  margin-top: 4rem;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 7rem;
}

.about-copy {
  max-width: 42rem;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  line-height: 1.42;
  color: var(--soft);
}

.about-copy p + p {
  margin-top: 2.15rem;
}

.about-feature {
  display: grid;
  align-content: start;
  gap: 1.2rem;
}

.portrait-card {
  position: relative;
  min-height: 34rem;
  border-radius: calc(var(--radius) + 0.5rem);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.portrait-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.feature-note {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
  color: var(--soft);
}

.list {
  column-count: 5;
  column-gap: 0.95rem;
  width: 100%;
}

.item-wrapper {
  position: relative;
  display: block;
  break-inside: avoid;
  margin-bottom: 0.95rem;
  will-change: transform, opacity;
  cursor: pointer;
}

.item-img {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 10rem;
  background-size: cover;
  background-position: center center;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 12px 42px -14px rgba(0, 0, 0, 0.22);
  transition:
    transform 260ms ease,
    box-shadow 260ms ease,
    filter 260ms ease;
}

.item-img::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.12));
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.work-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 360ms ease;
}

.work-image--source {
  filter: brightness(1.03) contrast(1.06) saturate(1.06);
}

.item-wrapper:hover .work-image,
.item-wrapper:focus-visible .work-image {
  transform: scale(1.035);
}

.work-caption {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  z-index: 1;
  margin: 0;
  padding: 0.35rem 0.55rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  background: rgba(20, 20, 20, 0.58);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.work-insight {
  display: flex;
  min-height: 15rem;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(145deg, #343d4a 0%, #121820 100%);
  box-shadow: 0 12px 42px -14px rgba(0, 0, 0, 0.2);
  color: #f8f6f1;
}

.work-insight--compact {
  min-height: 11rem;
}

.work-insight--medium {
  min-height: 17rem;
}

.work-insight--tall {
  min-height: 24rem;
}

.work-insight--ink {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(145deg, #343d4a 0%, #121820 100%);
  color: #f8f6f1;
}

.work-insight--accent {
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(145deg, #343d4a 0%, #121820 100%);
  color: #f8f6f1;
}

.work-insight-number,
.work-insight-eyebrow {
  margin: 0 0 auto;
}

.work-insight-number {
  font-size: clamp(2.85rem, 5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.85;
}

.work-insight-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-insight h3 {
  margin: 1.5rem 0 0;
  font-family: var(--font);
  font-size: clamp(1.28rem, 1.8vw, 1.7rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.work-insight p:last-child {
  margin: 0.7rem 0 0;
  font-size: 0.88rem;
  line-height: 1.45;
  opacity: 0.82;
}

.item-wrapper:hover .item-img,
.item-wrapper:focus-visible .item-img {
  transform: translateY(-6px);
  box-shadow: 0 22px 52px -18px rgba(0, 0, 0, 0.28);
  filter: contrast(1.04);
}

.item-short .item-img {
  min-height: 7rem;
}

.item-medium .item-img {
  min-height: 14rem;
}

.item-large .item-img {
  min-height: 19rem;
}

.item-tall .item-img {
  min-height: 24rem;
}

.item-xl .item-img {
  min-height: 29rem;
}

.masonry-fjord {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 22%),
    radial-gradient(circle at 38% 22%, rgba(255, 255, 255, 0.16), transparent 20%),
    linear-gradient(165deg, #efefef 0%, #bababa 38%, #6e6e6e 100%);
}

.masonry-peak {
  background:
    radial-gradient(circle at 58% 22%, rgba(255, 255, 255, 0.26), transparent 14%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 18%),
    linear-gradient(145deg, #f1f1f1 0%, #cfcfcf 48%, #8b8b8b 100%);
}

.masonry-fog {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), transparent 22%),
    linear-gradient(150deg, #fafafa 0%, #dddddd 40%, #a7a7a7 100%);
}

.masonry-cliff {
  background:
    radial-gradient(circle at 55% 35%, rgba(255, 255, 255, 0.2), transparent 14%),
    linear-gradient(155deg, #5b5b5b 0%, #a6a6a6 52%, #2d2d2d 100%);
}

.masonry-portrait {
  background:
    radial-gradient(circle at 48% 30%, rgba(255, 255, 255, 0.14), transparent 18%),
    linear-gradient(160deg, #d6d6d6 0%, #8e8e8e 42%, #c9c9c9 100%);
}

.masonry-castle {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 20%),
    linear-gradient(145deg, #f4f4f4 0%, #bfbfbf 44%, #8d8d8d 100%);
}

.masonry-architecture {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(152deg, #f5f5f5 0%, #d6d6d6 38%, #8a8a8a 100%);
}

.masonry-bear {
  background:
    radial-gradient(circle at 65% 55%, rgba(255, 255, 255, 0.12), transparent 16%),
    linear-gradient(145deg, #e6e6e6 0%, #b0b0b0 52%, #717171 100%);
}

.masonry-waterfall {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), transparent 18%),
    linear-gradient(145deg, #f7f7f7 0%, #d8d8d8 44%, #9b9b9b 100%);
}

.masonry-shore {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 18%),
    linear-gradient(160deg, #ececec 0%, #a7a7a7 60%, #5b5b5b 100%);
}

.masonry-rocks {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(145deg, #cecece 0%, #8e8e8e 48%, #545454 100%);
}

.masonry-coffee {
  background:
    radial-gradient(circle at 56% 38%, rgba(255, 255, 255, 0.18), transparent 16%),
    linear-gradient(150deg, #e7e7e7 0%, #959595 52%, #383838 100%);
}

.masonry-alley {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 18%),
    linear-gradient(145deg, #d9d9d9 0%, #7f7f7f 54%, #4a4a4a 100%);
}

.masonry-ridges {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), transparent 16%),
    linear-gradient(145deg, #cdcdcd 0%, #868686 45%, #333333 100%);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(16rem, 0.8fr) minmax(24rem, 1.2fr);
  gap: 2.4rem;
  align-items: start;
  margin-top: 4rem;
  padding: 2rem;
}

.contact-aside {
  display: grid;
  gap: 2rem;
}

.contact-copy h3 {
  margin-top: 0.5rem;
  font-family: var(--font);
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.02;
  color: var(--accent);
}

.contact-copy p:last-child {
  max-width: 19rem;
  margin-top: 1rem;
  color: #8f8f92;
  line-height: 1.65;
}

.contact-eyebrow {
  color: var(--soft);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-meta {
  display: grid;
  gap: 0.9rem;
}

.contact-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  width: fit-content;
  color: #49494d;
  transition: color 180ms ease, transform 180ms ease;
}

.contact-detail:hover,
.contact-detail:focus-visible {
  color: var(--accent);
  transform: translateX(2px);
  outline: none;
}

.contact-detail.static:hover {
  color: #49494d;
  transform: none;
}

.contact-detail-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(140, 79, 43, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--accent);
  flex: 0 0 auto;
}

.contact-detail-icon svg {
  width: 0.95rem;
  height: 0.95rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.contact-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.5rem;
  padding: 0.62rem 0.95rem;
  border: 1px solid rgba(140, 79, 43, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: #5e5e62;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease;
}

.contact-links a:hover,
.contact-links a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(140, 79, 43, 0.32);
  background: #fff;
  color: var(--accent);
  outline: none;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  gap: 1rem;
}

.form-row.two-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
}

.contact-form label span {
  font-size: 0.82rem;
  color: #707075;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(17, 17, 17, 0.2);
  border-radius: 0.85rem;
  background: rgba(255, 255, 255, 0.72);
  padding: 0.9rem 1rem;
  color: var(--ink);
  font-size: 0.98rem;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.contact-form textarea {
  min-height: 11rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(140, 79, 43, 0.42);
  box-shadow: 0 0 0 4px var(--accent-soft);
  background: rgba(255, 255, 255, 0.92);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
}

.contact-submit {
  min-width: 7.25rem;
  border: 0;
  border-radius: 999px;
  padding: 0.88rem 1.35rem;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
  box-shadow: 0 16px 26px rgba(140, 79, 43, 0.2);
}

.contact-submit:hover,
.contact-submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 30px rgba(140, 79, 43, 0.24);
  outline: none;
}

.site-footer {
  margin-top: 4rem;
  padding-top: 1rem;
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 800ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 800ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes view-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1100px) {
  .site-shell {
    width: min(calc(100% - 1.6rem), 1210px);
  }

  .masthead-top,
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .list {
    column-count: 3;
  }

  .availability,
  .hero-copy,
  .about-copy,
  .contact-panel,
  .ai-card {
    max-width: none;
  }

  .hero-spacer {
    display: none;
  }

  .view[data-view="home"] > .hero-grid,
  .view[data-view="tldr"] > .hero-grid {
    min-height: auto;
  }

  .ai-card {
    width: 100%;
  }

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

  .contact-panel {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 760px) {
  .site-shell {
    width: min(calc(100% - 1rem), 1210px);
  }

  .section-nav {
    flex-wrap: wrap;
  }

  .ghost-headline {
    max-width: none;
    font-size: clamp(2.7rem, 11.2vw, 4rem);
  }

  .about-title {
    margin-top: 2.8rem;
    font-size: clamp(2.7rem, 10vw, 4rem);
  }

  .quick-grid {
    margin-top: 3rem;
  }

  .hero-grid-tight {
    margin-top: 1.25rem;
  }

  .portrait-card {
    min-height: 24rem;
  }

  .ai-card {
    padding: 1rem;
  }

  .contact-panel {
    margin-top: 3rem;
    padding: 1.2rem;
    gap: 1.5rem;
  }

  .contact-copy h3 {
    font-size: clamp(1.85rem, 8vw, 2.55rem);
  }

  .form-row.two-up {
    grid-template-columns: 1fr;
  }

  .ai-log {
    min-height: 19rem;
  }
  .list {
    column-count: 2;
  }

  .about-layout {
    margin-top: 4rem;
  }

  .about-copy {
    font-size: 1.08rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
