:root {
  --ink: #151515;
  --charcoal: #242424;
  --stone: #69645d;
  --soft: #f5f2ed;
  --paper: #fffdf8;
  --line: rgba(21, 21, 21, 0.14);
  --gold: #b9874f;
  --studio-orange: #dc6540;
  --sage: #7b8a80;
  --white: #ffffff;
  --shadow: 0 18px 60px rgba(13, 13, 13, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.6;
}

body.is-loading {
  overflow: hidden;
}

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

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  gap: 18px;
  align-content: center;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 42%, rgba(185, 135, 79, 0.22), transparent 28%),
    linear-gradient(135deg, #111 0%, #23211e 48%, #141414 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 420ms ease, visibility 420ms ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.loader-line {
  position: relative;
  width: 96px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.18);
}

.loader-line::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 42%;
  background: var(--gold);
  animation: loader-line 920ms ease-in-out infinite;
}

@keyframes loader-line {
  from {
    transform: translateX(-110%);
  }

  to {
    transform: translateX(250%);
  }
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 0.95rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.84;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-header.is-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 120px clamp(20px, 5vw, 64px) 64px;
}

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

.hero-media {
  overflow: hidden;
  transform: scale(1.02);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 950ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide-one {
  background-image: url("assets/optimized/hero-smp-female.jpg");
}

.hero-slide-two {
  background-image: url("assets/optimized/hero-smp-female-2.jpg");
  background-position: 64% center;
  transform: scale(1.24);
  transform-origin: 64% center;
}

.hero-slide-three {
  background-image: url("assets/optimized/hero-smp-female-3.jpg");
  background-position: 62% 45%;
  transform: scale(1.18);
  transform-origin: 62% 45%;
}

.hero-slide-four {
  background-image: url("assets/optimized/hero-smp-female-4.jpg");
  background-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.34) 48%, rgba(0, 0, 0, 0.18)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.34), rgba(0, 0, 0, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.6rem, 10vw, 8.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  cursor: pointer;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: #a97843;
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 7vw, 96px);
  padding: clamp(72px, 10vw, 128px) clamp(20px, 5vw, 64px);
  border-bottom: 1px solid var(--line);
}

.section h2 {
  max-width: 650px;
  margin: 0;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1;
}

.section-body {
  display: grid;
  gap: 20px;
  align-content: start;
  color: var(--stone);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
}

.section-body p {
  margin: 0;
}

.about-section {
  scroll-margin-top: 76px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.about-intro,
.why-band,
.artist-band {
  padding-inline: clamp(20px, 5vw, 64px);
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  min-height: calc(100vh - 76px);
  padding-top: clamp(72px, 10vw, 120px);
  padding-bottom: clamp(46px, 6vw, 74px);
}

.about-intro-copy {
  align-self: center;
}

.about-intro h2 {
  margin: 0 0 28px;
  max-width: 820px;
  color: var(--ink);
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.about-intro p {
  max-width: 780px;
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(1rem, 1.55vw, 1.22rem);
  font-weight: 500;
  line-height: 1.48;
}

.about-intro .eyebrow,
.artist-copy .eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-transform: uppercase;
}

.about-intro p + p {
  margin-top: 12px;
}

.about-intro-image {
  min-height: 430px;
  margin: 0;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background:
    linear-gradient(rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.18)),
    url("assets/optimized/hero-smp-female.jpg") 68% center / cover;
  filter: grayscale(1) contrast(1.08);
}

.why-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 6vw, 82px);
  padding-top: clamp(48px, 6vw, 72px);
  padding-bottom: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 82%, rgba(185, 135, 79, 0.12), transparent 22%),
    var(--soft);
}

.why-copy h3 {
  margin: 0 0 22px;
  color: var(--gold);
  font-size: clamp(2rem, 3.5vw, 3.4rem);
  line-height: 1;
}

.why-copy p {
  max-width: 760px;
  margin: 0;
  color: var(--stone);
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  font-weight: 500;
  line-height: 1.58;
}

.why-copy p + p {
  margin-top: 24px;
}

.why-list {
  display: grid;
  gap: 0;
  align-content: center;
}

.why-item {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(21, 21, 21, 0.12);
}

.why-item:first-child {
  padding-top: 0;
}

.why-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.why-item span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(185, 135, 79, 0.45);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 253, 248, 0.64);
  font-size: 0.72rem;
  font-weight: 800;
}

.why-item h4 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.1;
}

.why-item p {
  margin: 0;
  color: var(--stone);
  font-weight: 500;
  line-height: 1.5;
}

