@font-face {
  font-family: "Manrope";
  src: url("./assets/fonts/manrope-variable.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "DM Serif Display";
  src: url("./assets/fonts/dm-serif-display-regular.ttf") format("truetype");
  font-display: swap;
}

:root {
  --brand-blue: #143e5a;
  --brand-blue-deep: #0f2d42;
  --brand-blue-soft: #7f9caf;
  --ink: #172028;
  --ink-soft: #45515b;
  --bone: #f2f1f0;
  --bone-deep: #e7e2db;
  --ochre: #9a7a58;
  --accent-rose: #c59b92;
  --accent-electric: #7f9caf;
  --line: rgba(20, 62, 90, 0.14);
  --line-strong: rgba(20, 62, 90, 0.28);
  --shadow: 0 22px 80px rgba(15, 34, 48, 0.14);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: #ffffff;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  user-select: none;
  -webkit-user-drag: none;
}

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

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

.site-shell {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 68px;
}

.hero {
  position: relative;
  min-height: 84svh;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: linear-gradient(90deg, rgba(20, 62, 90, 0.52), rgba(20, 62, 90, 0.08));
  box-shadow: var(--shadow);
}

.hero-media,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-position, center center);
  filter: contrast(1.02) brightness(1.04);
  opacity: 0;
  transform: scale(1.06);
  transition:
    opacity 1400ms ease,
    transform 6200ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1.01);
}

.hero-overlay {
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 28% 38%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(15, 24, 32, 0.02), rgba(15, 24, 32, 0.42) 100%);
}

.hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto 1fr;
  min-height: 84svh;
  padding: 20px clamp(24px, 3.2vw, 50px) 26px;
  color: var(--bone);
}

.topbar {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(20, 62, 90, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(15, 34, 48, 0.08);
  color: var(--brand-blue-deep);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-left: 0.9ch;
}

.brand-wordmark {
  width: clamp(84px, 8.8vw, 148px);
  filter: none;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-right: 12px;
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-items: center;
  color: var(--brand-blue-deep);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(20, 62, 90, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--brand-blue-deep);
  box-shadow: 0 10px 24px rgba(15, 34, 48, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 2.5px 0;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-links a,
.contact-block a {
  transition: opacity 180ms ease;
}

.nav-links a:hover,
.contact-block a:hover {
  opacity: 0.76;
}

.nav-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
}

.nav-links .nav-client-access {
  padding: 0.55rem 0.78rem;
  border: 1px solid rgba(20, 62, 90, 0.35);
  border-radius: 999px;
  color: var(--brand-blue-deep);
  line-height: 1;
}

.nav-links .nav-client-access:hover {
  opacity: 1;
  color: #fff;
  background: var(--brand-blue-deep);
}

.nav-instagram svg {
  width: 19px;
  height: 19px;
  fill: var(--accent-electric);
}

.hero-copy {
  align-self: end;
  max-width: 700px;
  padding: clamp(40px, 6.2vw, 78px) 0 4px;
}

.eyebrow,
.hero-note-label,
.universe-kicker,
.detail-number,
.contact-label {
  margin: 0;
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.passage-copy h2 {
  margin: 14px 0 0;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  line-height: 0.98;
}

.hero-copy h1 {
  max-width: 14ch;
  font-size: clamp(2.45rem, 4.7vw, 4.7rem);
  line-height: 0.96;
}

.hero-text,
.hero-note-copy,
.section-intro,
.statement-grid p,
.universe-copy p,
.passage-copy p,
.detail-card p,
.contact-panel p {
  margin: 0;
  font-size: 1.02rem;
  color: rgba(242, 241, 240, 0.84);
}

.hero-text {
  max-width: 55ch;
  margin-top: 16px;
}

.hero-note {
  max-width: 44ch;
  margin-top: 14px;
  font-size: 0.96rem;
  color: rgba(242, 241, 240, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(242, 241, 240, 0.18);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--brand-blue-deep);
  color: #ffffff;
  border-color: rgba(15, 45, 66, 0.82);
  box-shadow: 0 14px 36px rgba(15, 45, 66, 0.18);
}

.button-secondary {
  background: rgba(242, 241, 240, 0.06);
  color: var(--bone);
  backdrop-filter: blur(10px);
}

.button-primary:hover {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
}

.button-secondary:hover {
  background: rgba(127, 156, 175, 0.12);
  border-color: rgba(127, 156, 175, 0.48);
  color: var(--accent-electric);
}

.section {
  padding: clamp(56px, 8vw, 112px) 0;
}

.statement,
.bios,
.contact {
  background: linear-gradient(180deg, rgba(242, 241, 240, 0.82), rgba(231, 226, 219, 0.62));
  border: 1px solid rgba(20, 62, 90, 0.08);
  border-radius: var(--radius-lg);
  padding-inline: clamp(18px, 2.8vw, 34px);
}

.statement {
  margin-top: clamp(34px, 5vw, 64px);
}

.bios + .contact {
  margin-top: clamp(28px, 4vw, 46px);
}

.statement,
.universes,
.passage,
.detail-strip,
.bios,
.contact {
  position: relative;
}

.statement-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(660px, 1.08fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 52px;
}

.section-heading h2 {
  max-width: 17ch;
  color: var(--brand-blue-deep);
  font-size: clamp(2.4rem, 4.5vw, 4.4rem);
}

.section-heading-split {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: end;
  column-gap: 34px;
}

.section-intro {
  color: var(--ink-soft);
}

.statement-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.statement-grid p,
.passage-copy p,
.detail-card p,
.contact-panel p {
  color: var(--ink-soft);
}

.statement-image {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  justify-self: end;
  width: min(100%, 1120px);
  aspect-ratio: 1.48 / 1;
}

.statement-image img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center center;
  transition:
    transform 780ms ease,
    filter 780ms ease;
}

.statement-image:hover img {
  transform: scale(1.045);
  filter: grayscale(1);
}

.universe-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

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

.universe-card,
.detail-card,
.contact-panel,
.passage-image {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.universe-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.44);
  transition:
    transform 320ms ease,
    box-shadow 320ms ease;
}

.universe-media {
  aspect-ratio: 1.55 / 1;
  overflow: hidden;
}

.universe-media-link {
  display: block;
}

.universe-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 700ms ease,
    filter 700ms ease;
}

