:root {
  --pink: #ff91c2;
  --night: #030305;
  --gl-bg: color-mix(in srgb, var(--pink) 9%, white);
  --gl-ink: color-mix(in srgb, var(--pink) 13%, var(--night));
  --gl-accent: color-mix(in srgb, var(--pink) 53%, var(--night));
  --gl-surface: var(--pink);
  --gl-white: #fff;
  --gl-font-display: 'Cormorant', ui-serif, Georgia, 'Times New Roman', serif;
  --gl-font-body: 'General Sans', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --paper: color-mix(in srgb, var(--gl-bg) 34%, white);
  --paper-deep: color-mix(in srgb, var(--gl-bg) 78%, white);
  --ink: color-mix(in srgb, var(--gl-ink) 76%, #0b0b0e);
  --muted: color-mix(in srgb, var(--ink) 72%, var(--paper));
  --line: color-mix(in srgb, var(--ink) 17%, var(--paper));
  --gl-ease: cubic-bezier(.22, 1, .36, 1);
  --content-width: 1280px;
  --gutter: clamp(1.25rem, 4vw, 4rem);
  --section-space: clamp(5rem, 8vw, 8rem);
  --image-radius: 1rem;
}

@theme inline {
  --font-sans: var(--gl-font-body);
  --font-serif: var(--gl-font-display);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 2rem; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--gl-font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p, figure, dl, dd { margin: 0; }
h1, h2, h3 { font-weight: 500; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
a, button, summary { -webkit-tap-highlight-color: transparent; touch-action: manipulation; }
img { display: block; max-width: 100%; }
::selection { background: var(--ink); color: var(--paper); }
:focus-visible { outline: 2px solid var(--gl-accent); outline-offset: 5px; }
main:focus, section:focus, footer:focus { outline: none; }
.page-width { width: min(calc(100% - var(--gutter) * 2), var(--content-width)); margin-inline: auto; }
.section-space { padding-block: var(--section-space); }
.eyebrow { font-size: .75rem; font-weight: 500; line-height: 1.5; letter-spacing: .14em; text-transform: uppercase; }
h2 { margin-top: 1.25rem; font-size: clamp(2.5rem, 4.6vw, 4rem); line-height: 1.08; letter-spacing: -.055em; }
h2 em { font-family: var(--gl-font-display); font-size: 1.12em; font-weight: 500; color: var(--gl-accent); }
.section-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3rem; }
.section-lead { max-width: 22rem; color: var(--muted); line-height: 1.75; }
.section-heading > .text-link { flex-shrink: 0; }
.skip-link { position: fixed; z-index: 100; top: .75rem; left: .75rem; padding: .75rem 1rem; border-radius: .5rem; background: var(--paper); color: var(--ink); transform: translateY(-180%); }
.skip-link:focus { transform: none; }

.arrow { position: relative; display: inline-block; width: 18px; height: 18px; flex: 0 0 18px; transition: translate .25s var(--gl-ease); }
.arrow::before { content: ''; position: absolute; height: 1.5px; width: 20px; left: -1px; top: 8px; background: currentColor; transform: rotate(-45deg); }
.arrow::after { content: ''; position: absolute; top: 1px; right: 1px; width: 11px; height: 11px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; }
.arrow[data-direction='right'] { transform: rotate(45deg); }
.arrow[data-direction='down'] { transform: rotate(135deg); }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 2rem; min-height: 56px; padding: .875rem 1.5rem; border: 1px solid transparent; border-radius: 999px; font-size: .9375rem; font-weight: 500; line-height: 1.4; transition: background .2s, border-color .2s; }
.button-primary { background: var(--pink); color: var(--night); }
.button-secondary { border-color: rgb(255 255 255 / .38); color: white; }
.text-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 1.25rem; min-height: 44px; padding-block: .5rem; border-bottom: 1px solid var(--line); font-size: .875rem; font-weight: 500; line-height: 1.5; }

