:root {
  color-scheme: light;
  --body-font: "PingFang SC", "Microsoft YaHei", "Heiti SC", "Helvetica Neue", Arial, "Hiragino Sans", "Yu Gothic", system-ui, -apple-system, sans-serif;
  --display-font: "Heiti SC", "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, system-ui, sans-serif;
  --serif-font: "Songti SC", "STSong", "SimSun", "Noto Serif SC", "Hiragino Mincho ProN", "Yu Mincho", Georgia, serif;
  --name-font: "STKaiti", "Kaiti SC", "KaiTi", "Songti SC", "STSong", serif;
  --bg: #eef2f3;
  --paper: rgba(255, 255, 255, 0.62);
  --ink: #171717;
  --muted: #676d76;
  --quiet: #9aa0ab;
  --line: rgba(48, 62, 74, 0.12);
  --accent: #6f7f89;
  --accent-soft: #dde7ea;
  --shadow: 0 24px 70px rgba(45, 58, 68, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 12%, rgba(255, 255, 255, 0.82), transparent 34%),
    linear-gradient(135deg, #f7f9f9 0%, #e6ecef 46%, #f3f6f6 100%);
  color: var(--ink);
  font-family: var(--body-font);
  line-height: 1.6;
}

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

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

button,
input,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.protected-media {
  -webkit-user-drag: none;
  user-select: none;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  padding: 14px clamp(18px, 4vw, 54px);
  color: var(--ink);
  background: rgba(246, 249, 249, 0.72);
  border-bottom: 1px solid rgba(26, 27, 29, 0.08);
  backdrop-filter: blur(22px) saturate(1.08);
}

.brand,
.nav,
.language-switcher {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 18px;
  font-weight: 820;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(20, 22, 26, 0.32);
  border-radius: 50%;
}

.nav {
  justify-content: center;
  gap: clamp(14px, 3vw, 38px);
  font-size: 14px;
  font-weight: 760;
}

.nav a,
.nav-link {
  opacity: 0.9;
}

.nav-menu {
  position: relative;
}

.nav-link {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 760;
}

.portfolio-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  display: none;
  min-width: 240px;
  transform: translateX(-50%);
  border: 1px solid rgba(226, 229, 234, 0.76);
  border-radius: 12px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 62px rgba(37, 43, 52, 0.16);
  backdrop-filter: blur(18px);
}

.model-menu a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 780;
}

.portfolio-menu.is-open {
  display: grid;
}

.portfolio-menu a {
  display: grid;
  gap: 2px;
  border-radius: 10px;
  padding: 10px 12px;
}

.portfolio-menu a:hover {
  background: rgba(164, 71, 49, 0.08);
}

.portfolio-menu span {
  color: var(--quiet);
  font-size: 12px;
}

.portfolio-menu strong {
  color: var(--ink);
  font-size: 14px;
}

.language-switcher {
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(20, 22, 26, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(14px);
}

.language-button {
  min-width: 38px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.language-button.is-active {
  background: var(--ink);
  color: #fff;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88vh;
  align-items: end;
  overflow: hidden;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  opacity: 0.82;
  filter: sepia(0.08) saturate(0.88) brightness(0.86);
}

.hero-shade {
  background:
    linear-gradient(180deg, rgba(238, 231, 220, 0.1), rgba(28, 25, 22, 0.34)),
    linear-gradient(90deg, rgba(36, 31, 27, 0.52), rgba(70, 60, 52, 0.08) 72%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 130px 0 78px;
  color: #fff;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

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

h1,
h2,
h3,
h4,
h5 {
  font-family: var(--display-font);
  letter-spacing: 0;
  line-height: 1.02;
}

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(50px, 7vw, 96px);
  font-weight: 760;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.6vw, 64px);
  font-weight: 780;
}

h3 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 760;
}

.hero-copy,
.section-copy {
  max-width: 660px;
}

.hero-copy {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.9;
}

.hero h1 {
  max-width: 920px;
  font-size: clamp(52px, 7.2vw, 102px);
  font-weight: 760;
  letter-spacing: 0.01em;
}

.section-copy {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.button {
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 780;
  cursor: pointer;
}

.button.primary {
  background: #fff;
  color: var(--ink);
}

.button.primary:hover {
  background: rgba(255, 255, 255, 0.86);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.58);
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}

.section,
.about-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 92px 0;
}

.portfolio-groups {
  display: grid;
  gap: 76px;
  min-width: 0;
}

.portfolio {
  padding-top: 76px;
}