.universe-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 90px rgba(15, 34, 48, 0.18);
}

.universe-card:hover .universe-media img {
  transform: scale(1.035);
  filter: grayscale(1);
}

.universe-copy {
  padding: 24px;
}

.universe-entry {
  display: block;
}

.universe-copy h3,
.detail-card h3 {
  margin: 10px 0 10px;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  color: var(--brand-blue-deep);
  font-size: clamp(1.55rem, 1.9vw, 2.1rem);
  line-height: 1;
}

.universe-copy > p:not(.universe-kicker) {
  color: var(--ink-soft);
  margin-top: 0;
}

.universe-copy .universe-kicker {
  color: #d96979;
}

.universe-entry:hover .universe-kicker {
  opacity: 0.88;
}

.gallery-slider-note {
  display: none;
}

.card-link,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.84rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-blue-deep);
}

.card-link::after,
.back-link::after {
  content: "↗";
  font-size: 0.9rem;
}

.passage {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: 36px;
  align-items: center;
}

.passage-copy h2 {
  color: var(--brand-blue-deep);
  font-size: clamp(2.4rem, 4.2vw, 4.1rem);
}

.passage-copy p + p {
  margin-top: 16px;
}

.passage-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
}

.passage-stack-single {
  grid-template-columns: 1fr;
}

.passage-stack-single .passage-image-large {
  height: auto;
}

.passage-stack-single .passage-image img {
  height: auto;
  object-fit: contain;
}

.passage-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--bone);
  transition:
    transform 320ms ease,
    box-shadow 320ms ease;
}

.passage-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 800ms ease,
    filter 800ms ease;
}

.passage-image-large {
  height: 360px;
}

.passage-image-small {
  height: 300px;
}

.passage-image-large img {
  object-position: center 42%;
}

.passage-image-small img {
  object-position: center 52%;
}

.passage-image:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 30px 96px rgba(15, 34, 48, 0.18);
}

.passage-image:hover img {
  transform: scale(1.045);
  filter: grayscale(1);
}

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

.detail-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(20, 62, 90, 0.04);
}

.mini-rule {
  display: inline-block;
  width: 54px;
  height: 3px;
  margin: 18px 0 34px;
  background: var(--accent-electric);
}

.detail-number {
  color: var(--ochre);
}

