@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400;1,600;1,700&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300;1,9..40,400&display=swap");

/* Original Manus fonts restored: Cormorant Garamond for display headings, DM Sans for body text. */
/* Colour values restored from the original Manus export. */
:root {
    --bg: oklch(10% .008 60);
    --bg-deep: oklch(0.08 0.008 60);
    --panel: oklch(14% .008 60);
    --text: oklch(96% .012 80);
    --muted: oklch(60% .01 70);
    --soft: oklch(50% .008 70);
    --copper: oklch(72% .12 55);
    --copper-light: oklch(82% .14 60);
    --copper-dim: oklch(55% .09 55);
    --border: oklch(100% 0 0 / .08);
    --input-bg: oklch(14% .008 60);
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 300;
    line-height: 1.7;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 10px; background: var(--text); color: var(--bg); padding: .5rem 1rem; z-index: 999; }
.skip-link:focus { left: 10px; }

.site-header {
    position: fixed;
    z-index: 50;
    inset: 0 0 auto 0;
    background: oklch(0.10 0.008 60 / 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 18px 0; }
.brand, .footer-brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark {
    width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--copper); color: var(--copper); font-family: var(--font-display); font-style: italic; font-weight: 700; font-size: 1.1rem;
}
.brand-name { font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 500; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { text-decoration: none; text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: var(--muted); transition: color .2s; }
.main-nav a:hover { color: var(--text); }

.button {
    display: inline-flex; align-items: center; justify-content: center;
    border: 1px solid var(--copper); color: var(--text); background: transparent;
    padding: .85rem 1.25rem; text-decoration: none; text-transform: uppercase; letter-spacing: .12em;
    font-size: .75rem; cursor: pointer; transition: background .2s, color .2s;
}
.button:hover { background: var(--copper); color: oklch(10% .008 60); }
.button-small { padding: .55rem .9rem; color: var(--text) !important; }

.hero-section { min-height: 100vh; display: grid; grid-template-columns: 1fr 1fr; background: var(--bg-deep); position: relative; overflow: hidden; }
.hero-copy { padding: 130px clamp(24px, 6vw, 96px) 80px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 2; }
.eyebrow, .section-label { margin: 0 0 1rem; color: var(--copper); text-transform: uppercase; letter-spacing: .18em; font-size: .75rem; font-weight: 400; }
.hero-eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.2rem; white-space: nowrap; }
.eyebrow-line { display: inline-block; width: clamp(48px, 7vw, 96px); height: 1px; background: var(--copper); transform: translateY(-1px); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); font-weight: 300; line-height: .95; margin: 0; }
h1 { font-size: clamp(4rem, 13vw, 10rem); letter-spacing: -.04em; }
.hero-name { display: flex; flex-direction: column; align-items: flex-start; gap: .08em; line-height: .86; margin: 0 0 2rem; }
.hero-first-name, .hero-last-name { display: block; font-family: var(--font-display); font-weight: 300; letter-spacing: -.055em; }
.hero-first-name { color: var(--text); font-size: clamp(5.1rem, 14vw, 10.6rem); }
.hero-last-name { color: var(--copper); font-style: italic; font-size: clamp(5.3rem, 14.5vw, 11rem); margin-top: .18em; }
h2 { font-size: clamp(2.3rem, 5vw, 4.5rem); letter-spacing: -.03em; margin-bottom: 1.5rem; }
em { color: var(--copper); font-style: italic; }
.accent-line { width: 80px; height: 1px; background: var(--copper); margin: 2rem 0; }
.hero-title-line { margin: .75rem 0 2.2rem; width: 80px; }
.hero-intro { color: oklch(0.70 0.010 70); max-width: 28rem; font-size: 1rem; }
.hero-image-wrap { position: relative; min-height: 100%; }
.hero-image { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero-image-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg-deep), transparent 35%); }
.scroll-cue { position: absolute; left: 50%; bottom: 28px; transform: translateX(-50%); text-decoration: none; color: var(--soft); text-transform: uppercase; letter-spacing: .16em; font-size: .7rem; }

.section { padding: 110px 0; border-top: 1px solid var(--border); }
.section-number { display: block; color: var(--soft); font-size: .8rem; letter-spacing: .16em; margin-bottom: 1.5rem; }
.two-column, .performance-grid, .studio-grid, .contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(36px, 7vw, 96px); align-items: start; }
.prose p { margin: 0 0 1.35rem; color: oklch(0.65 0.010 70); font-size: 1.0625rem; }
.large-copy { color: oklch(0.65 0.010 70); font-size: 1.0625rem; max-width: 36rem; }

