:root {
  --bg: #050505;
  --panel: #0d0d0d;
  --panel-soft: #141414;
  --text: #f6f1e8;
  --muted: #a9a198;
  --line: rgba(246, 241, 232, 0.14);
  --gold: #c9a86a;
  --gold-soft: #e7d5a1;
  --shadow: rgba(0, 0, 0, 0.48);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Helvetica Neue", Arial, sans-serif;
  line-height: 1.7;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.014) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.28;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 48px);
  color: var(--text);
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(5, 5, 5, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-logo {
  width: 58px;
  height: 46px;
  object-fit: contain;
}

.brand-name {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 28px);
  color: rgba(246, 241, 232, 0.78);
  font-size: 13px;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 160ms ease;
}

.site-nav a:hover {
  color: var(--gold-soft);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.58);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 6px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 160px clamp(18px, 6vw, 72px) 72px;
}

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

.hero-image {
  object-fit: cover;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.2) 52%, rgba(0, 0, 0, 0.7)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.94) 0%, rgba(5, 5, 5, 0.08) 42%);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.05;
}

h1 {
  font-size: clamp(58px, 11vw, 138px);
}

h2 {
  font-size: clamp(34px, 5vw, 68px);
}

h3 {
  font-size: clamp(26px, 3vw, 36px);
}

h4 {
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-size: 13px;
  text-transform: uppercase;
}

.hero-copy {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(246, 241, 232, 0.78);
  font-size: clamp(17px, 2.1vw, 22px);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #080705;
  background: var(--gold-soft);
}

.button-ghost {
  border-color: rgba(246, 241, 232, 0.38);
  color: var(--text);
  background: rgba(5, 5, 5, 0.22);
}

.section-inner {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
}

.subpage {
  min-height: 70vh;
}

.page-hero {
  padding: 150px 0 76px;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 1)),
    url("../img/ai/hero-main.png") center / cover;
  border-bottom: 1px solid var(--line);
}

.compact-hero h1 {
  max-width: 980px;
  font-size: clamp(52px, 8vw, 108px);
}

.compact-hero p:last-child {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.studio-hero {
  position: relative;
  min-height: 82vh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 160px clamp(18px, 6vw, 72px) 72px;
}

.studio-hero.has-lightbox {
  cursor: zoom-in;
}

.studio-hero.has-lightbox:focus-visible,
.image-gallery img.has-lightbox:focus-visible,
.floor-plan-image.has-lightbox:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 4px;
}

.page-section {
  padding: clamp(64px, 9vw, 118px) 0;
}

.text-link {
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

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

.feature-link {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  background: rgba(5, 5, 5, 0.48);
  border: 1px solid var(--line);
  transition: border-color 160ms ease, transform 160ms ease;
}

.feature-link:hover {
  border-color: rgba(231, 213, 161, 0.58);
  transform: translateY(-2px);
}

.menu-icon {
  width: 46px;
  height: 46px;
  margin-bottom: 28px;
  color: var(--gold-soft);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.9;
}

.feature-link span {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.feature-link strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 500;
  line-height: 1.05;
}

.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(28px, 6vw, 82px);
  align-items: end;
}

.detail-grid p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.image-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px var(--shadow);
}

.image-gallery img.has-lightbox {
  cursor: zoom-in;
  transition: border-color 160ms ease, transform 160ms ease;
}

.image-gallery img.has-lightbox:hover {
  border-color: rgba(231, 213, 161, 0.62);
  transform: translateY(-2px);
}

.floor-plan {
  margin-top: 34px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.floor-plan h3 {
  margin: 0 0 18px;
  color: var(--gold-soft);
  font-size: clamp(22px, 2.6vw, 30px);
}

.floor-plan-image {
  width: 100%;
  height: auto;
  background: #f6f1e8;
  border: 1px solid var(--line);
  box-shadow: 0 24px 60px var(--shadow);
}

.floor-plan-image.has-lightbox {
  cursor: zoom-in;
  transition: border-color 160ms ease, transform 160ms ease;
}

.floor-plan-image.has-lightbox:hover {
  border-color: rgba(231, 213, 161, 0.62);
  transform: translateY(-2px);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 4vw, 48px);
  background: rgba(0, 0, 0, 0.92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border: 1px solid rgba(246, 241, 232, 0.18);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.72);
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 101;
  min-height: 42px;
  padding: 8px 13px;
  color: var(--text);
  background: rgba(8, 8, 8, 0.88);
  border: 1px solid rgba(246, 241, 232, 0.28);
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.lightbox-open {
  overflow: hidden;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--line);
  background: var(--panel);
}