.contact-panel {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  padding: 28px 30px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(246, 244, 241, 0.92)),
    linear-gradient(135deg, rgba(20, 62, 90, 0.06), rgba(197, 155, 146, 0.08) 58%, rgba(255, 255, 255, 0.42));
  position: relative;
  overflow: hidden;
}

.contact-block {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  position: relative;
}

.contact-block:first-child,
.contact-block:nth-child(2) {
  padding-right: 12px;
}

.contact-block:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  right: -11px;
  width: 1px;
  background: linear-gradient(180deg, rgba(20, 62, 90, 0), rgba(20, 62, 90, 0.08) 16%, rgba(20, 62, 90, 0.08) 84%, rgba(20, 62, 90, 0));
}

.contact-label {
  color: var(--brand-blue-soft);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.footer-panel {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr) minmax(0, 1.05fr) minmax(0, 1.2fr);
}

.footer-panel .contact-block > :last-child {
  margin: 0;
}

.footer-panel .contact-block a,
.footer-panel .contact-block p:last-child {
  color: var(--brand-blue-deep);
  text-decoration: none;
}

.footer-panel .contact-block:first-child a,
.footer-panel .contact-block:nth-child(2) a {
  font-family: "Urbanist", sans-serif;
  font-size: clamp(1.22rem, 1.6vw, 1.48rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.14;
}

.footer-panel .contact-block:nth-child(3) p:last-child,
.footer-panel .contact-block:nth-child(4) p:last-child {
  max-width: 18ch;
  line-height: 1.5;
}

.bio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.bios .section-heading h2 {
  max-width: 11ch;
}

.bio-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(242, 241, 240, 0.92));
  box-shadow: var(--shadow);
}

.bio-portrait {
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--bone);
  min-height: 260px;
}

.bio-portrait img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  filter: none;
  transition: filter 420ms ease, transform 420ms ease;
}

.bio-card:hover .bio-portrait img {
  filter: grayscale(1);
  transform: scale(1.02);
}

.bio-copy {
  display: grid;
  gap: 12px;
}

.bio-name {
  margin: 0;
  color: var(--brand-blue-deep);
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
  line-height: 0.95;
}

.bio-copy p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
}

.tariffs {
  padding-bottom: clamp(34px, 5vw, 68px);
}

.tariffs .section-heading {
  margin-bottom: 34px;
}

.tariff-service,
.tariff-copies,
.tariff-dance-prints {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(242, 241, 240, 0.9), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow);
}

.tariff-service {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(26px, 4vw, 48px);
  align-items: start;
}

.tariff-service-dance {
  margin-top: 28px;
  background: linear-gradient(145deg, rgba(20, 62, 90, 0.07), rgba(255, 255, 255, 0.98));
}

.tariff-service-intro h3,
.tariff-copies-heading h3 {
  margin: 10px 0 0;
  color: var(--brand-blue-deep);
  font-family: "DM Serif Display", serif;
  font-size: clamp(2rem, 3.4vw, 3.3rem);
  font-weight: 400;
  line-height: 0.98;
}

.tariff-service-description {
  max-width: 37ch;
  margin: 18px 0 0;
  color: var(--ink-soft);
}

.tariff-price {
  display: grid;
  gap: 2px;
  margin: 28px 0 22px;
  color: var(--ink-soft);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.tariff-price span {
  color: var(--brand-blue-deep);
  font-family: "DM Serif Display", serif;
  font-size: clamp(3rem, 5vw, 4.7rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
  text-transform: none;
}

.tariff-includes {
  padding: 4px 0;
}

.tariff-list-title {
  margin: 0 0 14px;
  color: var(--brand-blue-soft);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.tariff-list {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  color: var(--ink-soft);
  list-style: none;
}

.tariff-list li {
  position: relative;
  padding-left: 20px;
}

.tariff-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-electric);
}

.tariff-copies,
.tariff-dance-prints {
  margin-top: 18px;
  padding: clamp(26px, 4vw, 46px);
}

.tariff-copies-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.72fr);
  gap: 30px;
  align-items: end;
  margin-bottom: 30px;
}

.tariff-copies-heading p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.tariff-copies-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.28fr);
  gap: 18px;
  align-items: start;
}