.artist-band {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin: 0;
  padding: clamp(64px, 9vw, 118px) clamp(20px, 5vw, 64px);
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 86%, rgba(185, 135, 79, 0.1), transparent 24%),
    #eee8de;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.artist-photo {
  aspect-ratio: 3 / 4;
  width: min(100%, 420px);
  justify-self: end;
  border-radius: 8px;
  background:
    url("assets/optimized/profile.jpg") center / cover no-repeat,
    #f2eee8;
  box-shadow: 0 18px 60px rgba(13, 13, 13, 0.12);
}

.artist-photo span {
  display: none;
}

.artist-copy h3 {
  max-width: 840px;
  margin: 0 0 26px;
  color: var(--ink);
  font-size: clamp(2rem, 3.8vw, 3.7rem);
  line-height: 1;
  white-space: nowrap;
}

.artist-copy h3 span {
  color: var(--studio-orange);
  font-weight: 500;
}

.artist-copy ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
}

.artist-copy li {
  min-height: 116px;
  padding: 18px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.64);
}

.artist-copy li,
.artist-copy p {
  max-width: 760px;
  color: var(--stone);
  font-size: clamp(0.98rem, 1.25vw, 1.08rem);
  font-weight: 500;
  line-height: 1.55;
}

.artist-copy li strong {
  color: var(--ink);
}

.artist-copy p {
  margin: 0;
}

.artist-button {
  margin-top: 28px;
  color: var(--white);
  background: var(--studio-orange);
  border-color: var(--studio-orange);
}

.artist-button:hover,
.artist-button:focus-visible {
  background: #c95534;
  border-color: #c95534;
}

.service-section {
  background: var(--soft);
}

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

.service-grid article,
.portfolio-item,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.service-grid article {
  min-height: 240px;
  padding: 26px;
}

.service-grid span,
.portfolio-item span {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-grid h3 {
  margin: 42px 0 12px;
  font-size: 1.35rem;
  line-height: 1.15;
}

.service-grid p {
  margin: 0;
  color: var(--stone);
}

.treatment-section {
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
  background: var(--paper);
}

.treatment-section .section-copy {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.treatment-section .section-copy h2 {
  margin-inline: auto;
}

.treatment-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 32px);
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}

.pricing-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pricing-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  color: var(--white);
  background: var(--charcoal);
}

.pricing-header span {
  color: var(--studio-orange);
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  font-weight: 800;
  line-height: 1;
}

.pricing-header strong {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.pricing-list {
  display: grid;
}

.pricing-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  min-height: 124px;
  padding: 22px 26px;
  border-top: 1px solid var(--line);
}

.pricing-row:first-child {
  border-top: 0;
}

.pricing-row h3 {
  margin: 0 0 6px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.1;
}

.pricing-row p {
  max-width: 460px;
  margin: 0;
  color: var(--stone);
}

.pricing-row > strong {
  color: var(--ink);
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1;
}

.treatment-note {
  max-width: 1240px;
  width: 100%;
  margin: -20px auto 0;
  color: var(--stone);
  font-size: 0.95rem;
  text-align: center;
}

.portfolio-section {
  gap: clamp(12px, 1.6vw, 22px);
  padding-bottom: clamp(44px, 5vw, 72px);
  background: var(--charcoal);
  color: var(--white);
}

.portfolio-section .section-copy {
  grid-column: 1 / -1;
}

.portfolio-section .section-copy h2 {
  max-width: 980px;
}

.portfolio-slider {
  position: relative;
  scroll-margin-top: 96px;
  grid-column: 1 / -1;
  width: min(100%, 1400px);
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
}

.portfolio-track {
  position: relative;
  aspect-ratio: 16 / 8;
  min-height: clamp(280px, 34vw, 520px);
}

.portfolio-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 520ms ease;
}

.portfolio-slide.is-active {
  opacity: 1;
}

.portfolio-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.slider-button {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  color: var(--white);
  background: transparent;
  cursor: pointer;
  transform: translateY(-50%);
}

.slider-button svg {
  width: 48px;
  height: 48px;
  display: block;
  overflow: visible;
}

.slider-button circle {
  fill: rgba(0, 0, 0, 0.32);
  stroke: rgba(255, 255, 255, 0.34);
  stroke-width: 1;
}

.slider-button path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.slider-button circle {
  transition: fill 160ms ease, stroke 160ms ease;
}

.slider-button:hover circle,
.slider-button:focus-visible circle {
  fill: rgba(0, 0, 0, 0.22);
  stroke: rgba(255, 255, 255, 0.5);
}

.slider-button-prev {
  left: 18px;
}

.slider-button-next {
  right: 18px;
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.slider-dot {
  appearance: none;
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.42);
  cursor: pointer;
}