.cta-band h2 {
  font-size: clamp(30px, 4vw, 52px);
}

.wide-panel {
  max-width: var(--max);
}

section {
  scroll-margin-top: 80px;
}

.section-band {
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.92), rgba(7, 7, 7, 0.92));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.intro {
  padding: clamp(54px, 8vw, 100px) 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
}

.intro p:last-child,
.access-copy,
.contact p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.studios,
.rates,
.contact {
  padding: clamp(70px, 9vw, 128px) 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(28px, 5vw, 54px);
}

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

.studio-card {
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
}

.studio-card a {
  display: block;
  height: 100%;
}

.studio-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.studio-card-body {
  padding: 28px;
}

.room-label,
.panel-note,
.table-note {
  color: var(--muted);
}

.room-label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.studio-card p:last-child {
  margin: 16px 0 0;
  color: var(--muted);
}

.floor-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 34px;
  margin-left: 8px;
  padding: 3px 7px;
  border: 1px solid rgba(231, 213, 161, 0.52);
  color: var(--gold-soft);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  vertical-align: middle;
}

.studio-card h2 {
  font-size: clamp(28px, 3.8vw, 42px);
}

.equipment {
  padding: clamp(70px, 9vw, 118px) 0;
}

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

.list-panel {
  padding: clamp(24px, 4vw, 42px);
  background: rgba(5, 5, 5, 0.42);
  border: 1px solid var(--line);
}

.panel-note {
  margin: 14px 0 26px;
}

.multi-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 26px;
}

.microphone-list {
  grid-template-columns: repeat(2, minmax(300px, 420px));
  justify-content: space-between;
  column-gap: clamp(24px, 4vw, 56px);
}

.microphone-list .gear-category-heading h2 {
  font-size: clamp(24px, 3vw, 36px);
  white-space: nowrap;
}

.equipment-list h3 {
  margin-bottom: 12px;
  font-size: clamp(22px, 2.6vw, 30px);
}

.gear-category-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.gear-category-heading h2 {
  font-size: clamp(28px, 3.8vw, 42px);
}

.count-pill {
  flex: 0 0 auto;
  padding: 6px 10px;
  border: 1px solid rgba(231, 213, 161, 0.42);
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.count-list {
  display: grid;
  gap: 8px;
  padding-left: 0;
  list-style: none;
}

.microphone-list .count-list {
  gap: 4px;
}

.count-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.microphone-list .count-list li {
  padding: 5px 0;
  line-height: 1.25;
}

.count-list strong {
  flex: 0 0 auto;
  color: var(--gold-soft);
  font-size: 12px;
  text-transform: uppercase;
}

.mic-name {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 auto;
  min-width: 0;
  gap: 8px;
  text-align: right;
}

.type-badge {
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid rgba(231, 213, 161, 0.52);
  border-radius: 50%;
  color: var(--gold-soft);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
}

.microphone-note {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.microphone-note p {
  margin: 0;
}

.print-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.item-meta {
  display: inline-flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 14px;
}

ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

li + li {
  margin-top: 6px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--panel);
}

.price-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 22px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.price-table th {
  color: var(--gold-soft);
  font-size: 12px;
  text-transform: uppercase;
  background: #101010;
}

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

.price-table td:first-child {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  color: var(--text);
}

.table-note {
  margin: 18px 0 0;
  font-size: 14px;
}

.note-stack {
  display: grid;
  gap: 6px;
}

.note-stack p {
  margin: 0;
}

.policy-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 18px;
  margin-top: 24px;
}

.policy-panel {
  padding: clamp(24px, 4vw, 42px);
  background: var(--panel);
  border: 1px solid var(--line);
}

.policy-panel h2 {
  margin-bottom: 24px;
  font-size: clamp(30px, 4vw, 52px);
}

.notice-list {
  display: grid;
  gap: 12px;
  padding-left: 0;
  list-style: none;
}

.notice-list li,
.policy-copy p {
  color: var(--muted);
}

.policy-copy h3 {
  margin: 24px 0 8px;
  color: var(--gold-soft);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.6;
}

.policy-copy h3:first-child {
  margin-top: 0;
}

.policy-copy p {
  margin: 0 0 16px;
}

.guide-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.guide-item {
  padding: clamp(20px, 3vw, 30px);
  background: rgba(14, 14, 14, 0.62);
  border: 1px solid var(--line);
}