.tariff-table-wrap {
  padding: 22px;
  border: 1px solid rgba(20, 62, 90, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
}

.tariff-table-wrap-compact {
  margin-top: 28px;
}

.tariff-table-wrap-dance {
  max-width: 650px;
}

.tariff-table {
  width: 100%;
  border-collapse: collapse;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.tariff-table th,
.tariff-table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(20, 62, 90, 0.1);
  text-align: left;
}

.tariff-table th {
  color: var(--brand-blue-soft);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.tariff-table th:last-child,
.tariff-table td:last-child {
  color: var(--brand-blue-deep);
  font-weight: 700;
  text-align: right;
}

.tariff-table tbody tr:last-child td {
  border-bottom: 0;
}

.tariff-table-note,
.tariff-footnote {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.55;
}

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

.tariff-pack {
  min-height: 100%;
  padding: 20px;
  border: 1px solid rgba(20, 62, 90, 0.1);
  border-radius: 20px;
  background: rgba(20, 62, 90, 0.04);
}

.tariff-pack-name,
.tariff-pack-price,
.tariff-pack p:last-child {
  margin: 0;
}

.tariff-pack-name {
  color: var(--brand-blue-deep);
  font-family: "DM Serif Display", serif;
  font-size: 1.45rem;
  line-height: 1;
}

.tariff-pack-price {
  margin-top: 12px;
  color: var(--ochre);
  font-size: 1.08rem;
  font-weight: 700;
}

.tariff-pack p:last-child {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.65;
}

.tariff-footnote {
  max-width: 72ch;
}

.site-footer {
  display: grid;
  gap: 52px;
  justify-items: center;
  padding: 40px 8px 56px;
}

.footer-panel {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  gap: 20px;
  padding: 28px 30px;
}

.footer-wordmark {
  width: clamp(104px, 10vw, 164px);
  opacity: 0.92;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
  gap: clamp(28px, 4vw, 58px);
  align-items: start;
}

.contact-intro .section-heading {
  margin-bottom: 0;
}

.contact .section-heading h2 {
  max-width: 8.8ch;
}

.contact-aside {
  display: grid;
  gap: 16px;
  align-content: start;
  justify-self: end;
  max-width: 520px;
  width: 100%;
  padding-top: 0;
}

.contact .section-intro {
  max-width: 34ch;
}

.contact-status {
  display: none;
  margin: 0;
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(20, 62, 90, 0.09);
  border-left: 4px solid rgba(20, 62, 90, 0.22);
  background: rgba(255, 255, 255, 0.95);
  color: var(--brand-blue-deep);
  box-shadow: 0 18px 36px rgba(15, 34, 48, 0.05);
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact-status-title {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.78;
}

.contact-status-body {
  display: block;
}

.contact-status.is-visible {
  display: block;
}

.contact-status.is-success {
  border-color: rgba(61, 104, 78, 0.14);
  border-left-color: rgba(61, 104, 78, 0.62);
  color: #264f38;
}

.contact-status.is-error {
  border-color: rgba(146, 47, 47, 0.16);
  border-left-color: rgba(146, 47, 47, 0.62);
  color: #6c2c2c;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 0;
  padding: 18px;
  border-radius: calc(var(--radius-lg) - 4px);
  border: 1px solid rgba(20, 62, 90, 0.09);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 16px 40px rgba(15, 34, 48, 0.05);
  align-items: start;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.contact-field span {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-blue-soft);
}

.contact-field input,
.contact-field textarea {
  display: block;
  width: 100%;
  border: 1px solid rgba(20, 62, 90, 0.13);
  border-radius: 14px;
  padding: 12px 14px;
  font: inherit;
  color: var(--ink);
  background: rgba(252, 252, 251, 0.96);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-field textarea {
  resize: vertical;
  min-height: 118px;
}

.contact-field input:focus,
.contact-field textarea:focus {
  border-color: rgba(20, 62, 90, 0.34);
  box-shadow: 0 0 0 4px rgba(20, 62, 90, 0.08);
}

.contact-field-full,
.contact-form-actions {
  grid-column: 1 / -1;
}

.contact-form-actions {
  display: flex;
  justify-content: flex-start;
  padding-top: 2px;
}

.contact-form button[disabled] {
  opacity: 0.7;
  cursor: wait;
}

.page-shell {
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
  padding: 16px 0 68px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 78svh;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(20, 62, 90, 0.08), rgba(20, 62, 90, 0.02));
  box-shadow: var(--shadow);
}

.page-hero-media,
.page-hero-media img,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: contrast(1.02) brightness(1.04);
}

.page-hero-overlay {
  background:
    radial-gradient(circle at 30% 36%, rgba(255, 255, 255, 0.06), transparent 26%),
    linear-gradient(180deg, rgba(15, 24, 32, 0.02), rgba(15, 24, 32, 0.34) 100%);
}

.page-hero-panel {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 78svh;
  padding: 24px clamp(26px, 3.8vw, 58px) 34px;
  color: var(--bone);
}

.page-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(20, 62, 90, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 42px rgba(15, 34, 48, 0.08);
  color: var(--brand-blue-deep);
  backdrop-filter: blur(14px);
}

.page-nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.page-nav-links a {
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: opacity 180ms ease, border-color 180ms ease, color 180ms ease;
}

.page-nav-links a:hover {
  opacity: 0.76;
}

.page-nav-links a.is-current {
  color: var(--accent-electric);
  border-bottom-color: rgba(127, 156, 175, 0.62);
}

.page-nav-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(20, 62, 90, 0.9);
  color: #ffffff;
  border: 1px solid rgba(20, 62, 90, 0.82);
  box-shadow: 0 10px 24px rgba(15, 34, 48, 0.12);
}

.page-nav-contact:hover {
  opacity: 1;
  background: var(--brand-blue);
  border-bottom-color: transparent;
}

.topbar.is-open .nav-toggle span:nth-child(1),
.page-nav.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topbar.is-open .nav-toggle span:nth-child(2),
.page-nav.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.is-open .nav-toggle span:nth-child(3),
.page-nav.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.page-intro {
  align-self: end;
  max-width: 860px;
  padding: clamp(68px, 9vw, 116px) 0 6px;
}

.page-intro h1 {
  margin: 14px 0 0;
  max-width: 10ch;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  line-height: 0.96;
  font-size: clamp(3rem, 6.3vw, 6rem);
}

.page-intro p {
  max-width: 58ch;
  margin: 22px 0 0;
  color: rgba(242, 241, 240, 0.86);
  font-size: 1.04rem;
}

.page-main {
  display: grid;
  gap: 34px;
  padding-top: clamp(38px, 5vw, 62px);
}

.page-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  gap: 26px;
  align-items: start;
}

