@import url("https://fonts.googleapis.com/css2?family=Bodoni+Moda:opsz,wght@6..96,500;6..96,600;6..96,700&family=Imperial+Script&display=swap");

:root {
  --header-h: 76px;
  --paper: #f4f3ee;
  --paper-deep: #e8e7df;
  --ink: #12110f;
  --ink-soft: #34322d;
  --muted: #6c6a62;
  --line: rgba(27, 29, 24, 0.14);
  --line-strong: rgba(27, 29, 24, 0.24);
  --sage: #687567;
  --rouge: #91423d;
  --display: "Bodoni Moda", "Bodoni 72", "Didot", "Times New Roman", serif;
  --artist: "Imperial Script", "Snell Roundhand", "Apple Chancery", cursive;
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  min-width: 320px;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0) 420px),
    repeating-linear-gradient(
      113deg,
      rgba(67, 73, 64, 0.025) 0,
      rgba(67, 73, 64, 0.025) 1px,
      transparent 1px,
      transparent 22px
    ),
    linear-gradient(150deg, rgba(120, 132, 112, 0.055), transparent 42%),
    var(--paper);
  font-family: var(--serif);
}

body::before,
body::after {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  pointer-events: none;
}

body::before {
  background-image:
    radial-gradient(circle at 1px 1px, rgba(24, 27, 23, 0.12) 0.65px, transparent 0.9px),
    radial-gradient(circle at 3px 2px, rgba(148, 85, 77, 0.08) 0.45px, transparent 0.7px);
  background-size:
    5px 5px,
    11px 11px;
  opacity: 0.18;
}

body::after {
  background:
    repeating-linear-gradient(
      18deg,
      transparent 0,
      transparent 34px,
      rgba(87, 94, 82, 0.035) 34px,
      rgba(87, 94, 82, 0.035) 35px
    ),
    repeating-linear-gradient(
      103deg,
      transparent 0,
      transparent 58px,
      rgba(143, 74, 66, 0.025) 58px,
      rgba(143, 74, 66, 0.025) 59px
    );
  opacity: 0.62;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-color: currentColor;
  text-decoration-thickness: 0.06em;
  text-underline-offset: 0.18em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--rouge);
  outline-offset: 4px;
}

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

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-areas: "nav brand actions";
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: clamp(18px, 3vw, 52px);
  height: var(--header-h);
  padding: 0 clamp(20px, 4vw, 64px);
  background: rgba(244, 243, 238, 0.9);
  border-bottom: 1px solid rgba(27, 29, 24, 0.08);
  backdrop-filter: blur(18px);
}

.menu-toggle {
  display: none;
}

.brand {
  grid-area: brand;
  justify-self: center;
  width: max-content;
  color: var(--ink);
  font-family: var(--artist);
  font-size: 3.42rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.78;
  text-decoration: none;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.nav-links {
  grid-area: nav;
  justify-self: start;
  display: flex;
  justify-content: flex-start;
  gap: clamp(20px, 3vw, 58px);
  color: var(--ink-soft);
  font-family: var(--serif);
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  font-weight: 650;
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-links a,
.contact-link {
  text-decoration: none;
}

.nav-links a {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 0.52rem;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  opacity: 0.64;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  border-color: var(--rouge);
  opacity: 1;
}

.nav-links span {
  color: var(--rouge);
  font-family: var(--display);
  font-size: 1.08em;
  font-style: italic;
  font-weight: 500;
}

.contact-link {
  width: max-content;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.05vw, 1.15rem);
  font-style: italic;
  font-weight: 700;
}

.header-actions {
  grid-area: actions;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.5vw, 22px);
}

.social-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--ink-soft);
  text-decoration: none;
  opacity: 0.72;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--rouge);
  opacity: 1;
  transform: translateY(-1px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  overflow: visible;
}

.social-link svg path,
.social-link svg rect,
.social-link svg circle {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.social-link[aria-label="Facebook"] svg path {
  fill: currentColor;
  stroke: none;
}

.stage {
  position: relative;
  z-index: 1;
  height: calc(100svh - var(--header-h));
  overflow: hidden;
}

.page-panel {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: clamp(18px, 2.6vw, 42px) clamp(20px, 4vw, 64px);
  animation: panel-in 240ms ease both;
}

.page-panel::before {
  position: absolute;
  right: clamp(14px, 3vw, 52px);
  bottom: clamp(-18px, -1vw, -8px);
  z-index: -1;
  color: rgba(18, 17, 15, 0.038);
  content: attr(data-room);
  font-family: var(--display);
  font-size: clamp(4.6rem, 15vw, 14rem);
  font-style: italic;
  line-height: 0.82;
  pointer-events: none;
}

.page-panel[hidden] {
  display: none;
}

.exhibition {
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(14px, 2vw, 30px);
}

.room-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  align-items: end;
  gap: clamp(24px, 6vw, 110px);
  width: 100%;
  max-width: 1780px;
  margin: 0 auto;
  padding-bottom: clamp(12px, 1.8vw, 24px);
  border-bottom: 1px solid var(--line);
}

