:root {
  --ink: #120f0d;
  --muted: #74675f;
  --line: #eadfd6;
  --paper: #fbf7f1;
  --soft: #f0e6dc;
  --accent: #c93642;
  --accent-dark: #7e1d26;
  --olive: #384d42;
  --gold: #dfbb67;
  --rose: #8e3046;
  --white: #fffdf9;
  --shadow: 0 30px 90px rgba(18, 15, 13, 0.19);
  --sharp-shadow: 16px 16px 0 rgba(201, 54, 66, 0.13);
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 0%, rgba(223, 187, 103, 0.22), transparent 34rem),
    radial-gradient(circle at 92% 36rem, rgba(201, 54, 66, 0.12), transparent 28rem),
    linear-gradient(180deg, #fffdf9 0%, var(--paper) 45%, #f3eee7 100%);
  line-height: 1.55;
  overflow-x: clip;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 28px));
  margin: 14px auto 0;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 253, 249, 0.58);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.78);
  box-shadow: 0 18px 50px rgba(20, 16, 15, 0.12);
  backdrop-filter: blur(20px);
  transition: padding 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 9px;
  background: rgba(255, 253, 249, 0.94);
}

.brand img {
  width: min(260px, 56vw);
  height: auto;
}

.text-brand {
  display: grid;
  gap: 0;
  color: var(--ink);
  text-decoration: none;
}

.text-brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1;
  font-weight: 700;
}

.text-brand small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: #171412;
  color: var(--ink);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  align-items: end;
  gap: clamp(24px, 5vw, 70px);
  padding: 150px clamp(18px, 5vw, 70px) 70px;
  overflow: hidden;
  background: #171412;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(20, 16, 15, 0.9), rgba(20, 16, 15, 0.48) 45%, rgba(20, 16, 15, 0.16)),
    linear-gradient(0deg, rgba(20, 16, 15, 0.5), transparent 36%);
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(0deg, rgba(18, 15, 13, 0.78), transparent);
}

.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  contain: paint;
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  animation: heroFade 18s infinite;
}

.hero-media img:nth-child(2) {
  animation-delay: 6s;
}

.hero-media img:nth-child(3) {
  animation-delay: 12s;
}

@keyframes heroFade {
  0%, 100% { opacity: 0; transform: scale(1.05); }
  6%, 30% { opacity: 1; transform: scale(1); }
  38% { opacity: 0; transform: scale(1.02); }
}

.hero-content,
.hero-note,
.hero-frame,
.scroll-cue {
  position: relative;
  z-index: 3;
  color: var(--white);
}

.hero-content {
  grid-column: 1;
  grid-row: 1 / 3;
  max-width: 760px;
  align-self: end;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #f0c06f;
}

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

h1 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.3rem, 13vw, 10.8rem);
  line-height: 0.85;
  font-weight: 500;
  letter-spacing: -0.03em;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: -0.02em;
}

h3 {
  font-size: 1.35rem;
}

.hero-content p {
  max-width: 560px;
  color: rgba(255, 250, 244, 0.9);
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
}

.hero-frame {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  justify-self: end;
  width: min(360px, 31vw);
  margin-bottom: clamp(40px, 8vw, 100px);
  border: 1px solid rgba(255, 253, 249, 0.25);
  background: rgba(255, 253, 249, 0.11);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
  transform: rotate(2deg);
}

.hero-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 34%;
  border: 10px solid rgba(255, 253, 249, 0.88);
  border-bottom: 0;
}

.hero-frame div {
  display: grid;
  gap: 4px;
  padding: 16px 18px 18px;
}

.hero-frame span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-frame strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  line-height: 1;
}

.hero-meta,
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.hero-meta span,
.service-tags span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.hero-meta span {
  border: 1px solid rgba(255, 253, 249, 0.24);
  color: rgba(255, 253, 249, 0.82);
  background: rgba(255, 253, 249, 0.08);
}