.summary-card,
.quote-card {
  border: 1px solid rgba(20, 62, 90, 0.08);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: linear-gradient(180deg, rgba(242, 241, 240, 0.78), rgba(255, 255, 255, 0.94));
  box-shadow: var(--shadow);
}

.summary-card p,
.quote-card p {
  margin: 0;
  color: var(--ink-soft);
}

.summary-card p + p,
.quote-card p + p {
  margin-top: 16px;
}

.quote-card p:first-child {
  font-family: "DM Serif Display", serif;
  font-size: 1.7rem;
  line-height: 1.08;
  color: var(--brand-blue-deep);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 20px;
}

.gallery-showcase {
  display: grid;
  gap: 18px;
}

.gallery-showcase-slider {
  position: relative;
}

.gallery-showcase-slider::after {
  content: none;
}

.gallery-slider-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
}

.gallery-slider-head h2 {
  margin: 10px 0 0;
  color: var(--brand-blue-deep);
  font-family: "DM Serif Display", serif;
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 0.98;
}

.gallery-slider-note {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.gallery-slider-controls {
  position: absolute;
  top: 50%;
  left: 14px;
  right: 14px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  transform: translateY(-50%);
}

.gallery-slider-button {
  width: 64px;
  height: 64px;
  border: 1px solid rgba(20, 62, 90, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-blue-deep);
  pointer-events: auto;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 32px rgba(15, 34, 48, 0.08);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.gallery-slider-button svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.gallery-slider-button:hover {
  transform: translateY(-1px);
  background: rgba(127, 156, 175, 0.1);
  border-color: rgba(127, 156, 175, 0.32);
  color: var(--accent-electric);
}

.gallery-grid-slider {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 2px 12px;
  align-items: stretch;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(20, 62, 90, 0.22) transparent;
}

.gallery-grid-slider::-webkit-scrollbar {
  height: 10px;
}

.gallery-grid-slider::-webkit-scrollbar-thumb {
  background: rgba(20, 62, 90, 0.2);
  border-radius: 999px;
}

.gallery-grid-slider .gallery-card {
  flex: 0 0 auto;
  width: auto;
  height: clamp(420px, 58vw, 640px);
  scroll-snap-align: start;
}

.gallery-grid-slider .gallery-card img {
  width: auto;
  height: 100%;
  min-height: 0;
  max-width: none;
  object-fit: contain;
  object-position: center center;
}

.gallery-grid-slider .gallery-card-wide,
.gallery-grid-slider .gallery-card-tall,
.gallery-grid-slider .gallery-card-half,
.gallery-grid-slider .gallery-card-full,
.gallery-grid-slider .gallery-card-compact {
  flex: 0 0 auto;
}

.gallery-grid-slider .gallery-card,
.gallery-grid-slider .gallery-card-wide,
.gallery-grid-slider .gallery-card-tall,
.gallery-grid-slider .gallery-card-half,
.gallery-grid-slider .gallery-card-full,
.gallery-grid-slider .gallery-card-compact {
  border-radius: 10px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.gallery-grid-slider .gallery-card {
  cursor: zoom-in;
}

.gallery-grid-slider .gallery-card-compact {
  height: clamp(340px, 46vw, 500px);
  align-self: center;
}

.gallery-grid-mosaic {
  display: block;
  column-count: 4;
  column-gap: 6px;
}

.gallery-grid-mosaic .gallery-card,
.gallery-grid-mosaic .gallery-card-wide,
.gallery-grid-mosaic .gallery-card-tall,
.gallery-grid-mosaic .gallery-card-half,
.gallery-grid-mosaic .gallery-card-full {
  display: block;
  width: 100%;
  margin: 0 0 6px;
  break-inside: avoid;
  border-radius: 0;
  box-shadow: 0 12px 34px rgba(15, 34, 48, 0.08);
  cursor: zoom-in;
  overflow: hidden;
}

.gallery-grid-mosaic .gallery-card img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  filter: grayscale(1);
}

.gallery-grid-mosaic .gallery-card.is-portrait,
.gallery-grid-mosaic .gallery-card-wide.is-portrait,
.gallery-grid-mosaic .gallery-card-tall.is-portrait,
.gallery-grid-mosaic .gallery-card-half.is-portrait,
.gallery-grid-mosaic .gallery-card-full.is-portrait {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid-mosaic .gallery-card.is-portrait img,
.gallery-grid-mosaic .gallery-card-wide.is-portrait img,
.gallery-grid-mosaic .gallery-card-tall.is-portrait img,
.gallery-grid-mosaic .gallery-card-half.is-portrait img,
.gallery-grid-mosaic .gallery-card-full.is-portrait img {
  max-height: 520px;
  object-fit: cover;
}

.gallery-grid-mosaic .gallery-card:hover img {
  filter: grayscale(0);
  transform: scale(1.015);
}

.gallery-grid-vertical {
  display: block;
  column-count: 2;
  column-gap: 16px;
}

.gallery-grid-vertical .gallery-card,
.gallery-grid-vertical .gallery-card-wide,
.gallery-grid-vertical .gallery-card-tall,
.gallery-grid-vertical .gallery-card-half,
.gallery-grid-vertical .gallery-card-full,
.gallery-grid-vertical .gallery-card-compact {
  display: inline-block;
  width: 100%;
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: 16px;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 14px 36px rgba(15, 34, 48, 0.08);
}

.gallery-grid-vertical .gallery-card img,
.gallery-grid-vertical .gallery-card-wide img,
.gallery-grid-vertical .gallery-card-tall img,
.gallery-grid-vertical .gallery-card-half img,
.gallery-grid-vertical .gallery-card-full img,
.gallery-grid-vertical .gallery-card-compact img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: cover;
  background: #f6f4f1;
}

.gallery-grid-vertical .gallery-card.is-portrait,
.gallery-grid-vertical .gallery-card-wide.is-portrait,
.gallery-grid-vertical .gallery-card-tall.is-portrait,
.gallery-grid-vertical .gallery-card-half.is-portrait,
.gallery-grid-vertical .gallery-card-full.is-portrait,
.gallery-grid-vertical .gallery-card-compact.is-portrait {
  width: 78%;
  margin-left: auto;
  margin-right: auto;
}

.gallery-grid-vertical .gallery-card.is-portrait img,
.gallery-grid-vertical .gallery-card-wide.is-portrait img,
.gallery-grid-vertical .gallery-card-tall.is-portrait img,
.gallery-grid-vertical .gallery-card-half.is-portrait img,
.gallery-grid-vertical .gallery-card-full.is-portrait img,
.gallery-grid-vertical .gallery-card-compact.is-portrait img {
  max-height: 500px;
  object-fit: cover;
}

.gallery-grid-vertical .gallery-card:hover img,
.gallery-grid-vertical .gallery-card-wide:hover img,
.gallery-grid-vertical .gallery-card-tall:hover img,
.gallery-grid-vertical .gallery-card-half:hover img,
.gallery-grid-vertical .gallery-card-full:hover img,
.gallery-grid-vertical .gallery-card-compact:hover img {
  transform: scale(1.015);
  filter: grayscale(1);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(15, 24, 32, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox-frame {
  position: relative;
  max-width: min(1200px, calc(100vw - 64px));
  max-height: calc(100vh - 64px);
}

.gallery-lightbox-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 64px);
  border-radius: 24px;
  box-shadow: 0 22px 80px rgba(0, 0, 0, 0.28);
}

.gallery-lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--brand-blue-deep);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
}