.slider-dot.is-active {
  background: var(--white);
}

.portfolio-cta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  margin-top: 0;
}

.portfolio-page {
  color: var(--ink);
  background: var(--paper);
}

.portfolio-hero-page {
  display: grid;
  gap: 18px;
  padding: 150px clamp(20px, 5vw, 64px) 58px;
  color: var(--white);
  background:
    radial-gradient(ellipse at 18% 108%, rgba(214, 168, 103, 0.22) 0 10%, transparent 34%),
    radial-gradient(circle at 72% 24%, rgba(214, 168, 103, 0.25) 0 2%, rgba(214, 168, 103, 0.12) 8%, transparent 24%),
    radial-gradient(circle at 82% 48%, rgba(255, 222, 170, 0.1), transparent 24%),
    linear-gradient(135deg, #111 0%, #23211e 48%, #141414 100%);
}

.portfolio-hero-page h1 {
  max-width: 860px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3.2rem, 7vw, 7rem);
  line-height: 0.94;
}

.portfolio-hero-page p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.5;
}

.portfolio-filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.portfolio-filter-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 4px;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.04);
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.portfolio-filter-nav a:hover,
.portfolio-filter-nav a:focus-visible {
  border-color: rgba(214, 168, 103, 0.72);
  color: var(--studio-gold);
  background: rgba(214, 168, 103, 0.1);
}

.portfolio-gallery-page {
  display: grid;
  gap: clamp(62px, 7.5vw, 108px);
  padding: clamp(64px, 8vw, 110px) clamp(20px, 5vw, 64px);
}

.portfolio-category {
  display: grid;
  gap: 24px;
  scroll-margin-top: 104px;
}

.portfolio-category-heading {
  display: grid;
  gap: 8px;
  max-width: 680px;
}

.portfolio-category-heading h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 3.4rem);
  line-height: 1.04;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 34px);
}

.work-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--soft);
  cursor: zoom-in;
}

.work-grid img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  transition: transform 320ms ease;
}

.work-grid figure:hover img {
  transform: scale(1.035);
}

.work-grid figure:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.work-grid figure.is-hidden {
  display: none;
}

.portfolio-view-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.portfolio-view-more {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.portfolio-view-more:hover,
.portfolio-view-more:focus-visible {
  color: var(--white);
  border-color: var(--gold);
  background: var(--gold);
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 52px);
  background: rgba(12, 12, 12, 0.86);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 200ms ease, visibility 200ms ease;
}

.portfolio-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.portfolio-lightbox img {
  max-width: min(100%, 1120px);
  max-height: 86vh;
  display: block;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.42);
}

.lightbox-close {
  position: fixed;
  top: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 34px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  background: var(--gold);
}

.portfolio-bottom-section {
  display: grid;
  gap: clamp(28px, 4vw, 44px);
  padding: 0 clamp(20px, 5vw, 64px) clamp(72px, 8vw, 110px);
  background: var(--paper);
}

.portfolio-bottom-nav {
  justify-content: flex-start;
}

.portfolio-bottom-nav a {
  border-color: var(--line);
  color: var(--ink);
  background: var(--white);
}

.portfolio-bottom-nav a:hover,
.portfolio-bottom-nav a:focus-visible {
  color: var(--studio-orange);
  background: var(--soft);
}

.portfolio-footer-contact {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1fr;
  gap: clamp(28px, 6vw, 86px);
  padding: clamp(40px, 6vw, 72px) 0 0;
  border-top: 1px solid var(--line);
}

.portfolio-footer-brand h2 {
  margin: 0 0 20px;
  color: var(--studio-orange);
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.portfolio-footer-brand p,
.portfolio-footer-info p,
.portfolio-footer-info a {
  margin: 0;
  color: var(--ink);
  font-weight: 600;
  line-height: 1.55;
}

.portfolio-footer-brand p {
  max-width: 360px;
  color: var(--stone);
}

.portfolio-footer-links,
.portfolio-footer-info {
  display: grid;
  align-content: start;
  gap: 18px;
}

.portfolio-footer-info {
  grid-column: 3;
  justify-self: end;
  min-width: min(100%, 260px);
}

.portfolio-footer-links a {
  color: var(--ink);
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  font-weight: 700;
  line-height: 1;
}

.portfolio-footer-links a:hover,
.portfolio-footer-links a:focus-visible,
.portfolio-footer-info a:hover,
.portfolio-footer-info a:focus-visible {
  color: var(--studio-orange);
}

.portfolio-social-list {
  display: flex;
  gap: 10px;
}

.portfolio-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
}