.title-block {
  min-width: 0;
}

.hero-kicker,
.kicker {
  margin: 0 0 clamp(7px, 1vw, 12px);
  color: var(--sage);
  font-family: var(--serif);
  font-size: clamp(0.9rem, 1.15vw, 1.22rem);
  font-style: italic;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.2;
}

h1 {
  max-width: 1050px;
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 6.2vw, 7.6rem);
  font-weight: 500;
  line-height: 0.86;
}

h1 span {
  display: block;
}

.room-copy {
  display: grid;
  gap: clamp(16px, 2vw, 28px);
  align-self: end;
}

.hero-copy {
  max-width: 410px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: clamp(0.95rem, 1.2vw, 1.12rem);
  line-height: 1.46;
}

.room-facts {
  display: grid;
  grid-template-columns: auto auto;
  gap: 16px clamp(22px, 3vw, 40px);
  margin: 0;
  padding-top: clamp(10px, 1vw, 14px);
  border-top: 1px solid var(--line);
}

.room-facts div {
  display: grid;
  gap: 4px;
}

.room-facts dt {
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 780;
  text-transform: uppercase;
}

.room-facts dd {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(0.85rem, 0.96vw, 0.96rem);
  line-height: 1.2;
}

.gallery-wall {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: stretch;
  gap: clamp(12px, 1.6vw, 26px);
  width: 100%;
  max-width: 1780px;
  min-height: 0;
  margin: 0 auto;
}

.sample-category {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(10px, 1.2vw, 18px);
  min-width: 0;
  min-height: 0;
}

.sample-category-heading {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: baseline;
  gap: clamp(10px, 1.4vw, 22px);
  padding-top: clamp(8px, 1vw, 12px);
  border-top: 1px solid var(--line-strong);
}

.sample-category-heading p {
  margin-bottom: 0;
  color: var(--rouge);
  font-family: var(--display);
  font-size: clamp(1rem, 1.4vw, 1.38rem);
  font-style: italic;
  line-height: 1;
}

.sample-category-heading h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(1.7rem, 3vw, 3.15rem);
  font-weight: 500;
  line-height: 0.92;
}

.sample-category-heading span {
  color: var(--muted);
  font-family: var(--sans);
  font-size: clamp(0.66rem, 0.78vw, 0.78rem);
  font-weight: 760;
  line-height: 1.1;
  text-transform: uppercase;
}

.sample-grid {
  display: grid;
  gap: clamp(12px, 1.45vw, 22px);
  min-height: 0;
}

.sample-grid-illustration {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.sample-grid-basic {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.work-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-width: 0;
  min-height: 0;
}

.art-button {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  background: var(--paper-deep);
  border: 1px solid rgba(27, 29, 24, 0.12);
  border-radius: 4px;
  box-shadow: 0 18px 52px rgba(28, 28, 24, 0.075);
  cursor: zoom-in;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.art-button::after {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  padding: 7px 9px;
  color: #fffaf1;
  background: rgba(18, 17, 15, 0.58);
  border: 1px solid rgba(255, 250, 241, 0.28);
  border-radius: 999px;
  content: attr(data-catalog);
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 760;
  line-height: 1;
  opacity: 0;
  transform: translateY(6px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.art-button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 360ms ease,
    filter 360ms ease;
}

.work-card:hover .art-button,
.art-button:focus-visible {
  border-color: rgba(145, 66, 61, 0.45);
  box-shadow: 0 22px 64px rgba(28, 28, 24, 0.12);
  transform: translateY(-2px);
}

.work-card:hover .art-button::after,
.art-button:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.art-button:hover img {
  filter: saturate(1.03) contrast(1.02);
  transform: scale(1.018);
}

.work-meta {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  padding-top: clamp(8px, 1vw, 13px);
}

.work-index,
.format-item span,
.studio-list span {
  color: var(--rouge);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 820;
}

.work-meta h3 {
  margin-bottom: 3px;
  font-family: var(--display);
  font-size: clamp(1rem, 1.28vw, 1.45rem);
  font-weight: 700;
  line-height: 1;
}

.work-meta p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(0.78rem, 0.88vw, 0.92rem);
  line-height: 1.32;
}

.studio-note,
.formats {
  align-items: stretch;
}

.studio-layout,
.index-layout {
  display: grid;
  width: 100%;
  max-width: 1780px;
  min-height: 0;
  margin: 0 auto;
}

.studio-layout {
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.82fr);
  align-items: stretch;
  gap: clamp(28px, 6vw, 110px);
}

.studio-text {
  display: grid;
  align-content: center;
  min-height: 0;
}

.studio-note h2,
.formats h2,
.contact-panel h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6.8vw, 7.3rem);
  font-weight: 500;
  line-height: 0.9;
}