.gallery-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid rgba(20, 62, 90, 0.08);
  box-shadow: var(--shadow);
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition:
    transform 680ms ease,
    filter 680ms ease;
}

.gallery-card:hover img {
  transform: scale(1.03);
  filter: grayscale(1);
}

.gallery-card-wide {
  grid-column: span 7;
}

.gallery-card-tall {
  grid-column: span 5;
}

.gallery-card-half {
  grid-column: span 6;
}

.gallery-card-full {
  grid-column: span 12;
}

.gallery-card-compact {
  grid-column: span 5;
}

.gallery-card-wide img {
  min-height: 420px;
}

.gallery-card-tall img {
  min-height: 540px;
}

.gallery-card-half img {
  min-height: 320px;
}

.gallery-card-compact img {
  min-height: 280px;
}

.page-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 62, 90, 0.08);
  background: linear-gradient(135deg, rgba(20, 62, 90, 0.06), rgba(255, 108, 129, 0.08) 58%, rgba(255, 255, 255, 0.9));
  box-shadow: var(--shadow);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid rgba(20, 62, 90, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-blue-deep);
  box-shadow: 0 18px 36px rgba(15, 34, 48, 0.12);
  font-size: 1.2rem;
  line-height: 1;
  backdrop-filter: blur(12px);
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.back-to-top:hover {
  transform: translateY(-2px);
  background: rgba(127, 156, 175, 0.1);
  border-color: rgba(127, 156, 175, 0.36);
  color: var(--accent-electric);
}

