:root {
  --black: #08090b;
  --charcoal: #101217;
  --ink: #171a20;
  --white: #f7f3ec;
  --soft: #d9d3c8;
  --muted: #9d9a94;
  --line: rgba(247, 243, 236, 0.16);
  --line-dark: rgba(23, 26, 32, 0.13);
  --blue: #9ccfff;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px clamp(20px, 5vw, 64px);
  transition: background 300ms ease, border 300ms ease, padding 300ms ease;
}
.site-header.scrolled {
  background: rgba(8, 9, 11, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  padding-block: 16px;
}
.brand img {
    width: 82px;
    height: auto;
    display: block;
    filter: drop-shadow(0 0 3px rgba(255,255,255,.12));
    transition:
        transform .35s ease,
        filter .35s ease;
}

.brand:hover img {
    transform: scale(1.08);
    filter:
        drop-shadow(0 0 8px rgba(255,255,255,.35))
        drop-shadow(0 0 18px rgba(255,255,255,.18));
}
.site-nav { display: flex; gap: clamp(18px, 2.2vw, 34px); align-items: center; }
.site-nav a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247, 243, 236, 0.78);
  transition: color 180ms ease;
}
.site-nav a:hover { color: var(--white); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 140px 22px 72px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/concert-hero.jpeg') center / cover no-repeat;
  transform: scale(1.04);
  animation: focusIn 1800ms ease forwards;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 28%, rgba(156,207,255,.18), transparent 30%),
    linear-gradient(180deg, rgba(8,9,11,.54), rgba(8,9,11,.72) 48%, rgba(8,9,11,.94));
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(980px, 100%);
  text-align: center;
  padding-top: 40px;
}
.eyebrow, .section-kicker {
  margin: 0 0 22px;
  color: var(--blue);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
}
h1, h2, h3 { margin: 0; font-weight: 500; }
h1 {
  font-family: var(--font-serif);
  font-size: clamp(60px, 11vw, 132px);
  line-height: .86;
  letter-spacing: -0.055em;
}
.hero-copy { width: min(720px, 100%); margin: 34px auto 0; }
.hero-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.05;
  margin-bottom: 18px;
}
.hero-copy p { margin: 0 auto 12px; color: rgba(247, 243, 236, 0.82); font-size: clamp(15px, 1.5vw, 18px); }
.hero-copy strong { color: var(--white); font-weight: 500; }
.button-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 13px;
  letter-spacing: .04em;
  transition:
    transform 240ms ease,
    background-color 240ms ease,
    border-color 240ms ease,
    color 240ms ease,
    box-shadow 240ms ease;
}
#home .button-primary,
#home .button-secondary {
    color: rgba(255, 255, 255, 0.94);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.48);
    box-shadow:
        0 8px 22px rgba(0, 0, 0, 0.18),
        0 0 16px rgba(255, 255, 255, 0.06);
}
.button:hover {
    transform: translateY(-4px) scale(1.02);
}

#home .button-primary:hover,
#home .button-secondary:hover {
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.92);
   box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    0 0 30px rgba(255, 255, 255, 0.22);
}


.button-primary.dark:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.75);
    box-shadow: 0 10px 24px rgba(255,255,255,.18);
}

.button-secondary.dark:hover {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.75);
    box-shadow: 0 10px 24px rgba(255,255,255,.18);
}