.studio-text > p:not(.kicker) {
  max-width: 560px;
  margin: clamp(18px, 2vw, 28px) 0 clamp(22px, 3vw, 42px);
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.25vw, 1.16rem);
  line-height: 1.55;
}

.studio-list {
  display: grid;
  gap: 0;
  width: min(100%, 560px);
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-strong);
  list-style: none;
}

.studio-list li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: clamp(10px, 1.5vw, 16px) 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.35;
}

.studio-preview {
  display: grid;
  grid-template-columns: 0.74fr 1fr;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  min-height: 0;
}

.studio-preview img {
  width: 100%;
  height: min(70svh, 680px);
  object-fit: cover;
  border: 1px solid rgba(27, 29, 24, 0.12);
  border-radius: 4px;
  box-shadow: 0 18px 52px rgba(28, 28, 24, 0.075);
  transition:
    filter 220ms ease,
    transform 220ms ease;
}

.studio-preview img:first-child {
  height: min(48svh, 460px);
  align-self: end;
}

.studio-preview img:hover {
  filter: saturate(1.04) contrast(1.02);
  transform: translateY(-2px);
}

.index-layout {
  grid-template-columns: minmax(0, 0.88fr) minmax(300px, 0.44fr);
  align-items: center;
  gap: clamp(26px, 5vw, 82px);
}

.index-main {
  display: grid;
  align-content: center;
  gap: clamp(20px, 3vw, 42px);
  min-height: 0;
}

.section-heading {
  display: grid;
  gap: clamp(10px, 1.8vw, 24px);
}

.formats h2 {
  font-size: clamp(2.8rem, 5.4vw, 5.8rem);
}

.format-list {
  border-top: 1px solid var(--line-strong);
}

.format-item {
  display: grid;
  grid-template-columns: 48px minmax(135px, 230px) minmax(0, 1fr);
  gap: clamp(14px, 2.4vw, 36px);
  align-items: start;
  padding: clamp(12px, 1.8vw, 24px) 0;
  border-bottom: 1px solid var(--line);
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.format-item:hover {
  border-bottom-color: var(--line-strong);
  transform: translateX(4px);
}

.format-item h3 {
  margin-bottom: 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2vw, 2.15rem);
  line-height: 1;
}

.format-item p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.45;
}

.contact-panel {
  display: grid;
  gap: clamp(12px, 2vw, 24px);
  align-content: center;
  min-height: min(54svh, 520px);
  padding: clamp(20px, 3vw, 42px);
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: rgba(244, 243, 238, 0.54);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.24);
}

.contact-panel h2 {
  font-size: clamp(2.4rem, 4.2vw, 4.8rem);
  line-height: 0.95;
}

.contact-actions {
  display: grid;
  gap: 12px;
  justify-items: start;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 760;
  text-transform: uppercase;
}

.terms-link {
  align-self: end;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 760;
  text-transform: uppercase;
}

.lightbox {
  width: min(92vw, 980px);
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
}

.lightbox::backdrop {
  background: rgba(13, 10, 8, 0.76);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: 86svh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 38px 110px rgba(0, 0, 0, 0.34);
}