/* One shared wordmark and a native, keyboard-friendly mobile disclosure. */
.site-header { position: absolute; z-index: 20; inset: 0 0 auto; color: white; background: rgb(3 3 5 / .6); }
.header-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 2rem; min-height: 96px; border-bottom: 1px solid rgb(255 255 255 / .18); }
.wordmark { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; min-height: 48px; flex-shrink: 0; }
.wordmark > span { font-size: 1.875rem; font-weight: 500; line-height: 1; letter-spacing: -.035em; }
.wordmark small { margin-top: .375rem; padding-left: .35em; font-size: .5625rem; font-weight: 500; line-height: 1; letter-spacing: .35em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.5vw, 2.5rem); font-size: .875rem; }
.desktop-nav a { display: inline-flex; align-items: center; min-height: 44px; transition: color .2s; }
.header-cta { display: inline-flex; align-items: center; justify-content: center; gap: 1.25rem; min-height: 46px; padding: .625rem 1.125rem; border: 1px solid rgb(255 255 255 / .4); border-radius: 999px; font-size: .8125rem; font-weight: 500; transition: background .2s, border-color .2s; }
.header-cta .arrow { width: 16px; height: 16px; scale: .85; }
.mobile-menu { display: none; }
.menu-label-close { display: none; }
.site-header :focus-visible, .hero :focus-visible, .contact-footer :focus-visible, .site-credit :focus-visible { outline-color: var(--pink); }

/* The selected Blue Flame stays full-quality; type remains the only hero focal point. */
.hero { position: relative; isolation: isolate; display: flex; min-height: min(56rem, 100svh); overflow: hidden; color: white; background: var(--night); }
.flame-media { position: absolute; z-index: -2; inset: 0; background: var(--night) url('/media/blue-flame.webp') center / cover no-repeat; filter: hue-rotate(100deg) saturate(.85); }
.flame-media video { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { position: absolute; z-index: -1; inset: 0; background: linear-gradient(90deg, rgb(3 3 5 / .88), rgb(3 3 5 / .7) 48%, rgb(3 3 5 / .1) 84%), linear-gradient(0deg, rgb(3 3 5 / .5), transparent 35%, transparent 80%, rgb(3 3 5 / .3)); }
.hero-inner { display: flex; align-items: center; padding-block: clamp(8.5rem, 10vw, 10.5rem) 5.5rem; }
.hero-copy { width: min(100%, 48rem); }
.hero .eyebrow { display: flex; align-items: center; gap: .75rem; color: rgb(255 255 255 / .86); }
.hero-dot { width: 6px; height: 6px; flex: 0 0 6px; border-radius: 50%; background: var(--pink); }
h1 { margin-block: 1.625rem; font-size: clamp(2.875rem, calc(1.5rem + 5.5vw), 6.5rem); line-height: 1; letter-spacing: -.07em; }
h1 em { color: var(--pink); font-style: normal; font-weight: inherit; }
.headline-line { display: block; padding-bottom: .14em; margin-bottom: -.14em; animation: line-in 1.05s var(--gl-ease) both; }
.headline-line:nth-child(2) { animation-delay: .09s; }
.headline-line:nth-child(3) { animation-delay: .18s; }
.hero-description { max-width: 30rem; color: rgb(255 255 255 / .82); font-size: clamp(1rem, 1.3vw, 1.125rem); line-height: 1.75; animation-delay: .22s; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .875rem; margin-top: 2rem; animation-delay: .28s; }
.artist-note { display: grid; grid-template-columns: 52px minmax(0, 1fr) 18px; align-items: center; gap: .875rem; width: fit-content; max-width: 100%; min-height: 52px; margin-top: 2.25rem; animation-delay: .35s; }
.artist-note img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; object-position: center 20%; }
.artist-note strong { display: block; font-size: .875rem; font-weight: 500; }
.artist-note small { display: block; margin-top: .25rem; font-size: .75rem; line-height: 1.5; color: rgb(255 255 255 / .74); }
.artist-note > .arrow { scale: .8; color: var(--pink); }
.motion-control { position: absolute; z-index: 2; right: max(var(--gutter), calc((100% - var(--content-width)) / 2)); bottom: 1.5rem; display: inline-flex; align-items: center; gap: .625rem; min-height: 44px; padding: .625rem .875rem; border: 1px solid rgb(255 255 255 / .3); border-radius: 999px; background: rgb(3 3 5 / .65); color: rgb(255 255 255 / .86); font-size: .75rem; line-height: 1.5; cursor: pointer; transition: background .2s; }
.motion-control span { font-size: 1rem; line-height: 1; }
.reveal { animation: soft-in 1s var(--gl-ease) both; }