.portfolio-group {
  min-width: 0;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.group-heading {
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 0.72fr);
  align-items: end;
  gap: clamp(22px, 4vw, 56px);
  margin-bottom: 24px;
}

.group-heading p:last-child {
  justify-self: start;
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
}

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

.project-card {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 26px;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.7)),
    var(--cover-bg) center / cover;
  color: var(--ink);
  text-align: left;
  cursor: zoom-in;
  box-shadow: 0 18px 48px rgba(46, 42, 37, 0.12);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
  backdrop-filter: blur(18px);
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--cover-bg) center / cover;
  filter: blur(42px) saturate(0.85);
  opacity: 0.18;
  transform: scale(1.08);
}

.project-card--portrait {
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, 0.9), transparent 32%),
    linear-gradient(145deg, rgba(244, 248, 249, 0.86), rgba(215, 226, 232, 0.58) 54%, rgba(246, 249, 249, 0.76));
  box-shadow: 0 24px 72px rgba(54, 70, 82, 0.13);
}

.project-card--portrait::before {
  background:
    radial-gradient(circle at 18% 18%, rgba(186, 202, 212, 0.34), transparent 36%),
    radial-gradient(circle at 78% 12%, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(140deg, rgba(231, 239, 242, 0.6), rgba(255, 255, 255, 0.18));
  filter: blur(0);
  opacity: 1;
  transform: none;
}

.project-card--portrait .project-cover-shell::before {
  background: rgba(238, 244, 246, 0.72);
}

.project-card--portrait .project-cover-shell::after {
  background: rgba(211, 224, 230, 0.72);
}

.project-card > * {
  position: relative;
  z-index: 1;
}

.project-card:hover {
  transform: translateY(-4px);
  border-color: rgba(154, 163, 178, 0.44);
  box-shadow: var(--shadow);
}

.project-cover-shell {
  position: relative;
  display: block;
  min-width: 0;
  padding: 16px 16px 0;
}

.project-cover-shell::before,
.project-cover-shell::after {
  content: "";
  position: absolute;
  z-index: 3;
  pointer-events: none;
}

.project-cover-shell::before {
  top: 26px;
  right: 12px;
  width: 18px;
  height: calc(100% - 44px);
  border-radius: 0 16px 16px 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(230, 236, 239, 0.72));
}

.project-cover-shell::after {
  top: 28px;
  right: 6px;
  width: 1px;
  height: calc(100% - 48px);
  background: rgba(128, 142, 152, 0.18);
}

.project-cover-stack {
  display: flex;
  height: 304px;
  overflow: hidden;
  overflow-x: auto;
  gap: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: 20px 20px 14px 14px;
  background: rgba(255, 255, 255, 0.3);
  box-shadow: inset -12px 0 24px rgba(44, 57, 68, 0.08);
}

.project-cover-stack::-webkit-scrollbar {
  display: none;
}

.project-cover-stack img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  scroll-snap-align: start;
  border-radius: inherit;
}

.project-card-copy {
  display: grid;
  align-content: start;
  gap: 13px;
  padding: 24px 30px 30px;
}

.project-card-copy em {
  color: var(--quiet);
  font-size: 12px;
  font-style: normal;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-card-copy strong {
  font-family: var(--display-font);
  font-size: clamp(28px, 2.7vw, 36px);
  font-weight: 720;
  line-height: 1.12;
}

.project-card-copy small {
  color: var(--muted);
  font-size: clamp(14px, 1.45vw, 16px);
  line-height: 1.8;
}

.project-open {
  align-self: end;
  margin-top: 8px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 820;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
  gap: clamp(28px, 7vw, 90px);
  border-top: 1px solid var(--line);
}

.about-band p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
}

.about-summary {
  display: grid;
  gap: 18px;
  align-content: start;
}

.about-summary p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 24px);
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 820;
}

.text-link::after {
  content: "->";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.contact-section {
  width: 100%;
  max-width: none;
  padding: 46px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #f7f7f4;
}

.contact-heading,
.contact-layout {
  width: min(1180px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.contact-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  align-items: end;
  gap: 18px 34px;
  margin-bottom: 24px;
}

.contact-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -8px;
}

.contact-heading h2 {
  font-size: clamp(26px, 3vw, 38px);
}

.contact-heading p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 15px;
}

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

.contact-card {
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 0;
  border-top: 1px solid var(--line);
  padding: 16px 0 0;
  background: transparent;
  box-shadow: none;
}

.contact-kicker {
  margin-bottom: 4px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 820;
}