.service-tags span {
  color: var(--ink);
  background: rgba(201, 54, 66, 0.1);
}

.signature {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 70px) clamp(72px, 8vw, 110px);
}

.signature-card {
  min-height: 250px;
  padding: clamp(24px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: end;
  border: 1px solid rgba(18, 15, 13, 0.08);
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.96), rgba(251, 246, 239, 0.74)),
    radial-gradient(circle at 18% 20%, rgba(223, 187, 103, 0.18), transparent 16rem);
  box-shadow: 0 24px 70px rgba(18, 15, 13, 0.08);
}

.signature-card h3 {
  margin-bottom: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1;
}

.signature-card p {
  margin-bottom: 0;
  color: var(--muted);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid rgba(255, 250, 244, 0.42);
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: white;
}

.button.ghost {
  color: var(--white);
}

.hero-note {
  justify-self: end;
  grid-column: 2;
  grid-row: 2;
  display: grid;
  gap: 2px;
  min-width: 220px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 253, 249, 0.22);
  border-left: 5px solid var(--gold);
  background: rgba(20, 16, 15, 0.64);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(14px);
}

.hero-note span {
  color: rgba(255, 250, 244, 0.76);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  width: 34px;
  height: 54px;
  border: 1px solid rgba(255, 253, 249, 0.34);
  border-radius: 999px;
  transform: translateX(-50%);
}

.scroll-cue span {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  animation: cueDrop 1.8s ease-in-out infinite;
}

@keyframes cueDrop {
  0% { opacity: 0; transform: translate(-50%, 0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 24px); }
}

.section {
  padding: clamp(74px, 10vw, 130px) clamp(18px, 5vw, 70px);
}

.intro {
  position: relative;
}

.intro::after {
  content: "";
  position: absolute;
  right: clamp(18px, 5vw, 70px);
  bottom: 36px;
  width: min(260px, 28vw);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent));
}

.intro-grid,
.hours-layout,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.intro-grid,
.section-heading,
.team-grid,
.price-grid,
.contact,
.signature,
.image-feature,
.promise-inner {
  max-width: var(--max);
  margin-inline: auto;
}

.intro p,
.section-heading p,
.hours p {
  color: var(--muted);
  font-size: 1.08rem;
}

.gallery-band {
  overflow: hidden;
  padding: 26px 0;
  border-block: 1px solid var(--line);
  background: var(--ink);
}

.marquee {
  display: flex;
  width: max-content;
  gap: 18px;
  animation: marquee 42s linear infinite;
}

.marquee img {
  width: clamp(210px, 28vw, 360px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.04);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.image-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  padding: clamp(54px, 8vw, 110px) clamp(18px, 5vw, 70px);
  background:
    linear-gradient(135deg, rgba(124, 45, 61, 0.18), transparent 42%),
    var(--ink);
  color: var(--white);
}

.showcase-stack {
  position: relative;
  min-height: min(740px, 64vw);
}

.showcase-stack img {
  position: absolute;
  width: min(72%, 520px);
  object-fit: cover;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 253, 249, 0.18);
  border-radius: 4px;
}

.showcase-stack img:first-child {
  inset: 0 auto auto 0;
  aspect-ratio: 3 / 4;
}

.showcase-stack img:nth-child(2) {
  right: 0;
  bottom: 0;
  width: min(58%, 420px);
  aspect-ratio: 4 / 5;
  transform: translateY(8%);
}

.image-feature > img {
  width: 100%;
  max-height: 760px;
  object-fit: cover;
  object-position: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 253, 249, 0.18);
  border-radius: 4px;
}

.image-feature span {
  color: #f0c06f;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.image-feature h2 {
  margin: 16px 0 22px;
  max-width: 760px;
  font-size: clamp(2rem, 4vw, 3.55rem);
  overflow-wrap: anywhere;
}

