:root {
  color-scheme: dark;
  --black: #050505;
  --charcoal: #111111;
  --gold: #d8aa52;
  --gold-soft: #f0c775;
  --gold-dark: #8f6429;
  --silver: #c8c8c8;
  --muted: rgba(255, 255, 255, 0.68);
  --muted-soft: rgba(255, 255, 255, 0.42);
  --glass: rgba(22, 22, 22, 0.62);
  --line: rgba(216, 170, 82, 0.22);
  --radius: 20px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --display: "Arial Black", Inter, ui-sans-serif, system-ui, sans-serif;
}

@property --gold-frame-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-padding-top: 92px;
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: #fff;
  font-family: var(--font);
  margin: 0;
  overflow-x: hidden;
  width: 100%;
}

main,
section,
.max {
  min-width: 0;
}

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

button,
input,
textarea {
  font: inherit;
}

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

.hidden-field {
  display: none;
}

.site-bg {
  background: #070707;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  position: fixed;
  z-index: 0;
}

.site-bg::before {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.28)),
    radial-gradient(ellipse 70% 38% at 50% 8%, rgba(255, 255, 255, 0.055), transparent 64%),
    url("assets/bg-damask.jpg");
  background-position: center top, center top, center top;
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%, cover;
  content: "";
  filter: brightness(1.04) contrast(1.14);
  inset: -8%;
  opacity: 1;
  position: absolute;
}

.site-bg::after {
  animation: damask-gold-reflection 11s ease-in-out infinite;
  background:
    linear-gradient(112deg, transparent 0%, rgba(143, 100, 41, 0.04) 42%, rgba(255, 229, 164, 0.14) 50%, rgba(216, 170, 82, 0.08) 58%, transparent 76%),
    radial-gradient(ellipse 18% 8% at 17% 24%, rgba(230, 181, 83, 0.15), transparent 72%),
    radial-gradient(ellipse 20% 9% at 82% 18%, rgba(216, 170, 82, 0.09), transparent 70%),
    radial-gradient(ellipse 20% 8% at 68% 82%, rgba(255, 222, 150, 0.07), transparent 72%),
    radial-gradient(ellipse 24% 9% at 24% 72%, rgba(111, 76, 29, 0.11), transparent 72%),
    radial-gradient(ellipse 86% 60% at 50% 50%, transparent 48%, rgba(0, 0, 0, 0.56) 100%);
  background-position: -170% 0, center, center, center, center, center;
  background-size: 340% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%, 100% 100%;
  content: "";
  filter: blur(28px);
  inset: 0;
  opacity: 0.48;
  position: absolute;
}