.section-about { background: oklch(0.10 0.008 60); }
.section-performance { background: oklch(0.12 0.008 60); }
.video-card { aspect-ratio: 16 / 9; border: 1px solid var(--border); background: oklch(0.08 0.006 60); box-shadow: 0 30px 80px rgba(0,0,0,.25); }
.video-card iframe { width: 100%; height: 100%; border: 0; display: block; }
.section-studio { background: var(--bg-deep); }
.studio-background-card {
    position: relative;
    min-height: 560px;
    display: flex;
    align-items: center;
    overflow: hidden;
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
    border: 1px solid var(--border);
    background-image:
        linear-gradient(90deg, oklch(0.08 0.008 60 / .94) 0%, oklch(0.08 0.008 60 / .84) 42%, oklch(0.08 0.008 60 / .48) 72%, oklch(0.08 0.008 60 / .34) 100%),
        var(--studio-bg);
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .25), inset 0 0 100px rgba(0, 0, 0, .35);
}
.studio-background-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(circle at 72% 45%, transparent 0%, oklch(0.08 0.008 60 / .24) 72%);
}
.studio-content-panel {
    position: relative;
    z-index: 1;
    width: min(620px, calc(100% - 40px));
    margin: 0;
    padding: clamp(64px, 8vw, 110px) clamp(24px, 5vw, 72px);
}
blockquote { border-left: 2px solid var(--copper); margin: 1.5rem 0; padding-left: 1rem; color: var(--muted); font-style: italic; }
.section-contact { background: oklch(0.10 0.008 60); }
.contact-note { color: var(--soft); font-size: .88rem; max-width: 30rem; }
.contact-form { display: grid; gap: 1rem; background: oklch(1 0 0 / 6%); border: 1px solid var(--border); padding: clamp(20px, 4vw, 36px); }
.contact-form label span { display: block; color: var(--copper); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; margin-bottom: .4rem; }
input, select, textarea { width: 100%; background: oklch(0.07 0.006 60); border: 1px solid var(--border); color: var(--text); padding: .85rem; font: inherit; }
input:focus, select:focus, textarea:focus { outline: 1px solid var(--copper); }

.site-footer { background: oklch(0.07 0.006 60); border-top: 1px solid var(--border); padding: 48px 0 24px; color: var(--soft); }
.footer-grid { display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 42px; }
.footer-heading { color: var(--copper); text-transform: uppercase; letter-spacing: .16em; font-size: .72rem; margin: 0 0 .8rem; }
.site-footer a { display: block; text-decoration: none; color: var(--soft); margin: .3rem 0; }
.site-footer a:hover { color: var(--copper); }
.copyright { border-top: 1px solid var(--border); margin-top: 40px; padding-top: 18px; font-size: .82rem; }

@media (max-width: 820px) {
    .main-nav { gap: 14px; }
    .main-nav a:not(.button) { display: none; }
    .hero-section, .two-column, .performance-grid, .studio-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
    .hero-section { min-height: auto; }
    .hero-copy { min-height: 86vh; padding-top: 120px; }
    .hero-image-wrap { position: absolute; inset: 0; opacity: .28; }
    .hero-image-wrap::after { background: linear-gradient(to top, var(--bg-deep) 10%, transparent 70%); }
    .section { padding: 80px 0; }
    .brand-name { display: none; }
}

/* Restored closer to the original Manus layout/content. */
.performance-video-wrap {
    max-width: 896px;
    margin: 0 auto;
}

.studio-details {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.studio-details div,
.contact-info-card {
    border: 1px solid var(--border);
    background: oklch(1 0 0 / 6%);
    padding: 1.25rem;
}

.studio-details span,
.contact-info-row span {
    display: block;
    color: var(--copper);
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .72rem;
    margin-bottom: .35rem;
}

.studio-details strong,
.contact-info-row strong {
    color: var(--text);
    font-family: var(--font-body);
    font-weight: 300;
    font-size: .95rem;
}

.section-contact .contact-grid {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: clamp(28px, 5vw, 64px);
}

.section-contact .contact-grid > div:first-child {
    grid-column: 1 / -1;
    margin-bottom: .5rem;
}

.contact-form-column {
    grid-column: span 7;
}

.contact-info-card {
    grid-column: span 5;
    align-self: start;
}

.contact-info-card h3 {
    font-size: 1.375rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--text);
}

.contact-info-row {
    display: flex;
    gap: 1rem;
    margin-top: .9rem;
}

.contact-info-row span {
    width: 5rem;
    flex: 0 0 5rem;
    margin: 0;
}

@media (max-width: 820px) {
    .section-contact .contact-grid,
    .contact-form-column,
    .contact-info-card {
        display: block;
        grid-column: auto;
    }

    .contact-info-card { margin-top: 1.5rem; }
    .studio-details { grid-template-columns: 1fr; }
}


@media (max-width: 700px) {
    .hero-eyebrow { gap: .8rem; letter-spacing: .16em; }
    .eyebrow-line { width: 52px; }
    .hero-name { line-height: .88; gap: .08em; margin-bottom: 1.65rem; }
    .hero-first-name { font-size: clamp(4.2rem, 22vw, 6.8rem); }
    .hero-last-name { font-size: clamp(4.4rem, 23vw, 7rem); }
}