.guide-item h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 12px;
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(25px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.08;
}

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.guide-icon {
  flex: 0 0 auto;
  width: clamp(26px, 3vw, 34px);
  height: clamp(26px, 3vw, 34px);
  color: var(--gold-soft);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.guide-item p {
  margin: 0 0 12px;
  color: var(--muted);
}

.guide-item p:last-child {
  margin-bottom: 0;
}

.guide-contact {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  align-items: center;
  gap: 28px;
}

.guide-qr {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  padding: 10px;
  border: 1px solid rgba(231, 213, 161, 0.42);
  background: rgba(246, 241, 232, 0.96);
}

.guide-qr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.access {
  padding: clamp(70px, 9vw, 118px) 0;
}

.access-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: center;
}

.access-list {
  display: grid;
  gap: 16px;
  margin: 32px 0 0;
}

.access-list div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.access-list dt {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.access-list dd {
  margin: 0;
  color: var(--muted);
}

.map-image {
  width: 100%;
  min-height: 360px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: 0 28px 60px var(--shadow);
}

.map-frame {
  position: relative;
  width: 100%;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 28px 60px var(--shadow);
}

.map-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.contact-phone {
  display: grid;
  gap: 8px;
  padding: clamp(22px, 3.5vw, 34px);
  background: linear-gradient(135deg, rgba(231, 213, 161, 0.13), rgba(14, 14, 14, 0.78));
  border: 1px solid rgba(231, 213, 161, 0.42);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.28);
}

.contact-phone p {
  margin: 0;
}

.contact-phone-label {
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.contact-phone-number {
  color: var(--text);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(28px, 3.7vw, 44px);
  font-weight: 900;
  line-height: 1.05;
}

.contact-phone-hours {
  color: var(--muted);
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 17px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--panel);
  border: 1px solid var(--line);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--text);
  background: #070707;
  border: 1px solid rgba(246, 241, 232, 0.2);
  border-radius: 0;
  outline: 0;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(231, 213, 161, 0.72);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-result {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--panel);
  border: 1px solid var(--line);
}

.form-result h2 {
  font-size: clamp(14px, 1.3vw, 16px);
}

.form-result p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
}

.footer-social a {
  display: inline-flex;
}

.social-icon {
  position: relative;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(246, 241, 232, 0.2);
  color: var(--gold-soft);
  transition: border-color 160ms ease, transform 160ms ease;
}

.footer-social a:hover .social-icon {
  border-color: rgba(231, 213, 161, 0.66);
  transform: translateY(-2px);
}

.social-line::before {
  content: "LINE";
  font-size: 9px;
  font-weight: 800;
}

.social-instagram::before {
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-radius: 6px;
  content: "";
}

.social-instagram::after {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  content: "";
  transform: translate(7px, -7px);
}

.social-threads::before {
  content: "@";
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

.social-tiktok::before {
  content: "♪";
  font-size: 27px;
  font-weight: 800;
  line-height: 1;
}

.social-x::before {
  content: "X";
  font-size: 20px;
  font-weight: 800;
}

.social-facebook::before {
  content: "f";
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.social-youtube::before {
  width: 24px;
  height: 16px;
  border: 2px solid currentColor;
  border-radius: 5px;
  content: "";
}

.social-youtube::after {
  position: absolute;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
  content: "";
  transform: translateX(2px);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr) minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  font-size: 13px;
  text-transform: uppercase;
}

.footer-inner p,
.footer-address {
  margin: 0;
}

.footer-address {
  display: grid;
  gap: 4px;
  font-style: normal;
  text-transform: none;
}

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

  .site-nav {
    position: fixed;
    top: 72px;
    left: 18px;
    right: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: rgba(8, 8, 8, 0.96);
    border: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 8px;
    border-bottom: 1px solid var(--line);
  }

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

  .hero {
    min-height: 86vh;
  }

  .intro-grid,
  .studio-grid,
  .equipment-grid,
  .access-grid,
  .contact-grid,
  .detail-grid,
  .image-gallery,
  .link-grid,
  .policy-grid,
  .guide-list,
  .guide-contact {
    grid-template-columns: 1fr;
  }

  .guide-contact {
    grid-column: auto;
  }

  .feature-link {
    min-height: 126px;
  }

  .cta-band {
    display: grid;
  }

  .studio-card img {
    aspect-ratio: 16 / 10;
  }

  .section-heading {
    display: block;
  }
}

@media (max-width: 560px) {
  .brand-logo {
    width: 48px;
    height: 38px;
  }

  .brand-name {
    font-size: 13px;
  }

  .hero {
    padding: 132px 18px 54px;
  }

  .studio-hero {
    min-height: 76vh;
    padding: 132px 18px 54px;
  }

  .page-hero {
    padding: 124px 0 56px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .multi-list {
    grid-template-columns: 1fr;
  }

  .access-list div,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media print {
  .print-action {
    display: none;
  }
}