.portfolio-social-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-section {
  align-items: start;
}

.contact-section .map-frame {
  grid-column: 1 / -1;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 36px);
}

.contact-info {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.contact-info > div {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.contact-info span {
  color: var(--studio-orange);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-info a,
.contact-info p {
  margin: 0;
  color: var(--stone);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.contact-info a:hover,
.contact-info a:focus-visible {
  color: var(--ink);
}

.contact-social-list {
  display: flex;
  gap: 10px;
  padding-top: 4px;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
}

.contact-social-link:hover,
.contact-social-link:focus-visible {
  color: var(--studio-orange);
}

.contact-social-link svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.map-frame {
  height: clamp(320px, 38vw, 520px);
  margin-top: clamp(8px, 2vw, 18px);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--soft);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}


.form-status {
  min-height: 1.35em;
  margin: -4px 0 0;
  color: var(--stone);
  font-size: 0.92rem;
  font-weight: 700;
}

.form-status[data-state="success"] {
  color: #2f6f4e;
}

.form-status[data-state="error"] {
  color: #9d3b2f;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.64;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px clamp(20px, 5vw, 64px);
  border-top: 1px solid var(--line);
  background: var(--soft);
  color: var(--stone);
  font-size: 0.9rem;
}

.scroll-toggle {
  position: fixed;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 18;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(21, 21, 21, 0.16);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 12px 34px rgba(13, 13, 13, 0.18);
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: color 160ms ease, background 160ms ease, transform 160ms ease;
}

.scroll-toggle:hover,
.scroll-toggle:focus-visible {
  color: var(--white);
  background: var(--gold);
  transform: translateY(-2px);
}

.scroll-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 180ms ease;
}

.scroll-toggle.is-scroll-up svg {
  transform: rotate(180deg);
}

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

  .site-nav {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

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

  .site-nav a {
    padding: 14px 12px;
  }

  .hero {
    min-height: 88vh;
    padding-top: 104px;
  }

  .hero-slide {
    background-position: 58% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.42)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0));
  }

  .portfolio-track {
    aspect-ratio: 1600 / 1028;
    min-height: auto;
  }

  .portfolio-slide img {
    object-fit: contain;
    object-position: center;
  }

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

  .about-intro,
  .why-band,
  .artist-band {
    grid-template-columns: 1fr;
  }

  .about-intro-image {
    min-height: 360px;
  }

  .artist-band {
    margin-inline: 0;
  }

  .artist-photo {
    justify-self: center;
    max-width: 280px;
  }

  .artist-copy ul {
    grid-template-columns: 1fr;
  }

  .treatment-content {
    grid-template-columns: 1fr;
  }

  .treatment-note {
    grid-column: 1;
  }

  .service-grid,
  .portfolio-grid,
  .work-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .site-header {
    min-height: 68px;
    padding: 14px 18px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .site-nav {
    top: 68px;
    left: 14px;
    right: 14px;
  }

  .hero {
    min-height: 86vh;
    padding: 104px 18px 48px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 18vw, 5.7rem);
  }

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

  .section {
    padding: 64px 18px;
  }

  .about-intro,
  .why-band {
    padding-inline: 18px;
  }

  .about-intro {
    min-height: auto;
    padding-top: 64px;
  }

  .about-intro h2 {
    font-size: clamp(2.65rem, 13vw, 4rem);
  }

  .about-intro p,
  .why-copy p,
  .why-item p {
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .about-intro-image {
    min-height: 280px;
  }

  .why-item {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 14px;
  }

  .why-item span {
    width: 32px;
    height: 32px;
    font-size: 0.68rem;
  }

  .artist-band {
    margin: 0;
    padding: 56px 18px 64px;
  }

  .artist-copy h3 {
    font-size: clamp(2rem, 10vw, 3.4rem);
    white-space: normal;
  }

  .artist-copy li,
  .artist-copy p {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .pricing-header,
  .pricing-row {
    padding-inline: 18px;
  }

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

  .pricing-row {
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: auto;
  }

  .pricing-row > strong {
    justify-self: start;
  }

  .service-grid,
  .portfolio-grid,
  .work-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-hero-page {
    padding: 112px 18px 42px;
  }

  .portfolio-hero-page h1 {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  .portfolio-gallery-page,
  .portfolio-bottom-section {
    padding-inline: 18px;
  }

  .portfolio-footer-contact {
    grid-template-columns: 1fr;
  }

  .portfolio-footer-info {
    grid-column: auto;
    justify-self: start;
  }


  .service-grid article,
  .portfolio-item {
    min-height: 210px;
  }
.site-footer {
    flex-direction: column;
  }
}