.page-cta h2 {
  margin: 0;
  font-family: "DM Serif Display", serif;
  font-weight: 400;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  color: var(--brand-blue-deep);
}

.page-cta p {
  margin: 12px 0 0;
  color: var(--ink-soft);
}

.reveal,
.reveal-section {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal {
  opacity: 0;
}

.reveal-delay-1 {
  transition-delay: 100ms;
}

.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-delay-3 {
  transition-delay: 260ms;
}

.reveal-delay-4 {
  transition-delay: 340ms;
}

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

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

  .hero-media img,
  .hero-slide,
  .universe-media img,
  .universe-card,
  .passage-image,
  .passage-image img,
  .button,
  .reveal,
  .reveal-section {
    transition: none;
  }
}

@media (max-width: 1100px) {
  .hero-panel,
  .section-heading-split,
  .statement-layout,
  .statement-grid,
  .passage,
  .detail-strip,
  .contact-layout,
  .contact-panel,
  .bio-grid,
  .page-summary,
  .page-cta {
    grid-template-columns: 1fr;
  }

  .tariff-service,
  .tariff-copies-heading,
  .tariff-copies-grid {
    grid-template-columns: 1fr;
  }

  .tariff-copies-heading {
    align-items: start;
  }

  .hero-panel {
    gap: 28px;
  }

  .hero-copy {
    padding-top: 64px;
  }

  .statement-image {
    justify-self: stretch;
    width: 100%;
  }

  .contact-aside {
    max-width: none;
    justify-self: stretch;
    padding-top: 0;
  }

  .passage-stack {
    grid-template-columns: 1fr 1fr;
  }

  .detail-strip {
    gap: 16px;
  }

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

  .gallery-grid-slider {
    gap: 3px;
  }

  .gallery-grid-mosaic {
    column-count: 3;
  }

  .gallery-grid-vertical {
    column-count: 1;
  }

  .footer-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .footer-panel .contact-block {
    padding-right: 0;
  }

  .footer-panel .contact-block::after {
    display: none;
  }

  .footer-panel .contact-block:first-child a,
  .footer-panel .contact-block:nth-child(2) a {
    font-size: clamp(1.15rem, 2.6vw, 1.34rem);
  }
}