section { padding: clamp(82px, 12vw, 160px) clamp(22px, 6vw, 80px); }
.section-light { background: var(--white); color: var(--ink); }
.section-dark { background: var(--black); color: var(--white); }
.philosophy {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.philosophy h2, .section-heading h2, .conversation h2 {
  font-family: var(--font-serif);
  max-width: 18ch;
  font-size: clamp(42px, 7vw, 86px);
  line-height: .95;
  letter-spacing: -0.045em;
}
.philosophy-quote {
    grid-column: 1 / -1;
    max-width: 900px;
    width: 100%;
    margin: 56px auto 0;
    padding: 0;
    text-align: left;
}

.philosophy-quote::before {
    content: none;
}

.philosophy-quote blockquote {
    max-width: 820px;
    margin: 0 0 18px;
    color: #b59655;
    font-family: var(--font-serif);
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.2;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.025em;
position:relative;
display:inline-block;
overflow:hidden;
}
.philosophy-quote blockquote::after{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(
        110deg,
        transparent 45%,
        rgba(255,255,255,.65) 50%,
        transparent 55%
    );

    transform:translateX(-160%);

    animation:quoteSweep 15s ease-in-out infinite;

    pointer-events:none;
@keyframes quoteSweep{

    0%,92%,100%{
        transform:translateX(-160%);
        opacity:0;
    }

    94%{
        opacity:1;
    }

    100%{
        transform:translateX(180%);
        opacity:0;
    }

}
}
.quote-translation {
    max-width: 720px;
    margin: 0 0 14px;
    color: rgba(20, 20, 20, 0.66);
    font-family: inherit;
    font-size: 14px;
    line-height: 1.7;
    font-style: normal;
}

.quote-credit {
    display: block;
    margin-top: 12px;
    color: rgba(20, 20, 20, 0.46);
    font-family: inherit;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.philosophy-closing {
    max-width: 700px;
    margin: 52px 0 12px;
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: clamp(26px, 3vw, 40px);
    line-height: 1.2;
    font-style: normal;
    font-weight: 400;
    letter-spacing: -0.025em;
}

.philosophy-whisper {
    margin: 0;
    color: #9a7c3f;
    font-family: inherit;
    font-size: 11px;
    line-height: 1.5;
    font-style: normal;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.gold-divider {
    position: relative;
    overflow: hidden;
    width: 76px;
    height: 1px;
    margin: 30px 0 0;
    background: rgba(181,150,85,.35);
}

.lead {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.1;
  margin: 28px 0;
}
.philosophy p:not(.lead), .section-heading p, .conversation p {
  max-width: 650px;
  color: rgba(23,26,32,.7);
  font-size: 17px;
}
.image-card {
  margin: 0;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 80px rgba(8,9,11,.18);
}

.image-card-framed {
  padding: 18px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(23,26,32,.1);
}

.image-card img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 22px;
}

.image-card-framed img {
  object-fit: contain;
  background: var(--white);
}
.section-heading { max-width: 850px; margin: 0 auto 56px; text-align: center; }
.section-dark .section-heading p { color: rgba(247, 243, 236, .68); margin-inline: auto; }

.artist-preview, .journal-card {
  width: min(980px, 100%);
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 32px;
  padding: clamp(28px, 5vw, 56px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  background: linear-gradient(135deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
}
.artist-preview span, .journal-card span, .service-card span {
  color: var(--blue);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.artist-preview h3, .journal-card h3, .service-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1;
  margin: 12px 0;
}
.artist-preview p, .journal-card p { color: rgba(247,243,236,.7); margin: 0; }
.service-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.service-card {
  border: 1px solid var(--line-dark);
  border-radius: 28px;
  padding: 28px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255,255,255,.44);
}
.service-card h3 { font-size: 34px; }
.service-card p { color: rgba(23,26,32,.68); margin: 18px 0 0; }
.conversation { text-align: center; }
.conversation-inner { max-width: 780px; margin: 0 auto; }
.conversation p { margin: 24px auto 0; }
.center { justify-content: center; }

.site-footer {
  padding: 56px clamp(22px, 6vw, 80px);
  background: var(--black);
  border-top: 1px solid var(--line);
  color: rgba(247,243,236,.7);
  display: grid;
  gap: 24px;
  text-align: center;
  place-items: center;
}
.site-footer img {
    width: 90px;
    max-width: 90px;
    opacity: 1;
    margin: 0 auto 22px;
    filter: none;

    transition:
        transform 0.35s ease,
        filter 0.35s ease;
}

.site-footer img:hover {
    transform: scale(1.08);
    filter:
        drop-shadow(0 0 8px rgba(255,255,255,.35))
        drop-shadow(0 0 18px rgba(255,255,255,.18));
}

.footer-line {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 24px;
    line-height: 1.5;
    margin: 8px 0 4px;
}

.footer-subline {
    color: rgba(247,243,236,.75);
    font-family: var(--font-serif);
    font-size: 20px;
    margin: 0 0 20px;
}
.site-footer nav { display: flex; gap: 22px; }
.site-footer a { font-size: 13px; color: rgba(247,243,236,.72); }
.site-footer small { font-size: 12px; color: rgba(247,243,236,.48); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 900ms ease, transform 900ms ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
@keyframes focusIn { from { filter: blur(6px); transform: scale(1.08); } to { filter: blur(0); transform: scale(1.04); } }

@media (max-width: 900px) {
  .menu-toggle {
    display: inline-grid;
    place-items: center;
    gap: 6px;
    background: transparent;
    border: 0;
    padding: 10px;
    z-index: 22;
  }
  .menu-toggle span { width: 24px; height: 1px; background: var(--white); display: block; }
  .site-nav {
    position: fixed;
    inset: 0;
    background: rgba(8,9,11,.96);
    display: grid;
    place-content: center;
    gap: 26px;
    transform: translateY(-100%);
    transition: transform 300ms ease;
  }
  .site-nav.open { transform: translateY(0); }
  .site-nav a { font-size: 15px; text-align: center; }
  .philosophy-grid, .artist-preview { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .brand img { width: 118px; }
  h1 { font-size: clamp(54px, 18vw, 76px); }
  .hero-copy { margin-top: 26px; }
  .button { width: 100%; }
  .button-row { width: 100%; }
  .service-grid { grid-template-columns: 1fr; }
  .artist-preview, .journal-card { grid-template-columns: 1fr; border-radius: 24px; }
}

/* Version 2.1 refinements */
.site-nav a { position: relative; }
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  opacity: .65;
  transition: transform 240ms ease;
}
.site-nav a:hover::after { transform: scaleX(1); }
.button:hover {
  transform: translateY(-1px);
  filter: brightness(1.06);
}
.image-card {
  padding: clamp(10px, 1.4vw, 18px);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(23,26,32,.12);
}
.image-card img {
  width: 100%;
  aspect-ratio: auto;
  max-height: 620px;
  object-fit: contain;
  border-radius: 18px;
  background: #0b0c0f;
}
.artist-preview-empty {
  grid-template-columns: 1fr;
  text-align: center;
  width: min(760px, 100%);
}
.footer-brand { display: grid; justify-items: center; gap: 10px; }
.site-footer .footer-mark {
  width: 52px;
  opacity: .88;
  margin: 0 auto 4px;
}
.site-footer .footer-wordmark {
  width: 142px;
  opacity: .96;
  margin: 0 auto 4px;
}
.legal-page {
  background: var(--white);
  color: var(--ink);
  min-height: 100vh;
}
.legal-header {
  padding: 28px clamp(22px, 6vw, 80px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--black);
  color: var(--white);
  border-bottom: 1px solid var(--line);
}
.legal-header img { width: 138px; }
.legal-header a { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: rgba(247,243,236,.72); }
.legal-main {
  padding: clamp(78px, 10vw, 130px) clamp(22px, 6vw, 80px);
}
.legal-wrap { max-width: 900px; margin: 0 auto; }
.legal-wrap h1 {
  color: var(--ink);
  font-family: var(--font-serif);
  font-size: clamp(58px, 10vw, 112px);
  letter-spacing: -.06em;
  line-height: .86;
  margin-bottom: 28px;
}
.legal-intro {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  margin: 0 0 52px;
  color: rgba(23,26,32,.78);
}
.legal-section {
  border-top: 1px solid var(--line-dark);
  padding: 30px 0;
}
.legal-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -.03em;
  margin-bottom: 12px;
}
.legal-section p, .legal-section li { color: rgba(23,26,32,.72); }
.legal-section ul { padding-left: 20px; }
.legal-note {
  color: rgba(23,26,32,.55);
  font-style: italic;
}
.legal-cta {
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid var(--line-dark);
  text-align: center;
}
.legal-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: -.04em;
}
@media (max-width: 620px) {
  .legal-header { align-items: flex-start; gap: 18px; flex-direction: column; }
  .site-footer .footer-mark { width: 44px; }
  
}
@media (max-width: 760px) {}
    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-copy,
    .philosophy-image,
    .philosophy-quote {
        grid-column: 1;
        grid-row: auto;
    }