.contact-card a {
  border-bottom: 0;
  padding-bottom: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
}

.contact-card a span {
  color: var(--quiet);
  font-size: 13px;
}

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

.social-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  transition: transform 180ms ease, border-color 180ms ease;
}

.social-icon:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
}

.social-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--ink);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.modal-open {
  overflow: hidden;
}

.booking-modal-shell {
  position: fixed;
  z-index: 40;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(8px);
}

.booking-modal-shell[hidden] {
  display: none;
}

.booking-modal {
  position: relative;
  width: min(720px, 100%);
  max-height: min(860px, calc(100vh - 36px));
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: clamp(22px, 4vw, 34px);
  background: rgba(247, 247, 244, 0.96);
  color: var(--ink);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.modal-heading {
  margin-bottom: 22px;
}

.modal-heading h2 {
  font-size: clamp(28px, 4vw, 42px);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

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

.booking-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 760;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  outline: none;
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: rgba(164, 71, 49, 0.52);
  box-shadow: 0 0 0 3px rgba(164, 71, 49, 0.12);
}

.booking-form textarea {
  resize: vertical;
}

.full-field,
.form-submit,
.form-success {
  grid-column: 1 / -1;
}

.form-submit {
  justify-self: start;
  background: var(--ink);
  color: #fff;
}

.form-success {
  margin: 0;
  border: 1px solid rgba(82, 154, 94, 0.28);
  border-radius: 10px;
  padding: 12px 13px;
  background: rgba(82, 154, 94, 0.1);
  color: #2f6f3b;
  font-size: 14px;
  font-weight: 720;
}

.portrait-hero,
.portrait-projects {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.portrait-hero {
  padding: clamp(86px, 10vw, 132px) 0 48px;
}

.portrait-hero h1 {
  max-width: 780px;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: clamp(42px, 5.8vw, 70px);
}

.portrait-hero p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.85;
}

.portrait-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.portrait-tabs a {
  border: 1px solid rgba(198, 204, 214, 0.78);
  border-radius: 999px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(33, 38, 45, 0.05);
}

.portrait-tabs a.is-active,
.portrait-tabs a:hover {
  border-color: rgba(176, 75, 51, 0.42);
  background: rgba(176, 75, 51, 0.1);
  color: var(--accent);
}

.portrait-projects {
  display: grid;
  gap: 70px;
  padding-bottom: 80px;
}

.portrait-project {
  display: grid;
  grid-template-columns: minmax(220px, 0.34fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 44px);
  border-top: 1px solid rgba(26, 27, 29, 0.09);
  padding-top: 34px;
}

.portrait-project-heading {
  position: sticky;
  top: 86px;
  align-self: start;
}

.portrait-project-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 3.7vw, 48px);
}

.portrait-project-heading p:not(.eyebrow),
.portrait-project-heading span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

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

.portrait-photo {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  padding: 0;
  background: rgba(255, 255, 255, 0.66);
  cursor: zoom-in;
  text-align: left;
  box-shadow: 0 16px 44px rgba(46, 42, 37, 0.1);
  backdrop-filter: blur(14px);
}

.portrait-photo img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 240ms ease;
}

.portrait-photo:hover img {
  transform: scale(1.035);
}

.portrait-photo-info {
  display: grid;
  gap: 5px;
  padding: 13px 15px 15px;
}

.portrait-photo-info small,
.portrait-photo-info em {
  color: var(--muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.45;
}

.portrait-photo-info em {
  color: var(--quiet);
}

.gallery-hero,
.gallery-body {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.gallery-hero {
  position: relative;
  overflow: hidden;
  margin-top: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  padding: clamp(46px, 8vw, 94px);
  background:
    linear-gradient(90deg, rgba(250, 252, 252, 0.9), rgba(250, 252, 252, 0.7)),
    var(--gallery-cover) center / cover;
  box-shadow: 0 24px 70px rgba(45, 58, 68, 0.11);
  backdrop-filter: blur(18px);
}

.gallery-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--gallery-cover) center / cover;
  filter: blur(48px) saturate(0.75);
  opacity: 0.2;
  transform: scale(1.08);
}

.gallery-hero > * {
  position: relative;
  z-index: 1;
}

.gallery-hero h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 78px);
}

.gallery-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.9;
}

.gallery-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.gallery-meta span {
  border: 1px solid rgba(70, 87, 100, 0.16);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.54);
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

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

.gallery-frame {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 48px rgba(45, 58, 68, 0.09);
  backdrop-filter: blur(16px);
}