/* The offer is readable without expanding panels or leaving the page. */
.services-list { border-top: 1px solid var(--line); }
.service { display: grid; grid-template-columns: 2rem minmax(0, 1.15fr) minmax(0, 1fr) auto; align-items: center; column-gap: 2rem; row-gap: .75rem; padding-block: 2rem; border-bottom: 1px solid var(--line); }
.service-number { align-self: start; padding-top: .5rem; color: var(--muted); font-size: .8125rem; font-variant-numeric: tabular-nums; }
.service h3 { max-width: 24rem; font-size: clamp(1.5rem, 2.3vw, 2rem); line-height: 1.2; letter-spacing: -.035em; }
.service > p { max-width: 28rem; color: var(--muted); font-size: .9375rem; line-height: 1.75; }
.service-action { display: inline-flex; align-items: center; gap: 1rem; justify-content: center; min-height: 48px; padding: .625rem 1rem; border: 1px solid var(--line); border-radius: 999px; font-size: .8125rem; font-weight: 500; transition: background .2s, border-color .2s; }
.service-action .arrow { scale: .85; }
.booking-note { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding-top: 1.5rem; color: var(--muted); font-size: .875rem; }
.booking-note .text-link { flex-shrink: 0; color: var(--ink); }

/* Real work has its own section. The before/after photograph is never cropped. */
.work-section { padding-top: 0; }
.work-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); align-items: start; gap: clamp(1.5rem, 4vw, 4rem); }
.work-card { display: block; min-width: 0; border-radius: var(--image-radius); }
.work-image { aspect-ratio: 4 / 5; overflow: hidden; border-radius: var(--image-radius); background: var(--paper-deep); }
.work-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--gl-ease); }
.work-card--comparison { padding-top: clamp(3rem, 8vw, 7.5rem); }
.work-card--comparison .work-image { aspect-ratio: 1; }
.work-card--comparison .work-image img { object-fit: contain; }
.work-caption { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-top: 1.25rem; }
.work-caption h3 { font-size: 1.25rem; line-height: 1.35; letter-spacing: -.02em; }
.work-caption p { margin-top: .375rem; color: var(--muted); font-size: .8125rem; line-height: 1.6; }
.round-arrow { display: grid; place-items: center; width: 44px; height: 44px; flex: 0 0 44px; border: 1px solid var(--line); border-radius: 50%; transition: background .2s, border-color .2s; }