@keyframes damask-gold-reflection {
  0%, 18% {
    background-position: -175% 0, center, center, center, center, center;
    opacity: 0.42;
  }

  48%, 58% {
    background-position: 52% 0, center, center, center, center, center;
    opacity: 0.58;
  }

  100% {
    background-position: 175% 0, center, center, center, center, center;
    opacity: 0.42;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-bg::after {
    animation: none;
    background-position: center;
  }
}

.nav,
.hero,
.section,
.map-section,
.footer {
  position: relative;
  z-index: 1;
}

.nav {
  align-items: center;
  backdrop-filter: blur(20px);
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid rgba(216, 170, 82, 0.16);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 18px 34px;
  position: fixed;
  right: 0;
  top: 0;
  transition: padding 0.25s, background 0.25s;
  z-index: 10;
}

.nav.scrolled {
  background: rgba(5, 5, 5, 0.92);
  padding-bottom: 12px;
  padding-top: 12px;
}

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

.brand img,
.footer-brand img {
  border-radius: 999px;
  height: 38px;
  object-fit: contain;
  width: 38px;
}

.brand span,
.footer-brand span {
  color: var(--gold-soft);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.btn {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 900;
  justify-content: center;
  letter-spacing: 0.02em;
  min-height: 48px;
  padding: 0 28px;
  overflow: hidden;
  position: relative;
  transition: transform 0.22s, box-shadow 0.22s, border-color 0.22s, filter 0.22s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-gold {
  background:
    linear-gradient(115deg, rgba(82, 51, 17, 1) 0%, rgba(216, 170, 82, 1) 18%, rgba(255, 239, 183, 1) 33%, rgba(174, 122, 42, 1) 48%, rgba(255, 222, 138, 1) 66%, rgba(118, 78, 24, 1) 100%);
  background-size: 220% 100%;
  border: 1px solid rgba(96, 57, 12, 0.82);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.38),
    0 0 34px rgba(216, 170, 82, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    inset 0 -8px 18px rgba(70, 42, 10, 0.32);
  color: #080808;
}

button.btn-gold {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.btn-gold::before {
  background: linear-gradient(110deg, transparent 0 34%, rgba(255, 255, 255, 0.72) 45%, rgba(255, 244, 193, 0.26) 52%, transparent 62% 100%);
  content: "";
  inset: 0;
  position: absolute;
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.btn-gold:hover {
  animation: goldShift 1.4s ease-in-out infinite alternate;
  box-shadow:
    0 20px 44px rgba(0, 0, 0, 0.42),
    0 0 44px rgba(216, 170, 82, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -8px 18px rgba(70, 42, 10, 0.34);
}

.btn-gold:hover::before {
  transform: translateX(120%);
}

@keyframes goldShift {
  from { background-position: 0% 50%; filter: saturate(1); }
  to { background-position: 100% 50%; filter: saturate(1.18); }
}

@keyframes metallicHeroText {
  from { background-position: 0% 50%; }
  to { background-position: 100% 50%; }
}

.btn-glass {
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  color: var(--gold-soft);
}

.btn-glass:hover {
  border-color: rgba(240, 199, 117, 0.54);
  box-shadow: 0 0 34px rgba(216, 170, 82, 0.18);
}

.full {
  width: 100%;
}

.hero {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  min-height: 100vh;
  overflow: hidden;
  padding: 140px 6vw 80px;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 35%, rgba(0, 0, 0, 0.22) 78%, rgba(0, 0, 0, 0.62) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, transparent 34%, rgba(0, 0, 0, 0.72) 100%),
    url("assets/hero-studio-reception.jpg");
  background-position: center, center, center 52%;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  inset: 0;
  position: absolute;
  z-index: -2;
}

.hero::after {
  background:
    radial-gradient(ellipse 42% 24% at 22% 78%, rgba(216, 170, 82, 0.14), transparent 70%),
    radial-gradient(ellipse 36% 18% at 86% 18%, rgba(255, 225, 166, 0.1), transparent 72%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(5, 5, 5, 0.82));
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

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

.eyebrow {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: var(--display);
  letter-spacing: 0;
  line-height: 0.96;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(48px, 6.2vw, 88px);
  margin-bottom: 22px;
  max-width: 820px;
}

h1 span,
h2 span {
  color: var(--gold-soft);
}

h1 span {
  animation: metallicHeroText 5.8s ease-in-out infinite alternate;
  background:
    linear-gradient(
      100deg,
      #6b420e 0%,
      #f7d46e 10%,
      #fff1b0 18%,
      #b87525 28%,
      #7c4b12 39%,
      #f4c45f 51%,
      #fff7c8 60%,
      #a76b22 72%,
      #f0bc55 84%,
      #6a3f0c 100%
    );
  background-clip: text;
  background-size: 240% 100%;
  color: transparent;
  display: inline-block;
  filter: drop-shadow(0 0 22px rgba(216, 170, 82, 0.24));
  text-shadow:
    0 1px 0 rgba(255, 248, 215, 0.3),
    0 0 22px rgba(216, 170, 82, 0.26),
    0 0 58px rgba(216, 170, 82, 0.18);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 1px rgba(255, 236, 170, 0.18);
}

h2 {
  font-size: clamp(36px, 5vw, 68px);
  margin-bottom: 22px;
}

h3 {
  font-size: 22px;
  line-height: 1.15;
}

.hero-copy,
.section-copy p,
.section-side,
.booking-copy p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.about-more {
  border-top: 1px solid rgba(216, 170, 82, 0.18);
  margin-top: 26px;
  padding-top: 18px;
}

.read-more-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--gold-soft);
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  gap: 10px;
  letter-spacing: 0.12em;
  padding: 0;
  text-transform: uppercase;
}

.read-more-toggle:focus {
  outline: 0;
}

.read-more-toggle:focus-visible {
  outline: 2px solid rgba(240, 199, 117, 0.54);
  outline-offset: 4px;
}

.read-more-toggle b {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  height: 9px;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s;
  width: 9px;
}

.about-more.open .read-more-toggle b {
  transform: rotate(225deg) translateY(-2px);
}

.about-more-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.35s ease, opacity 0.35s ease, margin 0.35s ease;
}

.about-more.open .about-more-panel {
  grid-template-rows: 1fr;
  margin-top: 18px;
  opacity: 1;
}

.about-more-panel > * {
  overflow: hidden;
}

.hero-copy {
  max-width: 720px;
}

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

.hero-panel {
  backdrop-filter: blur(20px);
  background: rgba(11, 11, 11, 0.58);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  display: grid;
  gap: 16px;
  padding: 22px;
  position: relative;
  z-index: 1;
}

.hero-panel div {
  border-bottom: 1px solid rgba(216, 170, 82, 0.14);
  padding-bottom: 16px;
}

.hero-panel div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  color: var(--gold-soft);
  font-size: 18px;
}

.hero-panel span {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

.section {
  padding: 96px 24px;
  scroll-margin-top: 92px;
}

.max {
  margin: 0 auto;
  max-width: 1180px;
}

.intro-grid,
.booking-grid {
  align-items: center;
  display: grid;
  gap: 56px;
  grid-template-columns: 0.9fr 1.1fr;
}

.image-stack {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 0.8fr;
}

.image-frame {
  --frame-fill: linear-gradient(180deg, rgba(12, 12, 12, 0.94), rgba(5, 5, 5, 0.92));
  border-radius: var(--radius);
  height: 440px;
  margin: 0;
  overflow: hidden;
  position: relative;
}

.image-frame img {
  border-radius: var(--frame-inner-radius);
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.image-frame:nth-child(2) {
  margin-top: 70px;
}

.section-center {
  margin: 0 auto 38px;
  max-width: 760px;
  text-align: center;
}

.section-row {
  align-items: end;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  margin-bottom: 34px;
}

.section-row h2,
.section-center h2 {
  margin-bottom: 0;
}

.section-side {
  max-width: 360px;
}

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

.artist-carousel,
.review-carousel,
.portfolio-carousel {
  position: relative;
}

.artist-carousel {
  padding-inline: 26px;
}

.artist-track,
.review-track,
.portfolio-track {
  display: grid;
  gap: 18px;
  grid-auto-columns: calc((100% - 36px) / 3);
  grid-auto-flow: column;
  overflow-x: auto;
  padding: 4px 2px 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.artist-carousel.reveal.in .artist-card,
.review-carousel.reveal.in .review-card,
.portfolio-carousel.reveal.in .work-card {
  opacity: 1;
  transform: none;
}

.artist-track::-webkit-scrollbar,
.review-track::-webkit-scrollbar,
.portfolio-track::-webkit-scrollbar {
  display: none;
}

.artist-track .artist-card,
.review-track .review-card,
.portfolio-track .work-card {
  scroll-snap-align: start;
}

.carousel-btn {
  align-items: center;
  backdrop-filter: blur(16px);
  background:
    linear-gradient(135deg, rgba(255, 247, 202, 0.98) 0%, rgba(236, 195, 100, 0.96) 24%, rgba(146, 91, 22, 0.98) 52%, rgba(224, 174, 78, 0.98) 78%, rgba(255, 241, 176, 0.96) 100%);
  border: 1px solid rgba(255, 239, 184, 0.82);
  border-radius: 999px;
  box-shadow:
    0 18px 34px rgba(0, 0, 0, 0.48),
    0 0 24px rgba(216, 170, 82, 0.18),
    inset 0 2px 0 rgba(255, 255, 255, 0.46),
    inset 0 -5px 8px rgba(84, 52, 11, 0.56);
  color: #070707;
  cursor: pointer;
  display: flex;
  font-size: 36px;
  font-weight: 900;
  height: 52px;
  justify-content: center;
  overflow: hidden;
  position: absolute;
  text-shadow: 0 1px 0 rgba(255, 246, 205, 0.58);
  top: 50%;
  transform: translateY(-50%);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  width: 52px;
  z-index: 8;
}

.carousel-btn::before {
  background: linear-gradient(115deg, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0.56) 46%, rgba(255, 255, 255, 0) 72%);
  content: "";
  inset: -35% -70%;
  position: absolute;
  transform: translateX(-70%) rotate(10deg);
  transition: transform 0.55s ease;
}

.carousel-btn:hover {
  box-shadow:
    0 22px 42px rgba(0, 0, 0, 0.56),
    0 0 34px rgba(216, 170, 82, 0.32),
    inset 0 2px 0 rgba(255, 255, 255, 0.58),
    inset 0 -5px 9px rgba(84, 52, 11, 0.62);
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn:hover::before {
  transform: translateX(70%) rotate(10deg);
}

.carousel-btn:active {
  transform: translateY(-50%) scale(0.98);
}

.carousel-prev {
  left: -26px;
}

.carousel-next {
  right: -26px;
}

.artist-carousel .carousel-prev {
  left: -4px;
}

.artist-carousel .carousel-next {
  right: -4px;
}

.glass-card,
.review-card,
.booking-form {
  backdrop-filter: blur(24px);
  background: var(--glass);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.glass-card::before,
.review-card::before,
.booking-form::before {
  animation: spin 6s linear infinite;
  background: conic-gradient(from 0deg, transparent 0 18%, rgba(240, 199, 117, 0.94), rgba(143, 100, 41, 0.88), transparent 54% 100%);
  content: "";
  inset: -72%;
  opacity: 0.62;
  position: absolute;
  z-index: -2;
}

.booking-form::before {
  background: conic-gradient(
    from 0deg,
    transparent 0 8%,
    rgba(240, 199, 117, 0.16) 12%,
    rgba(255, 236, 176, 0.92) 22%,
    rgba(216, 170, 82, 0.76) 42%,
    rgba(143, 100, 41, 0.28) 60%,
    transparent 76% 100%
  );
  filter: blur(8px);
  inset: -145%;
  opacity: 0.72;
}

.glass-card::after,
.review-card::after,
.booking-form::after {
  background:
    linear-gradient(180deg, rgba(20, 20, 20, 0.92), rgba(7, 7, 7, 0.86)),
    radial-gradient(circle at 22% 100%, rgba(216, 170, 82, 0.12), transparent 42%);
  border-radius: calc(var(--radius) - 2px);
  content: "";
  inset: 2px;
  position: absolute;
  z-index: -1;
}

@keyframes spin {
  to { transform: rotate(1turn); }
}

.glass-card,
.review-card {
  min-height: 260px;
  padding: 32px;
}

.glass-card b {
  color: rgba(216, 170, 82, 0.32);
  display: block;
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 18px;
}

.glass-card p,
.review-card p,
.artist-card p {
  color: var(--muted);
  line-height: 1.7;
}

.artist-card {
  --frame-fill: linear-gradient(180deg, rgba(27, 27, 27, 0.78), rgba(7, 7, 7, 0.76));
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.artist-card img {
  border-radius: var(--frame-inner-radius) var(--frame-inner-radius) 0 0;
  filter: saturate(0.88) contrast(1.08);
  height: clamp(300px, 25vw, 360px);
  object-fit: cover;
  object-position: center 22%;
  width: 100%;
}

.artist-card:nth-child(1) img {
  object-position: 66% 44%;
}

.artist-card:nth-child(2) img,
.artist-card:nth-child(4) img,
.artist-card:nth-child(5) img {
  object-position: center 24%;
}

.artist-card:nth-child(3) img {
  object-position: center 30%;
}

.artist-card > div {
  background: linear-gradient(180deg, rgba(31, 31, 31, 0.7), rgba(9, 9, 9, 0.82));
  border-radius: 0 0 var(--frame-inner-radius) var(--frame-inner-radius);
  padding: 20px 24px 24px;
  position: relative;
  z-index: 1;
}

.artist-card h3 {
  margin-bottom: 6px;
}

.artist-card span {
  display: none;
}

.artist-ig {
  color: var(--gold-soft);
  display: inline-flex;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  position: relative;
  text-decoration: none;
  z-index: 4;
}

.artist-ig:hover {
  color: var(--gold);
  text-shadow: 0 0 16px rgba(216, 170, 82, 0.38);
}

.review-card span {
  color: var(--gold-soft);
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.artist-more {
  border-top: 1px solid rgba(216, 170, 82, 0.14);
  padding-top: 14px;
}

.artist-toggle {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--gold-soft);
  cursor: pointer;
  display: inline-flex;
  font-size: 11px;
  font-weight: 900;
  gap: 10px;
  letter-spacing: 0.12em;
  padding: 0;
  text-transform: uppercase;
}

.artist-toggle:focus {
  outline: 0;
}

.artist-toggle:focus-visible {
  outline: 2px solid rgba(240, 199, 117, 0.54);
  outline-offset: 4px;
}

.artist-toggle b {
  border-bottom: 2px solid currentColor;
  border-right: 2px solid currentColor;
  height: 9px;
  transform: rotate(45deg) translateY(-2px);
  transition: transform 0.25s;
  width: 9px;
}

.artist-more.open .artist-toggle b {
  transform: rotate(225deg) translateY(-2px);
}

.artist-bio {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.35s ease, opacity 0.35s ease, margin 0.35s ease;
}

.artist-more.open .artist-bio {
  grid-template-rows: 1fr;
  margin-top: 14px;
  opacity: 1;
}

.artist-bio > * {
  overflow: hidden;
}

.artist-bio p {
  margin-bottom: 0;
}

.portfolio-grid {
  display: grid;
  gap: 16px;
  grid-auto-flow: dense;
  grid-template-columns: repeat(3, 1fr);
}

.portfolio-carousel {
  margin-top: 8px;
  margin-bottom: 24px;
}

.work-card {
  --frame-fill: linear-gradient(180deg, rgba(10, 10, 10, 0.94), rgba(5, 5, 5, 0.92));
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.image-frame,
.artist-card,
.work-card {
  --frame-border: 3px;
  --frame-inner-radius: calc(var(--radius) - var(--frame-border) - 2px);
  animation: gold-frame-spin 6s linear infinite;
  background:
    var(--frame-fill, linear-gradient(#070707, #070707)) padding-box,
    conic-gradient(
      from var(--gold-frame-angle),
      rgba(61, 37, 9, 0.92) 0%,
      rgba(152, 100, 24, 0.7) 14%,
      rgba(255, 232, 152, 1) 22%,
      rgba(190, 127, 35, 0.92) 30%,
      rgba(55, 32, 8, 0.9) 46%,
      rgba(241, 194, 95, 0.72) 64%,
      rgba(255, 246, 203, 0.96) 69%,
      rgba(126, 78, 18, 0.86) 78%,
      rgba(61, 37, 9, 0.92) 100%
    ) border-box;
  border: var(--frame-border) solid transparent;
  filter: none;
  box-shadow:
    0 28px 76px rgba(0, 0, 0, 0.52),
    0 0 38px rgba(216, 170, 82, 0.22),
    inset 0 1px 0 rgba(255, 246, 205, 0.26),
    inset 0 -10px 18px rgba(54, 31, 6, 0.36);
  transform: translateZ(0);
}

.image-frame::before,
.artist-card::before,
.work-card::before {
  background:
    radial-gradient(ellipse 80% 42% at 18% 0%, rgba(255, 246, 205, 0.1), transparent 68%),
    radial-gradient(ellipse 70% 36% at 82% 100%, rgba(92, 55, 10, 0.14), transparent 70%);
  border-radius: inherit;
  content: "";
  inset: 0;
  opacity: 0.68;
  pointer-events: none;
  position: absolute;
  z-index: 2;
}

.image-frame::after,
.artist-card::after,
.work-card::after {
  border: 1px solid rgba(255, 239, 184, 0.42);
  border-radius: inherit;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -2px 0 rgba(91, 57, 18, 0.78),
    inset 2px 0 0 rgba(255, 226, 151, 0.12),
    inset -2px 0 0 rgba(69, 41, 10, 0.5),
    0 0 18px rgba(216, 170, 82, 0.12);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 3;
}

@keyframes gold-frame-spin {
  to { --gold-frame-angle: 360deg; }
}

.work-card.tall {
  aspect-ratio: auto;
  grid-row: span 2;
  min-height: 650px;
}

.work-card img {
  border-radius: var(--frame-inner-radius);
  filter: saturate(0.88) contrast(1.08);
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  width: 100%;
}

.work-card:hover img {
  transform: scale(1.05);
}

.review-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
}

.booking-section {
  padding-bottom: 80px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.contact-list a,
.contact-list span {
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: var(--silver);
  padding: 16px 18px;
}

.official-contact-alert {
  background:
    linear-gradient(135deg, rgba(240, 199, 117, 0.16), rgba(120, 78, 16, 0.1)),
    rgba(32, 24, 7, 0.62);
  border: 1px solid rgba(240, 199, 117, 0.48);
  border-radius: 16px;
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 247, 198, 0.16);
  color: rgba(255, 244, 202, 0.86);
  margin-top: 16px;
  padding: 16px 18px;
}

.official-contact-alert strong {
  color: var(--gold-soft);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.13em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.official-contact-alert p {
  color: rgba(255, 245, 216, 0.78);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.booking-form {
  display: grid;
  gap: 16px;
  padding: 32px;
  max-width: 100%;
  min-width: 0;
  width: 100%;
}

.booking-form label {
  color: var(--gold-soft);
  display: grid;
  font-size: 11px;
  font-weight: 900;
  gap: 8px;
  letter-spacing: 0.13em;
  min-width: 0;
  text-transform: uppercase;
}

.booking-form input,
.booking-form textarea {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  color: #fff;
  font-size: 16px;
  outline: 0;
  padding: 16px;
  resize: vertical;
  text-transform: none;
  max-width: 100%;
  min-width: 0;
  width: 100%;
}

.booking-form input[type="file"] {
  color: var(--muted);
  cursor: pointer;
  padding: 12px;
  width: 100%;
}

.booking-form input[type="file"]::file-selector-button {
  background:
    linear-gradient(135deg, #fff0b0 0%, #d8aa52 32%, #8f6429 68%, #f0c775 100%);
  border: 0;
  border-radius: 999px;
  color: #080808;
  cursor: pointer;
  font-weight: 900;
  margin-right: 12px;
  padding: 10px 14px;
}

.file-group {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(216, 170, 82, 0.16);
  border-radius: 16px;
  display: grid;
  gap: 14px;
  max-width: 100%;
  min-width: 0;
  padding: 18px;
}

.file-group > span {
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.file-group > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
  overflow-wrap: break-word;
}

.upload-control {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  display: grid;
  gap: 9px;
  min-width: 0;
  padding: 12px;
  position: relative;
}

.upload-title {
  color: var(--gold-soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.booking-form .upload-input {
  block-size: 1px;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  inline-size: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
}

.upload-shell {
  align-items: center;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  display: flex;
  gap: 12px;
  min-height: 54px;
  min-width: 0;
  padding: 10px 12px;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}

.upload-shell span {
  background:
    linear-gradient(135deg, #fff0b0 0%, #d8aa52 32%, #8f6429 68%, #f0c775 100%);
  border-radius: 999px;
  color: #080808;
  flex: 0 0 auto;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  padding: 10px 16px;
  text-transform: none;
}

.upload-shell b {
  color: var(--muted);
  display: block;
  flex: 1 1 auto;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: nowrap;
}

.upload-note {
  color: rgba(232, 232, 232, 0.66);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.45;
  overflow-wrap: break-word;
  text-transform: none;
}

.upload-control:focus-within .upload-shell,
.upload-control:hover .upload-shell {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(240, 199, 117, 0.5);
  box-shadow: 0 0 0 4px rgba(216, 170, 82, 0.1);
}

.booking-form input:focus,
.booking-form textarea:focus {
  border-color: rgba(240, 199, 117, 0.58);
  box-shadow: 0 0 0 4px rgba(216, 170, 82, 0.1);
}

.booking-form button:disabled {
  cursor: wait;
  filter: grayscale(0.18) brightness(0.86);
}

.form-status {
  border: 1px solid rgba(216, 170, 82, 0.18);
  border-radius: 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
  padding: 14px 16px;
}

.form-status[data-state="loading"] {
  color: var(--gold-soft);
}

.form-status[data-state="success"] {
  background: rgba(216, 170, 82, 0.08);
  border-color: rgba(240, 199, 117, 0.32);
  color: #f7d46e;
}

.form-status[data-state="error"] {
  background: rgba(149, 36, 36, 0.18);
  border-color: rgba(240, 99, 99, 0.34);
  color: #ffd2d2;
}

.map-section {
  border-top: 1px solid rgba(216, 170, 82, 0.16);
  height: 420px;
}

.map-section iframe {
  border: 0;
  filter: grayscale(1) invert(0.92) contrast(0.88);
  height: 100%;
  width: 100%;
}

.thanks-page {
  min-height: 100vh;
}

.thanks-main {
  align-items: center;
  display: grid;
  min-height: 100vh;
  padding: 130px 24px 70px;
}

.thanks-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(8, 8, 8, 0.86);
  border: 1px solid rgba(216, 170, 82, 0.32);
  border-radius: 24px;
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  margin: 0 auto;
  max-width: 760px;
  padding: clamp(34px, 5vw, 64px);
  text-align: center;
}

.thanks-card h1 {
  font-size: clamp(54px, 10vw, 118px);
  line-height: 0.9;
  margin: 14px 0 20px;
  text-transform: uppercase;
}

.thanks-card p {
  color: var(--silver);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
  margin-inline: auto;
  max-width: 640px;
}

.thanks-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 32px;
}

.footer {
  align-items: center;
  background: rgba(5, 5, 5, 0.92);
  border-top: 1px solid rgba(216, 170, 82, 0.16);
  display: flex;
  gap: 22px;
  justify-content: space-between;
  padding: 28px 34px;
}

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

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

.footer div {
  display: flex;
  gap: 18px;
}

.footer a {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

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

  .hero-panel {
    max-width: 520px;
  }

  .feature-grid,
  .review-grid,
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .artist-track,
  .review-track,
  .portfolio-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }

  .artist-carousel {
    padding-inline: 58px;
  }

  .artist-carousel .carousel-btn {
    top: 154px;
  }

  .artist-carousel .carousel-prev {
    left: 6px;
  }

  .artist-carousel .carousel-next {
    right: 6px;
  }

  .section-row {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 14px 18px;
  }

  .brand img {
    height: 32px;
    width: 32px;
  }

  .brand span {
    font-size: 12px;
  }

  .nav > .btn {
    min-height: 40px;
    padding: 0 16px;
  }

  .hero {
    padding: 118px 20px 64px;
  }

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

  h1 {
    font-size: clamp(44px, 15vw, 72px);
  }

  h1 span {
    animation: none;
    background:
      linear-gradient(
        180deg,
        #fff0aa 0%,
        #f3cf6d 22%,
        #b67a24 50%,
        #ffeeb1 66%,
        #9a641b 100%
      );
    background-clip: text;
    background-size: 100% 100%;
    filter: none;
    text-shadow:
      0 0 18px rgba(216, 170, 82, 0.3),
      0 0 42px rgba(216, 170, 82, 0.18);
    -webkit-background-clip: text;
    -webkit-text-stroke: 0;
  }

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

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

  .section {
    padding: 72px 18px;
  }

  .image-stack,
  .feature-grid,
  .review-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .artist-track,
  .review-track,
  .portfolio-track {
    grid-auto-columns: 88%;
  }

  .artist-carousel {
    padding-inline: 46px;
  }

  .artist-carousel .carousel-btn {
    top: 152px;
  }

  .artist-carousel .carousel-prev {
    left: 0;
  }

  .artist-carousel .carousel-next {
    right: 0;
  }

  .portfolio-track {
    padding-bottom: 28px;
  }

  .portfolio-carousel .work-card {
    aspect-ratio: 3 / 4;
    min-height: 410px;
  }

  .carousel-prev {
    left: 4px;
  }

  .carousel-next {
    right: 4px;
  }

  .image-frame,
  .image-frame:nth-child(2) {
    height: 300px;
    margin-top: 0;
  }

  .work-card,
  .work-card.tall {
    min-height: 360px;
  }

  .booking-form {
    padding: 24px;
  }
}

@media (max-width: 980px) {
  .artist-carousel,
  .review-carousel,
  .portfolio-carousel {
    display: grid;
    gap: 16px;
    grid-template-areas:
      "track track"
      "prev next";
    grid-template-columns: 1fr 1fr;
    padding-inline: 0;
  }

  .artist-track,
  .review-track,
  .portfolio-track {
    align-items: stretch;
    display: flex !important;
    flex-wrap: nowrap;
    grid-auto-columns: unset;
    grid-auto-flow: unset;
    grid-area: track;
    gap: 16px;
    inline-size: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    overflow-y: visible;
    padding: 4px 0 10px;
    width: 100%;
  }

  .artist-track > [data-carousel-slide],
  .review-track > [data-carousel-slide],
  .portfolio-track > [data-carousel-slide] {
    flex: 0 0 100% !important;
    inline-size: 100%;
    max-width: 100%;
    min-width: 100%;
    scroll-snap-align: center;
    width: 100%;
  }

  .carousel-btn,
  .artist-carousel .carousel-btn {
    height: 58px;
    left: auto;
    margin-top: 0;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 58px;
  }

  .carousel-btn:hover,
  .artist-carousel .carousel-btn:hover {
    transform: scale(1.05);
  }

  .carousel-btn:active,
  .artist-carousel .carousel-btn:active {
    transform: scale(0.97);
  }

  .carousel-prev,
  .artist-carousel .carousel-prev {
    grid-area: prev;
    justify-self: end;
  }

  .carousel-next,
  .artist-carousel .carousel-next {
    grid-area: next;
    justify-self: start;
  }
}

@media (max-width: 640px) {
  html {
    max-width: 100%;
    overflow-x: hidden;
  }

  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .nav {
    gap: 14px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

  .brand span {
    font-size: 11px;
    line-height: 1.05;
  }

  .nav > .btn {
    flex: 0 0 auto;
    min-width: 132px;
    padding: 0 18px;
    width: auto;
  }

  .section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .artist-carousel,
  .review-carousel,
  .portfolio-carousel {
    gap: 14px;
    max-width: 100%;
    min-width: 0;
  }

  .artist-track,
  .review-track,
  .portfolio-track {
    gap: 14px;
    padding-left: 0;
    padding-right: 0;
  }

  .artist-track > [data-carousel-slide],
  .review-track > [data-carousel-slide],
  .portfolio-track > [data-carousel-slide] {
    flex-basis: 100% !important;
    max-width: 100%;
    min-width: 100%;
  }

  .booking-grid {
    gap: 34px;
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }

  .max {
    width: 100%;
  }

  .booking-copy,
  .booking-form {
    min-width: 0;
    width: 100%;
  }

  .booking-form {
    border-radius: 18px;
    max-width: calc(100vw - 32px);
    padding: 20px 16px;
  }

  .booking-form::before {
    inset: -220%;
  }

  .booking-form input,
  .booking-form textarea {
    border-radius: 13px;
    line-height: 1.35;
    overflow-wrap: anywhere;
    padding: 15px 14px;
    word-break: normal;
  }

  .booking-form label {
    max-width: 100%;
    overflow: hidden;
  }

  .file-group {
    border-radius: 14px;
    overflow: hidden;
    padding: 16px 14px;
  }

  .file-group > p,
  .contact-list a,
  .contact-list span,
  .official-contact-alert p {
    overflow-wrap: anywhere;
  }

  .booking-form input[type="file"] {
    font-size: 14px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .booking-form input[type="file"]::file-selector-button {
    margin-right: 8px;
    padding: 10px 12px;
  }

  .booking-form .upload-input {
    block-size: 1px;
    inline-size: 1px;
    padding: 0;
  }

  .upload-shell {
    align-items: stretch;
    flex-direction: column;
  }

  .upload-shell span {
    text-align: center;
    width: 100%;
  }

  .upload-shell b {
    overflow-wrap: anywhere;
    text-overflow: clip;
    white-space: normal;
  }
}

html,
body,
a,
button,
.btn,
.carousel-btn,
.artist-toggle,
[role="button"] {
  cursor: url("assets/cursor-gold.svg") 8 6, auto;
}

input,
textarea {
  cursor: text;
}