.gallery-frame button,
.story-image {
  display: block;
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-frame img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.gallery-frame-copy {
  display: grid;
  gap: 8px;
  padding: 18px 20px 22px;
}

.gallery-frame-copy p {
  margin-bottom: 0;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-frame-copy span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.story-article {
  padding: 54px 0 92px;
}

.story-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  padding: clamp(24px, 5vw, 56px);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 24px 70px rgba(45, 58, 68, 0.11);
  backdrop-filter: blur(18px);
}

.story-copy {
  position: sticky;
  top: 104px;
}

.story-copy h2 {
  margin-bottom: 24px;
  font-family: var(--name-font);
  font-size: clamp(32px, 4.2vw, 58px);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.18;
  color: #1d252b;
}

.story-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 16px;
  line-height: 2;
}

.story-images {
  display: grid;
  gap: 18px;
}

.story-image {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(45, 58, 68, 0.1);
}

.story-image img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}

.lightbox {
  width: min(1120px, calc(100% - 28px));
  border: 0;
  border-radius: 22px;
  padding: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.08), transparent 42%),
    #171512;
  color: #fff;
  box-shadow: var(--shadow);
}

.lightbox::backdrop {
  background: rgba(18, 16, 14, 0.76);
  backdrop-filter: blur(14px);
}

.lightbox img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  background: #171512;
}

.lightbox-caption {
  padding: 18px 24px 22px;
}

.lightbox-caption h3 {
  font-size: clamp(28px, 4vw, 54px);
}

.lightbox-caption p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
}

.lightbox-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.42);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  z-index: 2;
  top: 50%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.38);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-prev {
  left: 14px;
}

.lightbox-next {
  right: 14px;
}

.privacy-toast {
  position: fixed;
  z-index: 30;
  right: 18px;
  bottom: 18px;
  max-width: min(360px, calc(100% - 36px));
  transform: translateY(18px);
  border-radius: 12px;
  padding: 13px 16px;
  background: rgba(20, 22, 26, 0.92);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
  font-size: 14px;
}

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

.detail-page {
  background:
    radial-gradient(circle at 15% 10%, rgba(255, 255, 255, 0.86), transparent 36%),
    linear-gradient(135deg, #f8faf9 0%, #e4ebef 54%, #f2f6f6 100%);
}

.detail-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 54px);
  border-bottom: 1px solid rgba(26, 27, 29, 0.08);
  background: rgba(246, 249, 249, 0.78);
  backdrop-filter: blur(20px) saturate(1.08);
}

.dark-brand {
  color: var(--ink);
}

.dark-brand .brand-mark {
  border-color: var(--ink);
}

.detail-nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.detail-nav a:hover {
  color: var(--ink);
}

.profile-hero,
.detail-section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.profile-hero {
  display: grid;
  grid-template-columns: minmax(280px, 0.56fr) minmax(0, 0.9fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: center;
  min-height: calc(100vh - 74px);
  padding: clamp(42px, 7vw, 76px) 0;
}

.profile-copy {
  display: grid;
  gap: 14px;
  align-content: center;
  grid-column: 2;
  grid-row: 1;
}

.profile-copy h1 {
  position: relative;
  margin-bottom: 10px;
  color: transparent;
  font-family: var(--name-font);
  font-size: clamp(48px, 4.8vw, 76px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.08;
  background: linear-gradient(135deg, #101418 0%, #52636b 48%, #111 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.profile-copy h1::after {
  content: "";
  position: absolute;
  left: 2px;
  bottom: -16px;
  width: 92px;
  height: 2px;
  background: linear-gradient(90deg, rgba(111, 127, 137, 0.96), rgba(111, 127, 137, 0));
}

.profile-facts {
  display: grid;
  gap: 6px;
  max-width: 560px;
  border-left: 2px solid rgba(111, 127, 137, 0.38);
  padding-left: 16px;
}

.profile-facts p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: clamp(15px, 1.22vw, 18px);
  font-weight: 560;
  line-height: 1.62;
}

.profile-facts p:first-child {
  width: fit-content;
  border: 1px solid rgba(111, 127, 137, 0.28);
  border-radius: 999px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.48);
  color: #52636b;
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.16em;
}

.profile-copy > p:not(.eyebrow) {
  max-width: 590px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.profile-photo-card {
  margin: 0;
  justify-self: start;
  grid-column: 1;
  grid-row: 1;
  width: min(100%, 390px);
  border: 1px solid rgba(226, 229, 234, 0.95);
  border-radius: 24px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 55px rgba(37, 43, 52, 0.1);
}

.profile-photo-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 54% center;
  border-radius: 16px;
}

.profile-photo-card figcaption {
  margin: 10px 4px 2px;
  color: var(--quiet);
  font-size: 12px;
}

.detail-section {
  border-top: 1px solid var(--line);
  padding: 70px 0;
}

.detail-section > h2 {
  margin-bottom: 28px;
  font-size: clamp(32px, 4vw, 54px);
}

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

.practice-grid article {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.practice-grid h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.practice-grid p,
.equipment-intro {
  color: var(--muted);
}

.equipment-intro {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: 17px;
}

.equipment-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(37, 43, 52, 0.05);
}

.equipment-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #e7e9ee;
}