@media (max-width: 820px) {
    .studio-background-card {
        min-height: auto;
        background-image:
            linear-gradient(180deg, oklch(0.08 0.008 60 / .94) 0%, oklch(0.08 0.008 60 / .88) 55%, oklch(0.08 0.008 60 / .78) 100%),
            var(--studio-bg);
        background-position: center;
    }

    .studio-content-panel {
        width: min(100% - 40px, 620px);
        margin: 0 auto;
        padding: clamp(64px, 14vw, 96px) 0;
    }
}

/* Socials section */
.section-socials {
    background: oklch(0.12 0.008 60);
}

.section-heading-row {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(36px, 7vw, 96px);
    align-items: end;
    margin-bottom: 3rem;
}

.socials-intro {
    margin: 0 0 .35rem;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: start;
}

.instagram-embed-card {
    border: 1px solid var(--border);
    background: oklch(1 0 0 / 6%);
    padding: .75rem;
    min-width: 0;
}

.instagram-embed-card .instagram-media {
    min-width: 0 !important;
    width: 100% !important;
    max-width: 540px !important;
    margin: 0 auto !important;
}

@media (max-width: 1100px) {
    .instagram-grid {
        grid-template-columns: 1fr;
        max-width: 620px;
        margin: 0 auto;
    }
}

@media (max-width: 820px) {
    .section-heading-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Email enquiry button contact section */
.email-enquiry-card {
    display: grid;
    gap: 1.25rem;
    background: oklch(1 0 0 / 6%);
    border: 1px solid var(--border);
    padding: clamp(20px, 4vw, 36px);
}

.email-button {
    width: fit-content;
}

.email-fallback {
    color: var(--soft);
    font-size: .92rem;
    margin: 0;
}

.email-fallback a {
    color: var(--copper);
    text-decoration: none;
}

.email-fallback a:hover {
    text-decoration: underline;
}

@media (max-width: 700px) {
    .email-button {
        width: 100%;
    }
}

/* Refined selected performances layout */
.performance-heading-row {
    align-items: end;
    margin-bottom: 3rem;
}

.performance-intro {
    margin: 0 0 .35rem;
}

.performance-video-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.performance-video-featured {
    grid-column: 1 / -1;
}

.performance-video-featured .video-card {
    max-width: 920px;
    margin: 0 auto;
}

.performance-video-item {
    min-width: 0;
}

.performance-video-grid .video-card {
    border-color: oklch(100% 0 0 / .10);
    background: oklch(0.08 0.006 60);
}

@media (max-width: 820px) {
    .performance-video-grid {
        grid-template-columns: 1fr;
    }
}

/* Final refinement: Studio returns to the same contained flow as the other sections. */
.studio-contained {
    align-items: start;
}

.studio-prose .button {
    margin-top: .5rem;
}

/* Final refinement: two selected performance videos, evenly weighted. */
.performance-video-grid-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 1120px;
    margin: 0 auto;
}

.performance-video-grid-two .performance-video-item {
    grid-column: auto;
}

.performance-video-grid-two .video-card {
    box-shadow: 0 24px 70px rgba(0,0,0,.22);
}

@media (max-width: 820px) {
    .performance-video-grid-two {
        grid-template-columns: 1fr;
    }
}


/* === Final spacing and section refinements === */

.site-section {
  padding-top: 112px;
  padding-bottom: 112px;
}

.section-inner {
  width: min(1120px, calc(100% - 48px));
  margin-left: auto;
  margin-right: auto;
}

.narrow-content {
  max-width: 760px;
}

.section-number {
  margin-bottom: 24px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.65;
}

.section-title {
  margin-top: 0;
  margin-bottom: 34px;
}

.section-copy,
.contact-copy {
  max-width: 680px;
}

.section-copy p,
.contact-copy p {
  margin-top: 0;
  margin-bottom: 22px;
  line-height: 1.72;
}

.section-copy p:last-child,
.contact-copy p:last-child {
  margin-bottom: 0;
}

/* === Performance video layout === */

.performance-videos {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  margin-top: 48px;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* === Contact refinement === */

.contact-section {
  padding-bottom: 128px;
}

.contact-copy {
  margin-bottom: 38px;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.contact-email:hover {
  opacity: 0.72;
  transform: translateX(3px);
}

/* === Mobile spacing === */

@media (max-width: 768px) {
  .site-section {
    padding-top: 82px;
    padding-bottom: 82px;
  }

  .section-inner {
    width: min(100% - 32px, 1120px);
  }

  .section-title {
    margin-bottom: 26px;
  }

  .performance-videos {
    gap: 30px;
    margin-top: 36px;
  }

  .contact-section {
    padding-bottom: 96px;
  }
}