.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  padding: 0;
  color: #fffaf1;
  background: transparent;
  border: 1px solid rgba(255, 250, 241, 0.42);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  :root {
    --header-h: 82px;
  }

  .site-header {
    grid-template-areas: "nav brand actions";
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-content: center;
    gap: 14px;
  }

  .brand {
    justify-self: center;
    font-size: 3.08rem;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 20px;
    font-size: 0.92rem;
  }

  .contact-link {
    display: none;
  }

  .room-header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-copy {
    max-width: 620px;
  }

  .room-copy {
    gap: 10px;
  }

  .room-facts {
    width: min(100%, 520px);
  }

  .gallery-wall {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) minmax(0, 0.82fr);
  }

  .sample-category {
    gap: 10px;
  }

  .sample-category-heading {
    padding-top: 8px;
  }

  .sample-category-heading h2 {
    font-size: clamp(1.45rem, 4.2vw, 2.5rem);
  }

  .sample-category-heading span {
    display: none;
  }

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

  .sample-grid-basic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .work-meta p {
    display: none;
  }

  .studio-layout,
  .index-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .studio-preview {
    grid-template-columns: 1fr 1fr;
  }

  .studio-preview img,
  .studio-preview img:first-child {
    height: min(32svh, 320px);
  }

  .contact-panel {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  :root {
    --header-h: 76px;
  }

  .site-header {
    grid-template-areas: "menu brand actions";
    grid-template-columns: minmax(66px, 1fr) auto minmax(66px, 1fr);
    gap: 10px;
    padding: 0 18px;
  }

  .brand {
    font-size: 2.58rem;
  }

  .menu-toggle {
    grid-area: menu;
    justify-self: start;
    display: block;
    padding: 0;
    color: var(--ink-soft);
    background: transparent;
    border: 0;
    cursor: pointer;
    font-family: var(--sans);
    font-size: 0.72rem;
    font-weight: 820;
    letter-spacing: 0.08em;
    line-height: 1;
    text-transform: uppercase;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    z-index: 30;
    display: grid;
    min-width: 176px;
    gap: 0;
    padding: 10px 14px;
    overflow: visible;
    background: rgba(244, 243, 238, 0.96);
    border: 1px solid var(--line-strong);
    border-radius: 4px;
    box-shadow: 0 18px 52px rgba(28, 28, 24, 0.12);
    font-size: 0.9rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-4px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
    visibility: hidden;
  }

  .nav-links a {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 0.5rem;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .site-header.menu-open .nav-links {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    visibility: visible;
  }

  .header-actions {
    justify-self: end;
    gap: 0;
  }

  .social-links {
    gap: 6px;
  }

  .social-link {
    width: 26px;
    height: 26px;
  }

  .social-link svg {
    width: 16px;
    height: 16px;
  }

  .page-panel {
    padding: 18px 20px 20px;
  }

  h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.6rem);
    line-height: 0.9;
  }

  .hero-kicker,
  .hero-copy {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero-kicker {
    margin-bottom: 8px;
  }

  .hero-copy {
    font-size: 0.95rem;
    line-height: 1.36;
  }

  .room-facts {
    display: none;
  }

  .gallery-wall {
    gap: 10px;
  }

  .sample-category-heading {
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
  }

  .sample-category-heading h2 {
    font-size: clamp(1.3rem, 7vw, 2.1rem);
  }

  .sample-grid {
    gap: 8px;
  }

  .work-meta {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 6px;
    padding-top: 7px;
  }

  .work-meta h3 {
    font-size: 1rem;
  }

  .art-button::after {
    display: none;
  }

  .studio-note h2,
  .formats h2 {
    font-size: clamp(2.5rem, 11vw, 4.8rem);
  }

  .studio-text > p:not(.kicker) {
    margin: 12px 0 14px;
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .studio-list li {
    padding: 9px 0;
    font-size: 0.9rem;
  }

  .studio-preview {
    gap: 10px;
  }

  .studio-preview img,
  .studio-preview img:first-child {
    height: min(24svh, 190px);
  }

  .index-layout {
    align-items: stretch;
  }

  .section-heading {
    gap: 16px;
  }

  .format-item {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px 14px;
    padding: 10px 0;
  }

  .format-item p {
    grid-column: 2;
    font-size: 0.86rem;
    line-height: 1.32;
  }

  .contact-panel {
    gap: 10px;
    padding: 14px;
  }

  .contact-panel h2 {
    font-size: clamp(1.85rem, 8vw, 2.95rem);
    line-height: 1;
  }
}

@media (max-width: 380px) {
  .site-header {
    grid-template-columns: minmax(54px, 1fr) auto minmax(54px, 1fr);
    padding: 0 14px;
  }

  .brand {
    font-size: 2.24rem;
  }

  .menu-toggle {
    font-size: 0.68rem;
  }

  .social-links {
    gap: 4px;
  }

  .social-link {
    width: 23px;
    height: 23px;
  }

  .social-link svg {
    width: 14px;
    height: 14px;
  }
}

@media (max-height: 720px) and (min-width: 721px) {
  h1 {
    font-size: clamp(3rem, 5.8vw, 6.4rem);
  }

  .hero-kicker {
    margin-bottom: 8px;
  }

  .work-meta p {
    display: none;
  }
}

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