.image-feature p {
  max-width: 620px;
  color: rgba(255, 250, 244, 0.74);
  font-size: 1.08rem;
}

.studio-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 0;
}

.studio-facts div {
  padding: 18px;
  border: 1px solid rgba(255, 253, 249, 0.14);
  background: rgba(255, 253, 249, 0.06);
}

.studio-facts dt {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.9;
}

.studio-facts dd {
  margin: 8px 0 0;
  color: rgba(255, 253, 249, 0.72);
  font-size: 0.9rem;
}

.team {
  background:
    linear-gradient(180deg, var(--white), #f7efe8);
}

.team-heading {
  margin-bottom: clamp(30px, 5vw, 64px);
}

.team-grid,
.price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
}

.person {
  display: grid;
  grid-template-columns: minmax(150px, 0.48fr) minmax(0, 0.52fr);
  min-height: 430px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 4px;
  overflow: hidden;
}

.person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.person div {
  align-self: end;
  padding: clamp(22px, 4vw, 38px);
}

.person span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.person p {
  color: var(--muted);
}

.team-summary .person {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
  background:
    linear-gradient(135deg, rgba(255, 253, 249, 0.96), rgba(255, 253, 249, 0.78)),
    linear-gradient(135deg, rgba(199, 57, 66, 0.18), transparent 54%);
  box-shadow: var(--sharp-shadow), var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.team-summary .person:hover {
  transform: translateY(-6px);
  box-shadow: 22px 22px 0 rgba(201, 54, 66, 0.15), 0 36px 100px rgba(18, 15, 13, 0.2);
}

.team-summary .person img {
  height: clamp(420px, 38vw, 560px);
  min-height: 0;
  object-position: center;
}

.team-summary .person:first-child img {
  object-position: center 36%;
}

.team-summary .person:nth-child(2) img {
  object-position: center 28%;
}

.team-summary .person div {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.team-summary .person h2 {
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  overflow-wrap: anywhere;
}

.prices {
  background:
    linear-gradient(135deg, rgba(67, 83, 71, 0.13), transparent 34%),
    var(--soft);
}

.prices .section-heading {
  align-items: end;
}

.prices h2 {
  font-size: clamp(4rem, 10vw, 9rem);
}

.price-grid {
  margin-top: 36px;
  align-items: start;
}

.price-panel {
  padding: clamp(22px, 4vw, 38px);
  background: var(--white);
  border: 1px solid rgba(20, 16, 15, 0.08);
  border-top: 6px solid var(--accent);
  border-radius: 4px;
  box-shadow: var(--sharp-shadow), var(--shadow);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.price-panel:hover {
  transform: translateY(-4px);
  box-shadow: 22px 22px 0 rgba(201, 54, 66, 0.14), 0 30px 90px rgba(18, 15, 13, 0.18);
}

.price-panel h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
}

.price-panel h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.price-panel ul,
.hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.price-panel li,
.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.price-panel li {
  position: relative;
}

.price-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 180ms ease;
}

.price-panel li:hover::before {
  width: 100%;
}

.price-panel li:last-child,
.hours-list div:last-child {
  border-bottom: 0;
}

.price-panel span,
.hours-list span {
  color: var(--muted);
}

.price-panel strong {
  white-space: nowrap;
  color: var(--ink);
  font-size: 0.96rem;
}

.price-note {
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: #f8f0e6;
  color: var(--muted);
}

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

.hours {
  background: var(--ink);
  color: var(--white);
}

.hours .section-kicker {
  color: #f0c06f;
}

.hours p,
.hours-list span {
  color: rgba(255, 250, 244, 0.68);
}

.hours-list {
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(255, 250, 244, 0.18);
  background: rgba(255, 250, 244, 0.06);
}

.promise {
  overflow: hidden;
  background:
    linear-gradient(rgba(18, 15, 13, 0.72), rgba(18, 15, 13, 0.72)),
    url("../images/correct/ute-wimmer-tresen.jpeg");
  background-size: cover;
  background-position: center 34%;
  color: var(--white);
}

.promise-inner {
  min-height: 480px;
  display: grid;
  align-content: center;
  justify-items: start;
}

.promise-inner span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.promise-inner h2 {
  max-width: 820px;
  margin: 14px 0 28px;
  font-size: clamp(3rem, 8vw, 7rem);
}

.contact {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(500px, 1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background:
    linear-gradient(180deg, var(--paper), var(--white));
}

.contact-photo img {
  width: 100%;
  max-width: 620px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  box-shadow: var(--shadow);
  border-radius: 4px;
}

.contact-panel {
  padding: clamp(26px, 5vw, 54px);
  width: 100%;
  max-width: 720px;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid var(--line);
  border-radius: 4px;
  box-shadow: var(--sharp-shadow), var(--shadow);
}

.contact-panel h2 {
  max-width: 10.8em;
  font-size: clamp(2.35rem, 3.7vw, 3.8rem);
  line-height: 0.94;
}

address {
  margin: 22px 0;
  color: var(--muted);
  font-style: normal;
}

.big-link {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: clamp(1.6rem, 4vw, 2.7rem);
  font-weight: 900;
  text-decoration: none;
}

.text-link {
  display: block;
  margin-top: 8px;
  color: var(--ink);
  font-weight: 850;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 5vw, 70px);
  color: rgba(255, 250, 244, 0.74);
  background: var(--ink);
}

.site-footer nav {
  display: flex;
  gap: 18px;
}

.site-footer a {
  color: var(--white);
  text-decoration: none;
}

.legal-page {
  max-width: 980px;
  padding-top: 150px;
}

.legal-page h1 {
  margin-bottom: 32px;
  font-size: clamp(3rem, 9vw, 6.5rem);
  overflow-wrap: anywhere;
}

.legal-page h2 {
  margin-top: 34px;
  font-size: clamp(1.45rem, 4vw, 2.2rem);
}

.legal-page p {
  color: var(--muted);
}

.legal-header .brand img {
  width: min(230px, 48vw);
}

.reveal {
  opacity: 1;
  transform: translateY(16px);
  transition: transform 640ms ease;
}

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

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

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    inset: 76px 14px auto;
    display: grid;
    gap: 2px;
    padding: 12px;
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav.legal-nav {
    position: static;
    display: flex;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .legal-nav a {
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.84rem;
  }

  .site-nav a {
    border-radius: 6px;
  }

  .intro-grid,
  .hours-layout,
  .section-heading,
  .team-grid,
  .price-grid,
  .signature,
  .image-feature,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .hero-content,
  .hero-note {
    grid-column: 1;
    grid-row: auto;
  }

  .hero-frame {
    display: none;
  }

  .hero-note {
    justify-self: start;
    margin-top: 34px;
  }

  .person {
    grid-template-columns: 0.38fr 0.62fr;
    min-height: 320px;
  }

}

@media (max-width: 620px) {
  .site-header {
    padding: 12px 14px;
  }

  .brand img {
    width: min(214px, 62vw);
  }

  .hero {
    min-height: 96svh;
    padding: 126px 18px 28px;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(23, 20, 18, 0.58), rgba(23, 20, 18, 0.84));
  }

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

  .scroll-cue {
    display: none;
  }

  .signature {
    padding-bottom: 64px;
  }

  .signature-card {
    min-height: 210px;
  }

  .showcase-stack {
    min-height: 640px;
  }

  .showcase-stack img:first-child {
    width: 78%;
  }

  .showcase-stack img:nth-child(2) {
    width: 68%;
  }

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

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

  .person img {
    height: 320px;
  }

  .team-summary .person {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .team-summary .person img {
    min-height: 0;
    height: 430px;
  }

  .price-panel li,
  .hours-list div,
  .site-footer {
    display: grid;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}