@media (max-width: 820px) {
  .site-shell {
    width: min(100% - 20px, 1400px);
    padding-top: 10px;
  }

  .hero,
  .universe-card,
  .passage-image,
  .bio-card,
  .contact-panel,
  .page-hero,
  .summary-card,
  .quote-card,
  .gallery-card,
  .page-cta {
    border-radius: 24px;
  }

  .topbar {
    align-items: center;
    padding: 14px 16px;
    border-radius: 30px;
    position: relative;
    overflow: visible;
  }

  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

  .nav-links,
  .page-nav-links {
    display: none;
    position: absolute;
    z-index: 12;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    margin-right: 0;
    padding: 18px 20px;
    border: 1px solid rgba(20, 62, 90, 0.1);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 18px 42px rgba(15, 34, 48, 0.12);
    backdrop-filter: blur(14px);
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    font-size: 0.92rem;
  }

  .topbar.is-open .nav-links,
  .page-nav.is-open .page-nav-links {
    display: flex;
  }

  .nav-links a,
  .page-nav-links a {
    width: 100%;
    padding: 4px 0;
  }

  .nav-instagram {
    margin-left: 0;
  }

  .nav-links .nav-client-access {
    width: auto;
  }

  .universe-grid,
  .universe-grid-expanded,
  .passage-stack,
  .tariff-pack-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-slider-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .gallery-card-wide,
  .gallery-card-tall,
  .gallery-card-half,
  .gallery-card-full {
    grid-column: auto;
  }

  .gallery-grid-slider {
    gap: 2px;
  }

  .gallery-grid-slider .gallery-card {
    height: clamp(340px, 86vw, 520px);
  }

  .gallery-showcase-slider::after {
    right: 8px;
    bottom: 14px;
    font-size: 0.68rem;
    padding: 7px 10px;
  }

  .gallery-grid-mosaic {
    column-count: 2;
  }

  .back-to-top {
    right: 14px;
    bottom: 18px;
    width: 48px;
    height: 48px;
  }

  .page-nav {
    align-items: center;
    border-radius: 30px;
    position: relative;
    overflow: visible;
  }

  .page-nav-contact {
    min-height: 42px;
    padding-inline: 16px;
  }

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

  .bio-portrait,
  .bio-portrait img {
    min-height: 320px;
  }

  .statement-image,
  .statement-image img {
    min-height: 0;
  }

  .passage-image-large,
  .passage-image-small {
    height: auto;
    aspect-ratio: 1.45 / 1;
  }

  .site-footer {
    justify-items: stretch;
  }

  .footer-panel {
    padding: 22px 20px;
  }
}

@media (max-width: 560px) {
  .hero-panel {
    padding-inline: 16px;
    padding-bottom: 22px;
  }

  .brand-wordmark {
    width: 104px;
  }

  .nav-links,
  .page-nav-links {
    padding: 16px 18px;
    gap: 12px;
  }

  .hero-copy h1 {
    max-width: 8.8ch;
    font-size: clamp(2.7rem, 12vw, 4.2rem);
  }

  .button {
    width: 100%;
  }

  .hero-aside,
  .universe-copy,
  .detail-card,
  .bio-card,
  .contact-panel,
  .summary-card,
  .quote-card,
  .page-cta {
    padding: 18px;
  }

  .footer-panel {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-panel .contact-block:nth-child(3) p:last-child,
  .footer-panel .contact-block:nth-child(4) p:last-child {
    max-width: none;
  }

  .site-footer {
    gap: 34px;
    padding-bottom: 44px;
  }
}