/* The portrait sits with Julia's introduction, not inside the work gallery. */
.about-section { background: var(--paper-deep); }
.about-grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); align-items: center; gap: clamp(3rem, 8vw, 8rem); }
.about-copy { max-width: 34rem; }
.about-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.8; }
.about-copy > p.about-intro { margin-top: 1.75rem; margin-bottom: 1rem; color: var(--ink); font-weight: 500; }
.about-details { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem; margin-block: 2rem 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.about-details dt { margin-bottom: .375rem; color: var(--muted); font-size: .75rem; }
.about-details dd { font-size: .9375rem; font-weight: 500; line-height: 1.5; }
.about-portrait { justify-self: end; width: min(100%, 29rem); }
.about-portrait img { width: 100%; height: auto; border-radius: var(--image-radius); }
.about-portrait figcaption { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1rem; font-size: .8125rem; color: var(--muted); }

/* A single clear booking action closes the page. */
.contact-footer { padding-top: var(--section-space); background: var(--night); color: white; }
.contact-main { display: grid; grid-template-columns: minmax(0, 1fr) auto; align-items: end; gap: 4rem; padding-bottom: 4rem; }
.contact-copy { max-width: 35rem; }
.contact-copy .eyebrow { color: var(--pink); }
.contact-copy > p:last-child { max-width: 31rem; margin-top: 1.5rem; color: rgb(255 255 255 / .74); line-height: 1.8; }
.contact-action { display: flex; flex-direction: column; align-items: flex-start; padding-bottom: .25rem; }
.contact-action .button { min-width: 17.75rem; }
.contact-action > span { margin-top: 1rem; font-size: .875rem; color: rgb(255 255 255 / .8); }
.contact-action > p { margin-top: .375rem; color: rgb(255 255 255 / .65); font-size: .8125rem; }
.footer-links { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-block: 2rem; border-block: 1px solid rgb(255 255 255 / .18); }
.footer-links nav { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: .875rem; }
.footer-links nav a, .back-to-top { display: inline-flex; align-items: center; min-height: 44px; }
.back-to-top { gap: 1rem; font-size: .8125rem; }
.back-to-top .arrow { transform: rotate(-45deg); scale: .8; }
.footer-base { display: flex; justify-content: space-between; gap: 1rem; padding-block: 1.5rem; color: rgb(255 255 255 / .65); font-size: .75rem; }
.site-credit { background: var(--night); color: rgb(255 255 255 / .65); font-size: .75rem; }
.site-credit p { display: flex; align-items: center; justify-content: center; gap: .375rem; min-height: 60px; border-top: 1px solid rgb(255 255 255 / .18); }
.site-credit a { display: inline-flex; align-items: center; min-height: 44px; color: rgb(255 255 255 / .82); text-decoration: underline; text-decoration-color: rgb(255 255 255 / .35); text-underline-offset: .25em; transition: color .2s, text-decoration-color .2s; }

@media (hover: hover) {
  .site-credit a:hover { color: var(--pink); text-decoration-color: currentColor; }
  .desktop-nav a:hover, .footer-links a:hover { color: var(--pink); }
  .header-cta:hover, .button-secondary:hover { background: rgb(255 255 255 / .1); border-color: var(--pink); }
  .button-primary:hover { background: color-mix(in srgb, var(--pink) 72%, white); }
  .motion-control:hover { background: rgb(3 3 5 / .9); }
  .text-link:hover { border-color: currentColor; }
  .text-link:hover .arrow, .button:hover .arrow, .artist-note:hover > .arrow { translate: 2px -2px; }
  .button:hover .arrow[data-direction='down'] { translate: 0 2px; }
  .text-link:hover .arrow[data-direction='right'], .artist-note:hover > .arrow { translate: 2px 0; }
  .service-action:hover, .work-card:hover .round-arrow { background: var(--ink); color: var(--paper); border-color: var(--ink); }
  .work-card:not(.work-card--comparison):hover .work-image img { transform: scale(1.02); }
}
@keyframes line-in { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes soft-in { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1000px) {
  .header-inner { gap: 1.25rem; }
  .desktop-nav { gap: 1.25rem; font-size: .8125rem; }
  .service { grid-template-columns: 1.5rem minmax(0, 1fr) auto; column-gap: 1.5rem; }
  .service h3 { max-width: none; }
  .service > p { grid-column: 2; grid-row: 2; }
  .service-action { grid-column: 3; grid-row: 1 / 3; }
  .service-number { padding-top: .25rem; }
  .about-grid { gap: 3rem; }
  .contact-main { gap: 2.5rem; }
}

@media (max-width: 760px) {
  .header-inner { min-height: 80px; }
  .desktop-nav { display: none; }
  .header-cta { margin-left: auto; }
  .mobile-menu { display: block; }
  .mobile-menu summary { display: flex; align-items: center; justify-content: center; gap: .75rem; min-height: 44px; min-width: 80px; padding: .625rem 0 .625rem .625rem; font-size: .875rem; line-height: 1.5; cursor: pointer; list-style: none; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .menu-icon { position: relative; width: 20px; height: 16px; }
  .menu-icon::before, .menu-icon::after { content: ''; position: absolute; left: 0; width: 20px; height: 1.5px; background: currentColor; transition: transform .2s; }
  .menu-icon::before { top: 4px; }
  .menu-icon::after { top: 11px; }
  .mobile-menu[open] .menu-icon::before { transform: translateY(3.5px) rotate(45deg); }
  .mobile-menu[open] .menu-icon::after { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu[open] .menu-label-open { display: none; }
  .mobile-menu[open] .menu-label-close { display: inline; }
  .mobile-menu nav { position: absolute; z-index: 2; top: calc(100% + .75rem); left: 0; right: 0; padding: .5rem 1.25rem; border: 1px solid rgb(255 255 255 / .2); border-radius: var(--image-radius); background: var(--night); box-shadow: 0 1rem 3rem rgb(0 0 0 / .25); }
  .mobile-menu nav a { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 58px; padding-block: .75rem; border-bottom: 1px solid rgb(255 255 255 / .16); font-size: 1rem; }
  .mobile-menu nav a:last-child { border: 0; }
  .mobile-menu nav .arrow { color: var(--pink); scale: .85; }
  .hero { min-height: 0; }
  .hero-inner { padding-block: 8.25rem 6rem; }
  .hero-copy { width: 100%; }
  h1 { margin-block: 1.5rem; }
  .hero-shade { background: linear-gradient(90deg, rgb(3 3 5 / .78), rgb(3 3 5 / .68)), linear-gradient(0deg, rgb(3 3 5 / .45), transparent 45%); }
  .hero .eyebrow { font-size: .6875rem; letter-spacing: .12em; }
  .hero-description { font-size: 1rem; line-height: 1.75; }
  .hero-actions { gap: .75rem; margin-top: 1.75rem; }
  .hero-actions .button { font-size: .875rem; gap: 1.25rem; padding-inline: 1.25rem; }
  .artist-note { margin-top: 2rem; gap: .75rem; grid-template-columns: 48px minmax(0, 1fr) 18px; }
  .artist-note img { width: 48px; height: 48px; }
  .artist-note small { max-width: 17rem; }
  .motion-control { bottom: 1.5rem; }
  .section-heading { align-items: flex-start; flex-direction: column; gap: 1.5rem; margin-bottom: 2.5rem; }
  .section-lead { max-width: 30rem; font-size: .9375rem; }
  .desktop-break { display: none; }
  .booking-note { align-items: flex-start; flex-direction: column; gap: .5rem; }
  .work-caption h3 { font-size: 1.125rem; }
  .work-caption { align-items: flex-start; }
  .work-caption p { font-size: .75rem; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-copy { max-width: 38rem; }
  .about-portrait { width: min(100%, 32rem); justify-self: start; }
  .contact-main { grid-template-columns: 1fr; gap: 2rem; padding-bottom: 3rem; }
  .contact-action .button { min-width: 0; }
  .footer-links { flex-wrap: wrap; row-gap: 1rem; }
  .footer-links nav { order: 3; flex-basis: 100%; gap: 1.5rem; }
  .footer-base { flex-direction: column; gap: .375rem; padding-block: 1.5rem; }
}

@media (max-width: 560px) {
  .header-cta { display: none; }
  .service { grid-template-columns: 1.25rem minmax(0, 1fr); column-gap: 1rem; row-gap: .75rem; padding-block: 1.75rem; }
  .service h3 { font-size: 1.5rem; }
  .service > p { grid-column: 2; font-size: .9375rem; }
  .service-action { grid-column: 2; grid-row: 3; justify-self: start; min-height: 44px; padding: .5rem 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; font-size: .875rem; }
  .work-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .work-image { aspect-ratio: 1; }
  .work-card--comparison { padding-top: 0; }
  .work-caption p { font-size: .8125rem; }
  .about-details { gap: 1rem; }
  .about-details dt { font-size: .75rem; }
  .about-details dd { font-size: .875rem; }
}

@media (max-width: 380px) {
  .hero-actions { display: grid; grid-template-columns: 1fr; }
  .hero-actions .button { width: 100%; }
  .artist-note { grid-template-columns: 44px minmax(0, 1fr); }
  .artist-note img { width: 44px; height: 44px; }
  .artist-note > .arrow { display: none; }
  .about-details { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