.equipment-card div {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.equipment-card p {
  margin-bottom: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 820;
}

.equipment-card h3 {
  font-size: 22px;
}

.equipment-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 112px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    align-items: start;
    gap: 10px;
    padding: 12px 14px 14px;
    background: rgba(255, 255, 255, 0.78);
  }

  .brand {
    gap: 8px;
    font-size: 17px;
    line-height: 1;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
    font-size: 15px;
  }

  .language-switcher {
    padding: 3px;
  }

  .language-button {
    min-width: 32px;
    height: 28px;
    font-size: 12px;
  }

  .nav {
    grid-column: 1 / -1;
    justify-content: flex-start;
    order: 3;
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
    font-size: 14px;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    min-height: 84vh;
  }

  .group-heading,
  .about-band,
  .contact-heading,
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr;
  }

  .section-copy {
    margin-top: 12px;
  }

  .portfolio-menu {
    position: fixed;
    top: 98px;
    left: 14px;
    right: auto;
    z-index: 25;
    width: min(280px, calc(100vw - 28px));
    min-width: 0;
    max-height: calc(100vh - 118px);
    overflow-y: auto;
    transform: none;
  }

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

  .booking-modal-shell {
    align-items: start;
    place-items: start center;
    padding: 12px;
    overflow-y: auto;
  }

  .booking-modal {
    width: min(100%, 440px);
    max-height: none;
    margin: 12px 0;
    border-radius: 16px;
    padding: 20px 16px;
  }

  .booking-form {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .booking-form input,
  .booking-form textarea {
    min-height: 44px;
    font-size: 16px;
  }

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

  .portrait-project-heading {
    position: static;
  }

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

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

  .story-copy {
    position: static;
  }

  .detail-header,
  .profile-hero,
  .detail-section {
    width: min(100% - 28px, 1180px);
  }

  .profile-hero,
  .practice-grid,
  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .profile-hero {
    min-height: auto;
    padding-top: 46px;
  }

  .profile-copy {
    grid-column: auto;
    grid-row: 1;
  }

  .profile-photo-card {
    grid-column: auto;
    grid-row: 2;
    justify-self: stretch;
    width: min(100%, 460px);
  }
}

@media (max-width: 560px) {
  .hero-content {
    padding: 156px 0 54px;
  }

  h1 {
    font-size: clamp(44px, 16vw, 68px);
  }

  .section,
  .about-band {
    width: min(100% - 28px, 1180px);
    padding: 64px 0;
  }

  .portfolio {
    padding-top: 54px;
  }

  .contact-section {
    padding: 40px 14px;
  }

  .project-card {
    min-height: 450px;
    border-radius: 18px;
  }

  .project-cover-stack {
    height: 250px;
  }

  .project-card-copy {
    padding: 22px;
  }

  .contact-card {
    padding-top: 14px;
  }

  .modal-heading h2 {
    font-size: 28px;
  }

  .portrait-hero,
  .portrait-projects {
    width: min(100% - 28px, 1180px);
  }

  .portrait-photo-grid {
    grid-template-columns: 1fr;
  }

  .gallery-hero,
  .gallery-body {
    width: min(100% - 28px, 1180px);
  }

  .gallery-hero {
    border-radius: 22px;
    padding: 34px 22px;
  }

  .gallery-frame,
  .story-card {
    border-radius: 20px;
  }

  .detail-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .detail-nav {
    width: 100%;
    justify-content: space-between;
  }

  .profile-photo-card img {
    border-radius: 18px;
  }

  .profile-copy h1 {
    font-size: clamp(42px, 15vw, 62px);
  }

  .profile-facts p {
    font-size: 15px;
  }

  .profile-copy > p:not(.eyebrow) {
    font-size: 14px;
  }

  .detail-section {
    padding: 54px 0;
  }
}
